diff --git a/.github/workflows/latest-deploy.yaml b/.github/workflows/latest-deploy.yaml index 56a14fa..bf021ae 100644 --- a/.github/workflows/latest-deploy.yaml +++ b/.github/workflows/latest-deploy.yaml @@ -17,34 +17,27 @@ env: jobs: deploy: if: github.event.pull_request.merged - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} + strategy: + matrix: + dotnet-version: [6] + os: [ ubuntu-20.04 ] steps: - - uses: actions/checkout@v2 + - name: Check out repository + uses: actions/checkout@v2 - - name: Set up Python 3.9 - uses: actions/setup-python@v2 + - name: Set up Dotnet ${{ matrix.dotnet-version }} + uses: actions/setup-dotnet with: - python-version: 3.9 + dotnet-version: ${{ matrix.dotnet-version }} - - name: Upgrade pip + - name: Build and publish run: | - pip install --upgrade pip - - - name: Set up virtual environment using poetry - run: | - wget https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py - python3 install-poetry.py - poetry config virtualenvs.create false - poetry install --no-interaction - - - name: Get version - id: get_version - run: | - echo "::set-output name=version::$(poetry version -s)" - - - name: Build artifacts - run: | - ./build.sh + dotnet publish -c Release -o dist/cli/ ./Linguard/Cli + dotnet publish -c Release -o dist/web/ ./Linguard/Web + cp scripts/* dist/ + cp -r systemd/ dist/ + tar -zcf linguard-docker.tar.gz ./dist - name: Set up QEMU uses: docker/setup-qemu-action@v1 diff --git a/.github/workflows/latest-test.yaml b/.github/workflows/latest-test.yaml index 308c906..a1fa6ee 100644 --- a/.github/workflows/latest-test.yaml +++ b/.github/workflows/latest-test.yaml @@ -12,62 +12,25 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - python-version: [3.7, 3.8, 3.9] + dotnet-version: [6] os: [ ubuntu-20.04 ] steps: - name: Check out repository uses: actions/checkout@v2 - - name: Set permissions - run: | - chmod +x linguard/core/tools/* - - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + - name: Set up Dotnet ${{ matrix.dotnet-version }} + uses: actions/setup-dotnet with: - python-version: ${{ matrix.python-version }} - - - name: Upgrade pip - run: | - pip install --upgrade pip - - - name: Set up virtual environment using poetry - run: | - wget https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py - python3 install-poetry.py - poetry config virtualenvs.create false - poetry install --no-interaction - - - name: Install linux dependencies - run: | - sudo apt-get -qq install wireguard iptables - - - name: Run tests - run: | - poetry run coverage run -m pytest && poetry run coverage xml --fail-under=80 + dotnet-version: ${{ matrix.dotnet-version }} - - name: Check docs are compiled successfully - run: | - cd docs && make html && cd .. + - name: Test + run: dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=cobertura Linguard + #run: dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=cobertura /p:Threshold=80 Linguard - name: Upload coverage report to Codecov uses: codecov/codecov-action@v2.1.0 if: always() - with: - files: coverage.xml - - name: Build release - run: | - ./build.sh - - - name: Install release - run: | - cd dist - tar -xf *.tar.gz - sudo ./install.sh - - - name: Briefly test uwgsi (can't use service here) + - name: Check docs are compiled successfully run: | - sudo -u linguard /usr/bin/uwsgi --yaml /var/www/linguard/data/uwsgi.yaml & - sleep 2s - sudo pkill -f uwsgi + cd docs && make html && cd .. \ No newline at end of file diff --git a/.github/workflows/stable-deploy.yaml b/.github/workflows/stable-deploy.yaml index 1941c00..008e1f4 100644 --- a/.github/workflows/stable-deploy.yaml +++ b/.github/workflows/stable-deploy.yaml @@ -16,34 +16,30 @@ env: jobs: deploy: if: github.event.pull_request.merged - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} + strategy: + matrix: + dotnet-version: [6] + os: [ ubuntu-20.04 ] steps: - - uses: actions/checkout@v2 + - name: Check out repository + uses: actions/checkout@v2 - - name: Set up Python 3.9 - uses: actions/setup-python@v2 + - name: Set up Dotnet ${{ matrix.dotnet-version }} + uses: actions/setup-dotnet with: - python-version: 3.9 + dotnet-version: ${{ matrix.dotnet-version }} - - name: Upgrade pip + - name: Build and publish run: | - pip install --upgrade pip - - - name: Set up virtual environment using poetry - run: | - wget https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py - python3 install-poetry.py - poetry config virtualenvs.create false - poetry install --no-interaction - - - name: Get version - id: get_version - run: | - echo "::set-output name=version::$(poetry version -s)" - - - name: Build artifacts - run: | - ./build.sh + dotnet publish -c Release -o ./dist/docker/cli/ ./Linguard/Cli + dotnet publish -c Release -o ./dist/docker/web/ ./Linguard/Web + dotnet publish -c Release -o ./dist/linux/linguard-web/ --sc --os linux .\Linguard\Web + dotnet publish -c Release -o ./dist/linux/linguard-cli/ --sc --os linux .\Linguard\Cli + tar -zcf linguard-docker.tar.gz ./dist/docker/ + tar -zcf linguard-linux.tar.gz ./dist/linux/ + cp scripts/* dist/ + cp -r systemd/ dist/ - name: Set up QEMU uses: docker/setup-qemu-action@v1 @@ -73,7 +69,7 @@ jobs: name: ${{ steps.get_version.outputs.version }} tag: "v${{ steps.get_version.outputs.version }}" commit: "main" - artifacts: "dist/*.tar.gz" + artifacts: "dist/linguard-linux.tar.gz" bodyFile: "release-notes.md" discussionCategory: "Announcements" token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file diff --git a/.github/workflows/stable-test.yaml b/.github/workflows/stable-test.yaml index a28b7de..822fe8c 100644 --- a/.github/workflows/stable-test.yaml +++ b/.github/workflows/stable-test.yaml @@ -12,62 +12,24 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - python-version: [3.7, 3.8, 3.9] + dotnet-version: [6] os: [ ubuntu-20.04 ] steps: - name: Check out repository uses: actions/checkout@v2 - - name: Set permissions - run: | - chmod +x linguard/core/tools/* - - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + - name: Set up Dotnet ${{ matrix.dotnet-version }} + uses: actions/setup-dotnet with: - python-version: ${{ matrix.python-version }} - - - name: Upgrade pip - run: | - pip install --upgrade pip - - - name: Set up virtual environment using poetry - run: | - wget https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py - python3 install-poetry.py - poetry config virtualenvs.create false - poetry install --no-interaction - - - name: Install linux dependencies - run: | - sudo apt-get -qq install wireguard iptables - - - name: Run tests - run: | - poetry run coverage run -m pytest && poetry run coverage xml --fail-under=80 + dotnet-version: ${{ matrix.dotnet-version }} - - name: Check docs are compiled successfully - run: | - cd docs && make html && cd .. + - name: Test + run: dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=cobertura /p:Threshold=80 Linguard - name: Upload coverage report to Codecov uses: codecov/codecov-action@v2.1.0 if: always() - with: - files: coverage.xml - - name: Build release - run: | - ./build.sh - - - name: Install release - run: | - cd dist - tar -xf *.tar.gz - sudo ./install.sh - - - name: Briefly test uwgsi (can't use service here) + - name: Check docs are compiled successfully run: | - sudo -u linguard /usr/bin/uwsgi --yaml /var/www/linguard/data/uwsgi.yaml & - sleep 2s - sudo pkill -f uwsgi + cd docs && make html && cd .. \ No newline at end of file diff --git a/.gitignore b/.gitignore index 025ad1e..93255f3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,131 +1,3 @@ -# Byte-compiled / optimized / DLL files -__pycache__/ -*.py[cod] -*$py.class - -# C extensions -*.so - -# Distribution / packaging -.Python -build/ -develop-eggs/ -dist/ -downloads/ -eggs/ -.eggs/ -lib/ -lib64/ -parts/ -sdist/ -var/ -wheels/ -pip-wheel-metadata/ -share/python-wheels/ -*.egg-info/ -.installed.cfg -*.egg -MANIFEST - -# PyInstaller -# Usually these files are written by a python script from a template -# before PyInstaller builds the exe, so as to inject date/other infos into it. -*.manifest -*.spec - -# Installer logs -pip-log.txt -pip-delete-this-directory.txt - -# Unit test / coverage reports -htmlcov/ -.tox/ -.nox/ -.coverage -.coverage.* -.cache -nosetests.xml -coverage.xml -*.cover -.hypothesis/ -.pytest_cache/ - -# Translations -*.mo -*.pot - -# Django stuff: -*.log -local_settings.py -db.sqlite3 -db.sqlite3-journal - -# Flask stuff: -instance/ -.webassets-cache - -# Scrapy stuff: -.scrapy - -# Sphinx documentation -docs/_build/ - -# PyBuilder -target/ - -# Jupyter Notebook -.ipynb_checkpoints - -# IPython -profile_default/ -ipython_config.py - -# pyenv -.python-version - -# pipenv -# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. -# However, in case of collaboration, if having platform-specific dependencies or dependencies -# having no cross-platform support, pipenv may install dependencies that don't work, or not -# install all needed dependencies. -#Pipfile.lock - -# celery beat schedule file -celerybeat-schedule - -# SageMath parsed files -*.sage.py - -# Environments -.env -.venv -env/ -venv/ -ENV/ -env.bak/ -venv.bak/ - -# Spyder project settings -.spyderproject -.spyproject - -# Rope project settings -.ropeproject - -# mkdocs documentation -/site - -# mypy -.mypy_cache/ -.dmypy.yaml -dmypy.yaml - -# Pyre type checker -.pyre/ - -# Pycharm -.idea/ - uwsgi.yaml linguard.yaml credentials.yaml @@ -133,5 +5,4 @@ version.yaml logs/ traffic.* interfaces/ -data/ -__version__.py \ No newline at end of file +data/ \ No newline at end of file diff --git a/README.md b/README.md index 58584c5..d677ba4 100644 --- a/README.md +++ b/README.md @@ -1,21 +1,23 @@ # Linguard -[![GitHub](https://img.shields.io/github/license/joseantmazonsb/linguard)](LICENSE.md) ![Python version](https://img.shields.io/badge/python-3.7%20%7C%203.8%20%7C%203.9-blue?logo=python&logoColor=yellow) [![Stable workflow status](https://github.com/joseantmazonsb/linguard/actions/workflows/stable-test.yaml/badge.svg)](https://github.com/joseantmazonsb/linguard/actions/workflows/stable-test.yaml) [![Latest workflow status](https://github.com/joseantmazonsb/linguard/actions/workflows/latest-test.yaml/badge.svg)](https://github.com/joseantmazonsb/linguard/actions/workflows/latest-test.yaml) [![Stable Documentation Status](https://readthedocs.org/projects/linguard/badge/?version=stable)](https://linguard.readthedocs.io/en/stable/?badge=stable) [![codecov](https://codecov.io/gh/joseantmazonsb/linguard/branch/dev/graph/badge.svg)](https://codecov.io/gh/joseantmazonsb/linguard) +[![GitHub](https://img.shields.io/github/license/joseantmazonsb/linguard)](LICENSE.md) ![Dotnet version](https://img.shields.io/badge/6-blue?logo=dotnet&logoColor=white) [![Stable workflow status](https://github.com/joseantmazonsb/linguard/actions/workflows/stable-test.yaml/badge.svg)](https://github.com/joseantmazonsb/linguard/actions/workflows/stable-test.yaml) [![Latest workflow status](https://github.com/joseantmazonsb/linguard/actions/workflows/latest-test.yaml/badge.svg)](https://github.com/joseantmazonsb/linguard/actions/workflows/latest-test.yaml) [![Stable Documentation Status](https://readthedocs.org/projects/linguard/badge/?version=stable)](https://linguard.readthedocs.io/en/stable/?badge=stable) [![codecov](https://codecov.io/gh/joseantmazonsb/linguard/branch/dev/graph/badge.svg)](https://codecov.io/gh/joseantmazonsb/linguard) [![GitHub release (latest SemVer including pre-releases)](https://img.shields.io/github/v/release/joseantmazonsb/linguard?color=green&include_prereleases&logo=github)](https://github.com/joseantmazonsb/linguard/releases) [![GitHub all releases](https://img.shields.io/github/downloads/joseantmazonsb/linguard/total?logo=github)](https://github.com/joseantmazonsb/linguard/releases) -Linguard aims to provide a clean, simple yet powerful web GUI to manage your WireGuard server, and it's powered by Flask. +Linguard aims to provide a clean, simple yet powerful web GUI to manage your WireGuard server. **[Read the docs](https://linguard.readthedocs.io) for further information!** ## Key features * Management of Wireguard interfaces and peers via web. Interfaces can be created, removed, edited, exported and brought up and down directly from the web GUI. Peers can be created, removed, edited and downloaded at anytime as well. +* IPv6 support. * Display stored and real time traffic data using charts (storage of traffic data may be manually disabled). * Display general network information. -* Encrypted user credentials (AES). +* Encrypted user credentials. * Easy management through the ``linguard`` systemd service. +* CLI tool. ## Installation diff --git a/config/uwsgi.sample.yaml b/config/uwsgi.sample.yaml deleted file mode 100644 index 8c70807..0000000 --- a/config/uwsgi.sample.yaml +++ /dev/null @@ -1,15 +0,0 @@ -uwsgi: - master: true - enable-threads: true - processes: 1 - threads: 1 - chdir: /var/www/linguard - venv: venv - wsgi-file: linguard/__main__.py - pyargv: data - need-plugin: python3 - callable: app - die-on-term: true - http-socket: 0.0.0.0:8080 - chmod-socket: 660 - vacuum: true \ No newline at end of file diff --git a/docker/Dockerfile b/docker/Dockerfile index 76c6f16..401e755 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,16 +1,8 @@ -FROM python:3.9-slim-bullseye as python-base -ENV PYTHONFAULTHANDLER=1 \ - PYTHONUNBUFFERED=1 \ - PYTHONDONTWRITEBYTECODE=1 \ - PYTHONHASHSEED=random \ - PIP_NO_CACHE_DIR=off \ - PIP_DISABLE_PIP_VERSION_CHECK=on \ - PIP_DEFAULT_TIMEOUT=100 \ - INSTALL_PATH="/var/www/linguard" \ +FROM mcr.microsoft.com/dotnet/runtime:6.0 +ENV INSTALL_PATH="/var/www/linguard" \ DATA_PATH="/var/www/linguard/data" \ EXPORTED_PATH="/data" -ENV PATH="$POETRY_HOME/bin:$VENV_PATH/bin:$PATH" -COPY dist/*.tar.gz linguard.tar.gz +COPY dist/linguard-docker.tar.gz linguard.tar.gz RUN mkdir linguard && tar -xf linguard.tar.gz -C linguard WORKDIR linguard RUN chmod +x ./install.sh && ./install.sh diff --git a/docker/docker-compose.yaml b/docker/docker-compose.yaml index ccb4dfd..568f7bb 100644 --- a/docker/docker-compose.yaml +++ b/docker/docker-compose.yaml @@ -11,5 +11,3 @@ services: - "${DATA_FOLDER:-/srv/linguard/data}:/data" # Optional, provides a way to see and edit the configuration files directly from the host. network_mode: host restart: unless-stopped - ports: - - "8080:8080" diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh index c07137e..14a3c77 100644 --- a/docker/entrypoint.sh +++ b/docker/entrypoint.sh @@ -15,9 +15,9 @@ function run { ln -s "$EXPORTED_PATH" "$DATA_PATH" chown -R linguard:linguard "$DATA_PATH" chown -R linguard:linguard "$EXPORTED_PATH" - # Start uwsgi + # Start server ls -l "$EXPORTED_PATH" - sudo -u linguard /usr/bin/uwsgi --yaml "$DATA_PATH/uwsgi.yaml" + sudo -u linguard dotnet "$INSTALL_PATH/Linguard.Web.Dll" } flag_file="$EXPORTED_PATH/.times_ran" diff --git a/docs/source/index.rst b/docs/source/index.rst index f7686c1..a958d18 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -5,8 +5,8 @@ Linguard :target: https://github.com/joseantmazonsb/linguard/blob/main/LICENSE.md :alt: License: GPL-3.0 -.. image:: https://img.shields.io/badge/python-3.7%20%7C%203.8%20%7C%203.9-blue?logo=python&logoColor=yellow - :alt: Supported python versions: 3.7, 3.8, 3.9 +.. image:: https://img.shields.io/badge/6-blue?logo=dotnet&logoColor=white + :alt: Supported dotnet versions: 6 .. image:: https://github.com/joseantmazonsb/linguard/actions/workflows/stable-test.yaml/badge.svg :target: https://github.com/joseantmazonsb/linguard/actions/workflows/stable-test.yaml diff --git a/gen_version_file.sh b/gen_version_file.sh deleted file mode 100755 index bcf33e4..0000000 --- a/gen_version_file.sh +++ /dev/null @@ -1,4 +0,0 @@ -version_file="linguard/__version__.py" -version=$(poetry version -s) -commit=$(git rev-parse HEAD) -echo -e "release = '$version'\ncommit = '$commit'" > "$version_file" \ No newline at end of file diff --git a/linguard.wiki b/linguard.wiki deleted file mode 160000 index 9941ea5..0000000 --- a/linguard.wiki +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 9941ea5755cdda8083cacc015b3e0283869b4f52 diff --git a/linguard/.idea/.idea.Linguard/.idea/.gitignore b/linguard/.idea/.idea.Linguard/.idea/.gitignore new file mode 100644 index 0000000..a8e8268 --- /dev/null +++ b/linguard/.idea/.idea.Linguard/.idea/.gitignore @@ -0,0 +1,13 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Rider ignored files +/contentModel.xml +/modules.xml +/projectSettingsUpdater.xml +/.idea.Linguard.iml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/linguard/.idea/.idea.Linguard/.idea/encodings.xml b/linguard/.idea/.idea.Linguard/.idea/encodings.xml new file mode 100644 index 0000000..df87cf9 --- /dev/null +++ b/linguard/.idea/.idea.Linguard/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/linguard/.idea/.idea.Linguard/.idea/indexLayout.xml b/linguard/.idea/.idea.Linguard/.idea/indexLayout.xml new file mode 100644 index 0000000..7b08163 --- /dev/null +++ b/linguard/.idea/.idea.Linguard/.idea/indexLayout.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/linguard/.idea/.idea.Linguard/.idea/vcs.xml b/linguard/.idea/.idea.Linguard/.idea/vcs.xml new file mode 100644 index 0000000..6c0b863 --- /dev/null +++ b/linguard/.idea/.idea.Linguard/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/linguard/Auth/Auth.csproj b/linguard/Auth/Auth.csproj new file mode 100644 index 0000000..eb2460e --- /dev/null +++ b/linguard/Auth/Auth.csproj @@ -0,0 +1,9 @@ + + + + net6.0 + enable + enable + + + diff --git a/linguard/Auth/Models/Credentials.cs b/linguard/Auth/Models/Credentials.cs new file mode 100644 index 0000000..9b47b98 --- /dev/null +++ b/linguard/Auth/Models/Credentials.cs @@ -0,0 +1,10 @@ +namespace Auth.Models; + +public class Credentials : ICredentials { + public Credentials(string login, string password) { + Login = login; + Password = password; + } + public string Login { get; } + public string Password { get; } +} \ No newline at end of file diff --git a/linguard/Auth/Models/ICredentials.cs b/linguard/Auth/Models/ICredentials.cs new file mode 100644 index 0000000..59b5166 --- /dev/null +++ b/linguard/Auth/Models/ICredentials.cs @@ -0,0 +1,6 @@ +namespace Auth.Models; + +public interface ICredentials { + public string Login { get; } + public string Password { get;} +} \ No newline at end of file diff --git a/linguard/Auth/Models/IToken.cs b/linguard/Auth/Models/IToken.cs new file mode 100644 index 0000000..258d59e --- /dev/null +++ b/linguard/Auth/Models/IToken.cs @@ -0,0 +1,6 @@ +namespace Auth.Models; + +public interface IToken { + public string Value { get; } + public DateTime ValidUntil { get; } +} \ No newline at end of file diff --git a/linguard/Auth/Models/Token.cs b/linguard/Auth/Models/Token.cs new file mode 100644 index 0000000..d870a08 --- /dev/null +++ b/linguard/Auth/Models/Token.cs @@ -0,0 +1,11 @@ +namespace Auth.Models; + +public class Token : IToken { + public Token(string value, DateTime validUntil) { + Value = value; + ValidUntil = validUntil; + } + + public string Value { get; } + public DateTime ValidUntil { get; } +} \ No newline at end of file diff --git a/linguard/Auth/Services/IAuthService.cs b/linguard/Auth/Services/IAuthService.cs new file mode 100644 index 0000000..d1d3652 --- /dev/null +++ b/linguard/Auth/Services/IAuthService.cs @@ -0,0 +1,8 @@ +using Auth.Models; + +namespace Auth.Services; + +public interface IAuthService { + IToken Login(ICredentials credentials); + void Logout(); +} \ No newline at end of file diff --git a/linguard/Auth/bin/Debug/net6.0/Auth.deps.json b/linguard/Auth/bin/Debug/net6.0/Auth.deps.json new file mode 100644 index 0000000..b2e5d1b --- /dev/null +++ b/linguard/Auth/bin/Debug/net6.0/Auth.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "Auth/1.0.0": { + "runtime": { + "Auth.dll": {} + } + } + } + }, + "libraries": { + "Auth/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/linguard/Auth/bin/Debug/net6.0/Auth.dll b/linguard/Auth/bin/Debug/net6.0/Auth.dll new file mode 100644 index 0000000..24c140f Binary files /dev/null and b/linguard/Auth/bin/Debug/net6.0/Auth.dll differ diff --git a/linguard/Auth/bin/Debug/net6.0/Auth.pdb b/linguard/Auth/bin/Debug/net6.0/Auth.pdb new file mode 100644 index 0000000..4f17528 Binary files /dev/null and b/linguard/Auth/bin/Debug/net6.0/Auth.pdb differ diff --git a/linguard/Auth/bin/Debug/net6.0/ref/Auth.dll b/linguard/Auth/bin/Debug/net6.0/ref/Auth.dll new file mode 100644 index 0000000..1f5f6df Binary files /dev/null and b/linguard/Auth/bin/Debug/net6.0/ref/Auth.dll differ diff --git a/linguard/Auth/obj/Auth.csproj.nuget.dgspec.json b/linguard/Auth/obj/Auth.csproj.nuget.dgspec.json new file mode 100644 index 0000000..c4f4e6e --- /dev/null +++ b/linguard/Auth/obj/Auth.csproj.nuget.dgspec.json @@ -0,0 +1,60 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Auth\\Auth.csproj": {} + }, + "projects": { + "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Auth\\Auth.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Auth\\Auth.csproj", + "projectName": "Auth", + "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Auth\\Auth.csproj", + "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", + "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Auth\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/linguard/Auth/obj/Auth.csproj.nuget.g.props b/linguard/Auth/obj/Auth.csproj.nuget.g.props new file mode 100644 index 0000000..df348a1 --- /dev/null +++ b/linguard/Auth/obj/Auth.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\theyu\.nuget\packages\ + PackageReference + 6.0.0 + + + + + \ No newline at end of file diff --git a/linguard/Auth/obj/Auth.csproj.nuget.g.targets b/linguard/Auth/obj/Auth.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/linguard/Auth/obj/Auth.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/linguard/Auth/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/linguard/Auth/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/linguard/Auth/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/linguard/Auth/obj/Debug/net6.0/Auth.AssemblyInfo.cs b/linguard/Auth/obj/Debug/net6.0/Auth.AssemblyInfo.cs new file mode 100644 index 0000000..0968c94 --- /dev/null +++ b/linguard/Auth/obj/Debug/net6.0/Auth.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Auth")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Auth")] +[assembly: System.Reflection.AssemblyTitleAttribute("Auth")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generado por la clase WriteCodeFragment de MSBuild. + diff --git a/linguard/Auth/obj/Debug/net6.0/Auth.AssemblyInfoInputs.cache b/linguard/Auth/obj/Debug/net6.0/Auth.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fdd7ced --- /dev/null +++ b/linguard/Auth/obj/Debug/net6.0/Auth.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +0d31ac86cc99b983cef71f0084ee961c117b2e81 diff --git a/linguard/Auth/obj/Debug/net6.0/Auth.GeneratedMSBuildEditorConfig.editorconfig b/linguard/Auth/obj/Debug/net6.0/Auth.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..6073df6 --- /dev/null +++ b/linguard/Auth/obj/Debug/net6.0/Auth.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Auth +build_property.ProjectDir = C:\Users\theyu\repos\linguard\Linguard\Auth\ diff --git a/linguard/Auth/obj/Debug/net6.0/Auth.GlobalUsings.g.cs b/linguard/Auth/obj/Debug/net6.0/Auth.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/linguard/Auth/obj/Debug/net6.0/Auth.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/linguard/Auth/obj/Debug/net6.0/Auth.assets.cache b/linguard/Auth/obj/Debug/net6.0/Auth.assets.cache new file mode 100644 index 0000000..0daa43b Binary files /dev/null and b/linguard/Auth/obj/Debug/net6.0/Auth.assets.cache differ diff --git a/linguard/Auth/obj/Debug/net6.0/Auth.csproj.AssemblyReference.cache b/linguard/Auth/obj/Debug/net6.0/Auth.csproj.AssemblyReference.cache new file mode 100644 index 0000000..204fdef Binary files /dev/null and b/linguard/Auth/obj/Debug/net6.0/Auth.csproj.AssemblyReference.cache differ diff --git a/linguard/Auth/obj/Debug/net6.0/Auth.csproj.CoreCompileInputs.cache b/linguard/Auth/obj/Debug/net6.0/Auth.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..18c217e --- /dev/null +++ b/linguard/Auth/obj/Debug/net6.0/Auth.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +0800bade65a3452077bc3c8d6c38143f224d1261 diff --git a/linguard/Auth/obj/Debug/net6.0/Auth.csproj.FileListAbsolute.txt b/linguard/Auth/obj/Debug/net6.0/Auth.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..87e207b --- /dev/null +++ b/linguard/Auth/obj/Debug/net6.0/Auth.csproj.FileListAbsolute.txt @@ -0,0 +1,24 @@ +C:\Users\theyu\repos\linguard-dotnet\Linguard\Auth\bin\Debug\net6.0\Auth.deps.json +C:\Users\theyu\repos\linguard-dotnet\Linguard\Auth\bin\Debug\net6.0\Auth.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Auth\bin\Debug\net6.0\ref\Auth.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Auth\bin\Debug\net6.0\Auth.pdb +C:\Users\theyu\repos\linguard-dotnet\Linguard\Auth\obj\Debug\net6.0\Auth.csproj.AssemblyReference.cache +C:\Users\theyu\repos\linguard-dotnet\Linguard\Auth\obj\Debug\net6.0\Auth.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\theyu\repos\linguard-dotnet\Linguard\Auth\obj\Debug\net6.0\Auth.AssemblyInfoInputs.cache +C:\Users\theyu\repos\linguard-dotnet\Linguard\Auth\obj\Debug\net6.0\Auth.AssemblyInfo.cs +C:\Users\theyu\repos\linguard-dotnet\Linguard\Auth\obj\Debug\net6.0\Auth.csproj.CoreCompileInputs.cache +C:\Users\theyu\repos\linguard-dotnet\Linguard\Auth\obj\Debug\net6.0\Auth.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Auth\obj\Debug\net6.0\ref\Auth.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Auth\obj\Debug\net6.0\Auth.pdb +C:\Users\theyu\repos\linguard\Linguard\Auth\bin\Debug\net6.0\Auth.deps.json +C:\Users\theyu\repos\linguard\Linguard\Auth\bin\Debug\net6.0\Auth.dll +C:\Users\theyu\repos\linguard\Linguard\Auth\bin\Debug\net6.0\ref\Auth.dll +C:\Users\theyu\repos\linguard\Linguard\Auth\bin\Debug\net6.0\Auth.pdb +C:\Users\theyu\repos\linguard\Linguard\Auth\obj\Debug\net6.0\Auth.csproj.AssemblyReference.cache +C:\Users\theyu\repos\linguard\Linguard\Auth\obj\Debug\net6.0\Auth.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\theyu\repos\linguard\Linguard\Auth\obj\Debug\net6.0\Auth.AssemblyInfoInputs.cache +C:\Users\theyu\repos\linguard\Linguard\Auth\obj\Debug\net6.0\Auth.AssemblyInfo.cs +C:\Users\theyu\repos\linguard\Linguard\Auth\obj\Debug\net6.0\Auth.csproj.CoreCompileInputs.cache +C:\Users\theyu\repos\linguard\Linguard\Auth\obj\Debug\net6.0\Auth.dll +C:\Users\theyu\repos\linguard\Linguard\Auth\obj\Debug\net6.0\ref\Auth.dll +C:\Users\theyu\repos\linguard\Linguard\Auth\obj\Debug\net6.0\Auth.pdb diff --git a/linguard/Auth/obj/Debug/net6.0/Auth.dll b/linguard/Auth/obj/Debug/net6.0/Auth.dll new file mode 100644 index 0000000..24c140f Binary files /dev/null and b/linguard/Auth/obj/Debug/net6.0/Auth.dll differ diff --git a/linguard/Auth/obj/Debug/net6.0/Auth.pdb b/linguard/Auth/obj/Debug/net6.0/Auth.pdb new file mode 100644 index 0000000..4f17528 Binary files /dev/null and b/linguard/Auth/obj/Debug/net6.0/Auth.pdb differ diff --git a/linguard/Auth/obj/Debug/net6.0/ref/Auth.dll b/linguard/Auth/obj/Debug/net6.0/ref/Auth.dll new file mode 100644 index 0000000..1f5f6df Binary files /dev/null and b/linguard/Auth/obj/Debug/net6.0/ref/Auth.dll differ diff --git a/linguard/Auth/obj/project.assets.json b/linguard/Auth/obj/project.assets.json new file mode 100644 index 0000000..0f39767 --- /dev/null +++ b/linguard/Auth/obj/project.assets.json @@ -0,0 +1,65 @@ +{ + "version": 3, + "targets": { + "net6.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net6.0": [] + }, + "packageFolders": { + "C:\\Users\\theyu\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Auth\\Auth.csproj", + "projectName": "Auth", + "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Auth\\Auth.csproj", + "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", + "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Auth\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/linguard/Auth/obj/project.nuget.cache b/linguard/Auth/obj/project.nuget.cache new file mode 100644 index 0000000..cc72c46 --- /dev/null +++ b/linguard/Auth/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "rJlhMfQ2n/uZlDT92iNdih+6kyhhekP4gchaCI+kWBcOdQHz9aLtC+j17sbJNzvZwLFntCFzQ8ztRlAMbly3Nw==", + "success": true, + "projectFilePath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Auth\\Auth.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file diff --git a/linguard/Auth/obj/project.packagespec.json b/linguard/Auth/obj/project.packagespec.json new file mode 100644 index 0000000..8dfa4a7 --- /dev/null +++ b/linguard/Auth/obj/project.packagespec.json @@ -0,0 +1 @@ +"restore":{"projectUniqueName":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Auth\\Auth.csproj","projectName":"Auth","projectPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Auth\\Auth.csproj","outputPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Auth\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net6.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net6.0":{"targetAlias":"net6.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net6.0":{"targetAlias":"net6.0","imports":["net461","net462","net47","net471","net472","net48"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/linguard/Auth/obj/rider.project.restore.info b/linguard/Auth/obj/rider.project.restore.info new file mode 100644 index 0000000..85d1deb --- /dev/null +++ b/linguard/Auth/obj/rider.project.restore.info @@ -0,0 +1 @@ +16454671674094552 \ No newline at end of file diff --git a/linguard/Cli.Test/AddInterfaceCommandShould.cs b/linguard/Cli.Test/AddInterfaceCommandShould.cs new file mode 100644 index 0000000..b1b46c8 --- /dev/null +++ b/linguard/Cli.Test/AddInterfaceCommandShould.cs @@ -0,0 +1,71 @@ +using System.Linq; +using System.Net.NetworkInformation; +using System.Threading.Tasks; +using Castle.Core.Internal; +using FluentAssertions; +using Linguard.Cli.Commands; +using Typin.Attributes; +using Xunit; + +namespace Cli.Test; + +public class AddInterfaceCommandShould { + + [Fact] + public async Task CreateInterfaceWithNoArguments() { + var command = typeof(AddInterfaceCommand); + var commandName = command.GetAttribute().Name!; + var app = Utils.BuildTestApp(command); + + var commandLine = $"{commandName}"; + + await app.App.RunAsync(commandLine); + var errors = app.Error.GetString(); + errors.Should().BeEmpty(); + app.ConfigurationManager.Configuration.Wireguard.Interfaces.Should().NotBeEmpty(); + } + + [Fact] + public async Task CreateTwoInterfacesWithNoArguments() { + var command = typeof(AddInterfaceCommand); + var commandName = command.GetAttribute().Name!; + var app = Utils.BuildTestApp(command); + + var commandLine = $"{commandName}"; + + await app.App.RunAsync(commandLine); + await app.App.RunAsync(commandLine); + var errors = app.Error.GetString(); + errors.Should().BeEmpty(); + app.ConfigurationManager.Configuration.Wireguard.Interfaces.Should().HaveCount(2); + } + + [Fact] + public async Task CreateInterfaceWithDefinedName() { + var command = typeof(AddInterfaceCommand); + var commandName = command.GetAttribute().Name!; + var app = Utils.BuildTestApp(command); + + var commandLine = $"{commandName} --name custom_iface"; + + await app.App.RunAsync(commandLine); + var errors = app.Error.GetString(); + errors.Should().BeEmpty(); + app.ConfigurationManager.Configuration.Wireguard.Interfaces.Should().NotBeEmpty(); + } + + [Fact] + public async Task CreateInterfaceWithDefinedGateway() { + var command = typeof(AddInterfaceCommand); + var commandName = command.GetAttribute().Name!; + var app = Utils.BuildTestApp(command); + + var gateway = NetworkInterface.GetAllNetworkInterfaces().First(); + var commandLine = $"{commandName} --gateway {gateway.Name}"; + + await app.App.RunAsync(commandLine); + var errors = app.Error.GetString(); + errors.Should().BeEmpty(); + app.ConfigurationManager.Configuration.Wireguard.Interfaces.Should().NotBeEmpty(); + } +} \ No newline at end of file diff --git a/linguard/Cli.Test/AddInterfaceCommandShouldNot.cs b/linguard/Cli.Test/AddInterfaceCommandShouldNot.cs new file mode 100644 index 0000000..e49079b --- /dev/null +++ b/linguard/Cli.Test/AddInterfaceCommandShouldNot.cs @@ -0,0 +1,68 @@ +using System.Threading.Tasks; +using Bogus; +using Castle.Core.Internal; +using FluentAssertions; +using Linguard.Cli.Commands; +using Linguard.Core; +using Linguard.Core.Models.Wireguard.Validators; +using Typin.Attributes; +using Xunit; + +namespace Cli.Test; + +public class AddInterfaceCommandShouldNot { + + [Fact] + public async Task AddInterfaceWithEmptyName() { + var command = typeof(AddInterfaceCommand); + var commandName = command.GetAttribute().Name!; + var app = Utils.BuildTestApp(command); + + var commandLine = $@"{commandName} --name """; + await app.App.RunAsync(commandLine); + + var error = app.Error.GetString(); + error.Should().Contain(Validation.CannotBeEmpty); + } + + [Fact] + public async Task AddTwoInterfacesWithTheSameName() { + var command = typeof(AddInterfaceCommand); + var commandName = command.GetAttribute().Name!; + var app = Utils.BuildTestApp(command); + + var commandLine = $"{commandName} --name custom_iface"; + + await app.App.RunAsync(commandLine); + await app.App.RunAsync(commandLine); + var errors = app.Error.GetString(); + errors.Should().Contain(Validation.InterfaceNameAlreadyInUse); + app.ConfigurationManager.Configuration.Wireguard.Interfaces.Should().HaveCount(1); + } + + [Fact] + public async Task AddInterfaceWithNameTooLong() { + var command = typeof(AddInterfaceCommand); + var commandName = command.GetAttribute().Name!; + var app = Utils.BuildTestApp(command); + var name = new Faker().Lorem.Letter(InterfaceValidator.MaxNameLength + 1); + await app.App.RunAsync($"{commandName} --name {name}"); + var error = app.Error.GetString(); + error.Should().Contain(Validation.InvalidLength); + error.Should().Contain(string.Format(Validation.ValidLengthForInterfaceName, + InterfaceValidator.MinNameLength, InterfaceValidator.MaxNameLength)); + } + + [Fact] + public async Task AddInterfaceWithNameTooShort() { + var command = typeof(AddInterfaceCommand); + var commandName = command.GetAttribute().Name!; + var app = Utils.BuildTestApp(command); + var name = new Faker().Lorem.Letter(InterfaceValidator.MinNameLength - 1); + await app.App.RunAsync($"{commandName} --name {name}"); + var error = app.Error.GetString(); + error.Should().Contain(Validation.InvalidLength); + error.Should().Contain(string.Format(Validation.ValidLengthForInterfaceName, + InterfaceValidator.MinNameLength, InterfaceValidator.MaxNameLength)); + } +} \ No newline at end of file diff --git a/linguard/Cli.Test/AddPeerCommandShould.cs b/linguard/Cli.Test/AddPeerCommandShould.cs new file mode 100644 index 0000000..801615b --- /dev/null +++ b/linguard/Cli.Test/AddPeerCommandShould.cs @@ -0,0 +1,156 @@ +using System.Linq; +using System.Threading.Tasks; +using Bogus; +using Castle.Core.Internal; +using FluentAssertions; +using Linguard.Cli.Commands; +using Linguard.Core.Managers; +using Linguard.Core.Models.Wireguard; +using Linguard.Core.Services; +using Moq; +using Typin.Attributes; +using Xunit; + +namespace Cli.Test; + +public class AddPeerCommandShould { + + private static readonly Mock WireguardServiceMock = new(); + + [Fact] + public async Task CreateRandomPeer() { + var command = typeof(AddClientCommand); + var commandName = command.GetAttribute().Name!; + var app = Utils.BuildTestApp(command); + var iface = GenerateInterface(app.ConfigurationManager); + app.ConfigurationManager.Configuration.Wireguard.Interfaces.Add(iface); + + var commandLine = $"{commandName} --interface {iface.Name}"; + + await app.App.RunAsync(commandLine); + var errors = app.Error.GetString(); + errors.Should().BeEmpty(); + iface.Clients.Should().NotBeEmpty(); + } + + [Fact] + public async Task CreatePeerWithName() { + var command = typeof(AddClientCommand); + var commandName = command.GetAttribute().Name!; + var app = Utils.BuildTestApp(command); + var iface = GenerateInterface(app.ConfigurationManager); + app.ConfigurationManager.Configuration.Wireguard.Interfaces.Add(iface); + + const string name = "bob"; + var commandLine = $"{commandName} --interface {iface.Name} --name {name}"; + + await app.App.RunAsync(commandLine); + var errors = app.Error.GetString(); + errors.Should().BeEmpty(); + iface.Clients.Should().NotBeEmpty(); + iface.Clients.First().Name.Should().Be(name); + } + + [Fact] + public async Task CreatePeerWithEndpoint() { + var command = typeof(AddClientCommand); + var commandName = command.GetAttribute().Name!; + var app = Utils.BuildTestApp(command); + var iface = GenerateInterface(app.ConfigurationManager); + app.ConfigurationManager.Configuration.Wireguard.Interfaces.Add(iface); + + const string endpoint = "vpn.example2.com"; + var commandLine = $"{commandName} --interface {iface.Name} --endpoint {endpoint}"; + + await app.App.RunAsync(commandLine); + var errors = app.Error.GetString(); + errors.Should().BeEmpty(); + iface.Clients.Should().NotBeEmpty(); + iface.Clients.First().Endpoint.ToString().Should().Be(endpoint); + } + + [Fact] + public async Task CreatePeerWithIPs() { + var command = typeof(AddClientCommand); + var commandName = command.GetAttribute().Name!; + var app = Utils.BuildTestApp(command); + var iface = GenerateInterface(app.ConfigurationManager); + app.ConfigurationManager.Configuration.Wireguard.Interfaces.Add(iface); + + var faker = new Faker(); + var ipv4 = $"{faker.Internet.Ip()}/24"; + var ipv6 = $"{faker.Internet.Ipv6()}/64"; + var commandLine = $"{commandName} --interface {iface.Name} --ipv4 {ipv4} --ipv6 {ipv6}"; + + await app.App.RunAsync(commandLine); + var errors = app.Error.GetString(); + errors.Should().BeEmpty(); + iface.Clients.Should().NotBeEmpty(); + var peer = iface.Clients.First(); + peer.IPv6Address!.ToString().Should().Be(ipv6); + peer.IPv4Address!.ToString().Should().Be(ipv4); + } + + [Fact] + public async Task CreatePeerWithDns() { + var command = typeof(AddClientCommand); + var commandName = command.GetAttribute().Name!; + var app = Utils.BuildTestApp(command); + var iface = GenerateInterface(app.ConfigurationManager); + app.ConfigurationManager.Configuration.Wireguard.Interfaces.Add(iface); + + var dns = "my.dns.com"; + var commandLine = $"{commandName} --interface {iface.Name} --dns1 {dns}"; + + await app.App.RunAsync(commandLine); + var errors = app.Error.GetString(); + errors.Should().BeEmpty(); + iface.Clients.Should().NotBeEmpty(); + var peer = iface.Clients.First(); + peer.PrimaryDns.ToString().Should().Be(dns); + peer.SecondaryDns.Should().NotBeNull(); + } + + [Fact] + public async Task CreatePeerWithTwoDns() { + var command = typeof(AddClientCommand); + var commandName = command.GetAttribute().Name!; + var app = Utils.BuildTestApp(command); + var iface = GenerateInterface(app.ConfigurationManager); + app.ConfigurationManager.Configuration.Wireguard.Interfaces.Add(iface); + + var dns1 = "my.dns.com"; + var dns2 = "8.8.8.8"; + var commandLine = $"{commandName} --interface {iface.Name} --dns1 {dns1} --dns2 {dns2}"; + + await app.App.RunAsync(commandLine); + var errors = app.Error.GetString(); + errors.Should().BeEmpty(); + iface.Clients.Should().NotBeEmpty(); + var peer = iface.Clients.First(); + peer.PrimaryDns.ToString().Should().Be(dns1); + peer.SecondaryDns!.ToString().Should().Be(dns2); + } + + [Fact] + public async Task CreatePeerWithAllowedIPs() { + var command = typeof(AddClientCommand); + var commandName = command.GetAttribute().Name!; + var app = Utils.BuildTestApp(command); + var iface = GenerateInterface(app.ConfigurationManager); + app.ConfigurationManager.Configuration.Wireguard.Interfaces.Add(iface); + + const string allowedIPs = "10.7.1.2/24 10.7.1.3/24 10.8.1.3/24"; + var commandLine = $"{commandName} --interface {iface.Name} --allowedIps {allowedIPs}"; + + await app.App.RunAsync(commandLine); + var errors = app.Error.GetString(); + errors.Should().BeEmpty(); + iface.Clients.Should().NotBeEmpty(); + string.Join(" ", iface.Clients.First().AllowedIPs).Should().Be(allowedIPs); + } + + private Interface GenerateInterface(IConfigurationManager configuration) { + return new DefaultInterfaceGenerator(configuration, WireguardServiceMock.Object).Generate(); + } +} \ No newline at end of file diff --git a/linguard/Cli.Test/Cli.Test.csproj b/linguard/Cli.Test/Cli.Test.csproj new file mode 100644 index 0000000..86b2d4b --- /dev/null +++ b/linguard/Cli.Test/Cli.Test.csproj @@ -0,0 +1,30 @@ + + + + net6.0 + enable + + false + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + + + + + + + diff --git a/linguard/Cli.Test/ListInterfacesCommandShould.cs b/linguard/Cli.Test/ListInterfacesCommandShould.cs new file mode 100644 index 0000000..59cfbb9 --- /dev/null +++ b/linguard/Cli.Test/ListInterfacesCommandShould.cs @@ -0,0 +1,40 @@ + +using System.Threading.Tasks; +using Castle.Core.Internal; +using FluentAssertions; +using Linguard.Cli.Commands; +using Linguard.Core.Managers; +using Linguard.Core.Models.Wireguard; +using Linguard.Core.Services; +using Moq; +using Typin.Attributes; +using Xunit; + +namespace Cli.Test; + +public class ListInterfacesCommandShould { + + private static readonly Mock WireguardServiceMock = new(); + + [Fact] + public async Task ListOneInterface() { + var command = typeof(ListInterfacesCommand); + var commandName = command.GetAttribute().Name!; + var app = Utils.BuildTestApp(command); + var iface = GenerateInterface(app.ConfigurationManager); + app.ConfigurationManager.Configuration.Wireguard.Interfaces.Add(iface); + + var commandLine = $"{commandName}"; + + await app.App.RunAsync(commandLine); + var errors = app.Error.GetString(); + errors.Should().BeEmpty(); + + var output = app.Output.GetString().Trim(); + output.Should().Be(iface.Brief()); + } + + private Interface GenerateInterface(IConfigurationManager configuration) { + return new DefaultInterfaceGenerator(configuration, WireguardServiceMock.Object).Generate(); + } +} \ No newline at end of file diff --git a/linguard/Cli.Test/ListPeersCommandShould.cs b/linguard/Cli.Test/ListPeersCommandShould.cs new file mode 100644 index 0000000..f9da031 --- /dev/null +++ b/linguard/Cli.Test/ListPeersCommandShould.cs @@ -0,0 +1,70 @@ + +using System.Threading.Tasks; +using Castle.Core.Internal; +using FluentAssertions; +using Linguard.Cli.Commands; +using Linguard.Core.Managers; +using Linguard.Core.Models.Wireguard; +using Linguard.Core.Services; +using Moq; +using Typin.Attributes; +using Xunit; + +namespace Cli.Test; + +public class ListPeersCommandShould { + + private static readonly Mock WireguardServiceMock = new(); + + [Fact] + public async Task ListOnePeer() { + var command = typeof(ListClientsCommand); + var commandName = command.GetAttribute().Name!; + var app = Utils.BuildTestApp(command); + var iface = GenerateInterface(app.ConfigurationManager); + app.ConfigurationManager.Configuration.Wireguard.Interfaces.Add(iface); + var peer = GeneratePeer(iface); + iface.Clients.Add(peer); + + var commandLine = $"{commandName}"; + + await app.App.RunAsync(commandLine); + var errors = app.Error.GetString(); + errors.Should().BeEmpty(); + + var output = app.Output.GetString().Trim(); + output.Should().Be(peer.Brief()); + } + + [Fact] + public async Task ListPeersForSpecificInterface() { + var command = typeof(ListClientsCommand); + var commandName = command.GetAttribute().Name!; + var app = Utils.BuildTestApp(command); + + var iface1 = GenerateInterface(app.ConfigurationManager); + app.ConfigurationManager.Configuration.Wireguard.Interfaces.Add(iface1); + var iface2 = GenerateInterface(app.ConfigurationManager); + app.ConfigurationManager.Configuration.Wireguard.Interfaces.Add(iface2); + var peer = GeneratePeer(iface1); + iface1.Clients.Add(peer); + iface2.Clients.Add(GeneratePeer(iface2)); + + var commandLine = $"{commandName} --interface {iface1.Name}"; + + await app.App.RunAsync(commandLine); + var errors = app.Error.GetString(); + errors.Should().BeEmpty(); + + var output = app.Output.GetString().Trim(); + output.Should().Be(peer.Brief()); + } + + private Interface GenerateInterface(IConfigurationManager configuration) { + return new DefaultInterfaceGenerator(configuration, WireguardServiceMock.Object).Generate(); + } + + private Client GeneratePeer(Interface iface) { + return new DefaultClientGenerator(WireguardServiceMock.Object).Generate(iface); + } +} \ No newline at end of file diff --git a/linguard/Cli.Test/ShowInterfaceCommandShould.cs b/linguard/Cli.Test/ShowInterfaceCommandShould.cs new file mode 100644 index 0000000..33e29f3 --- /dev/null +++ b/linguard/Cli.Test/ShowInterfaceCommandShould.cs @@ -0,0 +1,40 @@ + +using System.Threading.Tasks; +using Castle.Core.Internal; +using FluentAssertions; +using Linguard.Cli.Commands; +using Linguard.Core.Managers; +using Linguard.Core.Models.Wireguard; +using Linguard.Core.Services; +using Moq; +using Typin.Attributes; +using Xunit; + +namespace Cli.Test; + +public class ShowInterfaceCommandShould { + + private static readonly Mock WireguardServiceMock = new(); + + [Fact] + public async Task ShowInterface() { + var command = typeof(ShowInterfacesCommand); + var commandName = command.GetAttribute().Name!; + var app = Utils.BuildTestApp(command); + var iface = GenerateInterface(app.ConfigurationManager); + app.ConfigurationManager.Configuration.Wireguard.Interfaces.Add(iface); + + var commandLine = $"{commandName} --name {iface.Name}"; + + await app.App.RunAsync(commandLine); + var errors = app.Error.GetString(); + errors.Should().BeEmpty(); + + var output = app.Output.GetString().Trim(); + output.Should().Be(iface.ToString().Trim()); + } + + private Interface GenerateInterface(IConfigurationManager configuration) { + return new DefaultInterfaceGenerator(configuration, WireguardServiceMock.Object).Generate(); + } +} \ No newline at end of file diff --git a/linguard/Cli.Test/Utils.cs b/linguard/Cli.Test/Utils.cs new file mode 100644 index 0000000..f9fa83d --- /dev/null +++ b/linguard/Cli.Test/Utils.cs @@ -0,0 +1,71 @@ +using System; +using System.Collections.Generic; +using Core.Test.Mocks; +using FluentValidation; +using Linguard.Core.Configuration; +using Linguard.Core.Managers; +using Linguard.Core.Models.Wireguard; +using Linguard.Core.Models.Wireguard.Validators; +using Linguard.Core.Services; +using Linguard.Log; +using Microsoft.Extensions.DependencyInjection; +using Moq; +using Typin; +using Typin.Console; +using Typin.Utilities; + +namespace Cli.Test; + +public struct TestApp { + public CliApplication App; + public VirtualConsole Console; + public MemoryStreamWriter Output; + public MemoryStreamWriter Error; + public IConfigurationManager ConfigurationManager; +} + +public static class Utils { + public static TestApp BuildTestApp(params Type[] commands) { + var (console, stdout, stderr) = VirtualConsole.CreateBuffered(); + var config = new DefaultConfiguration().Object; + var configurationManager = new DefaultConfigurationManager().Object; + configurationManager.Configuration = config; + var app = new CliApplicationBuilder() + .AddCommands(commands) + .UseConsole(console) + .ConfigureServices(services => { + services.AddSingleton(config); + services.AddSingleton(configurationManager); + services.AddSingleton(new Mock().Object); + services.AddSingleton(new Mock().Object); + services.AddSingleton(new Mock().Object); + services.AddTransient, InterfaceValidator>(); + services.AddTransient(); + services.AddTransient(); + services.AddTransient, ClientValidator>(); + }) + .Build(); + return new TestApp() { + App = app, + Console = console, + Error = stderr, + Output = stdout, + ConfigurationManager = configurationManager + }; + } + + public static TestApp BuildTestApp(IEnumerable commands, Action servicesConfiguration) { + var (console, stdout, stderr) = VirtualConsole.CreateBuffered(); + var app = new CliApplicationBuilder() + .AddCommands(commands) + .UseConsole(console) + .ConfigureServices(servicesConfiguration) + .Build(); + return new TestApp() { + App = app, + Console = console, + Error = stderr, + Output = stdout + }; + } +} \ No newline at end of file diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Bogus.dll b/linguard/Cli.Test/bin/Debug/net6.0/Bogus.dll new file mode 100644 index 0000000..84e6073 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Bogus.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Castle.Core.dll b/linguard/Cli.Test/bin/Debug/net6.0/Castle.Core.dll new file mode 100644 index 0000000..527172e Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Castle.Core.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Cli.Test.deps.json b/linguard/Cli.Test/bin/Debug/net6.0/Cli.Test.deps.json new file mode 100644 index 0000000..d2ea86d --- /dev/null +++ b/linguard/Cli.Test/bin/Debug/net6.0/Cli.Test.deps.json @@ -0,0 +1,4469 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "Cli.Test/1.0.0": { + "dependencies": { + "Core.Test": "1.0.0", + "FluentAssertions": "6.4.0", + "Linguard.Cli": "2.0.0", + "Microsoft.NET.Test.Sdk": "16.11.0", + "Moq": "4.16.1", + "coverlet.msbuild": "3.1.2", + "xunit": "2.4.1", + "xunit.runner.visualstudio": "2.4.3" + }, + "runtime": { + "Cli.Test.dll": {} + } + }, + "Bogus/34.0.1": { + "runtime": { + "lib/net6.0/Bogus.dll": { + "assemblyVersion": "34.0.1.0", + "fileVersion": "34.0.1.0" + } + } + }, + "ByteSize/2.1.1": { + "runtime": { + "lib/net5.0/ByteSize.dll": { + "assemblyVersion": "2.1.1.0", + "fileVersion": "2.1.1.0" + } + } + }, + "Castle.Core/4.4.0": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Diagnostics.TraceSource": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard1.5/Castle.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.4.0.0" + } + } + }, + "CommandLineParser/2.8.0": { + "runtime": { + "lib/netstandard2.0/CommandLine.dll": { + "assemblyVersion": "2.8.0.0", + "fileVersion": "2.8.0.0" + } + } + }, + "coverlet.msbuild/3.1.2": {}, + "FluentAssertions/6.4.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/FluentAssertions.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "FluentValidation/10.3.6": { + "runtime": { + "lib/net6.0/FluentValidation.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "10.3.6.0" + } + } + }, + "IPNetwork2/2.5.386": { + "runtime": { + "lib/net5.0/System.Net.IPNetwork.dll": { + "assemblyVersion": "2.5.386.0", + "fileVersion": "2.5.386.0" + } + } + }, + "Markdig.Signed/0.22.0": { + "runtime": { + "lib/netcoreapp3.1/Markdig.Signed.dll": { + "assemblyVersion": "0.22.0.0", + "fileVersion": "0.22.0.0" + } + } + }, + "Microsoft.ApplicationInsights/2.18.0": { + "dependencies": { + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": { + "assemblyVersion": "2.18.0.315", + "fileVersion": "2.18.0.315" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/5.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": {}, + "Microsoft.CodeAnalysis.Common/4.0.1": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.2", + "System.Collections.Immutable": "5.0.0", + "System.Memory": "4.5.4", + "System.Reflection.Metadata": "5.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encoding.CodePages": "6.0.0", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.121.55815" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.0.1": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "4.0.1" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.121.55815" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeCoverage/16.11.0": { + "runtime": { + "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "16.1000.21.27002" + } + } + }, + "Microsoft.CSharp/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Logging/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Logging.Debug/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.ObjectPool/5.0.10": { + "runtime": { + "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.1021.41022" + } + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Management.Infrastructure/2.0.0": { + "dependencies": { + "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0", + "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0" + } + }, + "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { + "runtimeTargets": { + "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win-arm", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win-arm", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win-arm64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win-arm64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win10-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win10-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win10-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win10-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win7-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win7-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win7-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win7-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win8-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win8-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win8-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win8-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win81-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win81-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win81-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win81-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm/native/mi.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm/native/miutils.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm64/native/mi.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm64/native/miutils.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win10-x64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x64/native/mi.dll": { + "rid": "win10-x64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x64/native/miutils.dll": { + "rid": "win10-x64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win10-x86", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x86/native/mi.dll": { + "rid": "win10-x86", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x86/native/miutils.dll": { + "rid": "win10-x86", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win7-x64", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win7-x64/native/mi.dll": { + "rid": "win7-x64", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win7-x64/native/miutils.dll": { + "rid": "win7-x64", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win7-x86", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win7-x86/native/mi.dll": { + "rid": "win7-x86", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win7-x86/native/miutils.dll": { + "rid": "win7-x86", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win8-x64/native/mi.dll": { + "rid": "win8-x64", + "assetType": "native", + "fileVersion": "6.2.9200.22812" + }, + "runtimes/win8-x64/native/miutils.dll": { + "rid": "win8-x64", + "assetType": "native", + "fileVersion": "6.2.9200.22812" + }, + "runtimes/win8-x86/native/mi.dll": { + "rid": "win8-x86", + "assetType": "native", + "fileVersion": "6.2.9200.22812" + }, + "runtimes/win8-x86/native/miutils.dll": { + "rid": "win8-x86", + "assetType": "native", + "fileVersion": "6.2.9200.22812" + }, + "runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win81-x64", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + }, + "runtimes/win81-x64/native/mi.dll": { + "rid": "win81-x64", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + }, + "runtimes/win81-x64/native/miutils.dll": { + "rid": "win81-x64", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + }, + "runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win81-x86", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + }, + "runtimes/win81-x86/native/mi.dll": { + "rid": "win81-x86", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + }, + "runtimes/win81-x86/native/miutils.dll": { + "rid": "win81-x86", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + } + } + }, + "Microsoft.NET.Test.Sdk/16.11.0": { + "dependencies": { + "Microsoft.CodeCoverage": "16.11.0", + "Microsoft.TestPlatform.TestHost": "16.11.0" + } + }, + "Microsoft.NETCore.Platforms/1.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": {}, + "Microsoft.PowerShell.Commands.Diagnostics/7.2.1": { + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.PowerShell.Commands.Management/7.2.1": { + "dependencies": { + "Microsoft.PowerShell.Security": "7.2.1", + "System.ServiceProcess.ServiceController": "6.0.0" + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.PowerShell.Commands.Utility/7.2.1": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "4.0.1", + "Microsoft.PowerShell.MarkdownRender": "7.2.0", + "NJsonSchema": "10.5.2", + "System.Drawing.Common": "6.0.0", + "System.Management.Automation": "7.2.1", + "System.Threading.AccessControl": "6.0.0" + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.PowerShell.ConsoleHost/7.2.1": { + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { + "dependencies": { + "System.Diagnostics.EventLog": "6.0.0" + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.PowerShell.MarkdownRender/7.2.0": { + "dependencies": { + "Markdig.Signed": "0.22.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll": { + "assemblyVersion": "7.2.0.0", + "fileVersion": "7.2.0.0" + } + } + }, + "Microsoft.PowerShell.Native/7.2.0": { + "runtimeTargets": { + "runtimes/linux-arm/native/libpsl-native.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libpsl-native.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libpsl-native.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libmi.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libpsl-native.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libpsrpclient.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx/native/libmi.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx/native/libpsl-native.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx/native/libpsrpclient.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-arm/native/pwrshplugin.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-arm64/native/pwrshplugin.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-x64/native/pwrshplugin.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-x86/native/pwrshplugin.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + } + } + }, + "Microsoft.PowerShell.SDK/7.2.1": { + "dependencies": { + "Microsoft.Management.Infrastructure.CimCmdlets": "7.2.1", + "Microsoft.NETCore.Windows.ApiSets": "1.0.1", + "Microsoft.PowerShell.Commands.Diagnostics": "7.2.1", + "Microsoft.PowerShell.Commands.Management": "7.2.1", + "Microsoft.PowerShell.Commands.Utility": "7.2.1", + "Microsoft.PowerShell.ConsoleHost": "7.2.1", + "Microsoft.PowerShell.Security": "7.2.1", + "Microsoft.WSMan.Management": "7.2.1", + "Microsoft.Windows.Compatibility": "6.0.0", + "System.Data.SqlClient": "4.8.3", + "System.IO.Packaging": "6.0.0", + "System.Management.Automation": "7.2.1", + "System.Net.Http.WinHttpHandler": "6.0.0", + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Duplex": "4.9.0", + "System.ServiceModel.Http": "4.9.0", + "System.ServiceModel.NetTcp": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0", + "System.ServiceModel.Security": "4.9.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.PowerShell.Security/7.2.1": { + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.TestPlatform.ObjectModel/16.11.0": { + "dependencies": { + "NuGet.Frameworks": "5.0.0", + "System.Reflection.Metadata": "5.0.0" + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + } + }, + "resources": { + "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.TestPlatform.TestHost/16.11.0": { + "dependencies": { + "Microsoft.TestPlatform.ObjectModel": "16.11.0", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netcoreapp2.1/testhost.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + } + }, + "resources": { + "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "Microsoft.Win32.Registry.AccessControl/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Windows.Compatibility/6.0.0": { + "dependencies": { + "Microsoft.Win32.Registry.AccessControl": "6.0.0", + "Microsoft.Win32.SystemEvents": "6.0.0", + "System.CodeDom": "6.0.0", + "System.ComponentModel.Composition": "6.0.0", + "System.ComponentModel.Composition.Registration": "6.0.0", + "System.Configuration.ConfigurationManager": "6.0.0", + "System.Data.Odbc": "6.0.0", + "System.Data.OleDb": "6.0.0", + "System.Data.SqlClient": "4.8.3", + "System.Diagnostics.EventLog": "6.0.0", + "System.Diagnostics.PerformanceCounter": "6.0.0", + "System.DirectoryServices": "6.0.0", + "System.DirectoryServices.AccountManagement": "6.0.0", + "System.DirectoryServices.Protocols": "6.0.0", + "System.Drawing.Common": "6.0.0", + "System.IO.Packaging": "6.0.0", + "System.IO.Ports": "6.0.0", + "System.Management": "6.0.0", + "System.Reflection.Context": "6.0.0", + "System.Runtime.Caching": "6.0.0", + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.0", + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Cryptography.Xml": "6.0.0", + "System.Security.Permissions": "6.0.0", + "System.ServiceModel.Duplex": "4.9.0", + "System.ServiceModel.Http": "4.9.0", + "System.ServiceModel.NetTcp": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0", + "System.ServiceModel.Security": "4.9.0", + "System.ServiceModel.Syndication": "6.0.0", + "System.ServiceProcess.ServiceController": "6.0.0", + "System.Speech": "6.0.0", + "System.Text.Encoding.CodePages": "6.0.0", + "System.Threading.AccessControl": "6.0.0", + "System.Web.Services.Description": "4.9.0" + } + }, + "Microsoft.WSMan.Management/7.2.1": { + "dependencies": { + "Microsoft.WSMan.Runtime": "7.2.1", + "System.Management.Automation": "7.2.1", + "System.ServiceProcess.ServiceController": "6.0.0" + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.WSMan.Runtime/7.2.1": { + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Moq/4.16.1": { + "dependencies": { + "Castle.Core": "4.4.0", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/netstandard2.1/Moq.dll": { + "assemblyVersion": "4.16.0.0", + "fileVersion": "4.16.1.0" + } + } + }, + "Namotion.Reflection/2.0.3": { + "dependencies": { + "Microsoft.CSharp": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/Namotion.Reflection.dll": { + "assemblyVersion": "2.0.3.0", + "fileVersion": "2.0.3.0" + } + } + }, + "NETStandard.Library/1.6.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + } + }, + "NJsonSchema/10.5.2": { + "dependencies": { + "Namotion.Reflection": "2.0.3", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netstandard2.0/NJsonSchema.dll": { + "assemblyVersion": "10.5.2.0", + "fileVersion": "10.5.2.0" + } + } + }, + "NLog/4.7.13": { + "runtime": { + "lib/netstandard2.0/NLog.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.7.13.493" + } + } + }, + "NuGet.Frameworks/5.0.0": { + "runtime": { + "lib/netstandard2.0/NuGet.Frameworks.dll": { + "assemblyVersion": "5.0.0.6", + "fileVersion": "5.0.0.5923" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { + "runtimeTargets": { + "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": { + "runtimeTargets": { + "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": { + "runtimeTargets": { + "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.IO.Ports/6.0.0": { + "dependencies": { + "runtime.linux-arm.runtime.native.System.IO.Ports": "6.0.0", + "runtime.linux-arm64.runtime.native.System.IO.Ports": "6.0.0", + "runtime.linux-x64.runtime.native.System.IO.Ports": "6.0.0", + "runtime.osx-arm64.runtime.native.System.IO.Ports": "6.0.0", + "runtime.osx-x64.runtime.native.System.IO.Ports": "6.0.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": { + "runtimeTargets": { + "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib": { + "rid": "osx-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { + "runtimeTargets": { + "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "System.AppContext/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Buffers/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.CodeDom/6.0.0": { + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Collections.Immutable/5.0.0": {}, + "System.Collections.NonGeneric/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections.Specialized/4.3.0": { + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.ComponentModel/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.Composition/6.0.0": { + "runtime": { + "lib/net6.0/System.ComponentModel.Composition.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.ComponentModel.Composition.Registration/6.0.0": { + "dependencies": { + "System.ComponentModel.Composition": "6.0.0", + "System.Reflection.Context": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.ComponentModel.Composition.Registration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Configuration.ConfigurationManager/6.0.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Console/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Data.Odbc/6.0.0": { + "dependencies": { + "System.Text.Encoding.CodePages": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Data.Odbc.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll": { + "rid": "freebsd", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/illumos/lib/net6.0/System.Data.Odbc.dll": { + "rid": "illumos", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/ios/lib/net6.0/System.Data.Odbc.dll": { + "rid": "ios", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/linux/lib/net6.0/System.Data.Odbc.dll": { + "rid": "linux", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/osx/lib/net6.0/System.Data.Odbc.dll": { + "rid": "osx", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/solaris/lib/net6.0/System.Data.Odbc.dll": { + "rid": "solaris", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/tvos/lib/net6.0/System.Data.Odbc.dll": { + "rid": "tvos", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.Data.Odbc.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Data.OleDb/6.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0", + "System.Diagnostics.PerformanceCounter": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Data.OleDb.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Data.OleDb.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Data.SqlClient/4.8.3": { + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Principal.Windows": "5.0.0", + "runtime.native.System.Data.SqlClient.sni": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assemblyVersion": "4.6.1.3", + "fileVersion": "4.700.21.41603" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.6.1.3", + "fileVersion": "4.700.21.41603" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.6.1.3", + "fileVersion": "4.700.21.41603" + } + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Diagnostics.EventLog/6.0.0": { + "runtime": { + "lib/net6.0/System.Diagnostics.EventLog.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "0.0.0.0" + }, + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Diagnostics.PerformanceCounter/6.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Diagnostics.Tools/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.TraceSource/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.DirectoryServices/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.DirectoryServices.AccountManagement/6.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0", + "System.DirectoryServices": "6.0.0", + "System.DirectoryServices.Protocols": "6.0.0", + "System.Security.AccessControl": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.DirectoryServices.AccountManagement.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.DirectoryServices.Protocols/6.0.0": { + "runtime": { + "lib/net6.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "rid": "linux", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "rid": "osx", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Drawing.Common/6.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Dynamic.Runtime/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Formats.Asn1/6.0.0": {}, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.IO.Packaging/6.0.0": { + "runtime": { + "lib/net6.0/System.IO.Packaging.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.IO.Ports/6.0.0": { + "dependencies": { + "runtime.native.System.IO.Ports": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.IO.Ports.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.IO.Ports.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.IO.Ports.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Management/6.0.0": { + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Management.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Management.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Management.Automation/7.2.1": { + "dependencies": { + "Microsoft.ApplicationInsights": "2.18.0", + "Microsoft.Management.Infrastructure": "2.0.0", + "Microsoft.PowerShell.CoreCLR.Eventing": "7.2.1", + "Microsoft.PowerShell.Native": "7.2.0", + "Microsoft.Win32.Registry.AccessControl": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "System.Configuration.ConfigurationManager": "6.0.0", + "System.DirectoryServices": "6.0.0", + "System.Management": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.0", + "System.Security.Permissions": "6.0.0", + "System.Text.Encoding.CodePages": "6.0.0" + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Management.Automation.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + }, + "runtimes/win/lib/net6.0/System.Management.Automation.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "System.Memory/4.5.4": {}, + "System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Net.Http.WinHttpHandler/6.0.0": { + "runtime": { + "lib/net6.0/System.Net.Http.WinHttpHandler.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Net.Sockets/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Numerics.Vectors/4.5.0": {}, + "System.ObjectModel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Private.ServiceModel/4.9.0": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "5.0.0", + "Microsoft.Extensions.ObjectPool": "5.0.10", + "System.Numerics.Vectors": "4.5.0", + "System.Reflection.DispatchProxy": "4.7.1", + "System.Security.Cryptography.Xml": "6.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Private.ServiceModel.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + }, + "resources": { + "lib/netstandard2.0/cs/System.Private.ServiceModel.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/System.Private.ServiceModel.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/System.Private.ServiceModel.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/System.Private.ServiceModel.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/System.Private.ServiceModel.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/System.Private.ServiceModel.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/System.Private.ServiceModel.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/System.Private.ServiceModel.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/System.Private.ServiceModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/System.Private.ServiceModel.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/System.Private.ServiceModel.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/System.Private.ServiceModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/System.Private.ServiceModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Context/6.0.0": { + "runtime": { + "lib/net6.0/System.Reflection.Context.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Reflection.DispatchProxy/4.7.1": {}, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Metadata/5.0.0": {}, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/6.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Security.AccessControl/6.0.0": {}, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Pkcs/6.0.0": { + "dependencies": { + "System.Formats.Asn1": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Xml/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Permissions/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Principal.Windows/5.0.0": {}, + "System.ServiceModel.Duplex/4.9.0": { + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Duplex.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + } + }, + "System.ServiceModel.Http/4.9.0": { + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Http.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + } + }, + "System.ServiceModel.NetTcp/4.9.0": { + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.NetTcp.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + } + }, + "System.ServiceModel.Primitives/4.9.0": { + "dependencies": { + "System.Private.ServiceModel": "4.9.0" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Primitives.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + }, + "lib/net6.0/System.ServiceModel.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.900.21.52002" + } + } + }, + "System.ServiceModel.Security/4.9.0": { + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Security.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + } + }, + "System.ServiceModel.Syndication/6.0.0": { + "runtime": { + "lib/net6.0/System.ServiceModel.Syndication.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.ServiceProcess.ServiceController/6.0.0": { + "dependencies": { + "System.Diagnostics.EventLog": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.ServiceProcess.ServiceController.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Speech/6.0.0": { + "runtime": { + "lib/net6.0/System.Speech.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Speech.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.AccessControl/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Threading.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Threading.AccessControl.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.5.4": {}, + "System.Threading.Timer/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Web.Services.Description/4.9.0": { + "runtime": { + "lib/netstandard2.0/System.Web.Services.Description.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + }, + "resources": { + "lib/netstandard2.0/cs/System.Web.Services.Description.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/System.Web.Services.Description.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/System.Web.Services.Description.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/System.Web.Services.Description.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/System.Web.Services.Description.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/System.Web.Services.Description.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/System.Web.Services.Description.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/System.Web.Services.Description.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/System.Web.Services.Description.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/System.Web.Services.Description.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/System.Web.Services.Description.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/System.Web.Services.Description.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/System.Web.Services.Description.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Windows.Extensions/6.0.0": { + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.5.4" + } + }, + "System.Xml.XDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "System.Xml.XmlDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "Typin/3.1.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.Logging.Debug": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Typin.Core": "3.1.0" + }, + "runtime": { + "lib/net6.0/Typin.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "Typin.Core/3.1.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0" + }, + "runtime": { + "lib/net6.0/Typin.Core.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "xunit/2.4.1": { + "dependencies": { + "xunit.analyzers": "0.10.0", + "xunit.assert": "2.4.1", + "xunit.core": "2.4.1" + } + }, + "xunit.abstractions/2.0.3": { + "runtime": { + "lib/netstandard2.0/xunit.abstractions.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "xunit.analyzers/0.10.0": {}, + "xunit.assert/2.4.1": { + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.1/xunit.assert.dll": { + "assemblyVersion": "2.4.1.0", + "fileVersion": "2.4.1.0" + } + } + }, + "xunit.core/2.4.1": { + "dependencies": { + "xunit.extensibility.core": "2.4.1", + "xunit.extensibility.execution": "2.4.1" + } + }, + "xunit.extensibility.core/2.4.1": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": { + "assemblyVersion": "2.4.1.0", + "fileVersion": "2.4.1.0" + } + } + }, + "xunit.extensibility.execution/2.4.1": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "2.4.1" + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": { + "assemblyVersion": "2.4.1.0", + "fileVersion": "2.4.1.0" + } + } + }, + "xunit.runner.visualstudio/2.4.3": {}, + "YamlDotNet/11.2.1": { + "runtime": { + "lib/netstandard2.1/YamlDotNet.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.2.1.0" + } + } + }, + "Core.Test/1.0.0": { + "dependencies": { + "FluentAssertions": "6.4.0", + "FluentValidation": "10.3.6", + "IPNetwork2": "2.5.386", + "Linguard.Core": "2.0.0", + "Microsoft.NET.Test.Sdk": "16.11.0", + "Moq": "4.16.1", + "xunit": "2.4.1" + }, + "runtime": { + "Core.Test.dll": {} + } + }, + "Linguard.Cli/2.0.0": { + "dependencies": { + "CommandLineParser": "2.8.0", + "FluentValidation": "10.3.6", + "Linguard.Core": "2.0.0", + "Typin": "3.1.0" + }, + "runtime": { + "Linguard.Cli.dll": {} + } + }, + "Linguard.Core/2.0.0": { + "dependencies": { + "Bogus": "34.0.1", + "ByteSize": "2.1.1", + "FluentValidation": "10.3.6", + "IPNetwork2": "2.5.386", + "Linguard.Log": "2.0.0", + "Microsoft.PowerShell.SDK": "7.2.1", + "System.Management.Automation": "7.2.1", + "YamlDotNet": "11.2.1" + }, + "runtime": { + "Linguard.Core.dll": {} + } + }, + "Linguard.Log/2.0.0": { + "dependencies": { + "NLog": "4.7.13" + }, + "runtime": { + "Linguard.Log.dll": {} + } + } + } + }, + "libraries": { + "Cli.Test/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Bogus/34.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-49iq7QrD0wb7V4/FcK8p3dWdJxNUbojaqK9L6KRvdikIuRjt38EsNp7QXICcYdbYw01K8BHUdxlnTNn/YX3qDA==", + "path": "bogus/34.0.1", + "hashPath": "bogus.34.0.1.nupkg.sha512" + }, + "ByteSize/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-D+Y3NpbHrW21vZwwegeWf/8iAg2Mr0s7n1su8Ysho+O9dctJ5/EkWUi19QVxc6+nZl080gGTXBP/Nz0twSI3dA==", + "path": "bytesize/2.1.1", + "hashPath": "bytesize.2.1.1.nupkg.sha512" + }, + "Castle.Core/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", + "path": "castle.core/4.4.0", + "hashPath": "castle.core.4.4.0.nupkg.sha512" + }, + "CommandLineParser/2.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eco2HlKQBY4Joz9odHigzGpVzv6pjsXnY5lziioMveQxr+i2Z7xYcIOMeZTgYiqnMtMAbXMXsVhrNfWO5vJS8Q==", + "path": "commandlineparser/2.8.0", + "hashPath": "commandlineparser.2.8.0.nupkg.sha512" + }, + "coverlet.msbuild/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QhM0fnDtmIMImY7oxyQ/kh1VYtRxPyRVeLwRUGuUvI6Xp83pSYG9gerK8WgJj4TzUl7ISziADUGtIWKhtlbkbQ==", + "path": "coverlet.msbuild/3.1.2", + "hashPath": "coverlet.msbuild.3.1.2.nupkg.sha512" + }, + "FluentAssertions/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KOJE1UD7ndxoZAdmOraiUFLdcdGTArGQW8WYN+vwrC3mdt2G/B7gmsMOozgXKiNSh3fpD/Xp/0mhonRh8vrZKw==", + "path": "fluentassertions/6.4.0", + "hashPath": "fluentassertions.6.4.0.nupkg.sha512" + }, + "FluentValidation/10.3.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iMd370ZDx6ydm8t7bIFdRbSKX0e42lpvCtifUSbTSXOk5iKjmgl7HU0PXBhIWQAyIRi3gCwfMI9luj8H6K+byw==", + "path": "fluentvalidation/10.3.6", + "hashPath": "fluentvalidation.10.3.6.nupkg.sha512" + }, + "IPNetwork2/2.5.386": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6ihnNm82vyJsUYYfR2BRTziY/mQ5UGLsQZuhdSYPeTlbQLhBW/4BC9hBz3h5bFDn8PkVw9dP0cpv9brIBmk4Fw==", + "path": "ipnetwork2/2.5.386", + "hashPath": "ipnetwork2.2.5.386.nupkg.sha512" + }, + "Markdig.Signed/0.22.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7x3FqS3wk8DXyQLuflD47tBs6+ly6k4VtoDCzlDWfy7XHVsBIi7eGYEM15sPAcwSCQjOksNWE8U5r2v0Sk5FzQ==", + "path": "markdig.signed/0.22.0", + "hashPath": "markdig.signed.0.22.0.nupkg.sha512" + }, + "Microsoft.ApplicationInsights/2.18.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-milJB3VOCoC4EWmpE/Co9cOJ7SV6Ji6VqV4Rf5UlqL9QCg+rAX1y+3Y+j1Gu/j4IExYiPq7SEKqkP2BFnEu6Vw==", + "path": "microsoft.applicationinsights/2.18.0", + "hashPath": "microsoft.applicationinsights.2.18.0.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ==", + "path": "microsoft.bcl.asyncinterfaces/5.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==", + "path": "microsoft.codeanalysis.analyzers/3.3.2", + "hashPath": "microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SMREwaVD5SzatlWhh9aahQAtSWdb63NcE//f+bQzgHSECU6xtDtaxk0kwV+asdFfr6HtW38UeO6jvqdfzudg3w==", + "path": "microsoft.codeanalysis.common/4.0.1", + "hashPath": "microsoft.codeanalysis.common.4.0.1.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q9RxxydPpUElj/x1/qykDTUGsRoKbJG8H5XUSeMGmMu54fBiuX1xyanom9caa1oQfh5JIW1BgLxobSaWs4WyHQ==", + "path": "microsoft.codeanalysis.csharp/4.0.1", + "hashPath": "microsoft.codeanalysis.csharp.4.0.1.nupkg.sha512" + }, + "Microsoft.CodeCoverage/16.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wf6lpAeCqP0KFfbDVtfL50lr7jY1gq0+0oSphyksfLOEygMDXqnaxHK5LPFtMEhYSEtgXdNyXNnEddOqQQUdlQ==", + "path": "microsoft.codecoverage/16.11.0", + "hashPath": "microsoft.codecoverage.16.11.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==", + "path": "microsoft.csharp/4.3.0", + "hashPath": "microsoft.csharp.4.3.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", + "path": "microsoft.extensions.dependencyinjection/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", + "path": "microsoft.extensions.logging/6.0.0", + "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", + "path": "microsoft.extensions.logging.abstractions/6.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Debug/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M9g/JixseSZATJE9tcMn9uzoD4+DbSglivFqVx8YkRJ7VVPmnvCEbOZ0AAaxsL1EKyI4cz07DXOOJExxNsUOHw==", + "path": "microsoft.extensions.logging.debug/6.0.0", + "hashPath": "microsoft.extensions.logging.debug.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.ObjectPool/5.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pp9tbGqIhdEXL6Q1yJl+zevAJSq4BsxqhS1GXzBvEsEz9DDNu9GLNzgUy2xyFc4YjB4m4Ff2YEWTnvQvVYdkvQ==", + "path": "microsoft.extensions.objectpool/5.0.10", + "hashPath": "microsoft.extensions.objectpool.5.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "path": "microsoft.extensions.options/6.0.0", + "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.Management.Infrastructure/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IaKZRNBBv3sdrmBWd+aqwHq8cVHk/3WgWFAN/dt40MRY9rbtHiDfTTmaEN0tGTmQqGCGDo/ncntA8MvFMvcsRw==", + "path": "microsoft.management.infrastructure/2.0.0", + "hashPath": "microsoft.management.infrastructure.2.0.0.nupkg.sha512" + }, + "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xe1x237SCyrjpmW1mP1T69/OOc/gtU66P8wVC+b4/u7Hz7fIO6B8P5yVQQfb79rAe1GocruIpQlX4KXTFQf09w==", + "path": "microsoft.management.infrastructure.cimcmdlets/7.2.1", + "hashPath": "microsoft.management.infrastructure.cimcmdlets.7.2.1.nupkg.sha512" + }, + "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-p0lslMX5bdWLxO2P7ao+rjAMOB0LEwPYpzvdCQ2OEYgX2NxFpQ8ILvqPGnYlTAb53rT8gu5DyIol1HboHFYfxQ==", + "path": "microsoft.management.infrastructure.runtime.unix/2.0.0", + "hashPath": "microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512" + }, + "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vjBWQeDOjgernkrOdbEgn7M70SF7hof7ORdKPSlL06Uc15+oYdth5dZju9KsgUoti/cwnkZTiwtDx/lRtay0sA==", + "path": "microsoft.management.infrastructure.runtime.win/2.0.0", + "hashPath": "microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512" + }, + "Microsoft.NET.Test.Sdk/16.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f4mbG1SUSkNWF5p7B3Y8ZxMsvKhxCmpZhdl+w6tMtLSUGE7Izi1syU6TkmKOvB2BV66pdbENConFAISOix4ohQ==", + "path": "microsoft.net.test.sdk/16.11.0", + "hashPath": "microsoft.net.test.sdk.16.11.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "path": "microsoft.netcore.platforms/1.1.0", + "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==", + "path": "microsoft.netcore.windows.apisets/1.0.1", + "hashPath": "microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512" + }, + "Microsoft.PowerShell.Commands.Diagnostics/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Bgw4Egv7cnYUTWAy6koxg+0+/8K6rqUdlAiAxuJby9FeDPZQFfqCHQqlyP9JDa6lvbtmeBx1btFDx6Kh8bxdwQ==", + "path": "microsoft.powershell.commands.diagnostics/7.2.1", + "hashPath": "microsoft.powershell.commands.diagnostics.7.2.1.nupkg.sha512" + }, + "Microsoft.PowerShell.Commands.Management/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YAMrGDF2QTg6Gwz07+m1+BnmcYsPyywfY4J8nOpImfXZLLNhD7zQQP0orNHu9WPPV3/+E33qUyPj5J3ugCMk6A==", + "path": "microsoft.powershell.commands.management/7.2.1", + "hashPath": "microsoft.powershell.commands.management.7.2.1.nupkg.sha512" + }, + "Microsoft.PowerShell.Commands.Utility/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PU15IxUJd7nSacTstlxqJoEeGlI+BH6cUKTppkkIIxEj7EfwC5nD1qTL41xye63BFeZmOFeqAhMI6LtJUd875g==", + "path": "microsoft.powershell.commands.utility/7.2.1", + "hashPath": "microsoft.powershell.commands.utility.7.2.1.nupkg.sha512" + }, + "Microsoft.PowerShell.ConsoleHost/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uAPSsTmkOa7na1+OAPF87yBRwD1Ka/qXThoyrlvP9ihzMWfHM52k3MuKVEGi04VP3Wdi7U4Rzkr3svxDDmkHgA==", + "path": "microsoft.powershell.consolehost/7.2.1", + "hashPath": "microsoft.powershell.consolehost.7.2.1.nupkg.sha512" + }, + "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fUz7InjavqKtslkQN828nWbZLnmmJRL9rn4b3e/XXdx0BcN+65x/pSgMnehwDVGIoqUPUMXN54eDo4HRVcLA5g==", + "path": "microsoft.powershell.coreclr.eventing/7.2.1", + "hashPath": "microsoft.powershell.coreclr.eventing.7.2.1.nupkg.sha512" + }, + "Microsoft.PowerShell.MarkdownRender/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1vqDtdX9RCGsMWCbzp0CIxZW3slWgq8mYHDfUlUKzmkV57fMAn4m0Gy2OtsqopZzrOiVJci+QCWx5FB7BVpMlw==", + "path": "microsoft.powershell.markdownrender/7.2.0", + "hashPath": "microsoft.powershell.markdownrender.7.2.0.nupkg.sha512" + }, + "Microsoft.PowerShell.Native/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TauOu3bYr4DRh9HpH3+fgaL+y2GY47KLsgU6qX1NDLqHshdEaCCjiF0N5sDEgCEhSb38FwWhpdFTIQvoOcYCXQ==", + "path": "microsoft.powershell.native/7.2.0", + "hashPath": "microsoft.powershell.native.7.2.0.nupkg.sha512" + }, + "Microsoft.PowerShell.SDK/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UufIcywqI/22p0oqC5qg+yDoW39U2JAQyaHxy2Tr/h0hdWuFimtmhxp/FDXTxszgOdobtjcrCkSzqcoNmu/vQQ==", + "path": "microsoft.powershell.sdk/7.2.1", + "hashPath": "microsoft.powershell.sdk.7.2.1.nupkg.sha512" + }, + "Microsoft.PowerShell.Security/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GV3RuuOmXHAaEjeBcyixdzUIAQvHW6xgoWwafzTe97DbhI+N1sg4fa/FQ9pd8lqG+kkWxGwTy1VgudXX6rhUkg==", + "path": "microsoft.powershell.security/7.2.1", + "hashPath": "microsoft.powershell.security.7.2.1.nupkg.sha512" + }, + "Microsoft.TestPlatform.ObjectModel/16.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EiknJx9N9Z30gs7R+HHhki7fA8EiiM3pwD1vkw3bFsBC8kdVq/O7mHf1hrg5aJp+ASO6BoOzQueD2ysfTOy/Bg==", + "path": "microsoft.testplatform.objectmodel/16.11.0", + "hashPath": "microsoft.testplatform.objectmodel.16.11.0.nupkg.sha512" + }, + "Microsoft.TestPlatform.TestHost/16.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/Q+R0EcCJE8JaYCk+bGReicw/xrB0HhecrYrUcLbn95BnAlaTJrZhoLkUhvtKTAVtqX/AIKWXYtutiU/Q6QUgg==", + "path": "microsoft.testplatform.testhost/16.11.0", + "hashPath": "microsoft.testplatform.testhost.16.11.0.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry.AccessControl/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UoE+eeuBKL+GFHxHV3FjHlY5K8Wr/IR7Ee/a2oDNqFodF1iMqyt5hIs0U9Z217AbWrHrNle4750kD03hv1IMZw==", + "path": "microsoft.win32.registry.accesscontrol/6.0.0", + "hashPath": "microsoft.win32.registry.accesscontrol.6.0.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "path": "microsoft.win32.systemevents/6.0.0", + "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" + }, + "Microsoft.Windows.Compatibility/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9esuK5JqnjkDgO9/AHesyJSG0aKwpfLVzTw6nIGYhqE91VLxZyv3HKulNoPVy/NOuyAaf1kE4FKtdZDzdd/SLw==", + "path": "microsoft.windows.compatibility/6.0.0", + "hashPath": "microsoft.windows.compatibility.6.0.0.nupkg.sha512" + }, + "Microsoft.WSMan.Management/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vMOJMof4eLql180G4PmTurN8h8+VmPaf1l/Tqq+GI7HYyNv140iY3/Z18MiZA4dRG14qghLNo5JxtTolY7b4og==", + "path": "microsoft.wsman.management/7.2.1", + "hashPath": "microsoft.wsman.management.7.2.1.nupkg.sha512" + }, + "Microsoft.WSMan.Runtime/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v14vzUXIg7opXoQI8Eb82dvsRwBNylZ44lvyXOBSRCiVfvMhyTqE8bpPWbwwmQ5JZRnG/dP5/aOYuu9l163fyQ==", + "path": "microsoft.wsman.runtime/7.2.1", + "hashPath": "microsoft.wsman.runtime.7.2.1.nupkg.sha512" + }, + "Moq/4.16.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bw3R9q8cVNhWXNpnvWb0OGP4HadS4zvClq+T1zf7AF+tLY1haZ2AvbHidQekf4PDv1T40c6brZeT/V0IBq7cEQ==", + "path": "moq/4.16.1", + "hashPath": "moq.4.16.1.nupkg.sha512" + }, + "Namotion.Reflection/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tZCe/UrSBAMW8A4TjD/SlpRHaWjnHlSWdyRuOXhf3yrE0OX+4fXg0uzj7mwFDclXznfCGRAZbP+akPt4G/mclw==", + "path": "namotion.reflection/2.0.3", + "hashPath": "namotion.reflection.2.0.3.nupkg.sha512" + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "path": "netstandard.library/1.6.1", + "hashPath": "netstandard.library.1.6.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + }, + "NJsonSchema/10.5.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vr2CbySuXh74TQFU0rGJYZOS492xOE64cPXdB7a0cfXJb/N45Bf4v7sd4LOla0jNhgc5V/B61Ko3qecriL195w==", + "path": "njsonschema/10.5.2", + "hashPath": "njsonschema.10.5.2.nupkg.sha512" + }, + "NLog/4.7.13": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AvoGpCuq36B+0wY313XA6gC+YeMvk24rqF8P+HS9fInBGOjCzPjpXp2ln9ATZjPOJtXgHfc8zNmTjyswFGLxvg==", + "path": "nlog/4.7.13", + "hashPath": "nlog.4.7.13.nupkg.sha512" + }, + "NuGet.Frameworks/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c5JVjuVAm4f7E9Vj+v09Z9s2ZsqFDjBpcsyS3M9xRo0bEdm/LVZSzLxxNvfvAwRiiE8nwe1h2G4OwiwlzFKXlA==", + "path": "nuget.frameworks/5.0.0", + "hashPath": "nuget.frameworks.5.0.0.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-75q52H7CSpgIoIDwXb9o833EvBZIXJ0mdPhz1E6jSisEXUBlSCPalC29cj3EXsjpuDwr0dj1LRXZepIQH/oL4Q==", + "path": "runtime.linux-arm.runtime.native.system.io.ports/6.0.0", + "hashPath": "runtime.linux-arm.runtime.native.system.io.ports.6.0.0.nupkg.sha512" + }, + "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xn2bMThmXr3CsvOYmS8ex2Yz1xo+kcnhVg2iVhS9PlmqjZPAkrEo/I40wjrBZH/tU4kvH0s1AE8opAvQ3KIS8g==", + "path": "runtime.linux-arm64.runtime.native.system.io.ports/6.0.0", + "hashPath": "runtime.linux-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" + }, + "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-16nbNXwv0sC+gLGIuecri0skjuh6R1maIJggsaNP7MQBcbVcEfWFUOkEnsnvoLEjy0XerfibuRptfQ8AmdIcWA==", + "path": "runtime.linux-x64.runtime.native.system.io.ports/6.0.0", + "hashPath": "runtime.linux-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", + "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512" + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "path": "runtime.native.system.io.compression/4.3.0", + "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" + }, + "runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KaaXlpOcuZjMdmyF5wzzx3b+PRKIzt6A5Ax9dKenPDQbVJAFpev+casD0BIig1pBcbs3zx7CqWemzUJKAeHdSQ==", + "path": "runtime.native.system.io.ports/6.0.0", + "hashPath": "runtime.native.system.io.ports.6.0.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fXG12NodG1QrCdoaeSQ1gVnk/koi4WYY4jZtarMkZeQMyReBm1nZlSRoPnUjLr2ZR36TiMjpcGnQfxymieUe7w==", + "path": "runtime.osx-arm64.runtime.native.system.io.ports/6.0.0", + "hashPath": "runtime.osx-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" + }, + "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/As+zPY49+dSUXkh+fTUbyPhqrdGN//evLxo4Vue88pfh1BHZgF7q4kMblTkxYvwR6Vi03zSYxysSFktO8/SDQ==", + "path": "runtime.osx-x64.runtime.native.system.io.ports/6.0.0", + "hashPath": "runtime.osx-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "System.AppContext/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "path": "system.appcontext/4.3.0", + "hashPath": "system.appcontext.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "path": "system.buffers/4.3.0", + "hashPath": "system.buffers.4.3.0.nupkg.sha512" + }, + "System.CodeDom/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "path": "system.codedom/6.0.0", + "hashPath": "system.codedom.6.0.0.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Collections.Immutable/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", + "path": "system.collections.immutable/5.0.0", + "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512" + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "path": "system.collections.nongeneric/4.3.0", + "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "path": "system.collections.specialized/4.3.0", + "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "path": "system.componentmodel/4.3.0", + "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.Composition/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-60Qv+F7oxomOjJeTDA5Z4iCyFbQ0B/2Mi5HT+13pxxq0lVnu2ipbWMzFB+RWKr3wWKA8BSncXr9PH/fECwMX5Q==", + "path": "system.componentmodel.composition/6.0.0", + "hashPath": "system.componentmodel.composition.6.0.0.nupkg.sha512" + }, + "System.ComponentModel.Composition.Registration/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+i3RLlOgTsf15VeADBPpzPyRiXq71aLSuzdHeNtmq9f6BwpF3OWhB76p0WDUNCa3Z+SLD4dJbBM9yAep7kQCGA==", + "path": "system.componentmodel.composition.registration/6.0.0", + "hashPath": "system.componentmodel.composition.registration.6.0.0.nupkg.sha512" + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "path": "system.componentmodel.primitives/4.3.0", + "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "path": "system.componentmodel.typeconverter/4.3.0", + "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", + "path": "system.configuration.configurationmanager/6.0.0", + "hashPath": "system.configuration.configurationmanager.6.0.0.nupkg.sha512" + }, + "System.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "path": "system.console/4.3.0", + "hashPath": "system.console.4.3.0.nupkg.sha512" + }, + "System.Data.Odbc/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pnZjwe0Qwr1Rnp7NExd5zz4YwXJrYuAbWNKjEQpTzCEg6f/L5DYJS7w3hG3vgSj1t/r79UL390YzXIklf1VuQQ==", + "path": "system.data.odbc/6.0.0", + "hashPath": "system.data.odbc.6.0.0.nupkg.sha512" + }, + "System.Data.OleDb/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LQ8PjTIF1LtrrlGiyiTVjAkQtTWKm9GSNnygIlWjhN9y88s7xhy6DUNDDkmQQ9f6ex7mA4k0Tl97lz/CklaiLg==", + "path": "system.data.oledb/6.0.0", + "hashPath": "system.data.oledb.6.0.0.nupkg.sha512" + }, + "System.Data.SqlClient/4.8.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==", + "path": "system.data.sqlclient/4.8.3", + "hashPath": "system.data.sqlclient.4.8.3.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "path": "system.diagnostics.eventlog/6.0.0", + "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gbeE5tNp/oB7O8kTTLh3wPPJCxpNOphXPTWVs1BsYuFOYapFijWuh0LYw1qnDo4gwDUYPXOmpTIhvtxisGsYOQ==", + "path": "system.diagnostics.performancecounter/6.0.0", + "hashPath": "system.diagnostics.performancecounter.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "path": "system.diagnostics.tools/4.3.0", + "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.TraceSource/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", + "path": "system.diagnostics.tracesource/4.3.0", + "hashPath": "system.diagnostics.tracesource.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.DirectoryServices/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kp/Op0nxDVGlElDKh8TsXO0GKXftQgAB6sJk0wUetZK1Rr0Pbd86Tn7AllLLlROFZa4BTl/LVHakljtGELFzCg==", + "path": "system.directoryservices/6.0.0", + "hashPath": "system.directoryservices.6.0.0.nupkg.sha512" + }, + "System.DirectoryServices.AccountManagement/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2iKkY6VC4WX6H13N8WhH2SRUfWCwg2KZR5w9JIS9cw9N8cZhT7VXxHX0L6OX6Po419aSu2LWrJE9tu6b+cUnPA==", + "path": "system.directoryservices.accountmanagement/6.0.0", + "hashPath": "system.directoryservices.accountmanagement.6.0.0.nupkg.sha512" + }, + "System.DirectoryServices.Protocols/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-++WKU7HQPo/FJdhywWw+q2lLjcVAGVw5XLH9kRCV+4DvkhVAcHCksh0ezIqwNROmaU9LMJN0d/LAdeWXu3pi6Q==", + "path": "system.directoryservices.protocols/6.0.0", + "hashPath": "system.directoryservices.protocols.6.0.0.nupkg.sha512" + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "path": "system.drawing.common/6.0.0", + "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", + "path": "system.dynamic.runtime/4.3.0", + "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" + }, + "System.Formats.Asn1/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA==", + "path": "system.formats.asn1/6.0.0", + "hashPath": "system.formats.asn1.6.0.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "path": "system.io.compression/4.3.0", + "hashPath": "system.io.compression.4.3.0.nupkg.sha512" + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "path": "system.io.compression.zipfile/4.3.0", + "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.IO.Packaging/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-C7OkTRIjqIjAKu6ef/fuj8ynCZTPcTYZnvHaq48bniACgXXJogmEoIc56YCDNTc14xhsbLmgpS3KP+evbsUa2g==", + "path": "system.io.packaging/6.0.0", + "hashPath": "system.io.packaging.6.0.0.nupkg.sha512" + }, + "System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dRyGI7fUESar5ZLIpiBOaaNLW7YyOBGftjj5Of+xcduC/Rjl7RjhEnWDvvNBmHuF3d0tdXoqdVI/yrVA8f00XA==", + "path": "system.io.ports/6.0.0", + "hashPath": "system.io.ports.6.0.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Management/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sHsESYMmPDhQuOC66h6AEOs/XowzKsbT9srMbX71TCXP58hkpn1BqBjdmKj1+DCA/WlBETX1K5WjQHwmV0Txrg==", + "path": "system.management/6.0.0", + "hashPath": "system.management.6.0.0.nupkg.sha512" + }, + "System.Management.Automation/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YlTE+q14vQ1YU//A5+/Jwl5+L5r6uOVIWuB4D/T9r80AaCeUAZMMvTKjgvIr9lwkovwQflVL+1JfBAi9f0q0KA==", + "path": "system.management.automation/7.2.1", + "hashPath": "system.management.automation.7.2.1.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "path": "system.net.http/4.3.0", + "hashPath": "system.net.http.4.3.0.nupkg.sha512" + }, + "System.Net.Http.WinHttpHandler/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jubNN9jH4NzVrvEf4fGwESLBsfH8whWNbHMhgM6IwA8UCt6+/M19bbOHc21JhigvC2HQKCl8HKGZMcBtIpzqIg==", + "path": "system.net.http.winhttphandler/6.0.0", + "hashPath": "system.net.http.winhttphandler.6.0.0.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "path": "system.net.sockets/4.3.0", + "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "path": "system.numerics.vectors/4.5.0", + "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Private.ServiceModel/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-d3RjkrtpjUQ63PzFmm/SZ4aOXeJNP+8YW5QeP0lCJy8iX4xlHdlNLWTF9sRn9SmrFTK757kQXT9Op/R4l858uw==", + "path": "system.private.servicemodel/4.9.0", + "hashPath": "system.private.servicemodel.4.9.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Context/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vi+Gb41oyOYie7uLSsjRmfRg3bryUg5DssJvj3gDUl0D8z6ipSm6/yi/XNx2rcS5iVMvHcwRUHjcx7ixv0K3/w==", + "path": "system.reflection.context/6.0.0", + "hashPath": "system.reflection.context.6.0.0.nupkg.sha512" + }, + "System.Reflection.DispatchProxy/4.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-C1sMLwIG6ILQ2bmOT4gh62V6oJlyF4BlHcVMrOoor49p0Ji2tA8QAoqyMcIhAdH6OHKJ8m7BU+r4LK2CUEOKqw==", + "path": "system.reflection.dispatchproxy/4.7.1", + "hashPath": "system.reflection.dispatchproxy.4.7.1.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Metadata/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==", + "path": "system.reflection.metadata/5.0.0", + "hashPath": "system.reflection.metadata.5.0.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==", + "path": "system.runtime.caching/6.0.0", + "hashPath": "system.runtime.caching.6.0.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "path": "system.security.accesscontrol/6.0.0", + "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "path": "system.security.cryptography.cng/4.3.0", + "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Pkcs/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-elM3x+xSRhzQysiqo85SbidJJ2YbZlnvmh+53TuSZHsD7dNuuEWser+9EFtY+rYupBwkq2avc6ZCO3/6qACgmg==", + "path": "system.security.cryptography.pkcs/6.0.0", + "hashPath": "system.security.cryptography.pkcs.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "path": "system.security.cryptography.protecteddata/6.0.0", + "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Xml/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-puJ4UCh9JVRwOCyCIcq71JY6Axr8Sp8E2GjTIU1Fj8hm4+oX6NEoyGFGa/+pBG8SrVxbQPSj7hvtaREyTHHsmw==", + "path": "system.security.cryptography.xml/6.0.0", + "hashPath": "system.security.cryptography.xml.6.0.0.nupkg.sha512" + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "path": "system.security.permissions/6.0.0", + "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "path": "system.security.principal.windows/5.0.0", + "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" + }, + "System.ServiceModel.Duplex/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Yb8MFiJxBBtm2JnfS/5SxYzm2HqkEmHu5xeaVIHXy83sNpty9wc30JifH2xgda821D6nr1UctbwbdZqN4LBUKQ==", + "path": "system.servicemodel.duplex/4.9.0", + "hashPath": "system.servicemodel.duplex.4.9.0.nupkg.sha512" + }, + "System.ServiceModel.Http/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z+s3RkLNzJ31fDXAjqXdXp67FqsNG4V3Md3r7FOrzMkHmg61gY8faEfTFPBLxU9tax1HPWt6IHVAquXBKySJaw==", + "path": "system.servicemodel.http/4.9.0", + "hashPath": "system.servicemodel.http.4.9.0.nupkg.sha512" + }, + "System.ServiceModel.NetTcp/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nXgnnkrZERUF/KwmoLwZPkc7fqgiq94DXkmUZBvDNh/LdZquDvjy2NbhJLElpApOa5x8zEoQoBZyJ2PqNC39qg==", + "path": "system.servicemodel.nettcp/4.9.0", + "hashPath": "system.servicemodel.nettcp.4.9.0.nupkg.sha512" + }, + "System.ServiceModel.Primitives/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LTFPVdS8Nf76xg/wRZkDa+2Q+GnjTOmwkTlwuoetwX37mAfYnGkf7p8ydhpDwVmomNljpUOhUUGxfjQyd5YcOg==", + "path": "system.servicemodel.primitives/4.9.0", + "hashPath": "system.servicemodel.primitives.4.9.0.nupkg.sha512" + }, + "System.ServiceModel.Security/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iurpbSmPgotHps94VQ6acvL6hU2gjiuBmQI7PwLLN76jsbSpUcahT0PglccKIAwoMujATk/LWtAapBHpwCFn2g==", + "path": "system.servicemodel.security/4.9.0", + "hashPath": "system.servicemodel.security.4.9.0.nupkg.sha512" + }, + "System.ServiceModel.Syndication/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cp1mMNG87iJtE0oHXFtfWT6cfski2JNo5iU0siTPi/uN2k1CIJI6FE4jr4v3got2dzt7wBq17fSy44btun9GiA==", + "path": "system.servicemodel.syndication/6.0.0", + "hashPath": "system.servicemodel.syndication.6.0.0.nupkg.sha512" + }, + "System.ServiceProcess.ServiceController/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qMBvG8ZFbkXoe0Z5/D7FAAadfPkH2v7vSuh2xsLf3U6jNoejpIdeV18A0htiASsLK1CCAc/p59kaLXlt2yB1gw==", + "path": "system.serviceprocess.servicecontroller/6.0.0", + "hashPath": "system.serviceprocess.servicecontroller.6.0.0.nupkg.sha512" + }, + "System.Speech/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GQovERMrNP0Vbtgk8LzH4PlFS6lqHgsL9WkUmv8Kkxa0m0vNakitytpHZlfJ9WR7n9WKLXh68nn2kyL9mflnLg==", + "path": "system.speech/6.0.0", + "hashPath": "system.speech.6.0.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", + "path": "system.text.encoding.codepages/6.0.0", + "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.AccessControl/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2258mqWesMch/xCpcnjJBgJP33yhpZLGLbEOm01qwq0efG4b+NG8c9sxYOWNxmDQ82swXrnQRl1Yp2wC1NrfZA==", + "path": "system.threading.accesscontrol/6.0.0", + "hashPath": "system.threading.accesscontrol.6.0.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "path": "system.threading.tasks.extensions/4.5.4", + "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "path": "system.threading.timer/4.3.0", + "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" + }, + "System.Web.Services.Description/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-d20B3upsWddwSG5xF3eQLs0cAV3tXDsBNqP4kh02ylfgZwqfpf4f/9KiZVIGIoxULt2cKqxWs+U4AdNAJ7L8cQ==", + "path": "system.web.services.description/4.9.0", + "hashPath": "system.web.services.description.4.9.0.nupkg.sha512" + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "path": "system.windows.extensions/6.0.0", + "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "path": "system.xml.xdocument/4.3.0", + "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "path": "system.xml.xmldocument/4.3.0", + "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" + }, + "Typin/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BV/TvL7a2c8FHBFc3YiWEzQua2NitFY5JnE30zJxo2nQrHeZuJYruZ7H+sT+/cnBLjsDr/mUpYtIS1HRTJQ3xg==", + "path": "typin/3.1.0", + "hashPath": "typin.3.1.0.nupkg.sha512" + }, + "Typin.Core/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0M44paHjcQuVTMCyfySqklbfVcQ38GfFGBkeKz0E+zhXdV0wD9tI5GwZdjUPOGlqhOmP7CHh452JSgJK2hc57A==", + "path": "typin.core/3.1.0", + "hashPath": "typin.core.3.1.0.nupkg.sha512" + }, + "xunit/2.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XNR3Yz9QTtec16O0aKcO6+baVNpXmOnPUxDkCY97J+8krUYxPvXT1szYYEUdKk4sB8GOI2YbAjRIOm8ZnXRfzQ==", + "path": "xunit/2.4.1", + "hashPath": "xunit.2.4.1.nupkg.sha512" + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", + "path": "xunit.abstractions/2.0.3", + "hashPath": "xunit.abstractions.2.0.3.nupkg.sha512" + }, + "xunit.analyzers/0.10.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4/IDFCJfIeg6bix9apmUtIMwvOsiwqdEexeO/R2D4GReIGPLIRODTpId/l4LRSrAJk9lEO3Zx1H0Zx6uohJDNg==", + "path": "xunit.analyzers/0.10.0", + "hashPath": "xunit.analyzers.0.10.0.nupkg.sha512" + }, + "xunit.assert/2.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-O/Oe0BS5RmSsM+LQOb041TzuPo5MdH2Rov+qXGS37X+KFG1Hxz7kopYklM5+1Y+tRGeXrOx5+Xne1RuqLFQoyQ==", + "path": "xunit.assert/2.4.1", + "hashPath": "xunit.assert.2.4.1.nupkg.sha512" + }, + "xunit.core/2.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Zsj5OMU6JasNGERXZy8s72+pcheG6Q15atS5XpZXqAtULuyQiQ6XNnUsp1gyfC6WgqScqMvySiEHmHcOG6Eg0Q==", + "path": "xunit.core/2.4.1", + "hashPath": "xunit.core.2.4.1.nupkg.sha512" + }, + "xunit.extensibility.core/2.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yKZKm/8QNZnBnGZFD9SewkllHBiK0DThybQD/G4PiAmQjKtEZyHi6ET70QPU9KtSMJGRYS6Syk7EyR2EVDU4Kg==", + "path": "xunit.extensibility.core/2.4.1", + "hashPath": "xunit.extensibility.core.2.4.1.nupkg.sha512" + }, + "xunit.extensibility.execution/2.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7e/1jqBpcb7frLkB6XDrHCGXAbKN4Rtdb88epYxCSRQuZDRW8UtTfdTEVpdTl8s4T56e07hOBVd4G0OdCxIY2A==", + "path": "xunit.extensibility.execution/2.4.1", + "hashPath": "xunit.extensibility.execution.2.4.1.nupkg.sha512" + }, + "xunit.runner.visualstudio/2.4.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kZZSmOmKA8OBlAJaquPXnJJLM9RwQ27H7BMVqfMLUcTi9xHinWGJiWksa3D4NEtz0wZ/nxd2mogObvBgJKCRhQ==", + "path": "xunit.runner.visualstudio/2.4.3", + "hashPath": "xunit.runner.visualstudio.2.4.3.nupkg.sha512" + }, + "YamlDotNet/11.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tBt8K+korVfrjH9wyDEhiLKxbs8qoLCLIFwvYgkSUuMC9//w3z0cFQ8LQAI/5MCKq+BMil0cfRTRvPeE7eXhQw==", + "path": "yamldotnet/11.2.1", + "hashPath": "yamldotnet.11.2.1.nupkg.sha512" + }, + "Core.Test/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Linguard.Cli/2.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Linguard.Core/2.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Linguard.Log/2.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Cli.Test.dll b/linguard/Cli.Test/bin/Debug/net6.0/Cli.Test.dll new file mode 100644 index 0000000..b349c74 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Cli.Test.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Cli.Test.pdb b/linguard/Cli.Test/bin/Debug/net6.0/Cli.Test.pdb new file mode 100644 index 0000000..79e23dc Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Cli.Test.pdb differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Cli.Test.runtimeconfig.json b/linguard/Cli.Test/bin/Debug/net6.0/Cli.Test.runtimeconfig.json new file mode 100644 index 0000000..4986d16 --- /dev/null +++ b/linguard/Cli.Test/bin/Debug/net6.0/Cli.Test.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + } + } +} \ No newline at end of file diff --git a/linguard/Cli.Test/bin/Debug/net6.0/CommandLine.dll b/linguard/Cli.Test/bin/Debug/net6.0/CommandLine.dll new file mode 100644 index 0000000..af18229 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/CommandLine.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Core.Test.deps.json b/linguard/Cli.Test/bin/Debug/net6.0/Core.Test.deps.json new file mode 100644 index 0000000..f65452c --- /dev/null +++ b/linguard/Cli.Test/bin/Debug/net6.0/Core.Test.deps.json @@ -0,0 +1,4249 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "Core.Test/1.0.0": { + "dependencies": { + "FluentAssertions": "6.4.0", + "FluentValidation": "10.3.6", + "IPNetwork2": "2.5.386", + "Linguard.Core": "2.0.0", + "Microsoft.NET.Test.Sdk": "16.11.0", + "Moq": "4.16.1", + "coverlet.msbuild": "3.1.2", + "xunit": "2.4.1", + "xunit.runner.visualstudio": "2.4.3" + }, + "runtime": { + "Core.Test.dll": {} + } + }, + "Bogus/34.0.1": { + "runtime": { + "lib/net6.0/Bogus.dll": { + "assemblyVersion": "34.0.1.0", + "fileVersion": "34.0.1.0" + } + } + }, + "ByteSize/2.1.1": { + "runtime": { + "lib/net5.0/ByteSize.dll": { + "assemblyVersion": "2.1.1.0", + "fileVersion": "2.1.1.0" + } + } + }, + "Castle.Core/4.4.0": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Diagnostics.TraceSource": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard1.5/Castle.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.4.0.0" + } + } + }, + "coverlet.msbuild/3.1.2": {}, + "FluentAssertions/6.4.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/FluentAssertions.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "FluentValidation/10.3.6": { + "runtime": { + "lib/net6.0/FluentValidation.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "10.3.6.0" + } + } + }, + "IPNetwork2/2.5.386": { + "runtime": { + "lib/net5.0/System.Net.IPNetwork.dll": { + "assemblyVersion": "2.5.386.0", + "fileVersion": "2.5.386.0" + } + } + }, + "Markdig.Signed/0.22.0": { + "runtime": { + "lib/netcoreapp3.1/Markdig.Signed.dll": { + "assemblyVersion": "0.22.0.0", + "fileVersion": "0.22.0.0" + } + } + }, + "Microsoft.ApplicationInsights/2.18.0": { + "dependencies": { + "System.Diagnostics.DiagnosticSource": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": { + "assemblyVersion": "2.18.0.315", + "fileVersion": "2.18.0.315" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/5.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": {}, + "Microsoft.CodeAnalysis.Common/4.0.1": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.2", + "System.Collections.Immutable": "5.0.0", + "System.Memory": "4.5.4", + "System.Reflection.Metadata": "5.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encoding.CodePages": "6.0.0", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.121.55815" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.0.1": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "4.0.1" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.121.55815" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeCoverage/16.11.0": { + "runtime": { + "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "16.1000.21.27002" + } + } + }, + "Microsoft.CSharp/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "Microsoft.Extensions.ObjectPool/5.0.10": { + "runtime": { + "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.1021.41022" + } + } + }, + "Microsoft.Management.Infrastructure/2.0.0": { + "dependencies": { + "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0", + "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0" + } + }, + "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { + "runtimeTargets": { + "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win-arm", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win-arm", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win-arm64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win-arm64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win10-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win10-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win10-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win10-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win7-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win7-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win7-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win7-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win8-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win8-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win8-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win8-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win81-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win81-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win81-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win81-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm/native/mi.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm/native/miutils.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm64/native/mi.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm64/native/miutils.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win10-x64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x64/native/mi.dll": { + "rid": "win10-x64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x64/native/miutils.dll": { + "rid": "win10-x64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win10-x86", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x86/native/mi.dll": { + "rid": "win10-x86", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x86/native/miutils.dll": { + "rid": "win10-x86", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win7-x64", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win7-x64/native/mi.dll": { + "rid": "win7-x64", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win7-x64/native/miutils.dll": { + "rid": "win7-x64", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win7-x86", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win7-x86/native/mi.dll": { + "rid": "win7-x86", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win7-x86/native/miutils.dll": { + "rid": "win7-x86", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win8-x64/native/mi.dll": { + "rid": "win8-x64", + "assetType": "native", + "fileVersion": "6.2.9200.22812" + }, + "runtimes/win8-x64/native/miutils.dll": { + "rid": "win8-x64", + "assetType": "native", + "fileVersion": "6.2.9200.22812" + }, + "runtimes/win8-x86/native/mi.dll": { + "rid": "win8-x86", + "assetType": "native", + "fileVersion": "6.2.9200.22812" + }, + "runtimes/win8-x86/native/miutils.dll": { + "rid": "win8-x86", + "assetType": "native", + "fileVersion": "6.2.9200.22812" + }, + "runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win81-x64", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + }, + "runtimes/win81-x64/native/mi.dll": { + "rid": "win81-x64", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + }, + "runtimes/win81-x64/native/miutils.dll": { + "rid": "win81-x64", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + }, + "runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win81-x86", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + }, + "runtimes/win81-x86/native/mi.dll": { + "rid": "win81-x86", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + }, + "runtimes/win81-x86/native/miutils.dll": { + "rid": "win81-x86", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + } + } + }, + "Microsoft.NET.Test.Sdk/16.11.0": { + "dependencies": { + "Microsoft.CodeCoverage": "16.11.0", + "Microsoft.TestPlatform.TestHost": "16.11.0" + } + }, + "Microsoft.NETCore.Platforms/1.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": {}, + "Microsoft.PowerShell.Commands.Diagnostics/7.2.1": { + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.PowerShell.Commands.Management/7.2.1": { + "dependencies": { + "Microsoft.PowerShell.Security": "7.2.1", + "System.ServiceProcess.ServiceController": "6.0.0" + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.PowerShell.Commands.Utility/7.2.1": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "4.0.1", + "Microsoft.PowerShell.MarkdownRender": "7.2.0", + "NJsonSchema": "10.5.2", + "System.Drawing.Common": "6.0.0", + "System.Management.Automation": "7.2.1", + "System.Threading.AccessControl": "6.0.0" + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.PowerShell.ConsoleHost/7.2.1": { + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { + "dependencies": { + "System.Diagnostics.EventLog": "6.0.0" + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.PowerShell.MarkdownRender/7.2.0": { + "dependencies": { + "Markdig.Signed": "0.22.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll": { + "assemblyVersion": "7.2.0.0", + "fileVersion": "7.2.0.0" + } + } + }, + "Microsoft.PowerShell.Native/7.2.0": { + "runtimeTargets": { + "runtimes/linux-arm/native/libpsl-native.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libpsl-native.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libpsl-native.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libmi.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libpsl-native.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libpsrpclient.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx/native/libmi.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx/native/libpsl-native.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx/native/libpsrpclient.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-arm/native/pwrshplugin.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-arm64/native/pwrshplugin.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-x64/native/pwrshplugin.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-x86/native/pwrshplugin.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + } + } + }, + "Microsoft.PowerShell.SDK/7.2.1": { + "dependencies": { + "Microsoft.Management.Infrastructure.CimCmdlets": "7.2.1", + "Microsoft.NETCore.Windows.ApiSets": "1.0.1", + "Microsoft.PowerShell.Commands.Diagnostics": "7.2.1", + "Microsoft.PowerShell.Commands.Management": "7.2.1", + "Microsoft.PowerShell.Commands.Utility": "7.2.1", + "Microsoft.PowerShell.ConsoleHost": "7.2.1", + "Microsoft.PowerShell.Security": "7.2.1", + "Microsoft.WSMan.Management": "7.2.1", + "Microsoft.Windows.Compatibility": "6.0.0", + "System.Data.SqlClient": "4.8.3", + "System.IO.Packaging": "6.0.0", + "System.Management.Automation": "7.2.1", + "System.Net.Http.WinHttpHandler": "6.0.0", + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Duplex": "4.9.0", + "System.ServiceModel.Http": "4.9.0", + "System.ServiceModel.NetTcp": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0", + "System.ServiceModel.Security": "4.9.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.PowerShell.Security/7.2.1": { + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.TestPlatform.ObjectModel/16.11.0": { + "dependencies": { + "NuGet.Frameworks": "5.0.0", + "System.Reflection.Metadata": "5.0.0" + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + } + }, + "resources": { + "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.TestPlatform.TestHost/16.11.0": { + "dependencies": { + "Microsoft.TestPlatform.ObjectModel": "16.11.0", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netcoreapp2.1/testhost.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + } + }, + "resources": { + "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "Microsoft.Win32.Registry.AccessControl/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Windows.Compatibility/6.0.0": { + "dependencies": { + "Microsoft.Win32.Registry.AccessControl": "6.0.0", + "Microsoft.Win32.SystemEvents": "6.0.0", + "System.CodeDom": "6.0.0", + "System.ComponentModel.Composition": "6.0.0", + "System.ComponentModel.Composition.Registration": "6.0.0", + "System.Configuration.ConfigurationManager": "6.0.0", + "System.Data.Odbc": "6.0.0", + "System.Data.OleDb": "6.0.0", + "System.Data.SqlClient": "4.8.3", + "System.Diagnostics.EventLog": "6.0.0", + "System.Diagnostics.PerformanceCounter": "6.0.0", + "System.DirectoryServices": "6.0.0", + "System.DirectoryServices.AccountManagement": "6.0.0", + "System.DirectoryServices.Protocols": "6.0.0", + "System.Drawing.Common": "6.0.0", + "System.IO.Packaging": "6.0.0", + "System.IO.Ports": "6.0.0", + "System.Management": "6.0.0", + "System.Reflection.Context": "6.0.0", + "System.Runtime.Caching": "6.0.0", + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.0", + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Cryptography.Xml": "6.0.0", + "System.Security.Permissions": "6.0.0", + "System.ServiceModel.Duplex": "4.9.0", + "System.ServiceModel.Http": "4.9.0", + "System.ServiceModel.NetTcp": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0", + "System.ServiceModel.Security": "4.9.0", + "System.ServiceModel.Syndication": "6.0.0", + "System.ServiceProcess.ServiceController": "6.0.0", + "System.Speech": "6.0.0", + "System.Text.Encoding.CodePages": "6.0.0", + "System.Threading.AccessControl": "6.0.0", + "System.Web.Services.Description": "4.9.0" + } + }, + "Microsoft.WSMan.Management/7.2.1": { + "dependencies": { + "Microsoft.WSMan.Runtime": "7.2.1", + "System.Management.Automation": "7.2.1", + "System.ServiceProcess.ServiceController": "6.0.0" + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.WSMan.Runtime/7.2.1": { + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Moq/4.16.1": { + "dependencies": { + "Castle.Core": "4.4.0", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/netstandard2.1/Moq.dll": { + "assemblyVersion": "4.16.0.0", + "fileVersion": "4.16.1.0" + } + } + }, + "Namotion.Reflection/2.0.3": { + "dependencies": { + "Microsoft.CSharp": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/Namotion.Reflection.dll": { + "assemblyVersion": "2.0.3.0", + "fileVersion": "2.0.3.0" + } + } + }, + "NETStandard.Library/1.6.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + } + }, + "NJsonSchema/10.5.2": { + "dependencies": { + "Namotion.Reflection": "2.0.3", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netstandard2.0/NJsonSchema.dll": { + "assemblyVersion": "10.5.2.0", + "fileVersion": "10.5.2.0" + } + } + }, + "NLog/4.7.13": { + "runtime": { + "lib/netstandard2.0/NLog.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.7.13.493" + } + } + }, + "NuGet.Frameworks/5.0.0": { + "runtime": { + "lib/netstandard2.0/NuGet.Frameworks.dll": { + "assemblyVersion": "5.0.0.6", + "fileVersion": "5.0.0.5923" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { + "runtimeTargets": { + "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": { + "runtimeTargets": { + "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": { + "runtimeTargets": { + "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.IO.Ports/6.0.0": { + "dependencies": { + "runtime.linux-arm.runtime.native.System.IO.Ports": "6.0.0", + "runtime.linux-arm64.runtime.native.System.IO.Ports": "6.0.0", + "runtime.linux-x64.runtime.native.System.IO.Ports": "6.0.0", + "runtime.osx-arm64.runtime.native.System.IO.Ports": "6.0.0", + "runtime.osx-x64.runtime.native.System.IO.Ports": "6.0.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": { + "runtimeTargets": { + "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib": { + "rid": "osx-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { + "runtimeTargets": { + "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "System.AppContext/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Buffers/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.CodeDom/6.0.0": { + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Collections.Immutable/5.0.0": {}, + "System.Collections.NonGeneric/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections.Specialized/4.3.0": { + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.ComponentModel/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.Composition/6.0.0": { + "runtime": { + "lib/net6.0/System.ComponentModel.Composition.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.ComponentModel.Composition.Registration/6.0.0": { + "dependencies": { + "System.ComponentModel.Composition": "6.0.0", + "System.Reflection.Context": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.ComponentModel.Composition.Registration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Configuration.ConfigurationManager/6.0.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Console/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Data.Odbc/6.0.0": { + "dependencies": { + "System.Text.Encoding.CodePages": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Data.Odbc.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll": { + "rid": "freebsd", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/illumos/lib/net6.0/System.Data.Odbc.dll": { + "rid": "illumos", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/ios/lib/net6.0/System.Data.Odbc.dll": { + "rid": "ios", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/linux/lib/net6.0/System.Data.Odbc.dll": { + "rid": "linux", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/osx/lib/net6.0/System.Data.Odbc.dll": { + "rid": "osx", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/solaris/lib/net6.0/System.Data.Odbc.dll": { + "rid": "solaris", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/tvos/lib/net6.0/System.Data.Odbc.dll": { + "rid": "tvos", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.Data.Odbc.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Data.OleDb/6.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0", + "System.Diagnostics.PerformanceCounter": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Data.OleDb.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Data.OleDb.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Data.SqlClient/4.8.3": { + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Principal.Windows": "5.0.0", + "runtime.native.System.Data.SqlClient.sni": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assemblyVersion": "4.6.1.3", + "fileVersion": "4.700.21.41603" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.6.1.3", + "fileVersion": "4.700.21.41603" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.6.1.3", + "fileVersion": "4.700.21.41603" + } + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/5.0.0": {}, + "System.Diagnostics.EventLog/6.0.0": { + "runtime": { + "lib/net6.0/System.Diagnostics.EventLog.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "0.0.0.0" + }, + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Diagnostics.PerformanceCounter/6.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Diagnostics.Tools/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.TraceSource/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.DirectoryServices/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.DirectoryServices.AccountManagement/6.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0", + "System.DirectoryServices": "6.0.0", + "System.DirectoryServices.Protocols": "6.0.0", + "System.Security.AccessControl": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.DirectoryServices.AccountManagement.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.DirectoryServices.Protocols/6.0.0": { + "runtime": { + "lib/net6.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "rid": "linux", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "rid": "osx", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Drawing.Common/6.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Dynamic.Runtime/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Formats.Asn1/6.0.0": {}, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.IO.Packaging/6.0.0": { + "runtime": { + "lib/net6.0/System.IO.Packaging.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.IO.Ports/6.0.0": { + "dependencies": { + "runtime.native.System.IO.Ports": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.IO.Ports.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.IO.Ports.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.IO.Ports.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Management/6.0.0": { + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Management.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Management.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Management.Automation/7.2.1": { + "dependencies": { + "Microsoft.ApplicationInsights": "2.18.0", + "Microsoft.Management.Infrastructure": "2.0.0", + "Microsoft.PowerShell.CoreCLR.Eventing": "7.2.1", + "Microsoft.PowerShell.Native": "7.2.0", + "Microsoft.Win32.Registry.AccessControl": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "System.Configuration.ConfigurationManager": "6.0.0", + "System.DirectoryServices": "6.0.0", + "System.Management": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.0", + "System.Security.Permissions": "6.0.0", + "System.Text.Encoding.CodePages": "6.0.0" + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Management.Automation.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + }, + "runtimes/win/lib/net6.0/System.Management.Automation.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "System.Memory/4.5.4": {}, + "System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "5.0.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Net.Http.WinHttpHandler/6.0.0": { + "runtime": { + "lib/net6.0/System.Net.Http.WinHttpHandler.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Net.Sockets/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Numerics.Vectors/4.5.0": {}, + "System.ObjectModel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Private.ServiceModel/4.9.0": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "5.0.0", + "Microsoft.Extensions.ObjectPool": "5.0.10", + "System.Numerics.Vectors": "4.5.0", + "System.Reflection.DispatchProxy": "4.7.1", + "System.Security.Cryptography.Xml": "6.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Private.ServiceModel.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + }, + "resources": { + "lib/netstandard2.0/cs/System.Private.ServiceModel.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/System.Private.ServiceModel.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/System.Private.ServiceModel.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/System.Private.ServiceModel.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/System.Private.ServiceModel.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/System.Private.ServiceModel.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/System.Private.ServiceModel.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/System.Private.ServiceModel.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/System.Private.ServiceModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/System.Private.ServiceModel.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/System.Private.ServiceModel.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/System.Private.ServiceModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/System.Private.ServiceModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Context/6.0.0": { + "runtime": { + "lib/net6.0/System.Reflection.Context.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Reflection.DispatchProxy/4.7.1": {}, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Metadata/5.0.0": {}, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/6.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Security.AccessControl/6.0.0": {}, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Pkcs/6.0.0": { + "dependencies": { + "System.Formats.Asn1": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Xml/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Permissions/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Principal.Windows/5.0.0": {}, + "System.ServiceModel.Duplex/4.9.0": { + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Duplex.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + } + }, + "System.ServiceModel.Http/4.9.0": { + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Http.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + } + }, + "System.ServiceModel.NetTcp/4.9.0": { + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.NetTcp.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + } + }, + "System.ServiceModel.Primitives/4.9.0": { + "dependencies": { + "System.Private.ServiceModel": "4.9.0" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Primitives.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + }, + "lib/net6.0/System.ServiceModel.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.900.21.52002" + } + } + }, + "System.ServiceModel.Security/4.9.0": { + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Security.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + } + }, + "System.ServiceModel.Syndication/6.0.0": { + "runtime": { + "lib/net6.0/System.ServiceModel.Syndication.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.ServiceProcess.ServiceController/6.0.0": { + "dependencies": { + "System.Diagnostics.EventLog": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.ServiceProcess.ServiceController.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Speech/6.0.0": { + "runtime": { + "lib/net6.0/System.Speech.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Speech.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.AccessControl/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Threading.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Threading.AccessControl.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.5.4": {}, + "System.Threading.Timer/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Web.Services.Description/4.9.0": { + "runtime": { + "lib/netstandard2.0/System.Web.Services.Description.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + }, + "resources": { + "lib/netstandard2.0/cs/System.Web.Services.Description.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/System.Web.Services.Description.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/System.Web.Services.Description.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/System.Web.Services.Description.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/System.Web.Services.Description.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/System.Web.Services.Description.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/System.Web.Services.Description.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/System.Web.Services.Description.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/System.Web.Services.Description.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/System.Web.Services.Description.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/System.Web.Services.Description.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/System.Web.Services.Description.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/System.Web.Services.Description.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Windows.Extensions/6.0.0": { + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.5.4" + } + }, + "System.Xml.XDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "System.Xml.XmlDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "xunit/2.4.1": { + "dependencies": { + "xunit.analyzers": "0.10.0", + "xunit.assert": "2.4.1", + "xunit.core": "2.4.1" + } + }, + "xunit.abstractions/2.0.3": { + "runtime": { + "lib/netstandard2.0/xunit.abstractions.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "xunit.analyzers/0.10.0": {}, + "xunit.assert/2.4.1": { + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.1/xunit.assert.dll": { + "assemblyVersion": "2.4.1.0", + "fileVersion": "2.4.1.0" + } + } + }, + "xunit.core/2.4.1": { + "dependencies": { + "xunit.extensibility.core": "2.4.1", + "xunit.extensibility.execution": "2.4.1" + } + }, + "xunit.extensibility.core/2.4.1": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": { + "assemblyVersion": "2.4.1.0", + "fileVersion": "2.4.1.0" + } + } + }, + "xunit.extensibility.execution/2.4.1": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "2.4.1" + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": { + "assemblyVersion": "2.4.1.0", + "fileVersion": "2.4.1.0" + } + } + }, + "xunit.runner.visualstudio/2.4.3": {}, + "YamlDotNet/11.2.1": { + "runtime": { + "lib/netstandard2.1/YamlDotNet.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.2.1.0" + } + } + }, + "Linguard.Core/2.0.0": { + "dependencies": { + "Bogus": "34.0.1", + "ByteSize": "2.1.1", + "FluentValidation": "10.3.6", + "IPNetwork2": "2.5.386", + "Linguard.Log": "2.0.0", + "Microsoft.PowerShell.SDK": "7.2.1", + "System.Management.Automation": "7.2.1", + "YamlDotNet": "11.2.1" + }, + "runtime": { + "Linguard.Core.dll": {} + } + }, + "Linguard.Log/2.0.0": { + "dependencies": { + "NLog": "4.7.13" + }, + "runtime": { + "Linguard.Log.dll": {} + } + } + } + }, + "libraries": { + "Core.Test/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Bogus/34.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-49iq7QrD0wb7V4/FcK8p3dWdJxNUbojaqK9L6KRvdikIuRjt38EsNp7QXICcYdbYw01K8BHUdxlnTNn/YX3qDA==", + "path": "bogus/34.0.1", + "hashPath": "bogus.34.0.1.nupkg.sha512" + }, + "ByteSize/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-D+Y3NpbHrW21vZwwegeWf/8iAg2Mr0s7n1su8Ysho+O9dctJ5/EkWUi19QVxc6+nZl080gGTXBP/Nz0twSI3dA==", + "path": "bytesize/2.1.1", + "hashPath": "bytesize.2.1.1.nupkg.sha512" + }, + "Castle.Core/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", + "path": "castle.core/4.4.0", + "hashPath": "castle.core.4.4.0.nupkg.sha512" + }, + "coverlet.msbuild/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QhM0fnDtmIMImY7oxyQ/kh1VYtRxPyRVeLwRUGuUvI6Xp83pSYG9gerK8WgJj4TzUl7ISziADUGtIWKhtlbkbQ==", + "path": "coverlet.msbuild/3.1.2", + "hashPath": "coverlet.msbuild.3.1.2.nupkg.sha512" + }, + "FluentAssertions/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KOJE1UD7ndxoZAdmOraiUFLdcdGTArGQW8WYN+vwrC3mdt2G/B7gmsMOozgXKiNSh3fpD/Xp/0mhonRh8vrZKw==", + "path": "fluentassertions/6.4.0", + "hashPath": "fluentassertions.6.4.0.nupkg.sha512" + }, + "FluentValidation/10.3.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iMd370ZDx6ydm8t7bIFdRbSKX0e42lpvCtifUSbTSXOk5iKjmgl7HU0PXBhIWQAyIRi3gCwfMI9luj8H6K+byw==", + "path": "fluentvalidation/10.3.6", + "hashPath": "fluentvalidation.10.3.6.nupkg.sha512" + }, + "IPNetwork2/2.5.386": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6ihnNm82vyJsUYYfR2BRTziY/mQ5UGLsQZuhdSYPeTlbQLhBW/4BC9hBz3h5bFDn8PkVw9dP0cpv9brIBmk4Fw==", + "path": "ipnetwork2/2.5.386", + "hashPath": "ipnetwork2.2.5.386.nupkg.sha512" + }, + "Markdig.Signed/0.22.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7x3FqS3wk8DXyQLuflD47tBs6+ly6k4VtoDCzlDWfy7XHVsBIi7eGYEM15sPAcwSCQjOksNWE8U5r2v0Sk5FzQ==", + "path": "markdig.signed/0.22.0", + "hashPath": "markdig.signed.0.22.0.nupkg.sha512" + }, + "Microsoft.ApplicationInsights/2.18.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-milJB3VOCoC4EWmpE/Co9cOJ7SV6Ji6VqV4Rf5UlqL9QCg+rAX1y+3Y+j1Gu/j4IExYiPq7SEKqkP2BFnEu6Vw==", + "path": "microsoft.applicationinsights/2.18.0", + "hashPath": "microsoft.applicationinsights.2.18.0.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ==", + "path": "microsoft.bcl.asyncinterfaces/5.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==", + "path": "microsoft.codeanalysis.analyzers/3.3.2", + "hashPath": "microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SMREwaVD5SzatlWhh9aahQAtSWdb63NcE//f+bQzgHSECU6xtDtaxk0kwV+asdFfr6HtW38UeO6jvqdfzudg3w==", + "path": "microsoft.codeanalysis.common/4.0.1", + "hashPath": "microsoft.codeanalysis.common.4.0.1.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q9RxxydPpUElj/x1/qykDTUGsRoKbJG8H5XUSeMGmMu54fBiuX1xyanom9caa1oQfh5JIW1BgLxobSaWs4WyHQ==", + "path": "microsoft.codeanalysis.csharp/4.0.1", + "hashPath": "microsoft.codeanalysis.csharp.4.0.1.nupkg.sha512" + }, + "Microsoft.CodeCoverage/16.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wf6lpAeCqP0KFfbDVtfL50lr7jY1gq0+0oSphyksfLOEygMDXqnaxHK5LPFtMEhYSEtgXdNyXNnEddOqQQUdlQ==", + "path": "microsoft.codecoverage/16.11.0", + "hashPath": "microsoft.codecoverage.16.11.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==", + "path": "microsoft.csharp/4.3.0", + "hashPath": "microsoft.csharp.4.3.0.nupkg.sha512" + }, + "Microsoft.Extensions.ObjectPool/5.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pp9tbGqIhdEXL6Q1yJl+zevAJSq4BsxqhS1GXzBvEsEz9DDNu9GLNzgUy2xyFc4YjB4m4Ff2YEWTnvQvVYdkvQ==", + "path": "microsoft.extensions.objectpool/5.0.10", + "hashPath": "microsoft.extensions.objectpool.5.0.10.nupkg.sha512" + }, + "Microsoft.Management.Infrastructure/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IaKZRNBBv3sdrmBWd+aqwHq8cVHk/3WgWFAN/dt40MRY9rbtHiDfTTmaEN0tGTmQqGCGDo/ncntA8MvFMvcsRw==", + "path": "microsoft.management.infrastructure/2.0.0", + "hashPath": "microsoft.management.infrastructure.2.0.0.nupkg.sha512" + }, + "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xe1x237SCyrjpmW1mP1T69/OOc/gtU66P8wVC+b4/u7Hz7fIO6B8P5yVQQfb79rAe1GocruIpQlX4KXTFQf09w==", + "path": "microsoft.management.infrastructure.cimcmdlets/7.2.1", + "hashPath": "microsoft.management.infrastructure.cimcmdlets.7.2.1.nupkg.sha512" + }, + "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-p0lslMX5bdWLxO2P7ao+rjAMOB0LEwPYpzvdCQ2OEYgX2NxFpQ8ILvqPGnYlTAb53rT8gu5DyIol1HboHFYfxQ==", + "path": "microsoft.management.infrastructure.runtime.unix/2.0.0", + "hashPath": "microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512" + }, + "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vjBWQeDOjgernkrOdbEgn7M70SF7hof7ORdKPSlL06Uc15+oYdth5dZju9KsgUoti/cwnkZTiwtDx/lRtay0sA==", + "path": "microsoft.management.infrastructure.runtime.win/2.0.0", + "hashPath": "microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512" + }, + "Microsoft.NET.Test.Sdk/16.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f4mbG1SUSkNWF5p7B3Y8ZxMsvKhxCmpZhdl+w6tMtLSUGE7Izi1syU6TkmKOvB2BV66pdbENConFAISOix4ohQ==", + "path": "microsoft.net.test.sdk/16.11.0", + "hashPath": "microsoft.net.test.sdk.16.11.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "path": "microsoft.netcore.platforms/1.1.0", + "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==", + "path": "microsoft.netcore.windows.apisets/1.0.1", + "hashPath": "microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512" + }, + "Microsoft.PowerShell.Commands.Diagnostics/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Bgw4Egv7cnYUTWAy6koxg+0+/8K6rqUdlAiAxuJby9FeDPZQFfqCHQqlyP9JDa6lvbtmeBx1btFDx6Kh8bxdwQ==", + "path": "microsoft.powershell.commands.diagnostics/7.2.1", + "hashPath": "microsoft.powershell.commands.diagnostics.7.2.1.nupkg.sha512" + }, + "Microsoft.PowerShell.Commands.Management/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YAMrGDF2QTg6Gwz07+m1+BnmcYsPyywfY4J8nOpImfXZLLNhD7zQQP0orNHu9WPPV3/+E33qUyPj5J3ugCMk6A==", + "path": "microsoft.powershell.commands.management/7.2.1", + "hashPath": "microsoft.powershell.commands.management.7.2.1.nupkg.sha512" + }, + "Microsoft.PowerShell.Commands.Utility/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PU15IxUJd7nSacTstlxqJoEeGlI+BH6cUKTppkkIIxEj7EfwC5nD1qTL41xye63BFeZmOFeqAhMI6LtJUd875g==", + "path": "microsoft.powershell.commands.utility/7.2.1", + "hashPath": "microsoft.powershell.commands.utility.7.2.1.nupkg.sha512" + }, + "Microsoft.PowerShell.ConsoleHost/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uAPSsTmkOa7na1+OAPF87yBRwD1Ka/qXThoyrlvP9ihzMWfHM52k3MuKVEGi04VP3Wdi7U4Rzkr3svxDDmkHgA==", + "path": "microsoft.powershell.consolehost/7.2.1", + "hashPath": "microsoft.powershell.consolehost.7.2.1.nupkg.sha512" + }, + "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fUz7InjavqKtslkQN828nWbZLnmmJRL9rn4b3e/XXdx0BcN+65x/pSgMnehwDVGIoqUPUMXN54eDo4HRVcLA5g==", + "path": "microsoft.powershell.coreclr.eventing/7.2.1", + "hashPath": "microsoft.powershell.coreclr.eventing.7.2.1.nupkg.sha512" + }, + "Microsoft.PowerShell.MarkdownRender/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1vqDtdX9RCGsMWCbzp0CIxZW3slWgq8mYHDfUlUKzmkV57fMAn4m0Gy2OtsqopZzrOiVJci+QCWx5FB7BVpMlw==", + "path": "microsoft.powershell.markdownrender/7.2.0", + "hashPath": "microsoft.powershell.markdownrender.7.2.0.nupkg.sha512" + }, + "Microsoft.PowerShell.Native/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TauOu3bYr4DRh9HpH3+fgaL+y2GY47KLsgU6qX1NDLqHshdEaCCjiF0N5sDEgCEhSb38FwWhpdFTIQvoOcYCXQ==", + "path": "microsoft.powershell.native/7.2.0", + "hashPath": "microsoft.powershell.native.7.2.0.nupkg.sha512" + }, + "Microsoft.PowerShell.SDK/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UufIcywqI/22p0oqC5qg+yDoW39U2JAQyaHxy2Tr/h0hdWuFimtmhxp/FDXTxszgOdobtjcrCkSzqcoNmu/vQQ==", + "path": "microsoft.powershell.sdk/7.2.1", + "hashPath": "microsoft.powershell.sdk.7.2.1.nupkg.sha512" + }, + "Microsoft.PowerShell.Security/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GV3RuuOmXHAaEjeBcyixdzUIAQvHW6xgoWwafzTe97DbhI+N1sg4fa/FQ9pd8lqG+kkWxGwTy1VgudXX6rhUkg==", + "path": "microsoft.powershell.security/7.2.1", + "hashPath": "microsoft.powershell.security.7.2.1.nupkg.sha512" + }, + "Microsoft.TestPlatform.ObjectModel/16.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EiknJx9N9Z30gs7R+HHhki7fA8EiiM3pwD1vkw3bFsBC8kdVq/O7mHf1hrg5aJp+ASO6BoOzQueD2ysfTOy/Bg==", + "path": "microsoft.testplatform.objectmodel/16.11.0", + "hashPath": "microsoft.testplatform.objectmodel.16.11.0.nupkg.sha512" + }, + "Microsoft.TestPlatform.TestHost/16.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/Q+R0EcCJE8JaYCk+bGReicw/xrB0HhecrYrUcLbn95BnAlaTJrZhoLkUhvtKTAVtqX/AIKWXYtutiU/Q6QUgg==", + "path": "microsoft.testplatform.testhost/16.11.0", + "hashPath": "microsoft.testplatform.testhost.16.11.0.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry.AccessControl/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UoE+eeuBKL+GFHxHV3FjHlY5K8Wr/IR7Ee/a2oDNqFodF1iMqyt5hIs0U9Z217AbWrHrNle4750kD03hv1IMZw==", + "path": "microsoft.win32.registry.accesscontrol/6.0.0", + "hashPath": "microsoft.win32.registry.accesscontrol.6.0.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "path": "microsoft.win32.systemevents/6.0.0", + "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" + }, + "Microsoft.Windows.Compatibility/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9esuK5JqnjkDgO9/AHesyJSG0aKwpfLVzTw6nIGYhqE91VLxZyv3HKulNoPVy/NOuyAaf1kE4FKtdZDzdd/SLw==", + "path": "microsoft.windows.compatibility/6.0.0", + "hashPath": "microsoft.windows.compatibility.6.0.0.nupkg.sha512" + }, + "Microsoft.WSMan.Management/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vMOJMof4eLql180G4PmTurN8h8+VmPaf1l/Tqq+GI7HYyNv140iY3/Z18MiZA4dRG14qghLNo5JxtTolY7b4og==", + "path": "microsoft.wsman.management/7.2.1", + "hashPath": "microsoft.wsman.management.7.2.1.nupkg.sha512" + }, + "Microsoft.WSMan.Runtime/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v14vzUXIg7opXoQI8Eb82dvsRwBNylZ44lvyXOBSRCiVfvMhyTqE8bpPWbwwmQ5JZRnG/dP5/aOYuu9l163fyQ==", + "path": "microsoft.wsman.runtime/7.2.1", + "hashPath": "microsoft.wsman.runtime.7.2.1.nupkg.sha512" + }, + "Moq/4.16.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bw3R9q8cVNhWXNpnvWb0OGP4HadS4zvClq+T1zf7AF+tLY1haZ2AvbHidQekf4PDv1T40c6brZeT/V0IBq7cEQ==", + "path": "moq/4.16.1", + "hashPath": "moq.4.16.1.nupkg.sha512" + }, + "Namotion.Reflection/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tZCe/UrSBAMW8A4TjD/SlpRHaWjnHlSWdyRuOXhf3yrE0OX+4fXg0uzj7mwFDclXznfCGRAZbP+akPt4G/mclw==", + "path": "namotion.reflection/2.0.3", + "hashPath": "namotion.reflection.2.0.3.nupkg.sha512" + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "path": "netstandard.library/1.6.1", + "hashPath": "netstandard.library.1.6.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + }, + "NJsonSchema/10.5.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vr2CbySuXh74TQFU0rGJYZOS492xOE64cPXdB7a0cfXJb/N45Bf4v7sd4LOla0jNhgc5V/B61Ko3qecriL195w==", + "path": "njsonschema/10.5.2", + "hashPath": "njsonschema.10.5.2.nupkg.sha512" + }, + "NLog/4.7.13": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AvoGpCuq36B+0wY313XA6gC+YeMvk24rqF8P+HS9fInBGOjCzPjpXp2ln9ATZjPOJtXgHfc8zNmTjyswFGLxvg==", + "path": "nlog/4.7.13", + "hashPath": "nlog.4.7.13.nupkg.sha512" + }, + "NuGet.Frameworks/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c5JVjuVAm4f7E9Vj+v09Z9s2ZsqFDjBpcsyS3M9xRo0bEdm/LVZSzLxxNvfvAwRiiE8nwe1h2G4OwiwlzFKXlA==", + "path": "nuget.frameworks/5.0.0", + "hashPath": "nuget.frameworks.5.0.0.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-75q52H7CSpgIoIDwXb9o833EvBZIXJ0mdPhz1E6jSisEXUBlSCPalC29cj3EXsjpuDwr0dj1LRXZepIQH/oL4Q==", + "path": "runtime.linux-arm.runtime.native.system.io.ports/6.0.0", + "hashPath": "runtime.linux-arm.runtime.native.system.io.ports.6.0.0.nupkg.sha512" + }, + "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xn2bMThmXr3CsvOYmS8ex2Yz1xo+kcnhVg2iVhS9PlmqjZPAkrEo/I40wjrBZH/tU4kvH0s1AE8opAvQ3KIS8g==", + "path": "runtime.linux-arm64.runtime.native.system.io.ports/6.0.0", + "hashPath": "runtime.linux-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" + }, + "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-16nbNXwv0sC+gLGIuecri0skjuh6R1maIJggsaNP7MQBcbVcEfWFUOkEnsnvoLEjy0XerfibuRptfQ8AmdIcWA==", + "path": "runtime.linux-x64.runtime.native.system.io.ports/6.0.0", + "hashPath": "runtime.linux-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", + "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512" + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "path": "runtime.native.system.io.compression/4.3.0", + "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" + }, + "runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KaaXlpOcuZjMdmyF5wzzx3b+PRKIzt6A5Ax9dKenPDQbVJAFpev+casD0BIig1pBcbs3zx7CqWemzUJKAeHdSQ==", + "path": "runtime.native.system.io.ports/6.0.0", + "hashPath": "runtime.native.system.io.ports.6.0.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fXG12NodG1QrCdoaeSQ1gVnk/koi4WYY4jZtarMkZeQMyReBm1nZlSRoPnUjLr2ZR36TiMjpcGnQfxymieUe7w==", + "path": "runtime.osx-arm64.runtime.native.system.io.ports/6.0.0", + "hashPath": "runtime.osx-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" + }, + "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/As+zPY49+dSUXkh+fTUbyPhqrdGN//evLxo4Vue88pfh1BHZgF7q4kMblTkxYvwR6Vi03zSYxysSFktO8/SDQ==", + "path": "runtime.osx-x64.runtime.native.system.io.ports/6.0.0", + "hashPath": "runtime.osx-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "System.AppContext/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "path": "system.appcontext/4.3.0", + "hashPath": "system.appcontext.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "path": "system.buffers/4.3.0", + "hashPath": "system.buffers.4.3.0.nupkg.sha512" + }, + "System.CodeDom/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "path": "system.codedom/6.0.0", + "hashPath": "system.codedom.6.0.0.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Collections.Immutable/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", + "path": "system.collections.immutable/5.0.0", + "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512" + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "path": "system.collections.nongeneric/4.3.0", + "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "path": "system.collections.specialized/4.3.0", + "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "path": "system.componentmodel/4.3.0", + "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.Composition/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-60Qv+F7oxomOjJeTDA5Z4iCyFbQ0B/2Mi5HT+13pxxq0lVnu2ipbWMzFB+RWKr3wWKA8BSncXr9PH/fECwMX5Q==", + "path": "system.componentmodel.composition/6.0.0", + "hashPath": "system.componentmodel.composition.6.0.0.nupkg.sha512" + }, + "System.ComponentModel.Composition.Registration/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+i3RLlOgTsf15VeADBPpzPyRiXq71aLSuzdHeNtmq9f6BwpF3OWhB76p0WDUNCa3Z+SLD4dJbBM9yAep7kQCGA==", + "path": "system.componentmodel.composition.registration/6.0.0", + "hashPath": "system.componentmodel.composition.registration.6.0.0.nupkg.sha512" + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "path": "system.componentmodel.primitives/4.3.0", + "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "path": "system.componentmodel.typeconverter/4.3.0", + "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", + "path": "system.configuration.configurationmanager/6.0.0", + "hashPath": "system.configuration.configurationmanager.6.0.0.nupkg.sha512" + }, + "System.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "path": "system.console/4.3.0", + "hashPath": "system.console.4.3.0.nupkg.sha512" + }, + "System.Data.Odbc/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pnZjwe0Qwr1Rnp7NExd5zz4YwXJrYuAbWNKjEQpTzCEg6f/L5DYJS7w3hG3vgSj1t/r79UL390YzXIklf1VuQQ==", + "path": "system.data.odbc/6.0.0", + "hashPath": "system.data.odbc.6.0.0.nupkg.sha512" + }, + "System.Data.OleDb/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LQ8PjTIF1LtrrlGiyiTVjAkQtTWKm9GSNnygIlWjhN9y88s7xhy6DUNDDkmQQ9f6ex7mA4k0Tl97lz/CklaiLg==", + "path": "system.data.oledb/6.0.0", + "hashPath": "system.data.oledb.6.0.0.nupkg.sha512" + }, + "System.Data.SqlClient/4.8.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==", + "path": "system.data.sqlclient/4.8.3", + "hashPath": "system.data.sqlclient.4.8.3.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==", + "path": "system.diagnostics.diagnosticsource/5.0.0", + "hashPath": "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512" + }, + "System.Diagnostics.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "path": "system.diagnostics.eventlog/6.0.0", + "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gbeE5tNp/oB7O8kTTLh3wPPJCxpNOphXPTWVs1BsYuFOYapFijWuh0LYw1qnDo4gwDUYPXOmpTIhvtxisGsYOQ==", + "path": "system.diagnostics.performancecounter/6.0.0", + "hashPath": "system.diagnostics.performancecounter.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "path": "system.diagnostics.tools/4.3.0", + "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.TraceSource/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", + "path": "system.diagnostics.tracesource/4.3.0", + "hashPath": "system.diagnostics.tracesource.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.DirectoryServices/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kp/Op0nxDVGlElDKh8TsXO0GKXftQgAB6sJk0wUetZK1Rr0Pbd86Tn7AllLLlROFZa4BTl/LVHakljtGELFzCg==", + "path": "system.directoryservices/6.0.0", + "hashPath": "system.directoryservices.6.0.0.nupkg.sha512" + }, + "System.DirectoryServices.AccountManagement/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2iKkY6VC4WX6H13N8WhH2SRUfWCwg2KZR5w9JIS9cw9N8cZhT7VXxHX0L6OX6Po419aSu2LWrJE9tu6b+cUnPA==", + "path": "system.directoryservices.accountmanagement/6.0.0", + "hashPath": "system.directoryservices.accountmanagement.6.0.0.nupkg.sha512" + }, + "System.DirectoryServices.Protocols/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-++WKU7HQPo/FJdhywWw+q2lLjcVAGVw5XLH9kRCV+4DvkhVAcHCksh0ezIqwNROmaU9LMJN0d/LAdeWXu3pi6Q==", + "path": "system.directoryservices.protocols/6.0.0", + "hashPath": "system.directoryservices.protocols.6.0.0.nupkg.sha512" + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "path": "system.drawing.common/6.0.0", + "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", + "path": "system.dynamic.runtime/4.3.0", + "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" + }, + "System.Formats.Asn1/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA==", + "path": "system.formats.asn1/6.0.0", + "hashPath": "system.formats.asn1.6.0.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "path": "system.io.compression/4.3.0", + "hashPath": "system.io.compression.4.3.0.nupkg.sha512" + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "path": "system.io.compression.zipfile/4.3.0", + "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.IO.Packaging/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-C7OkTRIjqIjAKu6ef/fuj8ynCZTPcTYZnvHaq48bniACgXXJogmEoIc56YCDNTc14xhsbLmgpS3KP+evbsUa2g==", + "path": "system.io.packaging/6.0.0", + "hashPath": "system.io.packaging.6.0.0.nupkg.sha512" + }, + "System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dRyGI7fUESar5ZLIpiBOaaNLW7YyOBGftjj5Of+xcduC/Rjl7RjhEnWDvvNBmHuF3d0tdXoqdVI/yrVA8f00XA==", + "path": "system.io.ports/6.0.0", + "hashPath": "system.io.ports.6.0.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Management/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sHsESYMmPDhQuOC66h6AEOs/XowzKsbT9srMbX71TCXP58hkpn1BqBjdmKj1+DCA/WlBETX1K5WjQHwmV0Txrg==", + "path": "system.management/6.0.0", + "hashPath": "system.management.6.0.0.nupkg.sha512" + }, + "System.Management.Automation/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YlTE+q14vQ1YU//A5+/Jwl5+L5r6uOVIWuB4D/T9r80AaCeUAZMMvTKjgvIr9lwkovwQflVL+1JfBAi9f0q0KA==", + "path": "system.management.automation/7.2.1", + "hashPath": "system.management.automation.7.2.1.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "path": "system.net.http/4.3.0", + "hashPath": "system.net.http.4.3.0.nupkg.sha512" + }, + "System.Net.Http.WinHttpHandler/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jubNN9jH4NzVrvEf4fGwESLBsfH8whWNbHMhgM6IwA8UCt6+/M19bbOHc21JhigvC2HQKCl8HKGZMcBtIpzqIg==", + "path": "system.net.http.winhttphandler/6.0.0", + "hashPath": "system.net.http.winhttphandler.6.0.0.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "path": "system.net.sockets/4.3.0", + "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "path": "system.numerics.vectors/4.5.0", + "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Private.ServiceModel/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-d3RjkrtpjUQ63PzFmm/SZ4aOXeJNP+8YW5QeP0lCJy8iX4xlHdlNLWTF9sRn9SmrFTK757kQXT9Op/R4l858uw==", + "path": "system.private.servicemodel/4.9.0", + "hashPath": "system.private.servicemodel.4.9.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Context/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vi+Gb41oyOYie7uLSsjRmfRg3bryUg5DssJvj3gDUl0D8z6ipSm6/yi/XNx2rcS5iVMvHcwRUHjcx7ixv0K3/w==", + "path": "system.reflection.context/6.0.0", + "hashPath": "system.reflection.context.6.0.0.nupkg.sha512" + }, + "System.Reflection.DispatchProxy/4.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-C1sMLwIG6ILQ2bmOT4gh62V6oJlyF4BlHcVMrOoor49p0Ji2tA8QAoqyMcIhAdH6OHKJ8m7BU+r4LK2CUEOKqw==", + "path": "system.reflection.dispatchproxy/4.7.1", + "hashPath": "system.reflection.dispatchproxy.4.7.1.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Metadata/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==", + "path": "system.reflection.metadata/5.0.0", + "hashPath": "system.reflection.metadata.5.0.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==", + "path": "system.runtime.caching/6.0.0", + "hashPath": "system.runtime.caching.6.0.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "path": "system.security.accesscontrol/6.0.0", + "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "path": "system.security.cryptography.cng/4.3.0", + "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Pkcs/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-elM3x+xSRhzQysiqo85SbidJJ2YbZlnvmh+53TuSZHsD7dNuuEWser+9EFtY+rYupBwkq2avc6ZCO3/6qACgmg==", + "path": "system.security.cryptography.pkcs/6.0.0", + "hashPath": "system.security.cryptography.pkcs.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "path": "system.security.cryptography.protecteddata/6.0.0", + "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Xml/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-puJ4UCh9JVRwOCyCIcq71JY6Axr8Sp8E2GjTIU1Fj8hm4+oX6NEoyGFGa/+pBG8SrVxbQPSj7hvtaREyTHHsmw==", + "path": "system.security.cryptography.xml/6.0.0", + "hashPath": "system.security.cryptography.xml.6.0.0.nupkg.sha512" + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "path": "system.security.permissions/6.0.0", + "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "path": "system.security.principal.windows/5.0.0", + "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" + }, + "System.ServiceModel.Duplex/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Yb8MFiJxBBtm2JnfS/5SxYzm2HqkEmHu5xeaVIHXy83sNpty9wc30JifH2xgda821D6nr1UctbwbdZqN4LBUKQ==", + "path": "system.servicemodel.duplex/4.9.0", + "hashPath": "system.servicemodel.duplex.4.9.0.nupkg.sha512" + }, + "System.ServiceModel.Http/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z+s3RkLNzJ31fDXAjqXdXp67FqsNG4V3Md3r7FOrzMkHmg61gY8faEfTFPBLxU9tax1HPWt6IHVAquXBKySJaw==", + "path": "system.servicemodel.http/4.9.0", + "hashPath": "system.servicemodel.http.4.9.0.nupkg.sha512" + }, + "System.ServiceModel.NetTcp/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nXgnnkrZERUF/KwmoLwZPkc7fqgiq94DXkmUZBvDNh/LdZquDvjy2NbhJLElpApOa5x8zEoQoBZyJ2PqNC39qg==", + "path": "system.servicemodel.nettcp/4.9.0", + "hashPath": "system.servicemodel.nettcp.4.9.0.nupkg.sha512" + }, + "System.ServiceModel.Primitives/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LTFPVdS8Nf76xg/wRZkDa+2Q+GnjTOmwkTlwuoetwX37mAfYnGkf7p8ydhpDwVmomNljpUOhUUGxfjQyd5YcOg==", + "path": "system.servicemodel.primitives/4.9.0", + "hashPath": "system.servicemodel.primitives.4.9.0.nupkg.sha512" + }, + "System.ServiceModel.Security/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iurpbSmPgotHps94VQ6acvL6hU2gjiuBmQI7PwLLN76jsbSpUcahT0PglccKIAwoMujATk/LWtAapBHpwCFn2g==", + "path": "system.servicemodel.security/4.9.0", + "hashPath": "system.servicemodel.security.4.9.0.nupkg.sha512" + }, + "System.ServiceModel.Syndication/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cp1mMNG87iJtE0oHXFtfWT6cfski2JNo5iU0siTPi/uN2k1CIJI6FE4jr4v3got2dzt7wBq17fSy44btun9GiA==", + "path": "system.servicemodel.syndication/6.0.0", + "hashPath": "system.servicemodel.syndication.6.0.0.nupkg.sha512" + }, + "System.ServiceProcess.ServiceController/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qMBvG8ZFbkXoe0Z5/D7FAAadfPkH2v7vSuh2xsLf3U6jNoejpIdeV18A0htiASsLK1CCAc/p59kaLXlt2yB1gw==", + "path": "system.serviceprocess.servicecontroller/6.0.0", + "hashPath": "system.serviceprocess.servicecontroller.6.0.0.nupkg.sha512" + }, + "System.Speech/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GQovERMrNP0Vbtgk8LzH4PlFS6lqHgsL9WkUmv8Kkxa0m0vNakitytpHZlfJ9WR7n9WKLXh68nn2kyL9mflnLg==", + "path": "system.speech/6.0.0", + "hashPath": "system.speech.6.0.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", + "path": "system.text.encoding.codepages/6.0.0", + "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.AccessControl/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2258mqWesMch/xCpcnjJBgJP33yhpZLGLbEOm01qwq0efG4b+NG8c9sxYOWNxmDQ82swXrnQRl1Yp2wC1NrfZA==", + "path": "system.threading.accesscontrol/6.0.0", + "hashPath": "system.threading.accesscontrol.6.0.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "path": "system.threading.tasks.extensions/4.5.4", + "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "path": "system.threading.timer/4.3.0", + "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" + }, + "System.Web.Services.Description/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-d20B3upsWddwSG5xF3eQLs0cAV3tXDsBNqP4kh02ylfgZwqfpf4f/9KiZVIGIoxULt2cKqxWs+U4AdNAJ7L8cQ==", + "path": "system.web.services.description/4.9.0", + "hashPath": "system.web.services.description.4.9.0.nupkg.sha512" + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "path": "system.windows.extensions/6.0.0", + "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "path": "system.xml.xdocument/4.3.0", + "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "path": "system.xml.xmldocument/4.3.0", + "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" + }, + "xunit/2.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XNR3Yz9QTtec16O0aKcO6+baVNpXmOnPUxDkCY97J+8krUYxPvXT1szYYEUdKk4sB8GOI2YbAjRIOm8ZnXRfzQ==", + "path": "xunit/2.4.1", + "hashPath": "xunit.2.4.1.nupkg.sha512" + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", + "path": "xunit.abstractions/2.0.3", + "hashPath": "xunit.abstractions.2.0.3.nupkg.sha512" + }, + "xunit.analyzers/0.10.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4/IDFCJfIeg6bix9apmUtIMwvOsiwqdEexeO/R2D4GReIGPLIRODTpId/l4LRSrAJk9lEO3Zx1H0Zx6uohJDNg==", + "path": "xunit.analyzers/0.10.0", + "hashPath": "xunit.analyzers.0.10.0.nupkg.sha512" + }, + "xunit.assert/2.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-O/Oe0BS5RmSsM+LQOb041TzuPo5MdH2Rov+qXGS37X+KFG1Hxz7kopYklM5+1Y+tRGeXrOx5+Xne1RuqLFQoyQ==", + "path": "xunit.assert/2.4.1", + "hashPath": "xunit.assert.2.4.1.nupkg.sha512" + }, + "xunit.core/2.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Zsj5OMU6JasNGERXZy8s72+pcheG6Q15atS5XpZXqAtULuyQiQ6XNnUsp1gyfC6WgqScqMvySiEHmHcOG6Eg0Q==", + "path": "xunit.core/2.4.1", + "hashPath": "xunit.core.2.4.1.nupkg.sha512" + }, + "xunit.extensibility.core/2.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yKZKm/8QNZnBnGZFD9SewkllHBiK0DThybQD/G4PiAmQjKtEZyHi6ET70QPU9KtSMJGRYS6Syk7EyR2EVDU4Kg==", + "path": "xunit.extensibility.core/2.4.1", + "hashPath": "xunit.extensibility.core.2.4.1.nupkg.sha512" + }, + "xunit.extensibility.execution/2.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7e/1jqBpcb7frLkB6XDrHCGXAbKN4Rtdb88epYxCSRQuZDRW8UtTfdTEVpdTl8s4T56e07hOBVd4G0OdCxIY2A==", + "path": "xunit.extensibility.execution/2.4.1", + "hashPath": "xunit.extensibility.execution.2.4.1.nupkg.sha512" + }, + "xunit.runner.visualstudio/2.4.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kZZSmOmKA8OBlAJaquPXnJJLM9RwQ27H7BMVqfMLUcTi9xHinWGJiWksa3D4NEtz0wZ/nxd2mogObvBgJKCRhQ==", + "path": "xunit.runner.visualstudio/2.4.3", + "hashPath": "xunit.runner.visualstudio.2.4.3.nupkg.sha512" + }, + "YamlDotNet/11.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tBt8K+korVfrjH9wyDEhiLKxbs8qoLCLIFwvYgkSUuMC9//w3z0cFQ8LQAI/5MCKq+BMil0cfRTRvPeE7eXhQw==", + "path": "yamldotnet/11.2.1", + "hashPath": "yamldotnet.11.2.1.nupkg.sha512" + }, + "Linguard.Core/2.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Linguard.Log/2.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Core.Test.dll b/linguard/Cli.Test/bin/Debug/net6.0/Core.Test.dll new file mode 100644 index 0000000..d3355e5 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Core.Test.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Core.Test.pdb b/linguard/Cli.Test/bin/Debug/net6.0/Core.Test.pdb new file mode 100644 index 0000000..7448848 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Core.Test.pdb differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Core.Test.runtimeconfig.json b/linguard/Cli.Test/bin/Debug/net6.0/Core.Test.runtimeconfig.json new file mode 100644 index 0000000..4986d16 --- /dev/null +++ b/linguard/Cli.Test/bin/Debug/net6.0/Core.Test.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + } + } +} \ No newline at end of file diff --git a/linguard/Cli.Test/bin/Debug/net6.0/CoverletSourceRootsMapping b/linguard/Cli.Test/bin/Debug/net6.0/CoverletSourceRootsMapping new file mode 100644 index 0000000..a2a7f4e Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/CoverletSourceRootsMapping differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/FluentAssertions.dll b/linguard/Cli.Test/bin/Debug/net6.0/FluentAssertions.dll new file mode 100644 index 0000000..279f957 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/FluentAssertions.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/FluentValidation.dll b/linguard/Cli.Test/bin/Debug/net6.0/FluentValidation.dll new file mode 100644 index 0000000..fd90d11 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/FluentValidation.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Cli.deps.json b/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Cli.deps.json new file mode 100644 index 0000000..652891e --- /dev/null +++ b/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Cli.deps.json @@ -0,0 +1,3017 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "Linguard.Cli/2.0.0": { + "dependencies": { + "CommandLineParser": "2.8.0", + "FluentValidation": "10.3.6", + "Linguard.Core": "2.0.0", + "Typin": "3.1.0" + }, + "runtime": { + "Linguard.Cli.dll": {} + } + }, + "Bogus/34.0.1": { + "runtime": { + "lib/net6.0/Bogus.dll": { + "assemblyVersion": "34.0.1.0", + "fileVersion": "34.0.1.0" + } + } + }, + "ByteSize/2.1.1": { + "runtime": { + "lib/net5.0/ByteSize.dll": { + "assemblyVersion": "2.1.1.0", + "fileVersion": "2.1.1.0" + } + } + }, + "CommandLineParser/2.8.0": { + "runtime": { + "lib/netstandard2.0/CommandLine.dll": { + "assemblyVersion": "2.8.0.0", + "fileVersion": "2.8.0.0" + } + } + }, + "FluentValidation/10.3.6": { + "runtime": { + "lib/net6.0/FluentValidation.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "10.3.6.0" + } + } + }, + "IPNetwork2/2.5.386": { + "runtime": { + "lib/net5.0/System.Net.IPNetwork.dll": { + "assemblyVersion": "2.5.386.0", + "fileVersion": "2.5.386.0" + } + } + }, + "Markdig.Signed/0.22.0": { + "runtime": { + "lib/netcoreapp3.1/Markdig.Signed.dll": { + "assemblyVersion": "0.22.0.0", + "fileVersion": "0.22.0.0" + } + } + }, + "Microsoft.ApplicationInsights/2.18.0": { + "dependencies": { + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": { + "assemblyVersion": "2.18.0.315", + "fileVersion": "2.18.0.315" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/5.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": {}, + "Microsoft.CodeAnalysis.Common/4.0.1": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.2", + "System.Collections.Immutable": "5.0.0", + "System.Memory": "4.5.4", + "System.Reflection.Metadata": "5.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encoding.CodePages": "6.0.0", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.121.55815" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.0.1": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "4.0.1" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.121.55815" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CSharp/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Logging/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Logging.Debug/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.ObjectPool/5.0.10": { + "runtime": { + "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.1021.41022" + } + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Management.Infrastructure/2.0.0": { + "dependencies": { + "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0", + "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0" + } + }, + "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { + "runtimeTargets": { + "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win-arm", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win-arm", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win-arm64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win-arm64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win10-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win10-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win10-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win10-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win7-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win7-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win7-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win7-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win8-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win8-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win8-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win8-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win81-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win81-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win81-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win81-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm/native/mi.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm/native/miutils.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm64/native/mi.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm64/native/miutils.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win10-x64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x64/native/mi.dll": { + "rid": "win10-x64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x64/native/miutils.dll": { + "rid": "win10-x64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win10-x86", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x86/native/mi.dll": { + "rid": "win10-x86", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x86/native/miutils.dll": { + "rid": "win10-x86", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win7-x64", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win7-x64/native/mi.dll": { + "rid": "win7-x64", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win7-x64/native/miutils.dll": { + "rid": "win7-x64", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win7-x86", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win7-x86/native/mi.dll": { + "rid": "win7-x86", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win7-x86/native/miutils.dll": { + "rid": "win7-x86", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win8-x64/native/mi.dll": { + "rid": "win8-x64", + "assetType": "native", + "fileVersion": "6.2.9200.22812" + }, + "runtimes/win8-x64/native/miutils.dll": { + "rid": "win8-x64", + "assetType": "native", + "fileVersion": "6.2.9200.22812" + }, + "runtimes/win8-x86/native/mi.dll": { + "rid": "win8-x86", + "assetType": "native", + "fileVersion": "6.2.9200.22812" + }, + "runtimes/win8-x86/native/miutils.dll": { + "rid": "win8-x86", + "assetType": "native", + "fileVersion": "6.2.9200.22812" + }, + "runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win81-x64", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + }, + "runtimes/win81-x64/native/mi.dll": { + "rid": "win81-x64", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + }, + "runtimes/win81-x64/native/miutils.dll": { + "rid": "win81-x64", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + }, + "runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win81-x86", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + }, + "runtimes/win81-x86/native/mi.dll": { + "rid": "win81-x86", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + }, + "runtimes/win81-x86/native/miutils.dll": { + "rid": "win81-x86", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + } + } + }, + "Microsoft.NETCore.Platforms/1.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": {}, + "Microsoft.PowerShell.Commands.Diagnostics/7.2.1": { + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.PowerShell.Commands.Management/7.2.1": { + "dependencies": { + "Microsoft.PowerShell.Security": "7.2.1", + "System.ServiceProcess.ServiceController": "6.0.0" + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.PowerShell.Commands.Utility/7.2.1": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "4.0.1", + "Microsoft.PowerShell.MarkdownRender": "7.2.0", + "NJsonSchema": "10.5.2", + "System.Drawing.Common": "6.0.0", + "System.Management.Automation": "7.2.1", + "System.Threading.AccessControl": "6.0.0" + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.PowerShell.ConsoleHost/7.2.1": { + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { + "dependencies": { + "System.Diagnostics.EventLog": "6.0.0" + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.PowerShell.MarkdownRender/7.2.0": { + "dependencies": { + "Markdig.Signed": "0.22.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll": { + "assemblyVersion": "7.2.0.0", + "fileVersion": "7.2.0.0" + } + } + }, + "Microsoft.PowerShell.Native/7.2.0": { + "runtimeTargets": { + "runtimes/linux-arm/native/libpsl-native.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libpsl-native.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libpsl-native.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libmi.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libpsl-native.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libpsrpclient.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx/native/libmi.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx/native/libpsl-native.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx/native/libpsrpclient.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-arm/native/pwrshplugin.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-arm64/native/pwrshplugin.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-x64/native/pwrshplugin.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-x86/native/pwrshplugin.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + } + } + }, + "Microsoft.PowerShell.SDK/7.2.1": { + "dependencies": { + "Microsoft.Management.Infrastructure.CimCmdlets": "7.2.1", + "Microsoft.NETCore.Windows.ApiSets": "1.0.1", + "Microsoft.PowerShell.Commands.Diagnostics": "7.2.1", + "Microsoft.PowerShell.Commands.Management": "7.2.1", + "Microsoft.PowerShell.Commands.Utility": "7.2.1", + "Microsoft.PowerShell.ConsoleHost": "7.2.1", + "Microsoft.PowerShell.Security": "7.2.1", + "Microsoft.WSMan.Management": "7.2.1", + "Microsoft.Windows.Compatibility": "6.0.0", + "System.Data.SqlClient": "4.8.3", + "System.IO.Packaging": "6.0.0", + "System.Management.Automation": "7.2.1", + "System.Net.Http.WinHttpHandler": "6.0.0", + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Duplex": "4.9.0", + "System.ServiceModel.Http": "4.9.0", + "System.ServiceModel.NetTcp": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0", + "System.ServiceModel.Security": "4.9.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.PowerShell.Security/7.2.1": { + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "Microsoft.Win32.Registry.AccessControl/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Windows.Compatibility/6.0.0": { + "dependencies": { + "Microsoft.Win32.Registry.AccessControl": "6.0.0", + "Microsoft.Win32.SystemEvents": "6.0.0", + "System.CodeDom": "6.0.0", + "System.ComponentModel.Composition": "6.0.0", + "System.ComponentModel.Composition.Registration": "6.0.0", + "System.Configuration.ConfigurationManager": "6.0.0", + "System.Data.Odbc": "6.0.0", + "System.Data.OleDb": "6.0.0", + "System.Data.SqlClient": "4.8.3", + "System.Diagnostics.EventLog": "6.0.0", + "System.Diagnostics.PerformanceCounter": "6.0.0", + "System.DirectoryServices": "6.0.0", + "System.DirectoryServices.AccountManagement": "6.0.0", + "System.DirectoryServices.Protocols": "6.0.0", + "System.Drawing.Common": "6.0.0", + "System.IO.Packaging": "6.0.0", + "System.IO.Ports": "6.0.0", + "System.Management": "6.0.0", + "System.Reflection.Context": "6.0.0", + "System.Runtime.Caching": "6.0.0", + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.0", + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Cryptography.Xml": "6.0.0", + "System.Security.Permissions": "6.0.0", + "System.ServiceModel.Duplex": "4.9.0", + "System.ServiceModel.Http": "4.9.0", + "System.ServiceModel.NetTcp": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0", + "System.ServiceModel.Security": "4.9.0", + "System.ServiceModel.Syndication": "6.0.0", + "System.ServiceProcess.ServiceController": "6.0.0", + "System.Speech": "6.0.0", + "System.Text.Encoding.CodePages": "6.0.0", + "System.Threading.AccessControl": "6.0.0", + "System.Web.Services.Description": "4.9.0" + } + }, + "Microsoft.WSMan.Management/7.2.1": { + "dependencies": { + "Microsoft.WSMan.Runtime": "7.2.1", + "System.Management.Automation": "7.2.1", + "System.ServiceProcess.ServiceController": "6.0.0" + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.WSMan.Runtime/7.2.1": { + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Namotion.Reflection/2.0.3": { + "dependencies": { + "Microsoft.CSharp": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/Namotion.Reflection.dll": { + "assemblyVersion": "2.0.3.0", + "fileVersion": "2.0.3.0" + } + } + }, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + } + }, + "NJsonSchema/10.5.2": { + "dependencies": { + "Namotion.Reflection": "2.0.3", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netstandard2.0/NJsonSchema.dll": { + "assemblyVersion": "10.5.2.0", + "fileVersion": "10.5.2.0" + } + } + }, + "NLog/4.7.13": { + "runtime": { + "lib/netstandard2.0/NLog.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.7.13.493" + } + } + }, + "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { + "runtimeTargets": { + "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": { + "runtimeTargets": { + "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": { + "runtimeTargets": { + "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.native.System.IO.Ports/6.0.0": { + "dependencies": { + "runtime.linux-arm.runtime.native.System.IO.Ports": "6.0.0", + "runtime.linux-arm64.runtime.native.System.IO.Ports": "6.0.0", + "runtime.linux-x64.runtime.native.System.IO.Ports": "6.0.0", + "runtime.osx-arm64.runtime.native.System.IO.Ports": "6.0.0", + "runtime.osx-x64.runtime.native.System.IO.Ports": "6.0.0" + } + }, + "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": { + "runtimeTargets": { + "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib": { + "rid": "osx-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { + "runtimeTargets": { + "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "System.CodeDom/6.0.0": { + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Immutable/5.0.0": {}, + "System.ComponentModel.Composition/6.0.0": { + "runtime": { + "lib/net6.0/System.ComponentModel.Composition.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.ComponentModel.Composition.Registration/6.0.0": { + "dependencies": { + "System.ComponentModel.Composition": "6.0.0", + "System.Reflection.Context": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.ComponentModel.Composition.Registration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Configuration.ConfigurationManager/6.0.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Data.Odbc/6.0.0": { + "dependencies": { + "System.Text.Encoding.CodePages": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Data.Odbc.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll": { + "rid": "freebsd", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/illumos/lib/net6.0/System.Data.Odbc.dll": { + "rid": "illumos", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/ios/lib/net6.0/System.Data.Odbc.dll": { + "rid": "ios", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/linux/lib/net6.0/System.Data.Odbc.dll": { + "rid": "linux", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/osx/lib/net6.0/System.Data.Odbc.dll": { + "rid": "osx", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/solaris/lib/net6.0/System.Data.Odbc.dll": { + "rid": "solaris", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/tvos/lib/net6.0/System.Data.Odbc.dll": { + "rid": "tvos", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.Data.Odbc.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Data.OleDb/6.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0", + "System.Diagnostics.PerformanceCounter": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Data.OleDb.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Data.OleDb.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Data.SqlClient/4.8.3": { + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Principal.Windows": "5.0.0", + "runtime.native.System.Data.SqlClient.sni": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assemblyVersion": "4.6.1.3", + "fileVersion": "4.700.21.41603" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.6.1.3", + "fileVersion": "4.700.21.41603" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.6.1.3", + "fileVersion": "4.700.21.41603" + } + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Diagnostics.EventLog/6.0.0": { + "runtime": { + "lib/net6.0/System.Diagnostics.EventLog.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "0.0.0.0" + }, + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Diagnostics.PerformanceCounter/6.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.DirectoryServices/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.DirectoryServices.AccountManagement/6.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0", + "System.DirectoryServices": "6.0.0", + "System.DirectoryServices.Protocols": "6.0.0", + "System.Security.AccessControl": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.DirectoryServices.AccountManagement.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.DirectoryServices.Protocols/6.0.0": { + "runtime": { + "lib/net6.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "rid": "linux", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "rid": "osx", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Drawing.Common/6.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Dynamic.Runtime/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Formats.Asn1/6.0.0": {}, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Packaging/6.0.0": { + "runtime": { + "lib/net6.0/System.IO.Packaging.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.IO.Ports/6.0.0": { + "dependencies": { + "runtime.native.System.IO.Ports": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.IO.Ports.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.IO.Ports.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.IO.Ports.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Management/6.0.0": { + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Management.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Management.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Management.Automation/7.2.1": { + "dependencies": { + "Microsoft.ApplicationInsights": "2.18.0", + "Microsoft.Management.Infrastructure": "2.0.0", + "Microsoft.PowerShell.CoreCLR.Eventing": "7.2.1", + "Microsoft.PowerShell.Native": "7.2.0", + "Microsoft.Win32.Registry.AccessControl": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "System.Configuration.ConfigurationManager": "6.0.0", + "System.DirectoryServices": "6.0.0", + "System.Management": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.0", + "System.Security.Permissions": "6.0.0", + "System.Text.Encoding.CodePages": "6.0.0" + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Management.Automation.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + }, + "runtimes/win/lib/net6.0/System.Management.Automation.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "System.Memory/4.5.4": {}, + "System.Net.Http.WinHttpHandler/6.0.0": { + "runtime": { + "lib/net6.0/System.Net.Http.WinHttpHandler.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Numerics.Vectors/4.5.0": {}, + "System.ObjectModel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Private.ServiceModel/4.9.0": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "5.0.0", + "Microsoft.Extensions.ObjectPool": "5.0.10", + "System.Numerics.Vectors": "4.5.0", + "System.Reflection.DispatchProxy": "4.7.1", + "System.Security.Cryptography.Xml": "6.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Private.ServiceModel.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + }, + "resources": { + "lib/netstandard2.0/cs/System.Private.ServiceModel.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/System.Private.ServiceModel.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/System.Private.ServiceModel.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/System.Private.ServiceModel.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/System.Private.ServiceModel.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/System.Private.ServiceModel.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/System.Private.ServiceModel.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/System.Private.ServiceModel.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/System.Private.ServiceModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/System.Private.ServiceModel.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/System.Private.ServiceModel.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/System.Private.ServiceModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/System.Private.ServiceModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Context/6.0.0": { + "runtime": { + "lib/net6.0/System.Reflection.Context.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Reflection.DispatchProxy/4.7.1": {}, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Metadata/5.0.0": {}, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/6.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Security.AccessControl/6.0.0": {}, + "System.Security.Cryptography.Pkcs/6.0.0": { + "dependencies": { + "System.Formats.Asn1": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Cryptography.Xml/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Permissions/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Principal.Windows/5.0.0": {}, + "System.ServiceModel.Duplex/4.9.0": { + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Duplex.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + } + }, + "System.ServiceModel.Http/4.9.0": { + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Http.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + } + }, + "System.ServiceModel.NetTcp/4.9.0": { + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.NetTcp.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + } + }, + "System.ServiceModel.Primitives/4.9.0": { + "dependencies": { + "System.Private.ServiceModel": "4.9.0" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Primitives.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + }, + "lib/net6.0/System.ServiceModel.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.900.21.52002" + } + } + }, + "System.ServiceModel.Security/4.9.0": { + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Security.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + } + }, + "System.ServiceModel.Syndication/6.0.0": { + "runtime": { + "lib/net6.0/System.ServiceModel.Syndication.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.ServiceProcess.ServiceController/6.0.0": { + "dependencies": { + "System.Diagnostics.EventLog": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.ServiceProcess.ServiceController.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Speech/6.0.0": { + "runtime": { + "lib/net6.0/System.Speech.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Speech.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.AccessControl/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Threading.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Threading.AccessControl.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.5.4": {}, + "System.Web.Services.Description/4.9.0": { + "runtime": { + "lib/netstandard2.0/System.Web.Services.Description.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + }, + "resources": { + "lib/netstandard2.0/cs/System.Web.Services.Description.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/System.Web.Services.Description.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/System.Web.Services.Description.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/System.Web.Services.Description.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/System.Web.Services.Description.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/System.Web.Services.Description.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/System.Web.Services.Description.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/System.Web.Services.Description.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/System.Web.Services.Description.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/System.Web.Services.Description.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/System.Web.Services.Description.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/System.Web.Services.Description.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/System.Web.Services.Description.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Windows.Extensions/6.0.0": { + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Typin/3.1.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.Logging.Debug": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Typin.Core": "3.1.0" + }, + "runtime": { + "lib/net6.0/Typin.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "Typin.Core/3.1.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0" + }, + "runtime": { + "lib/net6.0/Typin.Core.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "YamlDotNet/11.2.1": { + "runtime": { + "lib/netstandard2.1/YamlDotNet.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.2.1.0" + } + } + }, + "Linguard.Core/2.0.0": { + "dependencies": { + "Bogus": "34.0.1", + "ByteSize": "2.1.1", + "FluentValidation": "10.3.6", + "IPNetwork2": "2.5.386", + "Linguard.Log": "2.0.0", + "Microsoft.PowerShell.SDK": "7.2.1", + "System.Management.Automation": "7.2.1", + "YamlDotNet": "11.2.1" + }, + "runtime": { + "Linguard.Core.dll": {} + } + }, + "Linguard.Log/2.0.0": { + "dependencies": { + "NLog": "4.7.13" + }, + "runtime": { + "Linguard.Log.dll": {} + } + } + } + }, + "libraries": { + "Linguard.Cli/2.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Bogus/34.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-49iq7QrD0wb7V4/FcK8p3dWdJxNUbojaqK9L6KRvdikIuRjt38EsNp7QXICcYdbYw01K8BHUdxlnTNn/YX3qDA==", + "path": "bogus/34.0.1", + "hashPath": "bogus.34.0.1.nupkg.sha512" + }, + "ByteSize/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-D+Y3NpbHrW21vZwwegeWf/8iAg2Mr0s7n1su8Ysho+O9dctJ5/EkWUi19QVxc6+nZl080gGTXBP/Nz0twSI3dA==", + "path": "bytesize/2.1.1", + "hashPath": "bytesize.2.1.1.nupkg.sha512" + }, + "CommandLineParser/2.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eco2HlKQBY4Joz9odHigzGpVzv6pjsXnY5lziioMveQxr+i2Z7xYcIOMeZTgYiqnMtMAbXMXsVhrNfWO5vJS8Q==", + "path": "commandlineparser/2.8.0", + "hashPath": "commandlineparser.2.8.0.nupkg.sha512" + }, + "FluentValidation/10.3.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iMd370ZDx6ydm8t7bIFdRbSKX0e42lpvCtifUSbTSXOk5iKjmgl7HU0PXBhIWQAyIRi3gCwfMI9luj8H6K+byw==", + "path": "fluentvalidation/10.3.6", + "hashPath": "fluentvalidation.10.3.6.nupkg.sha512" + }, + "IPNetwork2/2.5.386": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6ihnNm82vyJsUYYfR2BRTziY/mQ5UGLsQZuhdSYPeTlbQLhBW/4BC9hBz3h5bFDn8PkVw9dP0cpv9brIBmk4Fw==", + "path": "ipnetwork2/2.5.386", + "hashPath": "ipnetwork2.2.5.386.nupkg.sha512" + }, + "Markdig.Signed/0.22.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7x3FqS3wk8DXyQLuflD47tBs6+ly6k4VtoDCzlDWfy7XHVsBIi7eGYEM15sPAcwSCQjOksNWE8U5r2v0Sk5FzQ==", + "path": "markdig.signed/0.22.0", + "hashPath": "markdig.signed.0.22.0.nupkg.sha512" + }, + "Microsoft.ApplicationInsights/2.18.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-milJB3VOCoC4EWmpE/Co9cOJ7SV6Ji6VqV4Rf5UlqL9QCg+rAX1y+3Y+j1Gu/j4IExYiPq7SEKqkP2BFnEu6Vw==", + "path": "microsoft.applicationinsights/2.18.0", + "hashPath": "microsoft.applicationinsights.2.18.0.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ==", + "path": "microsoft.bcl.asyncinterfaces/5.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==", + "path": "microsoft.codeanalysis.analyzers/3.3.2", + "hashPath": "microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SMREwaVD5SzatlWhh9aahQAtSWdb63NcE//f+bQzgHSECU6xtDtaxk0kwV+asdFfr6HtW38UeO6jvqdfzudg3w==", + "path": "microsoft.codeanalysis.common/4.0.1", + "hashPath": "microsoft.codeanalysis.common.4.0.1.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q9RxxydPpUElj/x1/qykDTUGsRoKbJG8H5XUSeMGmMu54fBiuX1xyanom9caa1oQfh5JIW1BgLxobSaWs4WyHQ==", + "path": "microsoft.codeanalysis.csharp/4.0.1", + "hashPath": "microsoft.codeanalysis.csharp.4.0.1.nupkg.sha512" + }, + "Microsoft.CSharp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==", + "path": "microsoft.csharp/4.3.0", + "hashPath": "microsoft.csharp.4.3.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", + "path": "microsoft.extensions.dependencyinjection/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", + "path": "microsoft.extensions.logging/6.0.0", + "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", + "path": "microsoft.extensions.logging.abstractions/6.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Debug/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M9g/JixseSZATJE9tcMn9uzoD4+DbSglivFqVx8YkRJ7VVPmnvCEbOZ0AAaxsL1EKyI4cz07DXOOJExxNsUOHw==", + "path": "microsoft.extensions.logging.debug/6.0.0", + "hashPath": "microsoft.extensions.logging.debug.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.ObjectPool/5.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pp9tbGqIhdEXL6Q1yJl+zevAJSq4BsxqhS1GXzBvEsEz9DDNu9GLNzgUy2xyFc4YjB4m4Ff2YEWTnvQvVYdkvQ==", + "path": "microsoft.extensions.objectpool/5.0.10", + "hashPath": "microsoft.extensions.objectpool.5.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "path": "microsoft.extensions.options/6.0.0", + "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.Management.Infrastructure/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IaKZRNBBv3sdrmBWd+aqwHq8cVHk/3WgWFAN/dt40MRY9rbtHiDfTTmaEN0tGTmQqGCGDo/ncntA8MvFMvcsRw==", + "path": "microsoft.management.infrastructure/2.0.0", + "hashPath": "microsoft.management.infrastructure.2.0.0.nupkg.sha512" + }, + "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xe1x237SCyrjpmW1mP1T69/OOc/gtU66P8wVC+b4/u7Hz7fIO6B8P5yVQQfb79rAe1GocruIpQlX4KXTFQf09w==", + "path": "microsoft.management.infrastructure.cimcmdlets/7.2.1", + "hashPath": "microsoft.management.infrastructure.cimcmdlets.7.2.1.nupkg.sha512" + }, + "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-p0lslMX5bdWLxO2P7ao+rjAMOB0LEwPYpzvdCQ2OEYgX2NxFpQ8ILvqPGnYlTAb53rT8gu5DyIol1HboHFYfxQ==", + "path": "microsoft.management.infrastructure.runtime.unix/2.0.0", + "hashPath": "microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512" + }, + "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vjBWQeDOjgernkrOdbEgn7M70SF7hof7ORdKPSlL06Uc15+oYdth5dZju9KsgUoti/cwnkZTiwtDx/lRtay0sA==", + "path": "microsoft.management.infrastructure.runtime.win/2.0.0", + "hashPath": "microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "path": "microsoft.netcore.platforms/1.1.0", + "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==", + "path": "microsoft.netcore.windows.apisets/1.0.1", + "hashPath": "microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512" + }, + "Microsoft.PowerShell.Commands.Diagnostics/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Bgw4Egv7cnYUTWAy6koxg+0+/8K6rqUdlAiAxuJby9FeDPZQFfqCHQqlyP9JDa6lvbtmeBx1btFDx6Kh8bxdwQ==", + "path": "microsoft.powershell.commands.diagnostics/7.2.1", + "hashPath": "microsoft.powershell.commands.diagnostics.7.2.1.nupkg.sha512" + }, + "Microsoft.PowerShell.Commands.Management/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YAMrGDF2QTg6Gwz07+m1+BnmcYsPyywfY4J8nOpImfXZLLNhD7zQQP0orNHu9WPPV3/+E33qUyPj5J3ugCMk6A==", + "path": "microsoft.powershell.commands.management/7.2.1", + "hashPath": "microsoft.powershell.commands.management.7.2.1.nupkg.sha512" + }, + "Microsoft.PowerShell.Commands.Utility/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PU15IxUJd7nSacTstlxqJoEeGlI+BH6cUKTppkkIIxEj7EfwC5nD1qTL41xye63BFeZmOFeqAhMI6LtJUd875g==", + "path": "microsoft.powershell.commands.utility/7.2.1", + "hashPath": "microsoft.powershell.commands.utility.7.2.1.nupkg.sha512" + }, + "Microsoft.PowerShell.ConsoleHost/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uAPSsTmkOa7na1+OAPF87yBRwD1Ka/qXThoyrlvP9ihzMWfHM52k3MuKVEGi04VP3Wdi7U4Rzkr3svxDDmkHgA==", + "path": "microsoft.powershell.consolehost/7.2.1", + "hashPath": "microsoft.powershell.consolehost.7.2.1.nupkg.sha512" + }, + "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fUz7InjavqKtslkQN828nWbZLnmmJRL9rn4b3e/XXdx0BcN+65x/pSgMnehwDVGIoqUPUMXN54eDo4HRVcLA5g==", + "path": "microsoft.powershell.coreclr.eventing/7.2.1", + "hashPath": "microsoft.powershell.coreclr.eventing.7.2.1.nupkg.sha512" + }, + "Microsoft.PowerShell.MarkdownRender/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1vqDtdX9RCGsMWCbzp0CIxZW3slWgq8mYHDfUlUKzmkV57fMAn4m0Gy2OtsqopZzrOiVJci+QCWx5FB7BVpMlw==", + "path": "microsoft.powershell.markdownrender/7.2.0", + "hashPath": "microsoft.powershell.markdownrender.7.2.0.nupkg.sha512" + }, + "Microsoft.PowerShell.Native/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TauOu3bYr4DRh9HpH3+fgaL+y2GY47KLsgU6qX1NDLqHshdEaCCjiF0N5sDEgCEhSb38FwWhpdFTIQvoOcYCXQ==", + "path": "microsoft.powershell.native/7.2.0", + "hashPath": "microsoft.powershell.native.7.2.0.nupkg.sha512" + }, + "Microsoft.PowerShell.SDK/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UufIcywqI/22p0oqC5qg+yDoW39U2JAQyaHxy2Tr/h0hdWuFimtmhxp/FDXTxszgOdobtjcrCkSzqcoNmu/vQQ==", + "path": "microsoft.powershell.sdk/7.2.1", + "hashPath": "microsoft.powershell.sdk.7.2.1.nupkg.sha512" + }, + "Microsoft.PowerShell.Security/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GV3RuuOmXHAaEjeBcyixdzUIAQvHW6xgoWwafzTe97DbhI+N1sg4fa/FQ9pd8lqG+kkWxGwTy1VgudXX6rhUkg==", + "path": "microsoft.powershell.security/7.2.1", + "hashPath": "microsoft.powershell.security.7.2.1.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry.AccessControl/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UoE+eeuBKL+GFHxHV3FjHlY5K8Wr/IR7Ee/a2oDNqFodF1iMqyt5hIs0U9Z217AbWrHrNle4750kD03hv1IMZw==", + "path": "microsoft.win32.registry.accesscontrol/6.0.0", + "hashPath": "microsoft.win32.registry.accesscontrol.6.0.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "path": "microsoft.win32.systemevents/6.0.0", + "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" + }, + "Microsoft.Windows.Compatibility/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9esuK5JqnjkDgO9/AHesyJSG0aKwpfLVzTw6nIGYhqE91VLxZyv3HKulNoPVy/NOuyAaf1kE4FKtdZDzdd/SLw==", + "path": "microsoft.windows.compatibility/6.0.0", + "hashPath": "microsoft.windows.compatibility.6.0.0.nupkg.sha512" + }, + "Microsoft.WSMan.Management/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vMOJMof4eLql180G4PmTurN8h8+VmPaf1l/Tqq+GI7HYyNv140iY3/Z18MiZA4dRG14qghLNo5JxtTolY7b4og==", + "path": "microsoft.wsman.management/7.2.1", + "hashPath": "microsoft.wsman.management.7.2.1.nupkg.sha512" + }, + "Microsoft.WSMan.Runtime/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v14vzUXIg7opXoQI8Eb82dvsRwBNylZ44lvyXOBSRCiVfvMhyTqE8bpPWbwwmQ5JZRnG/dP5/aOYuu9l163fyQ==", + "path": "microsoft.wsman.runtime/7.2.1", + "hashPath": "microsoft.wsman.runtime.7.2.1.nupkg.sha512" + }, + "Namotion.Reflection/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tZCe/UrSBAMW8A4TjD/SlpRHaWjnHlSWdyRuOXhf3yrE0OX+4fXg0uzj7mwFDclXznfCGRAZbP+akPt4G/mclw==", + "path": "namotion.reflection/2.0.3", + "hashPath": "namotion.reflection.2.0.3.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + }, + "NJsonSchema/10.5.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vr2CbySuXh74TQFU0rGJYZOS492xOE64cPXdB7a0cfXJb/N45Bf4v7sd4LOla0jNhgc5V/B61Ko3qecriL195w==", + "path": "njsonschema/10.5.2", + "hashPath": "njsonschema.10.5.2.nupkg.sha512" + }, + "NLog/4.7.13": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AvoGpCuq36B+0wY313XA6gC+YeMvk24rqF8P+HS9fInBGOjCzPjpXp2ln9ATZjPOJtXgHfc8zNmTjyswFGLxvg==", + "path": "nlog/4.7.13", + "hashPath": "nlog.4.7.13.nupkg.sha512" + }, + "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-75q52H7CSpgIoIDwXb9o833EvBZIXJ0mdPhz1E6jSisEXUBlSCPalC29cj3EXsjpuDwr0dj1LRXZepIQH/oL4Q==", + "path": "runtime.linux-arm.runtime.native.system.io.ports/6.0.0", + "hashPath": "runtime.linux-arm.runtime.native.system.io.ports.6.0.0.nupkg.sha512" + }, + "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xn2bMThmXr3CsvOYmS8ex2Yz1xo+kcnhVg2iVhS9PlmqjZPAkrEo/I40wjrBZH/tU4kvH0s1AE8opAvQ3KIS8g==", + "path": "runtime.linux-arm64.runtime.native.system.io.ports/6.0.0", + "hashPath": "runtime.linux-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" + }, + "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-16nbNXwv0sC+gLGIuecri0skjuh6R1maIJggsaNP7MQBcbVcEfWFUOkEnsnvoLEjy0XerfibuRptfQ8AmdIcWA==", + "path": "runtime.linux-x64.runtime.native.system.io.ports/6.0.0", + "hashPath": "runtime.linux-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", + "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512" + }, + "runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KaaXlpOcuZjMdmyF5wzzx3b+PRKIzt6A5Ax9dKenPDQbVJAFpev+casD0BIig1pBcbs3zx7CqWemzUJKAeHdSQ==", + "path": "runtime.native.system.io.ports/6.0.0", + "hashPath": "runtime.native.system.io.ports.6.0.0.nupkg.sha512" + }, + "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fXG12NodG1QrCdoaeSQ1gVnk/koi4WYY4jZtarMkZeQMyReBm1nZlSRoPnUjLr2ZR36TiMjpcGnQfxymieUe7w==", + "path": "runtime.osx-arm64.runtime.native.system.io.ports/6.0.0", + "hashPath": "runtime.osx-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" + }, + "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/As+zPY49+dSUXkh+fTUbyPhqrdGN//evLxo4Vue88pfh1BHZgF7q4kMblTkxYvwR6Vi03zSYxysSFktO8/SDQ==", + "path": "runtime.osx-x64.runtime.native.system.io.ports/6.0.0", + "hashPath": "runtime.osx-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "System.CodeDom/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "path": "system.codedom/6.0.0", + "hashPath": "system.codedom.6.0.0.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Immutable/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", + "path": "system.collections.immutable/5.0.0", + "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512" + }, + "System.ComponentModel.Composition/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-60Qv+F7oxomOjJeTDA5Z4iCyFbQ0B/2Mi5HT+13pxxq0lVnu2ipbWMzFB+RWKr3wWKA8BSncXr9PH/fECwMX5Q==", + "path": "system.componentmodel.composition/6.0.0", + "hashPath": "system.componentmodel.composition.6.0.0.nupkg.sha512" + }, + "System.ComponentModel.Composition.Registration/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+i3RLlOgTsf15VeADBPpzPyRiXq71aLSuzdHeNtmq9f6BwpF3OWhB76p0WDUNCa3Z+SLD4dJbBM9yAep7kQCGA==", + "path": "system.componentmodel.composition.registration/6.0.0", + "hashPath": "system.componentmodel.composition.registration.6.0.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", + "path": "system.configuration.configurationmanager/6.0.0", + "hashPath": "system.configuration.configurationmanager.6.0.0.nupkg.sha512" + }, + "System.Data.Odbc/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pnZjwe0Qwr1Rnp7NExd5zz4YwXJrYuAbWNKjEQpTzCEg6f/L5DYJS7w3hG3vgSj1t/r79UL390YzXIklf1VuQQ==", + "path": "system.data.odbc/6.0.0", + "hashPath": "system.data.odbc.6.0.0.nupkg.sha512" + }, + "System.Data.OleDb/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LQ8PjTIF1LtrrlGiyiTVjAkQtTWKm9GSNnygIlWjhN9y88s7xhy6DUNDDkmQQ9f6ex7mA4k0Tl97lz/CklaiLg==", + "path": "system.data.oledb/6.0.0", + "hashPath": "system.data.oledb.6.0.0.nupkg.sha512" + }, + "System.Data.SqlClient/4.8.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==", + "path": "system.data.sqlclient/4.8.3", + "hashPath": "system.data.sqlclient.4.8.3.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "path": "system.diagnostics.eventlog/6.0.0", + "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gbeE5tNp/oB7O8kTTLh3wPPJCxpNOphXPTWVs1BsYuFOYapFijWuh0LYw1qnDo4gwDUYPXOmpTIhvtxisGsYOQ==", + "path": "system.diagnostics.performancecounter/6.0.0", + "hashPath": "system.diagnostics.performancecounter.6.0.0.nupkg.sha512" + }, + "System.DirectoryServices/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kp/Op0nxDVGlElDKh8TsXO0GKXftQgAB6sJk0wUetZK1Rr0Pbd86Tn7AllLLlROFZa4BTl/LVHakljtGELFzCg==", + "path": "system.directoryservices/6.0.0", + "hashPath": "system.directoryservices.6.0.0.nupkg.sha512" + }, + "System.DirectoryServices.AccountManagement/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2iKkY6VC4WX6H13N8WhH2SRUfWCwg2KZR5w9JIS9cw9N8cZhT7VXxHX0L6OX6Po419aSu2LWrJE9tu6b+cUnPA==", + "path": "system.directoryservices.accountmanagement/6.0.0", + "hashPath": "system.directoryservices.accountmanagement.6.0.0.nupkg.sha512" + }, + "System.DirectoryServices.Protocols/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-++WKU7HQPo/FJdhywWw+q2lLjcVAGVw5XLH9kRCV+4DvkhVAcHCksh0ezIqwNROmaU9LMJN0d/LAdeWXu3pi6Q==", + "path": "system.directoryservices.protocols/6.0.0", + "hashPath": "system.directoryservices.protocols.6.0.0.nupkg.sha512" + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "path": "system.drawing.common/6.0.0", + "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", + "path": "system.dynamic.runtime/4.3.0", + "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" + }, + "System.Formats.Asn1/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA==", + "path": "system.formats.asn1/6.0.0", + "hashPath": "system.formats.asn1.6.0.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Packaging/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-C7OkTRIjqIjAKu6ef/fuj8ynCZTPcTYZnvHaq48bniACgXXJogmEoIc56YCDNTc14xhsbLmgpS3KP+evbsUa2g==", + "path": "system.io.packaging/6.0.0", + "hashPath": "system.io.packaging.6.0.0.nupkg.sha512" + }, + "System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dRyGI7fUESar5ZLIpiBOaaNLW7YyOBGftjj5Of+xcduC/Rjl7RjhEnWDvvNBmHuF3d0tdXoqdVI/yrVA8f00XA==", + "path": "system.io.ports/6.0.0", + "hashPath": "system.io.ports.6.0.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Management/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sHsESYMmPDhQuOC66h6AEOs/XowzKsbT9srMbX71TCXP58hkpn1BqBjdmKj1+DCA/WlBETX1K5WjQHwmV0Txrg==", + "path": "system.management/6.0.0", + "hashPath": "system.management.6.0.0.nupkg.sha512" + }, + "System.Management.Automation/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YlTE+q14vQ1YU//A5+/Jwl5+L5r6uOVIWuB4D/T9r80AaCeUAZMMvTKjgvIr9lwkovwQflVL+1JfBAi9f0q0KA==", + "path": "system.management.automation/7.2.1", + "hashPath": "system.management.automation.7.2.1.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Net.Http.WinHttpHandler/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jubNN9jH4NzVrvEf4fGwESLBsfH8whWNbHMhgM6IwA8UCt6+/M19bbOHc21JhigvC2HQKCl8HKGZMcBtIpzqIg==", + "path": "system.net.http.winhttphandler/6.0.0", + "hashPath": "system.net.http.winhttphandler.6.0.0.nupkg.sha512" + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "path": "system.numerics.vectors/4.5.0", + "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Private.ServiceModel/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-d3RjkrtpjUQ63PzFmm/SZ4aOXeJNP+8YW5QeP0lCJy8iX4xlHdlNLWTF9sRn9SmrFTK757kQXT9Op/R4l858uw==", + "path": "system.private.servicemodel/4.9.0", + "hashPath": "system.private.servicemodel.4.9.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Context/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vi+Gb41oyOYie7uLSsjRmfRg3bryUg5DssJvj3gDUl0D8z6ipSm6/yi/XNx2rcS5iVMvHcwRUHjcx7ixv0K3/w==", + "path": "system.reflection.context/6.0.0", + "hashPath": "system.reflection.context.6.0.0.nupkg.sha512" + }, + "System.Reflection.DispatchProxy/4.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-C1sMLwIG6ILQ2bmOT4gh62V6oJlyF4BlHcVMrOoor49p0Ji2tA8QAoqyMcIhAdH6OHKJ8m7BU+r4LK2CUEOKqw==", + "path": "system.reflection.dispatchproxy/4.7.1", + "hashPath": "system.reflection.dispatchproxy.4.7.1.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Metadata/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==", + "path": "system.reflection.metadata/5.0.0", + "hashPath": "system.reflection.metadata.5.0.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==", + "path": "system.runtime.caching/6.0.0", + "hashPath": "system.runtime.caching.6.0.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "path": "system.security.accesscontrol/6.0.0", + "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Pkcs/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-elM3x+xSRhzQysiqo85SbidJJ2YbZlnvmh+53TuSZHsD7dNuuEWser+9EFtY+rYupBwkq2avc6ZCO3/6qACgmg==", + "path": "system.security.cryptography.pkcs/6.0.0", + "hashPath": "system.security.cryptography.pkcs.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "path": "system.security.cryptography.protecteddata/6.0.0", + "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Xml/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-puJ4UCh9JVRwOCyCIcq71JY6Axr8Sp8E2GjTIU1Fj8hm4+oX6NEoyGFGa/+pBG8SrVxbQPSj7hvtaREyTHHsmw==", + "path": "system.security.cryptography.xml/6.0.0", + "hashPath": "system.security.cryptography.xml.6.0.0.nupkg.sha512" + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "path": "system.security.permissions/6.0.0", + "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "path": "system.security.principal.windows/5.0.0", + "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" + }, + "System.ServiceModel.Duplex/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Yb8MFiJxBBtm2JnfS/5SxYzm2HqkEmHu5xeaVIHXy83sNpty9wc30JifH2xgda821D6nr1UctbwbdZqN4LBUKQ==", + "path": "system.servicemodel.duplex/4.9.0", + "hashPath": "system.servicemodel.duplex.4.9.0.nupkg.sha512" + }, + "System.ServiceModel.Http/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z+s3RkLNzJ31fDXAjqXdXp67FqsNG4V3Md3r7FOrzMkHmg61gY8faEfTFPBLxU9tax1HPWt6IHVAquXBKySJaw==", + "path": "system.servicemodel.http/4.9.0", + "hashPath": "system.servicemodel.http.4.9.0.nupkg.sha512" + }, + "System.ServiceModel.NetTcp/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nXgnnkrZERUF/KwmoLwZPkc7fqgiq94DXkmUZBvDNh/LdZquDvjy2NbhJLElpApOa5x8zEoQoBZyJ2PqNC39qg==", + "path": "system.servicemodel.nettcp/4.9.0", + "hashPath": "system.servicemodel.nettcp.4.9.0.nupkg.sha512" + }, + "System.ServiceModel.Primitives/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LTFPVdS8Nf76xg/wRZkDa+2Q+GnjTOmwkTlwuoetwX37mAfYnGkf7p8ydhpDwVmomNljpUOhUUGxfjQyd5YcOg==", + "path": "system.servicemodel.primitives/4.9.0", + "hashPath": "system.servicemodel.primitives.4.9.0.nupkg.sha512" + }, + "System.ServiceModel.Security/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iurpbSmPgotHps94VQ6acvL6hU2gjiuBmQI7PwLLN76jsbSpUcahT0PglccKIAwoMujATk/LWtAapBHpwCFn2g==", + "path": "system.servicemodel.security/4.9.0", + "hashPath": "system.servicemodel.security.4.9.0.nupkg.sha512" + }, + "System.ServiceModel.Syndication/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cp1mMNG87iJtE0oHXFtfWT6cfski2JNo5iU0siTPi/uN2k1CIJI6FE4jr4v3got2dzt7wBq17fSy44btun9GiA==", + "path": "system.servicemodel.syndication/6.0.0", + "hashPath": "system.servicemodel.syndication.6.0.0.nupkg.sha512" + }, + "System.ServiceProcess.ServiceController/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qMBvG8ZFbkXoe0Z5/D7FAAadfPkH2v7vSuh2xsLf3U6jNoejpIdeV18A0htiASsLK1CCAc/p59kaLXlt2yB1gw==", + "path": "system.serviceprocess.servicecontroller/6.0.0", + "hashPath": "system.serviceprocess.servicecontroller.6.0.0.nupkg.sha512" + }, + "System.Speech/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GQovERMrNP0Vbtgk8LzH4PlFS6lqHgsL9WkUmv8Kkxa0m0vNakitytpHZlfJ9WR7n9WKLXh68nn2kyL9mflnLg==", + "path": "system.speech/6.0.0", + "hashPath": "system.speech.6.0.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", + "path": "system.text.encoding.codepages/6.0.0", + "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.AccessControl/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2258mqWesMch/xCpcnjJBgJP33yhpZLGLbEOm01qwq0efG4b+NG8c9sxYOWNxmDQ82swXrnQRl1Yp2wC1NrfZA==", + "path": "system.threading.accesscontrol/6.0.0", + "hashPath": "system.threading.accesscontrol.6.0.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "path": "system.threading.tasks.extensions/4.5.4", + "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" + }, + "System.Web.Services.Description/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-d20B3upsWddwSG5xF3eQLs0cAV3tXDsBNqP4kh02ylfgZwqfpf4f/9KiZVIGIoxULt2cKqxWs+U4AdNAJ7L8cQ==", + "path": "system.web.services.description/4.9.0", + "hashPath": "system.web.services.description.4.9.0.nupkg.sha512" + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "path": "system.windows.extensions/6.0.0", + "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" + }, + "Typin/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BV/TvL7a2c8FHBFc3YiWEzQua2NitFY5JnE30zJxo2nQrHeZuJYruZ7H+sT+/cnBLjsDr/mUpYtIS1HRTJQ3xg==", + "path": "typin/3.1.0", + "hashPath": "typin.3.1.0.nupkg.sha512" + }, + "Typin.Core/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0M44paHjcQuVTMCyfySqklbfVcQ38GfFGBkeKz0E+zhXdV0wD9tI5GwZdjUPOGlqhOmP7CHh452JSgJK2hc57A==", + "path": "typin.core/3.1.0", + "hashPath": "typin.core.3.1.0.nupkg.sha512" + }, + "YamlDotNet/11.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tBt8K+korVfrjH9wyDEhiLKxbs8qoLCLIFwvYgkSUuMC9//w3z0cFQ8LQAI/5MCKq+BMil0cfRTRvPeE7eXhQw==", + "path": "yamldotnet/11.2.1", + "hashPath": "yamldotnet.11.2.1.nupkg.sha512" + }, + "Linguard.Core/2.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Linguard.Log/2.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Cli.dll b/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Cli.dll new file mode 100644 index 0000000..5de6843 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Cli.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Cli.exe b/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Cli.exe new file mode 100644 index 0000000..e8c7022 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Cli.exe differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Cli.pdb b/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Cli.pdb new file mode 100644 index 0000000..4a718f4 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Cli.pdb differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Cli.runtimeconfig.json b/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Cli.runtimeconfig.json new file mode 100644 index 0000000..4986d16 --- /dev/null +++ b/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Cli.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + } + } +} \ No newline at end of file diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Core.dll b/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Core.dll new file mode 100644 index 0000000..f622876 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Core.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Core.pdb b/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Core.pdb new file mode 100644 index 0000000..5896cce Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Core.pdb differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Log.dll b/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Log.dll new file mode 100644 index 0000000..561b728 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Log.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Log.pdb b/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Log.pdb new file mode 100644 index 0000000..ef5cdfa Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Linguard.Log.pdb differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Markdig.Signed.dll b/linguard/Cli.Test/bin/Debug/net6.0/Markdig.Signed.dll new file mode 100644 index 0000000..722a399 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Markdig.Signed.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.ApplicationInsights.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.ApplicationInsights.dll new file mode 100644 index 0000000..8ef5eef Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.ApplicationInsights.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100644 index 0000000..be25bdb Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.dll new file mode 100644 index 0000000..581191d Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.CodeAnalysis.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.CodeAnalysis.dll new file mode 100644 index 0000000..c653dc8 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.CodeAnalysis.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 0000000..b4ee93d Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..97525f7 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..bb27a2f Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.Logging.Debug.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.Logging.Debug.dll new file mode 100644 index 0000000..6fc456c Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.Logging.Debug.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll new file mode 100644 index 0000000..9e2d7f9 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.ObjectPool.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.ObjectPool.dll new file mode 100644 index 0000000..730dead Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.ObjectPool.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.Options.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.Options.dll new file mode 100644 index 0000000..604b602 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.Options.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll new file mode 100644 index 0000000..1b2c43a Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.PowerShell.MarkdownRender.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.PowerShell.MarkdownRender.dll new file mode 100644 index 0000000..68f0076 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.PowerShell.MarkdownRender.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CommunicationUtilities.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CommunicationUtilities.dll new file mode 100644 index 0000000..e4a1476 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CommunicationUtilities.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CoreUtilities.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CoreUtilities.dll new file mode 100644 index 0000000..2a743a3 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CoreUtilities.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CrossPlatEngine.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CrossPlatEngine.dll new file mode 100644 index 0000000..ae16ead Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CrossPlatEngine.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.TestPlatform.PlatformAbstractions.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.TestPlatform.PlatformAbstractions.dll new file mode 100644 index 0000000..b2f76f6 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.TestPlatform.PlatformAbstractions.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.TestPlatform.Utilities.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.TestPlatform.Utilities.dll new file mode 100644 index 0000000..bf36696 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.TestPlatform.Utilities.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll new file mode 100644 index 0000000..c4f2e09 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.Common.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.Common.dll new file mode 100644 index 0000000..340df34 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.Common.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll new file mode 100644 index 0000000..240ff2a Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Win32.Registry.AccessControl.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Win32.Registry.AccessControl.dll new file mode 100644 index 0000000..b598181 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Win32.Registry.AccessControl.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..3ab5850 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Moq.dll b/linguard/Cli.Test/bin/Debug/net6.0/Moq.dll new file mode 100644 index 0000000..5be05c4 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Moq.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/NJsonSchema.dll b/linguard/Cli.Test/bin/Debug/net6.0/NJsonSchema.dll new file mode 100644 index 0000000..0e6ee5b Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/NJsonSchema.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/NLog.config b/linguard/Cli.Test/bin/Debug/net6.0/NLog.config new file mode 100644 index 0000000..5a581ee --- /dev/null +++ b/linguard/Cli.Test/bin/Debug/net6.0/NLog.config @@ -0,0 +1,15 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/linguard/Cli.Test/bin/Debug/net6.0/NLog.dll b/linguard/Cli.Test/bin/Debug/net6.0/NLog.dll new file mode 100644 index 0000000..4aa35e7 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/NLog.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Namotion.Reflection.dll b/linguard/Cli.Test/bin/Debug/net6.0/Namotion.Reflection.dll new file mode 100644 index 0000000..39dbbfa Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Namotion.Reflection.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Newtonsoft.Json.dll b/linguard/Cli.Test/bin/Debug/net6.0/Newtonsoft.Json.dll new file mode 100644 index 0000000..1ffeabe Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Newtonsoft.Json.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/NuGet.Frameworks.dll b/linguard/Cli.Test/bin/Debug/net6.0/NuGet.Frameworks.dll new file mode 100644 index 0000000..0a61a1c Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/NuGet.Frameworks.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.CodeDom.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.CodeDom.dll new file mode 100644 index 0000000..54c82b6 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.CodeDom.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.ComponentModel.Composition.Registration.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.ComponentModel.Composition.Registration.dll new file mode 100644 index 0000000..586e1af Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.ComponentModel.Composition.Registration.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.ComponentModel.Composition.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.ComponentModel.Composition.dll new file mode 100644 index 0000000..3e063b3 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.ComponentModel.Composition.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll new file mode 100644 index 0000000..d67c8a8 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Data.Odbc.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Data.Odbc.dll new file mode 100644 index 0000000..5101278 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.Data.Odbc.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Data.OleDb.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Data.OleDb.dll new file mode 100644 index 0000000..f7840cd Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.Data.OleDb.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Data.SqlClient.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Data.SqlClient.dll new file mode 100644 index 0000000..d03f8a1 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.Data.SqlClient.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Diagnostics.EventLog.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..8a65e71 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.Diagnostics.EventLog.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Diagnostics.PerformanceCounter.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Diagnostics.PerformanceCounter.dll new file mode 100644 index 0000000..e9092d7 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.Diagnostics.PerformanceCounter.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.DirectoryServices.AccountManagement.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.DirectoryServices.AccountManagement.dll new file mode 100644 index 0000000..77183e0 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.DirectoryServices.AccountManagement.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.DirectoryServices.Protocols.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..d62b127 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.DirectoryServices.Protocols.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.DirectoryServices.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.DirectoryServices.dll new file mode 100644 index 0000000..803611c Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.DirectoryServices.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Drawing.Common.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Drawing.Common.dll new file mode 100644 index 0000000..be6915e Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.Drawing.Common.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.IO.Packaging.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.IO.Packaging.dll new file mode 100644 index 0000000..007253e Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.IO.Packaging.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.IO.Ports.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.IO.Ports.dll new file mode 100644 index 0000000..e10e943 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.IO.Ports.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Management.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Management.dll new file mode 100644 index 0000000..fae6cf1 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.Management.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Net.Http.WinHttpHandler.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Net.Http.WinHttpHandler.dll new file mode 100644 index 0000000..2490b06 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.Net.Http.WinHttpHandler.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Net.IPNetwork.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Net.IPNetwork.dll new file mode 100644 index 0000000..9b94f0c Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.Net.IPNetwork.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Private.ServiceModel.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Private.ServiceModel.dll new file mode 100644 index 0000000..82e7a91 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.Private.ServiceModel.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Reflection.Context.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Reflection.Context.dll new file mode 100644 index 0000000..3faa973 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.Reflection.Context.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Runtime.Caching.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Runtime.Caching.dll new file mode 100644 index 0000000..14826eb Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.Runtime.Caching.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Security.Cryptography.Pkcs.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Security.Cryptography.Pkcs.dll new file mode 100644 index 0000000..c2bb12e Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.Security.Cryptography.Pkcs.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..1ba8770 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Security.Cryptography.Xml.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Security.Cryptography.Xml.dll new file mode 100644 index 0000000..96d460e Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.Security.Cryptography.Xml.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Security.Permissions.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Security.Permissions.dll new file mode 100644 index 0000000..39dd4df Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.Security.Permissions.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.Duplex.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.Duplex.dll new file mode 100644 index 0000000..7eeafd5 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.Duplex.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.Http.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.Http.dll new file mode 100644 index 0000000..79aab9d Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.Http.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.NetTcp.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.NetTcp.dll new file mode 100644 index 0000000..a59b27e Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.NetTcp.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.Primitives.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.Primitives.dll new file mode 100644 index 0000000..8c32245 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.Primitives.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.Security.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.Security.dll new file mode 100644 index 0000000..5f2fc73 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.Security.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.Syndication.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.Syndication.dll new file mode 100644 index 0000000..0dab5e1 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.Syndication.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.dll new file mode 100644 index 0000000..e7849b5 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceModel.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceProcess.ServiceController.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceProcess.ServiceController.dll new file mode 100644 index 0000000..3e5508c Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.ServiceProcess.ServiceController.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Speech.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Speech.dll new file mode 100644 index 0000000..9d14819 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.Speech.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Threading.AccessControl.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Threading.AccessControl.dll new file mode 100644 index 0000000..b6d69a4 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.Threading.AccessControl.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Web.Services.Description.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Web.Services.Description.dll new file mode 100644 index 0000000..c230b5c Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.Web.Services.Description.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/System.Windows.Extensions.dll b/linguard/Cli.Test/bin/Debug/net6.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..c3e8844 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/System.Windows.Extensions.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Typin.Core.dll b/linguard/Cli.Test/bin/Debug/net6.0/Typin.Core.dll new file mode 100644 index 0000000..58f476f Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Typin.Core.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/Typin.dll b/linguard/Cli.Test/bin/Debug/net6.0/Typin.dll new file mode 100644 index 0000000..67662ab Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/Typin.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/YamlDotNet.dll b/linguard/Cli.Test/bin/Debug/net6.0/YamlDotNet.dll new file mode 100644 index 0000000..76b7999 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/YamlDotNet.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..d0282cc Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..fd3063e Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..5c1af97 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..e1c01df Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..ce740a9 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..574f796 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..7a1fec6 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/cs/System.Private.ServiceModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/cs/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..2cedcf5 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/cs/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/cs/System.Web.Services.Description.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/cs/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..efe25cb Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/cs/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..e079e05 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..54aa47d Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..3d6e0dc Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..0848125 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..2034f65 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..4d0c9fd Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..ed8bc45 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/de/System.Private.ServiceModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/de/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..3dc63b8 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/de/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/de/System.Web.Services.Description.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/de/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..1f9fae9 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/de/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..4afd9fa Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..2d6218e Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..c792e28 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..51485bf Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..a4d93b5 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..86cf825 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..fcba277 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/es/System.Private.ServiceModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/es/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..65078e9 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/es/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/es/System.Web.Services.Description.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/es/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..edfce43 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/es/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..93a31c1 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..a22b8d5 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..0b0764c Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..8708f22 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..8247ff9 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..c15b990 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..0668bcb Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/fr/System.Private.ServiceModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/fr/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..a2ad076 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/fr/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/fr/System.Web.Services.Description.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/fr/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..a9e94e0 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/fr/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..7f9325d Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..e71779f Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..defdb16 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..79e3b5e Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..2536a93 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..61df169 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..9a9115e Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/it/System.Private.ServiceModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/it/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..7bb0d14 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/it/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/it/System.Web.Services.Description.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/it/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..d8b5101 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/it/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..58a375d Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..8c8510d Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..e1aa3f0 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..da68de3 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..f4fab58 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..2e53ae8 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..09b1d90 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ja/System.Private.ServiceModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ja/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..c92e54a Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ja/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ja/System.Web.Services.Description.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ja/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..d166bd0 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ja/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..3b3f0ed Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..66458d5 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..0bf0154 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..5ef656b Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..3feea7f Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..1599d60 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..6b0b4e8 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ko/System.Private.ServiceModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ko/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..5f09fb1 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ko/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ko/System.Web.Services.Description.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ko/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..7acc280 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ko/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..0c6175e Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..82ff47c Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..32121f9 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..e5d2843 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..b9db57e Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..f82d92d Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..526583e Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pl/System.Private.ServiceModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pl/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..bcdbbbb Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/pl/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pl/System.Web.Services.Description.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pl/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..421c859 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/pl/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..2d2ccbe Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..b583d8e Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..217f281 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..d6385c8 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..0817f52 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..a468b89 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..a9f6887 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/System.Private.ServiceModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..6138c5d Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/System.Web.Services.Description.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..8d4c892 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/pt-BR/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/Cli.Test.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/Cli.Test.dll new file mode 100644 index 0000000..235cd68 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/Cli.Test.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/Microsoft.CSharp.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/Microsoft.CSharp.dll new file mode 100644 index 0000000..00529c3 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/Microsoft.CSharp.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/Microsoft.VisualBasic.Core.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/Microsoft.VisualBasic.Core.dll new file mode 100644 index 0000000..d37bdc6 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/Microsoft.VisualBasic.Core.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/Microsoft.VisualBasic.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/Microsoft.VisualBasic.dll new file mode 100644 index 0000000..eb198db Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/Microsoft.VisualBasic.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/Microsoft.Win32.Primitives.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/Microsoft.Win32.Primitives.dll new file mode 100644 index 0000000..e39072e Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/Microsoft.Win32.Primitives.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/Microsoft.Win32.Registry.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/Microsoft.Win32.Registry.dll new file mode 100644 index 0000000..0e4ca23 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/Microsoft.Win32.Registry.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.AppContext.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.AppContext.dll new file mode 100644 index 0000000..949e26a Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.AppContext.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Buffers.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Buffers.dll new file mode 100644 index 0000000..0ba2017 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Buffers.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Collections.Concurrent.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Collections.Concurrent.dll new file mode 100644 index 0000000..a34bdfd Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Collections.Concurrent.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Collections.Immutable.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Collections.Immutable.dll new file mode 100644 index 0000000..3559d71 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Collections.Immutable.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Collections.NonGeneric.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..0ff1e9e Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Collections.NonGeneric.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Collections.Specialized.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Collections.Specialized.dll new file mode 100644 index 0000000..9e63d8f Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Collections.Specialized.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Collections.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Collections.dll new file mode 100644 index 0000000..c563b3d Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Collections.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.Annotations.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.Annotations.dll new file mode 100644 index 0000000..e719616 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.Annotations.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.DataAnnotations.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 0000000..e92b9ec Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.DataAnnotations.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.EventBasedAsync.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 0000000..c13cab7 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.EventBasedAsync.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.Primitives.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.Primitives.dll new file mode 100644 index 0000000..2c8ac32 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.Primitives.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.TypeConverter.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.TypeConverter.dll new file mode 100644 index 0000000..8af874e Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.TypeConverter.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.dll new file mode 100644 index 0000000..dedec7c Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ComponentModel.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Configuration.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Configuration.dll new file mode 100644 index 0000000..54fdf89 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Configuration.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Console.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Console.dll new file mode 100644 index 0000000..5934da2 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Console.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Core.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Core.dll new file mode 100644 index 0000000..b5abba6 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Core.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Data.Common.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Data.Common.dll new file mode 100644 index 0000000..fb6df46 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Data.Common.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Data.DataSetExtensions.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Data.DataSetExtensions.dll new file mode 100644 index 0000000..e5afb2e Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Data.DataSetExtensions.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Data.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Data.dll new file mode 100644 index 0000000..e54bdf1 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Data.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.Contracts.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.Contracts.dll new file mode 100644 index 0000000..b2a4266 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.Contracts.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.Debug.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.Debug.dll new file mode 100644 index 0000000..a0cd3f8 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.Debug.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.DiagnosticSource.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..39a6217 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.DiagnosticSource.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.FileVersionInfo.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 0000000..439c771 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.FileVersionInfo.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.Process.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.Process.dll new file mode 100644 index 0000000..2091f8c Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.Process.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.StackTrace.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..4b5a3d7 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.StackTrace.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.TextWriterTraceListener.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 0000000..1a5cbf2 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.Tools.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.Tools.dll new file mode 100644 index 0000000..335c9c1 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.Tools.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.TraceSource.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.TraceSource.dll new file mode 100644 index 0000000..749ba40 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.TraceSource.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.Tracing.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.Tracing.dll new file mode 100644 index 0000000..338074d Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Diagnostics.Tracing.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Drawing.Primitives.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Drawing.Primitives.dll new file mode 100644 index 0000000..8c0a332 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Drawing.Primitives.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Drawing.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Drawing.dll new file mode 100644 index 0000000..b226cf3 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Drawing.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Dynamic.Runtime.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Dynamic.Runtime.dll new file mode 100644 index 0000000..70edfa6 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Dynamic.Runtime.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Formats.Asn1.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Formats.Asn1.dll new file mode 100644 index 0000000..8625760 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Formats.Asn1.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Globalization.Calendars.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Globalization.Calendars.dll new file mode 100644 index 0000000..21a0037 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Globalization.Calendars.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Globalization.Extensions.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Globalization.Extensions.dll new file mode 100644 index 0000000..0dd96b7 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Globalization.Extensions.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Globalization.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Globalization.dll new file mode 100644 index 0000000..1c2e682 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Globalization.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Compression.Brotli.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Compression.Brotli.dll new file mode 100644 index 0000000..297977e Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Compression.Brotli.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Compression.FileSystem.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Compression.FileSystem.dll new file mode 100644 index 0000000..6586130 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Compression.FileSystem.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Compression.ZipFile.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Compression.ZipFile.dll new file mode 100644 index 0000000..6c9be3c Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Compression.ZipFile.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Compression.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Compression.dll new file mode 100644 index 0000000..832d832 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Compression.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.AccessControl.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.AccessControl.dll new file mode 100644 index 0000000..37f5c30 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.AccessControl.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.DriveInfo.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 0000000..3fafa94 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.DriveInfo.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.Primitives.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.Primitives.dll new file mode 100644 index 0000000..7e7c838 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.Primitives.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.Watcher.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.Watcher.dll new file mode 100644 index 0000000..413f9b4 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.Watcher.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.dll new file mode 100644 index 0000000..e2be89f Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.IsolatedStorage.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.IsolatedStorage.dll new file mode 100644 index 0000000..a17e9fc Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.IsolatedStorage.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.MemoryMappedFiles.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..2d4175d Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.MemoryMappedFiles.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Pipes.AccessControl.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Pipes.AccessControl.dll new file mode 100644 index 0000000..8627e1d Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Pipes.AccessControl.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Pipes.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Pipes.dll new file mode 100644 index 0000000..401b732 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.Pipes.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.UnmanagedMemoryStream.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 0000000..9c49c70 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.UnmanagedMemoryStream.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.dll new file mode 100644 index 0000000..02ce4e2 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.IO.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Linq.Expressions.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Linq.Expressions.dll new file mode 100644 index 0000000..65c06c3 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Linq.Expressions.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Linq.Parallel.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Linq.Parallel.dll new file mode 100644 index 0000000..02a5fa6 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Linq.Parallel.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Linq.Queryable.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Linq.Queryable.dll new file mode 100644 index 0000000..0eeb7c8 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Linq.Queryable.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Linq.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Linq.dll new file mode 100644 index 0000000..2a86c79 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Linq.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Memory.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Memory.dll new file mode 100644 index 0000000..388044d Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Memory.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Http.Json.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Http.Json.dll new file mode 100644 index 0000000..22997ef Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Http.Json.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Http.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Http.dll new file mode 100644 index 0000000..abaf3da Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Http.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.HttpListener.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.HttpListener.dll new file mode 100644 index 0000000..55c3152 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.HttpListener.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Mail.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Mail.dll new file mode 100644 index 0000000..8c06ec8 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Mail.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.NameResolution.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.NameResolution.dll new file mode 100644 index 0000000..98dd2d8 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.NameResolution.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.NetworkInformation.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.NetworkInformation.dll new file mode 100644 index 0000000..842064d Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.NetworkInformation.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Ping.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Ping.dll new file mode 100644 index 0000000..0d4d3a9 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Ping.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Primitives.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Primitives.dll new file mode 100644 index 0000000..d54f4bd Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Primitives.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Requests.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Requests.dll new file mode 100644 index 0000000..f314471 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Requests.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Security.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Security.dll new file mode 100644 index 0000000..4e348d7 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Security.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.ServicePoint.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.ServicePoint.dll new file mode 100644 index 0000000..6077da1 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.ServicePoint.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Sockets.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Sockets.dll new file mode 100644 index 0000000..1af0691 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.Sockets.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.WebClient.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.WebClient.dll new file mode 100644 index 0000000..6a4a572 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.WebClient.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.WebHeaderCollection.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.WebHeaderCollection.dll new file mode 100644 index 0000000..114289b Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.WebHeaderCollection.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.WebProxy.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.WebProxy.dll new file mode 100644 index 0000000..d65ea58 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.WebProxy.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.WebSockets.Client.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.WebSockets.Client.dll new file mode 100644 index 0000000..5717169 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.WebSockets.Client.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.WebSockets.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.WebSockets.dll new file mode 100644 index 0000000..5bfa921 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.WebSockets.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.dll new file mode 100644 index 0000000..62feba4 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Net.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Numerics.Vectors.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Numerics.Vectors.dll new file mode 100644 index 0000000..2c3a984 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Numerics.Vectors.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Numerics.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Numerics.dll new file mode 100644 index 0000000..5d186c8 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Numerics.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ObjectModel.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ObjectModel.dll new file mode 100644 index 0000000..f92cc11 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ObjectModel.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.DispatchProxy.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.DispatchProxy.dll new file mode 100644 index 0000000..b888c4b Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.DispatchProxy.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.ILGeneration.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.ILGeneration.dll new file mode 100644 index 0000000..81911c6 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.ILGeneration.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.Lightweight.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.Lightweight.dll new file mode 100644 index 0000000..045952c Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.Lightweight.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.dll new file mode 100644 index 0000000..e579588 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Extensions.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Extensions.dll new file mode 100644 index 0000000..7987d1d Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Extensions.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Metadata.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Metadata.dll new file mode 100644 index 0000000..50158de Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Metadata.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Primitives.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Primitives.dll new file mode 100644 index 0000000..d9210c0 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.Primitives.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.TypeExtensions.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.TypeExtensions.dll new file mode 100644 index 0000000..792c8c8 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.TypeExtensions.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.dll new file mode 100644 index 0000000..3021f73 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Reflection.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Resources.Reader.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Resources.Reader.dll new file mode 100644 index 0000000..e46173b Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Resources.Reader.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Resources.ResourceManager.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Resources.ResourceManager.dll new file mode 100644 index 0000000..fc44423 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Resources.ResourceManager.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Resources.Writer.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Resources.Writer.dll new file mode 100644 index 0000000..68980f9 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Resources.Writer.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.Unsafe.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 0000000..546930e Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.VisualC.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 0000000..277cb81 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Extensions.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Extensions.dll new file mode 100644 index 0000000..441841e Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Extensions.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Handles.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Handles.dll new file mode 100644 index 0000000..70e3278 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Handles.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 0000000..89f8d39 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.InteropServices.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.InteropServices.dll new file mode 100644 index 0000000..a39d097 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.InteropServices.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Intrinsics.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Intrinsics.dll new file mode 100644 index 0000000..c9fcd40 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Intrinsics.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Loader.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Loader.dll new file mode 100644 index 0000000..f109988 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Loader.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Numerics.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Numerics.dll new file mode 100644 index 0000000..89937d1 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Numerics.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Formatters.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 0000000..5438ce3 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Formatters.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Json.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Json.dll new file mode 100644 index 0000000..399a512 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Json.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Primitives.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 0000000..c402e8a Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Primitives.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Xml.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Xml.dll new file mode 100644 index 0000000..84fffc5 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Xml.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.dll new file mode 100644 index 0000000..1c1891a Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.dll new file mode 100644 index 0000000..921a08b Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Runtime.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.AccessControl.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.AccessControl.dll new file mode 100644 index 0000000..2c6f9f4 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.AccessControl.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Claims.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Claims.dll new file mode 100644 index 0000000..b6297f6 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Claims.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Algorithms.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 0000000..4b89540 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Algorithms.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Cng.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Cng.dll new file mode 100644 index 0000000..e76a578 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Cng.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Csp.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Csp.dll new file mode 100644 index 0000000..2ceae69 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Csp.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Encoding.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Encoding.dll new file mode 100644 index 0000000..a975809 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Encoding.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.OpenSsl.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.OpenSsl.dll new file mode 100644 index 0000000..df3a3a9 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.OpenSsl.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Primitives.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Primitives.dll new file mode 100644 index 0000000..21222a6 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Primitives.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.X509Certificates.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 0000000..eee372d Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.X509Certificates.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Principal.Windows.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Principal.Windows.dll new file mode 100644 index 0000000..9a3798b Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Principal.Windows.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Principal.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Principal.dll new file mode 100644 index 0000000..0dbfa46 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.Principal.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.SecureString.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.SecureString.dll new file mode 100644 index 0000000..7299b40 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.SecureString.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.dll new file mode 100644 index 0000000..b83e96a Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Security.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ServiceModel.Web.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ServiceModel.Web.dll new file mode 100644 index 0000000..a4d4e0f Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ServiceModel.Web.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ServiceProcess.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ServiceProcess.dll new file mode 100644 index 0000000..86c09dc Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ServiceProcess.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.Encoding.CodePages.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.Encoding.CodePages.dll new file mode 100644 index 0000000..5ce72b1 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.Encoding.CodePages.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.Encoding.Extensions.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.Encoding.Extensions.dll new file mode 100644 index 0000000..05e497a Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.Encoding.Extensions.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.Encoding.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.Encoding.dll new file mode 100644 index 0000000..46c5400 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.Encoding.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.Encodings.Web.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..f2b10eb Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.Encodings.Web.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.Json.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.Json.dll new file mode 100644 index 0000000..37851d2 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.Json.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.RegularExpressions.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..983cbbd Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Text.RegularExpressions.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Channels.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Channels.dll new file mode 100644 index 0000000..34ae646 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Channels.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Overlapped.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Overlapped.dll new file mode 100644 index 0000000..9092609 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Overlapped.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Dataflow.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Dataflow.dll new file mode 100644 index 0000000..0731d06 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Dataflow.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Extensions.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Extensions.dll new file mode 100644 index 0000000..e5840ae Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Extensions.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Parallel.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Parallel.dll new file mode 100644 index 0000000..5bec78b Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Parallel.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.dll new file mode 100644 index 0000000..04704d0 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Thread.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Thread.dll new file mode 100644 index 0000000..de9a348 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Thread.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.ThreadPool.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.ThreadPool.dll new file mode 100644 index 0000000..efab9c3 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.ThreadPool.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Timer.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Timer.dll new file mode 100644 index 0000000..718a039 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.Timer.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.dll new file mode 100644 index 0000000..d697919 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Threading.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Transactions.Local.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Transactions.Local.dll new file mode 100644 index 0000000..03df1fb Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Transactions.Local.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Transactions.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Transactions.dll new file mode 100644 index 0000000..1bd2e0a Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Transactions.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ValueTuple.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ValueTuple.dll new file mode 100644 index 0000000..b6103f6 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.ValueTuple.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Web.HttpUtility.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Web.HttpUtility.dll new file mode 100644 index 0000000..c77ebab Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Web.HttpUtility.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Web.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Web.dll new file mode 100644 index 0000000..d04d5e3 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Web.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Windows.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Windows.dll new file mode 100644 index 0000000..9133038 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Windows.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.Linq.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.Linq.dll new file mode 100644 index 0000000..d8aa5cd Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.Linq.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.ReaderWriter.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..66f199d Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.ReaderWriter.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.Serialization.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.Serialization.dll new file mode 100644 index 0000000..92bc678 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.Serialization.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.XDocument.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.XDocument.dll new file mode 100644 index 0000000..5ba2260 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.XDocument.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.XPath.XDocument.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.XPath.XDocument.dll new file mode 100644 index 0000000..be27c4e Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.XPath.XDocument.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.XPath.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.XPath.dll new file mode 100644 index 0000000..22482d8 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.XPath.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.XmlDocument.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.XmlDocument.dll new file mode 100644 index 0000000..20d0fac Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.XmlDocument.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.XmlSerializer.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.XmlSerializer.dll new file mode 100644 index 0000000..0a1664c Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.XmlSerializer.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.dll new file mode 100644 index 0000000..f2b768e Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.Xml.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/System.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.dll new file mode 100644 index 0000000..9e8d0a4 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/System.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/WindowsBase.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/WindowsBase.dll new file mode 100644 index 0000000..1032969 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/WindowsBase.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/mscorlib.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/mscorlib.dll new file mode 100644 index 0000000..31e8f9b Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/mscorlib.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ref/netstandard.dll b/linguard/Cli.Test/bin/Debug/net6.0/ref/netstandard.dll new file mode 100644 index 0000000..1452256 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ref/netstandard.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..08d18ad Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..0d0a62d Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..191d8b0 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..223ddc1 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..08d3cba Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..945add7 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..794e7f7 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ru/System.Private.ServiceModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ru/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..11f804c Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ru/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/ru/System.Web.Services.Description.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/ru/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..a43bf0d Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/ru/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll new file mode 100644 index 0000000..8e0d27d Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/illumos/lib/net6.0/System.Data.Odbc.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/illumos/lib/net6.0/System.Data.Odbc.dll new file mode 100644 index 0000000..86425c9 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/illumos/lib/net6.0/System.Data.Odbc.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/ios/lib/net6.0/System.Data.Odbc.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/ios/lib/net6.0/System.Data.Odbc.dll new file mode 100644 index 0000000..72945c5 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/ios/lib/net6.0/System.Data.Odbc.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-arm/native/libSystem.IO.Ports.Native.so b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-arm/native/libSystem.IO.Ports.Native.so new file mode 100644 index 0000000..78b5008 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-arm/native/libSystem.IO.Ports.Native.so differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-arm/native/libpsl-native.so b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-arm/native/libpsl-native.so new file mode 100644 index 0000000..eb7876d Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-arm/native/libpsl-native.so differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so new file mode 100644 index 0000000..dd85d2d Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-arm64/native/libpsl-native.so b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-arm64/native/libpsl-native.so new file mode 100644 index 0000000..ed4929b Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-arm64/native/libpsl-native.so differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-musl-x64/native/libpsl-native.so b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-musl-x64/native/libpsl-native.so new file mode 100644 index 0000000..222670d Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-musl-x64/native/libpsl-native.so differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libSystem.IO.Ports.Native.so b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libSystem.IO.Ports.Native.so new file mode 100644 index 0000000..9dbd44e Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libSystem.IO.Ports.Native.so differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libmi.so b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libmi.so new file mode 100644 index 0000000..e87da8d Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libmi.so differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libpsl-native.so b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libpsl-native.so new file mode 100644 index 0000000..c04a0e3 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libpsl-native.so differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libpsrpclient.so b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libpsrpclient.so new file mode 100644 index 0000000..029ac86 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libpsrpclient.so differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.Data.Odbc.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.Data.Odbc.dll new file mode 100644 index 0000000..6e67ec3 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.Data.Odbc.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..75139e1 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib new file mode 100644 index 0000000..974ae77 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib new file mode 100644 index 0000000..96ba9bf Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.Data.Odbc.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.Data.Odbc.dll new file mode 100644 index 0000000..eef28b5 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.Data.Odbc.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..3a64667 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx/native/libmi.dylib b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx/native/libmi.dylib new file mode 100644 index 0000000..71880e4 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx/native/libmi.dylib differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx/native/libpsl-native.dylib b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx/native/libpsl-native.dylib new file mode 100644 index 0000000..f4df8f4 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx/native/libpsl-native.dylib differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx/native/libpsrpclient.dylib b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx/native/libpsrpclient.dylib new file mode 100644 index 0000000..13680bf Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/osx/native/libpsrpclient.dylib differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/solaris/lib/net6.0/System.Data.Odbc.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/solaris/lib/net6.0/System.Data.Odbc.dll new file mode 100644 index 0000000..e283d99 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/solaris/lib/net6.0/System.Data.Odbc.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/tvos/lib/net6.0/System.Data.Odbc.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/tvos/lib/net6.0/System.Data.Odbc.dll new file mode 100644 index 0000000..9648360 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/tvos/lib/net6.0/System.Data.Odbc.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll new file mode 100644 index 0000000..93d7ef2 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll new file mode 100644 index 0000000..3258453 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll new file mode 100644 index 0000000..8cedac7 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll new file mode 100644 index 0000000..0ca804c Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll new file mode 100644 index 0000000..60f30e3 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 new file mode 100644 index 0000000..53e9bc5 --- /dev/null +++ b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 @@ -0,0 +1,14 @@ +@{ +GUID="56D66100-99A0-4FFC-A12D-EEE9A6718AEF" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +FunctionsToExport = @() +CmdletsToExport="Start-Transcript", "Stop-Transcript" +AliasesToExport = @() +NestedModules="Microsoft.PowerShell.ConsoleHost.dll" +HelpInfoURI = 'https://aka.ms/powershell72-help' +} diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 new file mode 100644 index 0000000..8d4d985 --- /dev/null +++ b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 @@ -0,0 +1,60 @@ +@{ +GUID="EEFCB906-B326-4E99-9F54-8B4BB6EF3C6D" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +NestedModules="Microsoft.PowerShell.Commands.Management.dll" +HelpInfoURI = 'https://aka.ms/powershell72-help' +FunctionsToExport = @() +AliasesToExport = @("gcb", "gtz", "scb") +CmdletsToExport=@("Add-Content", + "Clear-Content", + "Clear-ItemProperty", + "Join-Path", + "Convert-Path", + "Copy-ItemProperty", + "Get-ChildItem", + "Get-Clipboard", + "Set-Clipboard", + "Get-Content", + "Get-ItemProperty", + "Get-ItemPropertyValue", + "Move-ItemProperty", + "Get-Location", + "Set-Location", + "Push-Location", + "Pop-Location", + "New-PSDrive", + "Remove-PSDrive", + "Get-PSDrive", + "Get-Item", + "New-Item", + "Set-Item", + "Remove-Item", + "Move-Item", + "Rename-Item", + "Copy-Item", + "Clear-Item", + "Invoke-Item", + "Get-PSProvider", + "New-ItemProperty", + "Split-Path", + "Test-Path", + "Get-Process", + "Stop-Process", + "Wait-Process", + "Debug-Process", + "Start-Process", + "Test-Connection", + "Remove-ItemProperty", + "Rename-ItemProperty", + "Resolve-Path", + "Set-Content", + "Set-ItemProperty", + "Get-TimeZone", + "Stop-Computer", + "Restart-Computer") +} diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 new file mode 100644 index 0000000..9c9f978 --- /dev/null +++ b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 @@ -0,0 +1,14 @@ +@{ +GUID="A94C8C7E-9810-47C0-B8AF-65089C13A35A" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +FunctionsToExport = @() +CmdletsToExport="Get-Credential", "Get-ExecutionPolicy", "Set-ExecutionPolicy", "ConvertFrom-SecureString", "ConvertTo-SecureString", "Get-PfxCertificate" , "Protect-CmsMessage", "Unprotect-CmsMessage", "Get-CmsMessage" +AliasesToExport = @() +NestedModules="Microsoft.PowerShell.Security.dll" +HelpInfoURI = 'https://aka.ms/powershell72-help' +} diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 new file mode 100644 index 0000000..8efcaa0 --- /dev/null +++ b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 @@ -0,0 +1,34 @@ +@{ +GUID = "1DA87E53-152B-403E-98DC-74D7B4D63D59" +Author = "PowerShell" +CompanyName = "Microsoft Corporation" +Copyright = "Copyright (c) Microsoft Corporation." +ModuleVersion = "7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion = "3.0" +CmdletsToExport = @( + 'Export-Alias', 'Get-Alias', 'Import-Alias', 'New-Alias', 'Remove-Alias', 'Set-Alias', 'Export-Clixml', + 'Import-Clixml', 'Measure-Command', 'Trace-Command', 'ConvertFrom-Csv', 'ConvertTo-Csv', 'Export-Csv', + 'Import-Csv', 'Get-Culture', 'Format-Custom', 'Get-Date', 'Set-Date', 'Write-Debug', 'Wait-Debugger', + 'Register-EngineEvent', 'Write-Error', 'Get-Event', 'New-Event', 'Remove-Event', 'Unregister-Event', + 'Wait-Event', 'Get-EventSubscriber', 'Invoke-Expression', 'Out-File', 'Get-FileHash', 'Export-FormatData', + 'Get-FormatData', 'Update-FormatData', 'New-Guid', 'Format-Hex', 'Get-Host', 'Read-Host', 'Write-Host', + 'ConvertTo-Html', 'Write-Information', 'ConvertFrom-Json', 'ConvertTo-Json', 'Test-Json', 'Format-List', + 'Import-LocalizedData', 'Send-MailMessage', 'ConvertFrom-Markdown', 'Show-Markdown', 'Get-MarkdownOption', + 'Set-MarkdownOption', 'Add-Member', 'Get-Member', 'Compare-Object', 'Group-Object', 'Measure-Object', + 'New-Object', 'Select-Object', 'Sort-Object', 'Tee-Object', 'Register-ObjectEvent', 'Write-Output', + 'Import-PowerShellDataFile', 'Write-Progress', 'Disable-PSBreakpoint', 'Enable-PSBreakpoint', + 'Get-PSBreakpoint', 'Remove-PSBreakpoint', 'Set-PSBreakpoint', 'Get-PSCallStack', 'Export-PSSession', + 'Import-PSSession', 'Get-Random', 'Invoke-RestMethod', 'Debug-Runspace', 'Get-Runspace', + 'Disable-RunspaceDebug', 'Enable-RunspaceDebug', 'Get-RunspaceDebug', 'Start-Sleep', 'Join-String', + 'Out-String', 'Select-String', 'ConvertFrom-StringData', 'Format-Table', 'New-TemporaryFile', 'New-TimeSpan', + 'Get-TraceSource', 'Set-TraceSource', 'Add-Type', 'Get-TypeData', 'Remove-TypeData', 'Update-TypeData', + 'Get-UICulture', 'Get-Unique', 'Get-Uptime', 'Clear-Variable', 'Get-Variable', 'New-Variable', + 'Remove-Variable', 'Set-Variable', 'Get-Verb', 'Write-Verbose', 'Write-Warning', 'Invoke-WebRequest', + 'Format-Wide', 'ConvertTo-Xml', 'Select-Xml', 'Get-Error', 'Update-List', 'Unblock-File' +) +FunctionsToExport = @() +AliasesToExport = @('fhx') +NestedModules = @("Microsoft.PowerShell.Commands.Utility.dll") +HelpInfoURI = 'https://aka.ms/powershell72-help' +} diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll new file mode 100644 index 0000000..9e26473 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.IO.Ports.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.IO.Ports.dll new file mode 100644 index 0000000..8e7b399 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.IO.Ports.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Management.Automation.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Management.Automation.dll new file mode 100644 index 0000000..a5f1912 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Management.Automation.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll new file mode 100644 index 0000000..ad2a602 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..78105ed Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..2e7bf94 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..ac47598 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll new file mode 100644 index 0000000..56a149b Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll new file mode 100644 index 0000000..f60631c Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/native/mi.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/native/mi.dll new file mode 100644 index 0000000..7228cd0 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/native/mi.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/native/miutils.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/native/miutils.dll new file mode 100644 index 0000000..ab98cbf Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/native/miutils.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/native/pwrshplugin.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/native/pwrshplugin.dll new file mode 100644 index 0000000..0eec871 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm/native/pwrshplugin.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..50860ab Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..9dbe56e Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll new file mode 100644 index 0000000..a78573d Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll new file mode 100644 index 0000000..b148487 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/mi.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/mi.dll new file mode 100644 index 0000000..eb971a1 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/mi.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/miutils.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/miutils.dll new file mode 100644 index 0000000..0d3985d Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/miutils.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/pwrshplugin.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/pwrshplugin.dll new file mode 100644 index 0000000..f36ee7d Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/pwrshplugin.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/sni.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/sni.dll new file mode 100644 index 0000000..7b8f9d8 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-arm64/native/sni.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll new file mode 100644 index 0000000..9d148cf Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x64/native/pwrshplugin.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x64/native/pwrshplugin.dll new file mode 100644 index 0000000..74da742 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x64/native/pwrshplugin.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x64/native/sni.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x64/native/sni.dll new file mode 100644 index 0000000..c1a05a5 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x64/native/sni.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll new file mode 100644 index 0000000..79a3085 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x86/native/pwrshplugin.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x86/native/pwrshplugin.dll new file mode 100644 index 0000000..200bf77 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x86/native/pwrshplugin.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x86/native/sni.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x86/native/sni.dll new file mode 100644 index 0000000..5fc21ac Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win-x86/native/sni.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll new file mode 100644 index 0000000..c8ff3c8 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll new file mode 100644 index 0000000..997d268 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll new file mode 100644 index 0000000..1e4a567 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll new file mode 100644 index 0000000..3e7ffc4 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll new file mode 100644 index 0000000..3dfb631 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll new file mode 100644 index 0000000..fa3247a Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll new file mode 100644 index 0000000..b6dc868 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll new file mode 100644 index 0000000..8ed4dde Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll new file mode 100644 index 0000000..b6a87a7 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll new file mode 100644 index 0000000..9896fd3 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll new file mode 100644 index 0000000..18eb223 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..66af198 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/CimCmdlets/CimCmdlets.psd1 b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/CimCmdlets/CimCmdlets.psd1 new file mode 100644 index 0000000..9c74ac8 --- /dev/null +++ b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/CimCmdlets/CimCmdlets.psd1 @@ -0,0 +1,233 @@ +@{ +GUID="{Fb6cc51d-c096-4b38-b78d-0fed6277096a}" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +RootModule="Microsoft.Management.Infrastructure.CimCmdlets" +RequiredAssemblies="Microsoft.Management.Infrastructure.CimCmdlets.dll","Microsoft.Management.Infrastructure.Dll" +FunctionsToExport = @() +CmdletsToExport= "Get-CimAssociatedInstance", "Get-CimClass", "Get-CimInstance", "Get-CimSession", "Invoke-CimMethod", + "New-CimInstance","New-CimSession","New-CimSessionOption","Register-CimIndicationEvent","Remove-CimInstance", + "Remove-CimSession","Set-CimInstance", + "Export-BinaryMiLog","Import-BinaryMiLog" +AliasesToExport = "gcim","scim","ncim", "rcim","icim","gcai","rcie","ncms","rcms","gcms","ncso","gcls" +HelpInfoUri="https://aka.ms/powershell72-help" +} + +# SIG # Begin signature block +# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCDVr9wtf0/6ef8P +# 7Oewmh6e4caAvboErstvAWik/E+xjqCCDYEwggX/MIID56ADAgECAhMzAAACUosz +# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I +# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O +# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA +# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o +# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 +# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 +# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp +# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 +# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u +# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 +# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti +# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z +# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf +# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK +# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW +# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F +# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQggKe1Wa+d +# fYvru2vipTPxs79u032BOtU/CXLz68NBYs0wQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQB0Sx7LIYYO505eD5CAwvSG6wwrjjzKL/MSFiL9Nh0Q +# YDyFIX4UsB617gQ/OLzvBaXpzuGbkzdtbxGuknwe5pNeLgzdAPj8f3aMfNM7JnL0 +# Pu6HUmHuaD11aY9bOOoddRWRZDGoSMXaPXvTHGXo8lk672+n6e2SNB28QG1ASAt7 +# 20qZLgr0ujUBlUe4zyg5MxZseqjEGR3bsUSltPOu2F107jcNqj1YZ/HXJHCAniSd +# XdMRipCWeydTNPpPLCWVtcjTyxXnJoDbTEVtyOpFx/0YxCgazCDY0ae+QKzp7sNe +# qbnNd30/F9pJ2S3hu9z9RcpgxbYDIHchMVO970sQOyvNoYIXGTCCFxUGCisGAQQB +# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME +# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIAaCwImJ8DxZ2FNq1L4wuBej3xtvL6SPai8XFzEz +# uLyVAgZhlV4Kp6EYEzIwMjExMjA4MjEwNDEzLjk2M1owBIACAfSggdikgdUwgdIx +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p +# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh +# bGVzIFRTUyBFU046MkFENC00QjkyLUZBMDExJTAjBgNVBAMTHE1pY3Jvc29mdCBU +# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYZ45RmJ+CRL +# zAABAAABhjANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg +# MjAxMDAeFw0yMTEwMjgxOTI3MzlaFw0yMzAxMjYxOTI3MzlaMIHSMQswCQYDVQQG +# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG +# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg +# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg +# RVNOOjJBRDQtNEI5Mi1GQTAxMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt +# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwI3G2Wpv +# 6B4IjAfrgfJpndPOPYO1Yd8+vlfoIxMW3gdCDT+zIbafg14pOu0t0ekUQx60p7Pa +# dH4OjnqNIE1q6ldH9ntj1gIdl4Hq4rdEHTZ6JFdE24DSbVoqqR+R4Iw4w3GPbfc2 +# Q3kfyyFyj+DOhmCWw/FZiTVTlT4bdejyAW6r/Jn4fr3xLjbvhITatr36VyyzgQ0Y +# 4Wr73H3gUcLjYu0qiHutDDb6+p+yDBGmKFznOW8wVt7D+u2VEJoE6JlK0EpVLZus +# dSzhecuUwJXxb2uygAZXlsa/fHlwW9YnlBqMHJ+im9HuK5X4x8/5B5dkuIoX5lWG +# jFMbD2A6Lu/PmUB4hK0CF5G1YaUtBrME73DAKkypk7SEm3BlJXwY/GrVoXWYUGEH +# yfrkLkws0RoEMpoIEgebZNKqjRynRJgR4fPCKrEhwEiTTAc4DXGci4HHOm64EQ1g +# /SDHMFqIKVSxoUbkGbdKNKHhmahuIrAy4we9s7rZJskveZYZiDmtAtBt/gQojxbZ +# 1vO9C11SthkrmkkTMLQf9cDzlVEBeu6KmHX2Sze6ggne3I4cy/5IULnHZ3rM4ZpJ +# c0s2KpGLHaVrEQy4x/mAn4yaYfgeH3MEAWkVjy/qTDh6cDCF/gyz3TaQDtvFnAK7 +# 0LqtbEvBPdBpeCG/hk9l0laYzwiyyGY/HqMCAwEAAaOCATYwggEyMB0GA1UdDgQW +# BBQZtqNFA+9mdEu/h33UhHMN6whcLjAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl +# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j +# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx +# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh +# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG +# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQDD7mehJY3fTHKC4hj+wBWB8544 +# uaJiMMIHnhK9ONTM7VraTYzx0U/TcLJ6gxw1tRzM5uu8kswJNlHNp7RedsAiwviV +# QZV9AL8IbZRLJTwNehCwk+BVcY2gh3ZGZmx8uatPZrRueyhhTTD2PvFVLrfwh2li +# DG/dEPNIHTKj79DlEcPIWoOCUp7p0ORMwQ95kVaibpX89pvjhPl2Fm0CBO3pXXJg +# 0bydpQ5dDDTv/qb0+WYF/vNVEU/MoMEQqlUWWuXECTqx6TayJuLJ6uU7K5QyTkQ/ +# l24IhGjDzf5AEZOrINYzkWVyNfUOpIxnKsWTBN2ijpZ/Tun5qrmo9vNIDT0lobgn +# ulae17NaEO9oiEJJH1tQ353dhuRi+A00PR781iYlzF5JU1DrEfEyNx8CWgERi90L +# KsYghZBCDjQ3DiJjfUZLqONeHrJfcmhz5/bfm8+aAaUPpZFeP0g0Iond6XNk4YiY +# bWPFoofc0LwcqSALtuIAyz6f3d+UaZZsp41U4hCIoGj6hoDIuU839bo/mZ/AgESw +# GxIXs0gZU6A+2qIUe60QdA969wWSzucKOisng9HCSZLF1dqc3QUawr0C0U41784K +# o9vckAG3akwYuVGcs6hM/SqEhoe9jHwe4Xp81CrTB1l9+EIdukCbP0kyzx0WZzte +# eiDN5rdiiQR9mBJuljCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw +# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n +# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y +# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv +# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg +# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO +# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 +# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 +# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL +# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 +# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj +# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE +# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 +# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 +# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB +# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE +# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG +# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 +# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV +# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV +# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo +# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m +# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j +# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv +# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN +# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 +# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 +# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX +# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew +# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 +# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd +# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr +# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh +# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n +# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ +# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw +# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI +# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv +# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh +# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046MkFENC00Qjky +# LUZBMDExJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB +# ATAHBgUrDgMCGgMVAAGu2DRzWkKljmXySX1korHL4fMnoIGDMIGApH4wfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tXMCIY +# DzIwMjExMjA5MDM1MTUxWhgPMjAyMTEyMTAwMzUxNTFaMHcwPQYKKwYBBAGEWQoE +# ATEvMC0wCgIFAOVbi1cCAQAwCgIBAAICFmICAf8wBwIBAAICEh0wCgIFAOVc3NcC +# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK +# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQAcxjpqy9KLSwM37+FXLc0BH8vQ +# bi/JiOUtzx1U3w8DY7ed3asVEpLwGzUKiZ6rI29ZJuKH6YlwiWrAcHP9QgQnWNwg +# LXWMiZLEeOE63JCAWeL4odLTq1DKced93+APIOfcpQ1ap6X/BY4fKpscksm/q98S +# mmAs+7pjsbcUGpWLtzGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w +# IFBDQSAyMDEwAhMzAAABhnjlGYn4JEvMAAEAAAGGMA0GCWCGSAFlAwQCAQUAoIIB +# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEINEG +# q0+SCFYCT6sOQMZPpgnAOe4W2XF/PwFbVzs1WLMVMIH6BgsqhkiG9w0BCRACLzGB +# 6jCB5zCB5DCBvQQgGpmI4LIsCFTGiYyfRAR7m7Fa2guxVNIw17mcAiq8Qn4wgZgw +# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE +# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD +# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYZ45RmJ+CRL +# zAABAAABhjAiBCAUmIgeNWf4KXB+/obIOhBMrPwiJ83+1ebXflyLLm9rjjANBgkq +# hkiG9w0BAQsFAASCAgBXBmO2FJAq4az5Z1fXe3nTGflWCimqnMzUudZ0JD5Omi9t +# KDRFGDjYxgAo4r26b3zc73bN/7kkUkJwwdDc2RsABuzjHa04XSfIbry8JwBw7utB +# lwotvUH6Wa22GXu0POFqMEywdRl2x4XM04hgdUfZdWznuVRzZACn1NIfYhjmsL97 +# WMTYX7dx4OVEIFWriI/R5+8p0IXDgLe3AxdrTSedGeQFgsbEvLRkVmU0m3Qsb3Qb +# V+Ds1llgS06AFYlJzgcSbBdr/6gU7V1s3EcH2z4GjPCs2rYmVIZ6XCwkn0no2vc9 +# jEHbLtaBZ7VJ/r3Xvbj/GEYdUbGgVAIdpDFnBKsamV/Z2X9eZZSIxjTnBdh4fdkJ +# 29TRUahZywqEtJWP7LOvjlIHK3Ri9AxxkJrGDhIyvJeOGT6fzT/SvWeHkAoqeGpp +# lqXzs/p5d1rsqFAST8pTTWVXItcmO84qO3+1is32A9nh1ngDva7RGXdsh3+kkobP +# eZkn0HnUxV0OUYgINHsDiCeDhwfElDpvix6/F+1S3yApsfT10k09qOWKBAxq1P7p +# j2Iih/xwZUTOwsPHTvczh8yrOAwVQoWiHKgNKXE4GyZmNAV2oUH0goTkTjqCOw7z +# /7UFMEhbEHABlSIKOQU/1hXDY4d07sfBlWPHskx8A+Yq7rTeFVPcXSnUUcqjcg== +# SIG # End signature block diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml new file mode 100644 index 0000000..8887031 --- /dev/null +++ b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml @@ -0,0 +1,294 @@ + + + + + + + + Counter + + Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSampleSet + + + + + + 25 + left + + + + left + 100 + + + + + + + + Timestamp + + + Readings + + + + + + + + Counter + + Microsoft.PowerShell.Commands.GetCounter.CounterFileInfo + + + + + 30 + left + + + 30 + left + + + 30 + left + + + + + + + + OldestRecord + + + NewestRecord + + + SampleCount + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml new file mode 100644 index 0000000..3cb0478 --- /dev/null +++ b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml @@ -0,0 +1,336 @@ + + + + + Default + + System.Diagnostics.Eventing.Reader.EventLogRecord + + + ProviderName + + + + + + 25 + + + 8 + right + + + 16 + + + + + + + + + TimeCreated + + + Id + + + LevelDisplayName + + + Message + + + + + + + + + Default + + System.Diagnostics.Eventing.Reader.EventLogConfiguration + + + + + + + 9 + + + + 18 + right + + + + 11 + right + + + + + + + + LogMode + + + MaximumSizeInBytes + + + RecordCount + + + LogName + + + + + + + + Default + + System.Diagnostics.Eventing.Reader.ProviderMetadata + + + + + + + Name + + + LogLinks + + + Opcodes + + + Tasks + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml new file mode 100644 index 0000000..a365f67 --- /dev/null +++ b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml @@ -0,0 +1,354 @@ + + + + + + System.Diagnostics.Eventing.Reader.EventLogConfiguration + + + PSStandardMembers + + + DefaultDisplayPropertySet + + LogName + MaximumSizeInBytes + RecordCount + LogMode + + + + + + + + System.Diagnostics.Eventing.Reader.EventLogRecord + + + PSStandardMembers + + + DefaultDisplayPropertySet + + TimeCreated + ProviderName + Id + Message + + + + + + + + System.Diagnostics.Eventing.Reader.ProviderMetadata + + + ProviderName + Name + + + PSStandardMembers + + + DefaultDisplayPropertySet + + Name + LogLinks + + + + + + + + Microsoft.PowerShell.Commands.GetCounter.CounterSet + + + Counter + Paths + + + + + Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSample + + + PSStandardMembers + + + DefaultDisplayPropertySet + + Path + InstanceName + CookedValue + + + + + + + + Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSampleSet + + + PSStandardMembers + + + DefaultDisplayPropertySet + + Timestamp + Readings + + + + + + + + Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSampleSet + + + Readings + + $strPaths = "" + foreach ($ctr in $this.CounterSamples) + { + $strPaths += ($ctr.Path + " :" + "`n") + $strPaths += ($ctr.CookedValue.ToString() + "`n`n") + } + return $strPaths + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1 b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1 new file mode 100644 index 0000000..880d7aa --- /dev/null +++ b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1 @@ -0,0 +1,231 @@ +@{ +GUID="CA046F10-CA64-4740-8FF9-2565DBA61A4F" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +FunctionsToExport = @() +CmdletsToExport="Get-WinEvent", "New-WinEvent", "Get-Counter" +AliasesToExport = @() +NestedModules="Microsoft.PowerShell.Commands.Diagnostics.dll" +TypesToProcess="GetEvent.types.ps1xml" +FormatsToProcess="Event.format.ps1xml", "Diagnostics.format.ps1xml" +HelpInfoURI = 'https://aka.ms/powershell72-help' +} + +# SIG # Begin signature block +# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCDPn0/Kw53z57yO +# 1TekDBJE1OmAf8RR94VaWe+Hq0qiG6CCDYEwggX/MIID56ADAgECAhMzAAACUosz +# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I +# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O +# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA +# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o +# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 +# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 +# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp +# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 +# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u +# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 +# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti +# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z +# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf +# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK +# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW +# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F +# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgODWoe2T6 +# RL6c8rlTHF90KQETb+lXsgMFPg5sa5qcVO8wQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQArTuRkyGCIWatxzP2XmCe8MGk2psH1zX2CtsCxq8Ap +# llWPArMeb/LjOcajbM5kypCRRAbwRz6aDbnQHt8odHEoRZU7pTPP6Gi5YLzfXy5B +# 0ww61qNEDWQD3Js4U0r/D5Bvbm0ewiX+JmBEh1lhTJYzIp8iXuTH3qe9bhKKb++x +# iTOWvO8/HgtkFqax0G4FyoGpyhcxGzGI0hzjTE+8qabrKI0VtLQ4FlvNluxrfISs +# nx56dtXmf0jiOSCWuGbtKydeTR6wtK8b8RfXdSfUfI2TbFk+nuTk9OADnpMxw87X +# rpiALWuM8oSYj9xv4oUCw6fsjnuryMRoM59K86mOjXkEoYIXGTCCFxUGCisGAQQB +# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME +# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIBHzUJcs5FFt55Hx994HtkOYw1sXWAszphHUNgXU +# AU+vAgZhlV4Kp54YEzIwMjExMjA4MjEwNDEzLjc5NlowBIACAfSggdikgdUwgdIx +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p +# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh +# bGVzIFRTUyBFU046MkFENC00QjkyLUZBMDExJTAjBgNVBAMTHE1pY3Jvc29mdCBU +# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYZ45RmJ+CRL +# zAABAAABhjANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg +# MjAxMDAeFw0yMTEwMjgxOTI3MzlaFw0yMzAxMjYxOTI3MzlaMIHSMQswCQYDVQQG +# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG +# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg +# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg +# RVNOOjJBRDQtNEI5Mi1GQTAxMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt +# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwI3G2Wpv +# 6B4IjAfrgfJpndPOPYO1Yd8+vlfoIxMW3gdCDT+zIbafg14pOu0t0ekUQx60p7Pa +# dH4OjnqNIE1q6ldH9ntj1gIdl4Hq4rdEHTZ6JFdE24DSbVoqqR+R4Iw4w3GPbfc2 +# Q3kfyyFyj+DOhmCWw/FZiTVTlT4bdejyAW6r/Jn4fr3xLjbvhITatr36VyyzgQ0Y +# 4Wr73H3gUcLjYu0qiHutDDb6+p+yDBGmKFznOW8wVt7D+u2VEJoE6JlK0EpVLZus +# dSzhecuUwJXxb2uygAZXlsa/fHlwW9YnlBqMHJ+im9HuK5X4x8/5B5dkuIoX5lWG +# jFMbD2A6Lu/PmUB4hK0CF5G1YaUtBrME73DAKkypk7SEm3BlJXwY/GrVoXWYUGEH +# yfrkLkws0RoEMpoIEgebZNKqjRynRJgR4fPCKrEhwEiTTAc4DXGci4HHOm64EQ1g +# /SDHMFqIKVSxoUbkGbdKNKHhmahuIrAy4we9s7rZJskveZYZiDmtAtBt/gQojxbZ +# 1vO9C11SthkrmkkTMLQf9cDzlVEBeu6KmHX2Sze6ggne3I4cy/5IULnHZ3rM4ZpJ +# c0s2KpGLHaVrEQy4x/mAn4yaYfgeH3MEAWkVjy/qTDh6cDCF/gyz3TaQDtvFnAK7 +# 0LqtbEvBPdBpeCG/hk9l0laYzwiyyGY/HqMCAwEAAaOCATYwggEyMB0GA1UdDgQW +# BBQZtqNFA+9mdEu/h33UhHMN6whcLjAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl +# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j +# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx +# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh +# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG +# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQDD7mehJY3fTHKC4hj+wBWB8544 +# uaJiMMIHnhK9ONTM7VraTYzx0U/TcLJ6gxw1tRzM5uu8kswJNlHNp7RedsAiwviV +# QZV9AL8IbZRLJTwNehCwk+BVcY2gh3ZGZmx8uatPZrRueyhhTTD2PvFVLrfwh2li +# DG/dEPNIHTKj79DlEcPIWoOCUp7p0ORMwQ95kVaibpX89pvjhPl2Fm0CBO3pXXJg +# 0bydpQ5dDDTv/qb0+WYF/vNVEU/MoMEQqlUWWuXECTqx6TayJuLJ6uU7K5QyTkQ/ +# l24IhGjDzf5AEZOrINYzkWVyNfUOpIxnKsWTBN2ijpZ/Tun5qrmo9vNIDT0lobgn +# ulae17NaEO9oiEJJH1tQ353dhuRi+A00PR781iYlzF5JU1DrEfEyNx8CWgERi90L +# KsYghZBCDjQ3DiJjfUZLqONeHrJfcmhz5/bfm8+aAaUPpZFeP0g0Iond6XNk4YiY +# bWPFoofc0LwcqSALtuIAyz6f3d+UaZZsp41U4hCIoGj6hoDIuU839bo/mZ/AgESw +# GxIXs0gZU6A+2qIUe60QdA969wWSzucKOisng9HCSZLF1dqc3QUawr0C0U41784K +# o9vckAG3akwYuVGcs6hM/SqEhoe9jHwe4Xp81CrTB1l9+EIdukCbP0kyzx0WZzte +# eiDN5rdiiQR9mBJuljCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw +# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n +# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y +# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv +# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg +# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO +# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 +# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 +# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL +# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 +# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj +# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE +# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 +# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 +# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB +# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE +# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG +# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 +# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV +# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV +# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo +# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m +# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j +# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv +# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN +# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 +# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 +# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX +# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew +# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 +# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd +# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr +# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh +# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n +# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ +# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw +# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI +# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv +# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh +# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046MkFENC00Qjky +# LUZBMDExJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB +# ATAHBgUrDgMCGgMVAAGu2DRzWkKljmXySX1korHL4fMnoIGDMIGApH4wfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tXMCIY +# DzIwMjExMjA5MDM1MTUxWhgPMjAyMTEyMTAwMzUxNTFaMHcwPQYKKwYBBAGEWQoE +# ATEvMC0wCgIFAOVbi1cCAQAwCgIBAAICFmICAf8wBwIBAAICEh0wCgIFAOVc3NcC +# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK +# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQAcxjpqy9KLSwM37+FXLc0BH8vQ +# bi/JiOUtzx1U3w8DY7ed3asVEpLwGzUKiZ6rI29ZJuKH6YlwiWrAcHP9QgQnWNwg +# LXWMiZLEeOE63JCAWeL4odLTq1DKced93+APIOfcpQ1ap6X/BY4fKpscksm/q98S +# mmAs+7pjsbcUGpWLtzGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w +# IFBDQSAyMDEwAhMzAAABhnjlGYn4JEvMAAEAAAGGMA0GCWCGSAFlAwQCAQUAoIIB +# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIIOe +# Fteykp3uhjp/CbUuslldSIpFBtmy2s0K3N7X+v4KMIH6BgsqhkiG9w0BCRACLzGB +# 6jCB5zCB5DCBvQQgGpmI4LIsCFTGiYyfRAR7m7Fa2guxVNIw17mcAiq8Qn4wgZgw +# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE +# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD +# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYZ45RmJ+CRL +# zAABAAABhjAiBCAUmIgeNWf4KXB+/obIOhBMrPwiJ83+1ebXflyLLm9rjjANBgkq +# hkiG9w0BAQsFAASCAgBf6Fat07wOy6aoLnxthDrldarQW8T2Ds6iTbNLhloJSJ1O +# Iu3QX6b7ktkdWHUtcOrW6wQ5y/EpoKQgPvT4+bs6e9QgdZqsz31NAecxGcivBfQz +# nxE8j6o46ky4HWO46ppqFjrz4ENa0ELpE8LC4fQC2h4N1EQPNkh9MQMunYZSK2Ck +# ritrVAuivl6vaeuVJyNBh0G20owR+ZDTocTnZYnOi4DqgKsrqe/8Q+kmQPmMZpig +# 3brD1Lg5JT/0zGlwNqvarcBJHRidNXrVJLxiHIcDTg4rwD+T4FN8EAbg+ioyv47T +# I6Ob7+gcrL2UdhVkZSUSqdVQVIX1V2SvP41TSHx7UCptCG0MaPiWYN5IGFlSKdRf +# hDv8Qb1cjW/wq3yQMBQBkV1g7CO48FoHlOl45b7dzXvn0b8LsYj2+gYfqzbJqacZ +# FOCrSVKIq5rlJAFKYra81Lzuryl3hpeXsREPc80w6gBZuwtq3ML/Z0YN7/rQQTs2 +# tsGyS4Ti76HltquYmkkQEfan1uk0RU91wujLFd7KZ3urFVvjqsqH9zSpxp7pCKT7 +# Sh6wf0zmG4SBX5DVQ0sHERamwpv6dqdDuadT3j9hnmsktM8uozim4Zzz0KI4DN1p +# IJE2x0YOHgYqr91aJMwULeVv3gGpcMUx6d08hSS6RDA7ne+UhH226yoyJsaYcQ== +# SIG # End signature block diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 new file mode 100644 index 0000000..5d9ffc6 --- /dev/null +++ b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 @@ -0,0 +1,229 @@ +@{ +GUID="56D66100-99A0-4FFC-A12D-EEE9A6718AEF" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +FunctionsToExport = @() +CmdletsToExport="Start-Transcript", "Stop-Transcript" +AliasesToExport = @() +NestedModules="Microsoft.PowerShell.ConsoleHost.dll" +HelpInfoURI = 'https://aka.ms/powershell72-help' +} + +# SIG # Begin signature block +# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCCAN6qOMSgIZSKy +# niFjiV1FZGi6ofshkAXyBqiHSReb1aCCDYEwggX/MIID56ADAgECAhMzAAACUosz +# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I +# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O +# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA +# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o +# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 +# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 +# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp +# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 +# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u +# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 +# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti +# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z +# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf +# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK +# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW +# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F +# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgkynSeA0x +# XjLakAqmd0XMmOd0Xz2RQ1n1Heu6kO1y5N0wQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQBp+M1foZUndpZVBWaBgxj5ssitpnOInfqiMoO3MG1s +# H2bxWJO09yPVWWu1/hkCjpRID00eSBj71TcZ/C1ZkQimhy2bxMM7YjngYf1A20r7 +# Luw3ZbAOPs92h91TG0a1L2PJa7rjJy57BgwnHFTgNrWkCR7VXElf2LnjCbONyJPy +# rVNLQaGGM78KKhd6Tp2LDd+R8sT19o2lD5bBrVubPim3XifI6hn4f66a1no72w3S +# 9ol7radXalJgKkxKzQnAVHPiOB+GAL/J457mswnvP+eRD/kUlEPsFRCVEMKejOdo +# 69jQhGOZJH0CuLU1HlhzU6X/poT4dnIJ9d+aCMX0cfE6oYIXGTCCFxUGCisGAQQB +# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME +# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIJb96bqFa1hrFgpYPU2ayB0LEBtlTfOe8EwuWTs9 +# L81TAgZhlV4jeFAYEzIwMjExMjA4MjEwNDEzLjY4NVowBIACAfSggdikgdUwgdIx +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p +# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh +# bGVzIFRTUyBFU046OEQ0MS00QkY3LUIzQjcxJTAjBgNVBAMTHE1pY3Jvc29mdCBU +# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYguzcaBQeG8 +# KgABAAABiDANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg +# MjAxMDAeFw0yMTEwMjgxOTI3NDBaFw0yMzAxMjYxOTI3NDBaMIHSMQswCQYDVQQG +# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG +# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg +# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg +# RVNOOjhENDEtNEJGNy1CM0I3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt +# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAmucQCAQm +# kcXHyDrV4S88VeJg2XGqNKcWpsrapRKFWchhjLsf/M9XN9bgznLN48BXPAtOlwoe +# dB2kN4bZdPP3KdRNbYq1tNFUh8UnmjCCr+CjLlrigHcmS0R+rsN2gBMXlLEZh2W/ +# COuD9VOLsb2P2jDp433V4rUAAUW82M7rg81d3OcctO+1XW1h3EtbQtS6QEkw6DYI +# uvfX7Aw8jXHZnsMugP8ZA1otprpTNUh/zRWC7CJyBzymQIDSCdWhVfD4shxe+Rs6 +# 1axf27bTg5H/V/SkNd9hzM6Nq/y2OjDKrLtuN9hS53569uhTNQeAhAVDfeHpEzlM +# vtXOyX6MTme3jnHdHPj6GLT9AMRIrAf96hPYOiPEBvHtrg6MpiI3+l6NlbSOs16/ +# FTeljT1+sdsWGtFTZvea9pAqV1aB795aDkmZ6sRm5jtdnVazfoWrHd3vDeh35WV0 +# 8vW4TlOfEcV2+KbairPxaFkJ4+tlsJ+MfsVOiTr/ZnDgaMaHnzzogelI3AofDU9I +# TbMkTtTxrLPygTbRdtbptrnLzBn2jzR4TJfkQo+hzWuaMu5OtMZiKV2I5MO0m1mK +# uUAgoq+442Lw8CQuj9EC2F8nTbJb2NcUDg+74dgJis/P8Ba/OrlxW+Trgc6TPGxC +# OtT739UqeslvWD6rNQ6UEO9f7vWDkhd2vtsCAwEAAaOCATYwggEyMB0GA1UdDgQW +# BBRkebVQxKO7zru9+o27GjPljMlKSjAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl +# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j +# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx +# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh +# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG +# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQBAEFrb+1gIJsv/GKLS2zavm2ek +# 177mk4yu6BuS6ViIuL0e20YN2ddXeiUhEdhk3FRto/GD93k5SIyNJ6X+p8uQMOxI +# 23YOSdyEzLJwh7+ftu0If8y3x6AJ0S1d12OZ7fsYqljHUeccneS9DWqipHk8uM8m +# 2ZbBhRnUN8M4iqg4roJGmZKZ9Fc8Z7ZHJgM97i7fIyA9hJH017z25WrDJlxapD5d +# mMyNyzzfAVqaByemCoBn4VkRCGNISx0xRlcb93W6ENhJF1NBjMl3cKVEHW4d8Y0N +# ZhpdXDteLk9HgbJyeCI2fN9GBrCS1B1ak+194PGiZKL8+gtK7NorAoAMQvFkYgrH +# rWCYfjV6PouC3N+A6wOBrckVOHT9PUIDK5ADCH4ZraQideS9LD/imKHM3I4iazPk +# ocHcFHB9yo5d9lMJZ+pnAAWglQQjMWhUqnE/llA+EqjbO0lAxlmUtVioVUswhT3p +# K6DjFRXM/LUxwTttufz1zBjELkRIZ8uCy1YkMxfBFwEos/QFIlDaFSvUn4IiWZA3 +# VLfAEjy51iJwK2jSIHw+1bjCI+FBHcCTRH2pP3+h5DlQ5AZ/dvcfNrATP1wwz25I +# r8KgKObHRCIYH4VI2VrmOboSHFG79JbHdkPVSjfLxTuTsoh5FzoU1t5urG0rwulo +# ZZFZxTkrxfyTkhvmjDCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw +# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n +# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y +# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv +# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg +# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO +# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 +# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 +# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL +# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 +# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj +# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE +# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 +# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 +# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB +# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE +# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG +# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 +# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV +# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV +# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo +# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m +# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j +# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv +# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN +# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 +# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 +# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX +# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew +# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 +# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd +# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr +# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh +# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n +# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ +# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw +# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI +# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv +# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh +# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046OEQ0MS00QkY3 +# LUIzQjcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB +# ATAHBgUrDgMCGgMVAOE8isx8IBeVPSweD805l5Qdeg5CoIGDMIGApH4wfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tIMCIY +# DzIwMjExMjA5MDM1MTM2WhgPMjAyMTEyMTAwMzUxMzZaMHcwPQYKKwYBBAGEWQoE +# ATEvMC0wCgIFAOVbi0gCAQAwCgIBAAICIScCAf8wBwIBAAICEdowCgIFAOVc3MgC +# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK +# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQBeVbaPZ5ldfNGhiFwP5ALaZGmV +# 4LkTqmcDT5yUk6p3tceYyxhPwMQqshcKt1fSrFqX5J8uNBeTWEpB5D/YyrXGHu/K +# a4Wj/8+nv32LXimt561Ygktjq90QX/Vha0BnifzfBTf/k64ZmtV6FMmvNI9MjNm3 +# QmHj495BbEuSWI20HzGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w +# IFBDQSAyMDEwAhMzAAABiC7NxoFB4bwqAAEAAAGIMA0GCWCGSAFlAwQCAQUAoIIB +# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIB5r +# VcRB53ajDn0amN283eZmOuFxfZ1ddPxQGZnO2OCZMIH6BgsqhkiG9w0BCRACLzGB +# 6jCB5zCB5DCBvQQgZune7awGN0aEgvjP7JyO3NKl7hstX8ChhrKmXtJJQKUwgZgw +# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE +# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD +# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYguzcaBQeG8 +# KgABAAABiDAiBCDnGsQwLYuvrNs0JZQ8D1YCe56drKP5aPf/ndr94faZkzANBgkq +# hkiG9w0BAQsFAASCAgBi8EWq1+2L+qQJjtUAiYvFYQS2GX/DAratlOcGOSYqL81P +# DXuByUFsrXsBKqXmeuAfWiNeLWOpiGvy10qNldd/AsVdVrba72n8rzGLQ1od91L4 +# CljkSRtcq/LmvjdWPqa+ySqda1OpsD80ZOFstCnTysY9S6SDqvWgZYr+UtRJsng4 +# jp8cUCQBAcjQ1N/dHGUAs/Tvfr5kHdDGynKKMGdDEUKtM2jjznIIWnxPzZoyXEi4 +# 8ePyJ/mTh3grNa3oOSGxuC+8ejye9Bc4JPSYYzhzJw+M0LAgBLQxj/HdYiuGIK7w +# TOUrqctErkPgosq1NdUAqQZakDXVpouiB+FTez3hiR2QAY1uR5lHvGD9zJValYMH +# OQEzjO5Bh+2cauVdMp012ULRJBIcVVrjUcSihcyD6EbUlyzu0VQFNFANkbFpqsf6 +# gS9p4j//r8AfQv8xwyy2N0Ql5caRRf5Vlfjp8c2ikMMvY19A53qBKs+aE093B+4Z +# 72wg2wnorYKun9fGpnfs+JufmnDf64O8a9pXV+XM9lVmgmWb0ScKAxn+N9dZrwD7 +# DbjlvSnLEUciHzyEO9wQ8/gu3L6E2Ugho+AbIDStmNhSIQiMDJblWZk5aLc8SGPr +# tts+mmDoB+lun57BwYPZKhgmnekQ9j9tCZaDKWa/ocKNByI+2+YBrNev3M37rQ== +# SIG # End signature block diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 new file mode 100644 index 0000000..5d2f511 --- /dev/null +++ b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 @@ -0,0 +1,289 @@ +@{ +GUID="EEFCB906-B326-4E99-9F54-8B4BB6EF3C6D" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +NestedModules="Microsoft.PowerShell.Commands.Management.dll" +HelpInfoURI = 'https://aka.ms/powershell72-help' +FunctionsToExport = @() +AliasesToExport = @("gcb", "gin", "gtz", "scb", "stz") +CmdletsToExport=@("Add-Content", + "Clear-Content", + "Get-Clipboard", + "Set-Clipboard", + "Clear-ItemProperty", + "Join-Path", + "Convert-Path", + "Copy-ItemProperty", + "Get-ChildItem", + "Get-Content", + "Get-ItemProperty", + "Get-ItemPropertyValue", + "Move-ItemProperty", + "Get-Location", + "Set-Location", + "Push-Location", + "Pop-Location", + "New-PSDrive", + "Remove-PSDrive", + "Get-PSDrive", + "Get-Item", + "New-Item", + "Set-Item", + "Remove-Item", + "Move-Item", + "Rename-Item", + "Copy-Item", + "Clear-Item", + "Invoke-Item", + "Get-PSProvider", + "New-ItemProperty", + "Split-Path", + "Test-Path", + "Test-Connection", + "Get-Process", + "Stop-Process", + "Wait-Process", + "Debug-Process", + "Start-Process", + "Remove-ItemProperty", + "Rename-ItemProperty", + "Resolve-Path", + "Get-Service", + "Stop-Service", + "Start-Service", + "Suspend-Service", + "Resume-Service", + "Restart-Service", + "Set-Service", + "New-Service", + "Remove-Service", + "Set-Content", + "Set-ItemProperty", + "Restart-Computer", + "Stop-Computer", + "Rename-Computer", + "Get-ComputerInfo", + "Get-TimeZone", + "Set-TimeZone", + "Get-HotFix", + "Clear-RecycleBin") +} + +# SIG # Begin signature block +# MIInuAYJKoZIhvcNAQcCoIInqTCCJ6UCAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCAOkUHfBYP8n8JI +# rFMR/Pi6BPlAC/b/pz0LBmd3yrLJC6CCDYEwggX/MIID56ADAgECAhMzAAACUosz +# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I +# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O +# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA +# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o +# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 +# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 +# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp +# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 +# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u +# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 +# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti +# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z +# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf +# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK +# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW +# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F +# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjTCCGYkCAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgbwKAFcUU +# n/a8C1e7lODkKydexiPQBTRqAUaY8lpIXxYwQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQAS8cDlYOVWF3oFPi1M2yWWdC1wbCMgPa2utU2WgHpJ +# FdgkgR5zgZhKx2APsR5uSgSfvs9YfPYm8+NRMvxAYm4e/Bf1JgTP9gsgqxQ/xXB+ +# NqOASjMjv7v+wTLPMa/i//jTTxjqcmHebx0tVR6f0Fpr9BU7PxW996xh2vKdxVnV +# YXxHwAmhJ1TxUaZC0hVRtriJrBfAsuQ2g/aCn5wZ6YXKVJ63IBZ+jnivf80fnSYc +# t+Zl4LqAiaSvpQ7GgPo/RggihGdWk+AuZCcY9SOJYAypK3Hvu4KHy4+5GEW3+9LI +# uQ3+9k1MG+Xng2uR0sDenzNJN89weif/W6AwmTwRl69ToYIXFzCCFxMGCisGAQQB +# gjcDAwExghcDMIIW/wYJKoZIhvcNAQcCoIIW8DCCFuwCAQMxDzANBglghkgBZQME +# AgEFADCCAVcGCyqGSIb3DQEJEAEEoIIBRgSCAUIwggE+AgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIGUlM1IvDbHn/VrMmR6UJYC2nOP4lY0xhCVtPuKI +# CRBSAgZhlV4jeGYYETIwMjExMjA4MjEwNDE0LjdaMASAAgH0oIHYpIHVMIHSMQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNy +# b3NvZnQgSXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxl +# cyBUU1MgRVNOOjhENDEtNEJGNy1CM0I3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGlt +# ZS1TdGFtcCBTZXJ2aWNloIIRaDCCBxQwggT8oAMCAQICEzMAAAGILs3GgUHhvCoA +# AQAAAYgwDQYJKoZIhvcNAQELBQAwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldh +# c2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBD +# b3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIw +# MTAwHhcNMjExMDI4MTkyNzQwWhcNMjMwMTI2MTkyNzQwWjCB0jELMAkGA1UEBhMC +# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV +# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEtMCsGA1UECxMkTWljcm9zb2Z0IEly +# ZWxhbmQgT3BlcmF0aW9ucyBMaW1pdGVkMSYwJAYDVQQLEx1UaGFsZXMgVFNTIEVT +# Tjo4RDQxLTRCRjctQjNCNzElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAg +# U2VydmljZTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAJrnEAgEJpHF +# x8g61eEvPFXiYNlxqjSnFqbK2qUShVnIYYy7H/zPVzfW4M5yzePAVzwLTpcKHnQd +# pDeG2XTz9ynUTW2KtbTRVIfFJ5owgq/goy5a4oB3JktEfq7DdoATF5SxGYdlvwjr +# g/VTi7G9j9ow6eN91eK1AAFFvNjO64PNXdznHLTvtV1tYdxLW0LUukBJMOg2CLr3 +# 1+wMPI1x2Z7DLoD/GQNaLaa6UzVIf80Vguwicgc8pkCA0gnVoVXw+LIcXvkbOtWs +# X9u204OR/1f0pDXfYczOjav8tjowyqy7bjfYUud+evboUzUHgIQFQ33h6RM5TL7V +# zsl+jE5nt45x3Rz4+hi0/QDESKwH/eoT2DojxAbx7a4OjKYiN/pejZW0jrNevxU3 +# pY09frHbFhrRU2b3mvaQKldWge/eWg5JmerEZuY7XZ1Ws36Fqx3d7w3od+VldPL1 +# uE5TnxHFdvim2oqz8WhZCePrZbCfjH7FTok6/2Zw4GjGh5886IHpSNwKHw1PSE2z +# JE7U8ayz8oE20XbW6ba5y8wZ9o80eEyX5EKPoc1rmjLuTrTGYildiOTDtJtZirlA +# IKKvuONi8PAkLo/RAthfJ02yW9jXFA4Pu+HYCYrPz/AWvzq5cVvk64HOkzxsQjrU +# +9/VKnrJb1g+qzUOlBDvX+71g5IXdr7bAgMBAAGjggE2MIIBMjAdBgNVHQ4EFgQU +# ZHm1UMSju867vfqNuxoz5YzJSkowHwYDVR0jBBgwFoAUn6cVXQBeYl2D9OXSZacb +# UzUZ6XIwXwYDVR0fBFgwVjBUoFKgUIZOaHR0cDovL3d3dy5taWNyb3NvZnQuY29t +# L3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwVGltZS1TdGFtcCUyMFBDQSUyMDIwMTAo +# MSkuY3JsMGwGCCsGAQUFBwEBBGAwXjBcBggrBgEFBQcwAoZQaHR0cDovL3d3dy5t +# aWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9NaWNyb3NvZnQlMjBUaW1lLVN0YW1w +# JTIwUENBJTIwMjAxMCgxKS5jcnQwDAYDVR0TAQH/BAIwADATBgNVHSUEDDAKBggr +# BgEFBQcDCDANBgkqhkiG9w0BAQsFAAOCAgEAQBBa2/tYCCbL/xii0ts2r5tnpNe+ +# 5pOMrugbkulYiLi9HttGDdnXV3olIRHYZNxUbaPxg/d5OUiMjSel/qfLkDDsSNt2 +# DknchMyycIe/n7btCH/Mt8egCdEtXddjme37GKpYx1HnHJ3kvQ1qoqR5PLjPJtmW +# wYUZ1DfDOIqoOK6CRpmSmfRXPGe2RyYDPe4u3yMgPYSR9Ne89uVqwyZcWqQ+XZjM +# jcs83wFamgcnpgqAZ+FZEQhjSEsdMUZXG/d1uhDYSRdTQYzJd3ClRB1uHfGNDWYa +# XVw7Xi5PR4GycngiNnzfRgawktQdWpPtfeDxomSi/PoLSuzaKwKADELxZGIKx61g +# mH41ej6LgtzfgOsDga3JFTh0/T1CAyuQAwh+Ga2kInXkvSw/4pihzNyOImsz5KHB +# 3BRwfcqOXfZTCWfqZwAFoJUEIzFoVKpxP5ZQPhKo2ztJQMZZlLVYqFVLMIU96Sug +# 4xUVzPy1McE7bbn89cwYxC5ESGfLgstWJDMXwRcBKLP0BSJQ2hUr1J+CIlmQN1S3 +# wBI8udYicCto0iB8PtW4wiPhQR3Ak0R9qT9/oeQ5UOQGf3b3HzawEz9cMM9uSK/C +# oCjmx0QiGB+FSNla5jm6EhxRu/SWx3ZD1Uo3y8U7k7KIeRc6FNbebqxtK8LpaGWR +# WcU5K8X8k5Ib5owwggdxMIIFWaADAgECAhMzAAAAFcXna54Cm0mZAAAAAAAVMA0G +# CSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3Rv +# bjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0 +# aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3Jp +# dHkgMjAxMDAeFw0yMTA5MzAxODIyMjVaFw0zMDA5MzAxODMyMjVaMHwxCzAJBgNV +# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w +# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m +# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC +# CgKCAgEA5OGmTOe0ciELeaLL1yR5vQ7VgtP97pwHB9KpbE51yMo1V/YBf2xK4OK9 +# uT4XYDP/XE/HZveVU3Fa4n5KWv64NmeFRiMMtY0Tz3cywBAY6GB9alKDRLemjkZr +# BxTzxXb1hlDcwUTIcVxRMTegCjhuje3XD9gmU3w5YQJ6xKr9cmmvHaus9ja+NSZk +# 2pg7uhp7M62AW36MEBydUv626GIl3GoPz130/o5Tz9bshVZN7928jaTjkY+yOSxR +# nOlwaQ3KNi1wjjHINSi947SHJMPgyY9+tVSP3PoFVZhtaDuaRr3tpK56KTesy+uD +# RedGbsoy1cCGMFxPLOJiss254o2I5JasAUq7vnGpF1tnYN74kpEeHT39IM9zfUGa +# RnXNxF803RKJ1v2lIH1+/NmeRd+2ci/bfV+AutuqfjbsNkz2K26oElHovwUDo9Fz +# pk03dJQcNIIP8BDyt0cY7afomXw/TNuvXsLz1dhzPUNOwTM5TI4CvEJoLhDqhFFG +# 4tG9ahhaYQFzymeiXtcodgLiMxhy16cg8ML6EgrXY28MyTZki1ugpoMhXV8wdJGU +# lNi5UPkLiWHzNgY1GIRH29wb0f2y1BzFa/ZcUlFdEtsluq9QBXpsxREdcu+N+VLE +# hReTwDwV2xo3xwgVGD94q0W29R6HXtqPnhZyacaue7e3PmriLq0CAwEAAaOCAd0w +# ggHZMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFCqnUv5kxJq+ +# gpE8RjUpzxD/LwTuMB0GA1UdDgQWBBSfpxVdAF5iXYP05dJlpxtTNRnpcjBcBgNV +# HSAEVTBTMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wEwYDVR0l +# BAwwCgYIKwYBBQUHAwgwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P +# BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU1fZWy4/oolxiaNE9 +# lJBb186aGMQwVgYDVR0fBE8wTTBLoEmgR4ZFaHR0cDovL2NybC5taWNyb3NvZnQu +# Y29tL3BraS9jcmwvcHJvZHVjdHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3Js +# MFoGCCsGAQUFBwEBBE4wTDBKBggrBgEFBQcwAoY+aHR0cDovL3d3dy5taWNyb3Nv +# ZnQuY29tL3BraS9jZXJ0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5jcnQwDQYJ +# KoZIhvcNAQELBQADggIBAJ1VffwqreEsH2cBMSRb4Z5yS/ypb+pcFLY+TkdkeLEG +# k5c9MTO1OdfCcTY/2mRsfNB1OW27DzHkwo/7bNGhlBgi7ulmZzpTTd2YurYeeNg2 +# LpypglYAA7AFvonoaeC6Ce5732pvvinLbtg/SHUB2RjebYIM9W0jVOR4U3UkV7nd +# n/OOPcbzaN9l9qRWqveVtihVJ9AkvUCgvxm2EhIRXT0n4ECWOKz3+SmJw7wXsFSF +# QrP8DJ6LGYnn8AtqgcKBGUIZUnWKNsIdw2FzLixre24/LAl4FOmRsqlb30mjdAy8 +# 7JGA0j3mSj5mO0+7hvoyGtmW9I/2kQH2zsZ0/fZMcm8Qq3UwxTSwethQ/gpY3UA8 +# x1RtnWN0SCyxTkctwRQEcb9k+SS+c23Kjgm9swFXSVRk2XPXfx5bRAGOWhmRaw2f +# pCjcZxkoJLo4S5pu+yFUa2pFEUep8beuyOiJXk+d0tBMdrVXVAmxaQFEfnyhYWxz +# /gq77EFmPWn9y8FBSX5+k77L+DvktxW/tM4+pTFRhLy/AsGConsXHRWJjXD+57XQ +# KBqJC4822rpM+Zv/Cuk0+CQ1ZyvgDbjmjJnW4SLq8CdCPSWU5nR0W2rRnj7tfqAx +# M328y+l7vzhwRNGQ8cirOoo6CGJ/2XBjU02N7oJtpQUQwXEGahC0HVUzWLOhcGby +# oYIC1zCCAkACAQEwggEAoYHYpIHVMIHSMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQgSXJlbGFuZCBPcGVyYXRp +# b25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNOOjhENDEtNEJGNy1C +# M0I3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNloiMKAQEw +# BwYFKw4DAhoDFQDhPIrMfCAXlT0sHg/NOZeUHXoOQqCBgzCBgKR+MHwxCzAJBgNV +# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w +# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m +# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBBQUAAgUA5VuLSDAiGA8y +# MDIxMTIwOTAzNTEzNloYDzIwMjExMjEwMDM1MTM2WjB3MD0GCisGAQQBhFkKBAEx +# LzAtMAoCBQDlW4tIAgEAMAoCAQACAiEnAgH/MAcCAQACAhHaMAoCBQDlXNzIAgEA +# MDYGCisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEAAgMHoSChCjAI +# AgEAAgMBhqAwDQYJKoZIhvcNAQEFBQADgYEAXlW2j2eZXXzRoYhcD+QC2mRpleC5 +# E6pnA0+clJOqd7XHmMsYT8DEKrIXCrdX0qxal+SfLjQXk1hKQeQ/2Mq1xh7vymuF +# o//Pp799i14preetWIJLY6vdEF/1YWtAZ4n83wU3/5OuGZrVehTJrzSPTIzZt0Jh +# 4+PeQWxLkliNtB8xggQNMIIECQIBATCBkzB8MQswCQYDVQQGEwJVUzETMBEGA1UE +# CBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9z +# b2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQ +# Q0EgMjAxMAITMwAAAYguzcaBQeG8KgABAAABiDANBglghkgBZQMEAgEFAKCCAUow +# GgYJKoZIhvcNAQkDMQ0GCyqGSIb3DQEJEAEEMC8GCSqGSIb3DQEJBDEiBCAAZlzS +# rT4vVB7wRIbsGvay4ACd2gPSgT3yS7r8RrU5XTCB+gYLKoZIhvcNAQkQAi8xgeow +# gecwgeQwgb0EIGbp3u2sBjdGhIL4z+ycjtzSpe4bLV/AoYaypl7SSUClMIGYMIGA +# pH4wfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcT +# B1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UE +# AxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTACEzMAAAGILs3GgUHhvCoA +# AQAAAYgwIgQg5xrEMC2Lr6zbNCWUPA9WAnuenayj+Wj3/53a/eH2mZMwDQYJKoZI +# hvcNAQELBQAEggIAOr4i66ksCOJ3Rw8xoMzAdJVQl257tTcsAl9f6cACnWS8wb5g +# W+fRBFGeoxzjBgn34Rn0NPmfz5+vx9D314QAmjWt//l6S8hmldXyUlrixC6aOGik +# +CRaSnhf0CY2o3vBSYsYV3gJx0PSnDq6/T2B+S9TY90hvl+NgkzCNBnyLEDPgDXB +# e9XQi88hUWqZxpjaTmAI26+fr9z7AMrtnA4hxEzDbh6VGDhXKZ4F//b3E6Xj6ppB +# AJBmkEH42AnDBuFGEr2iLkKbU25t0ZuD7whLQ7CaQ8yVOppTuG4kqNbsUmIPzxtI +# wlznjxAV7nN+BrIuNmraWiBmszVsqSm1FhcZBBL3jj98szffT9zmcRKwPKlO8J88 +# mHFY0io9zXsE8Cv87ezrCIDVhbIm3gHj8dMr8tiWmo9ejacYgEZSGNBAwdku6O+G +# PZ1WsWBQ1MNLRtye9FWMqGog7yqeb/iHtJH3hH7MFLgXMVHuKjI7rcIGlWKOyTbA +# Cllth+6In3BRDC/VUiSKD6SfVYyEjKdLM3dURYi/NzUJ3tapoE4DUBYt2xZlDEGO +# j/L2KpzIlyi5MhU3YZwTkAZwSNqmPKZ+f5w6j0cOhilqTOYMmVB5OycslZv6ODcW +# pcGpnK6b2QNfFMEvtGrIvflWQC95c9hwlJ2O3Fuh5Hroza3f7PgYUmrxctU= +# SIG # End signature block diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 new file mode 100644 index 0000000..b3dd852 --- /dev/null +++ b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 @@ -0,0 +1,229 @@ +@{ +GUID="A94C8C7E-9810-47C0-B8AF-65089C13A35A" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +FunctionsToExport = @() +CmdletsToExport="Get-Acl", "Set-Acl", "Get-PfxCertificate", "Get-Credential", "Get-ExecutionPolicy", "Set-ExecutionPolicy", "Get-AuthenticodeSignature", "Set-AuthenticodeSignature", "ConvertFrom-SecureString", "ConvertTo-SecureString", "Get-CmsMessage", "Unprotect-CmsMessage", "Protect-CmsMessage" , "New-FileCatalog" , "Test-FileCatalog" +AliasesToExport = @() +NestedModules="Microsoft.PowerShell.Security.dll" +HelpInfoURI = 'https://aka.ms/powershell72-help' +} + +# SIG # Begin signature block +# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCD++xTkW7oivoiQ +# gqU/R85f/MwSI1hVEeaegSriXP6+BqCCDYEwggX/MIID56ADAgECAhMzAAACUosz +# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I +# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O +# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA +# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o +# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 +# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 +# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp +# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 +# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u +# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 +# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti +# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z +# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf +# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK +# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW +# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F +# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgWHV5GUzu +# +l9zI1GEYPanTVvtHVRaoSkM2bZBhM+rt9YwQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQByeqL4g0Ci96GXfmQN8rvCAtpT2N0neMZ9mozeBeyF +# 5hYxQhatRKLDNrOJei542+AM9l8AmsmKtJvtE8wJUkVGZqxBSiMwv7nV1uMQgVhK +# crEIUsmJO+EStsx+gA3VyfugAElJEJtTInobbDPofwO4DS8xUBpW/OLaq3XVjRga +# JOh7s7RMx+7Gysq96jaguaW2H2llklxhsKZwf3Mdi+/5BhF8tIevEqPuk4ly1oXh +# qY4/BD0pFNygoTWMp6ecxNQM2EE1N1j3y30h36Gsk5aDMeUFrRNtFFWFF1HbrbH3 +# thOhL/rqSQkbxAR2CNSGQtzrNuLF+1/xJEHXgBNGyEWioYIXGTCCFxUGCisGAQQB +# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME +# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIC9rz69tGAbCMg2r367oWNBEt5XvxdFCe04Dw8cQ +# hWtJAgZhlV5AOHEYEzIwMjExMjA4MjEwNDE0Ljc5MVowBIACAfSggdikgdUwgdIx +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p +# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh +# bGVzIFRTUyBFU046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBU +# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYm0v4YwhBxL +# jwABAAABiTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg +# MjAxMDAeFw0yMTEwMjgxOTI3NDFaFw0yMzAxMjYxOTI3NDFaMIHSMQswCQYDVQQG +# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG +# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg +# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg +# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt +# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQZXxZFm +# a6plmuOyvNpV8xONOwcYolZG/BjyZWGSk5JOGaLyrKId5VxVHWHlsmJE4Svnzsdp +# sKmVx8otONveIUFvSceEZp8VXmu5m1fu8L7c+3lwXcibjccqtEvtQslokQVx0r+L +# 54abrNDarwFG73IaRidIS1i9c+unJ8oYyhDRLrCysFAVxyQhPNZkWK7Z8/VGukaK +# LAWHXCh/+R53h42gFL+9/mAALxzCXXuofi8f/XKCm7xNwVc1hONCCz6oq94AufzV +# NkkIW4brUQgYpCcJm9U0XNmQvtropYDn9UtY8YQ0NKenXPtdgLHdQ8Nnv3igErKL +# rWI0a5n5jjdKfwk+8mvakqdZmlOseeOS1XspQNJAK1uZllAITcnQZOcO5ofjOQ33 +# ujWckAXdz+/x3o7l4AU/TSOMzGZMwhUdtVwC3dSbItpSVFgnjM2COEJ9zgCadvOi +# rGDLN471jZI2jClkjsJTdgPk343TQA4JFvds/unZq0uLr+niZ3X44OBx2x+gVlln +# 2c4UbZXNueA4yS1TJGbbJFIILAmTUA9Auj5eISGTbNiyWx79HnCOTar39QEKozm4 +# LnTmDXy0/KI/H/nYZGKuTHfckP28wQS06rD+fDS5xLwcRMCW92DkHXmtbhGyRilB +# OL5LxZelQfxt54wl4WUC0AdAEolPekODwO8CAwEAAaOCATYwggEyMB0GA1UdDgQW +# BBSXbx+zR1p4IIAeguA6rHKkrfl7UDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl +# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j +# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx +# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh +# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG +# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQCOtLdpWUI4KwfLLrfaKrLB92Dq +# bAspGWM41TaO4Jl+sHxPo522uu3GKQCjmkRWreHtlfyy9kOk7LWax3k3ke8Gtfet +# fbh7qH0LeV2XOWg39BOnHf6mTcZq7FYSZZch1JDQjc98+Odlow+oWih0Dbt4CV/e +# 19ZcE+1n1zzWkskUEd0f5jPIUis33p+vkY8szduAtCcIcPFUhI8Hb5alPUAPMjGz +# wKb7NIKbnf8j8cP18As5IveckF0oh1cw63RY/vPK62LDYdpi7WnG2ObvngfWVKtw +# iwTI4jHj2cO9q37HDe/PPl216gSpUZh0ap24mKmMDfcKp1N4mEdsxz4oseOrPYeF +# sHHWJFJ6Aivvqn70KTeJpp5r+DxSqbeSy0mxIUOq/lAaUxgNSQVUX26t8r+fciko +# fKv23WHrtRV3t7rVTsB9YzrRaiikmz68K5HWdt9MqULxPQPo+ppZ0LRqkOae466+ +# UKRY0JxWtdrMc5vHlHZfnqjawj/RsM2S6Q6fa9T9CnY1Nz7DYBG3yZJyCPFsrgU0 +# 5s9ljqfsSptpFdUh9R4ce+L71SWDLM2x/1MFLLHAMbXsEp8KloEGtaDULnxtfS2t +# YhfuKGqRXoEfDPAMnIdTvQPh3GHQ4SjkkBARHL0MY75alhGTKHWjC2aLVOo8obKI +# Bk8hfnFDUf/EyVw4uTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw +# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n +# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y +# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv +# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg +# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO +# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 +# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 +# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL +# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 +# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj +# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE +# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 +# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 +# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB +# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE +# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG +# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 +# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV +# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV +# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo +# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m +# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j +# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv +# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN +# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 +# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 +# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX +# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew +# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 +# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd +# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr +# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh +# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n +# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ +# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw +# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI +# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv +# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh +# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00Qjgw +# LTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB +# ATAHBgUrDgMCGgMVACGlCa3ketyeuey7bJNpWkMuiCcQoIGDMIGApH4wfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tYMCIY +# DzIwMjExMjA5MDM1MTUyWhgPMjAyMTEyMTAwMzUxNTJaMHcwPQYKKwYBBAGEWQoE +# ATEvMC0wCgIFAOVbi1gCAQAwCgIBAAICHvwCAf8wBwIBAAICETcwCgIFAOVc3NgC +# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK +# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQCbF/Q1IJzqUwQBkXn+GjUxZzVN +# O+9p1fpL7W8dEy9/m1L7dl968KiYqfO5rekvXeSUDTFYrkS/r0w8p2ZZ7d0TMtJt +# TrKmc85aRmxtSvCNAS2stE2sS2Y5np5+/02w3DDn3Nni6vvF8nsuiIlbiyHrGQrC +# 9eis1rpLSNvXisSYoDGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w +# IFBDQSAyMDEwAhMzAAABibS/hjCEHEuPAAEAAAGJMA0GCWCGSAFlAwQCAQUAoIIB +# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIM9O +# ao85t+tQMGnb/NodpJQMwx5JXiYYilGmLk9FSvn+MIH6BgsqhkiG9w0BCRACLzGB +# 6jCB5zCB5DCBvQQgZndHMdxQV1VsbpWHOTHqWEycvcRJm7cY69l/UmT8j0UwgZgw +# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE +# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD +# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYm0v4YwhBxL +# jwABAAABiTAiBCCErc3WAJDL+6+RTcx4qvTV2Dv0bP6a0jmZjnUp3u9sbzANBgkq +# hkiG9w0BAQsFAASCAgCzngLNnPmqawyfurGD6pabQJgWV4nP5zle9pu9tx4c1pTi +# SKAeREqAeOs5Bcg46nHpP+Flb+4BQ68zc2JUv1p1P7OlmpKshGEd1Sgpj0izHI8E +# JW8lmMXuRudxbw/761rpDKViWtWQ1lzxhyDeqJw1tiGIAcbX7P26zcoC+jp19GlY +# DaXcIJDZM/u5UUKDtKNSBIvTX+UDfuAEAwmH37GcuHTnvm1txdDZF2DNEn9Jzj7y +# TvHglap7FeMIvo/Um4cLq8xdSJxOYbGGQ5qCdc6vIGXC8HebpR3bIPxldyKDPdpd +# LdvDD0k+rnDHmMsmgQuihIG8rDiadJ/7YtexaDNm4aYRa8PD5SabeUwi94eYZ4a7 +# 25ZkBy6FQAY13i0RgSRicx2Ryowd0Hg0DWSAfHSJc5CnL7qWNTOhwvX7wEUGbe/0 +# 1GZR+ZYiJRO83/lQAEurvVJuEZ3dKTpeJB4FOP6oIc76pL3GvW9XINxo49WiIbzl +# YEToH4oTa5F5vUCvF2Wa5tDlpa60LFSJDP1VyWCYPP+sflKLkYvG3PmXSYYbCprL +# yS0rypa9ACBp7Q2rZTa1s3j7jtNa3Fa5RZ9gAulFkUVVZ+F0Pm7aUvnRAf54+Ri6 +# aoF9G+flQpzZn8nYCRFfiqcQ9wKPA6lZBGEqzGBLAZqzsmmrSgcwVjdN6ZwqYg== +# SIG # End signature block diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 new file mode 100644 index 0000000..927c504 --- /dev/null +++ b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 @@ -0,0 +1,248 @@ +@{ +GUID = "1DA87E53-152B-403E-98DC-74D7B4D63D59" +Author = "PowerShell" +CompanyName = "Microsoft Corporation" +Copyright = "Copyright (c) Microsoft Corporation." +ModuleVersion = "7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion = "3.0" +CmdletsToExport = @( + 'Export-Alias', 'Get-Alias', 'Import-Alias', 'New-Alias', 'Remove-Alias', 'Set-Alias', 'Export-Clixml', 'Import-Clixml', + 'Measure-Command', 'Trace-Command', 'ConvertFrom-Csv', 'ConvertTo-Csv', 'Export-Csv', 'Import-Csv', 'Get-Culture', + 'Format-Custom', 'Get-Date', 'Set-Date', 'Write-Debug', 'Wait-Debugger', 'Register-EngineEvent', 'Write-Error', + 'Get-Event', 'New-Event', 'Remove-Event', 'Unregister-Event', 'Wait-Event', 'Get-EventSubscriber', 'Invoke-Expression', + 'Out-File', 'Unblock-File', 'Get-FileHash', 'Export-FormatData', 'Get-FormatData', 'Update-FormatData', 'New-Guid', + 'Format-Hex', 'Get-Host', 'Read-Host', 'Write-Host', 'ConvertTo-Html', 'Write-Information', 'ConvertFrom-Json', + 'ConvertTo-Json', 'Test-Json', 'Format-List', 'Import-LocalizedData', 'Send-MailMessage', 'ConvertFrom-Markdown', + 'Show-Markdown', 'Get-MarkdownOption', 'Set-MarkdownOption', 'Add-Member', 'Get-Member', 'Compare-Object', 'Group-Object', + 'Measure-Object', 'New-Object', 'Select-Object', 'Sort-Object', 'Tee-Object', 'Register-ObjectEvent', 'Write-Output', + 'Import-PowerShellDataFile', 'Write-Progress', 'Disable-PSBreakpoint', 'Enable-PSBreakpoint', 'Get-PSBreakpoint', + 'Remove-PSBreakpoint', 'Set-PSBreakpoint', 'Get-PSCallStack', 'Export-PSSession', 'Import-PSSession', 'Get-Random', + 'Invoke-RestMethod', 'Debug-Runspace', 'Get-Runspace', 'Disable-RunspaceDebug', 'Enable-RunspaceDebug', + 'Get-RunspaceDebug', 'ConvertFrom-SddlString', 'Start-Sleep', 'Join-String', 'Out-String', 'Select-String', + 'ConvertFrom-StringData', 'Format-Table', 'New-TemporaryFile', 'New-TimeSpan', 'Get-TraceSource', 'Set-TraceSource', + 'Add-Type', 'Get-TypeData', 'Remove-TypeData', 'Update-TypeData', 'Get-UICulture', 'Get-Unique', 'Get-Uptime', + 'Clear-Variable', 'Get-Variable', 'New-Variable', 'Remove-Variable', 'Set-Variable', 'Get-Verb', 'Write-Verbose', + 'Write-Warning', 'Invoke-WebRequest', 'Format-Wide', 'ConvertTo-Xml', 'Select-Xml', 'Get-Error', 'Update-List', + 'Out-GridView', 'Show-Command', 'Out-Printer' +) +FunctionsToExport = @() +AliasesToExport = @('fhx') +NestedModules = @("Microsoft.PowerShell.Commands.Utility.dll") +HelpInfoURI = 'https://aka.ms/powershell72-help' +} + +# SIG # Begin signature block +# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCBA95ukw/cTrslZ +# 8GEROXuMEYH1RJd2ZOe5U1EPFSWVsaCCDYEwggX/MIID56ADAgECAhMzAAACUosz +# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I +# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O +# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA +# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o +# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 +# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 +# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp +# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 +# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u +# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 +# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti +# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z +# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf +# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK +# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW +# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F +# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgqoEvsipU +# dEXkK33kvZSyP9Cx3IROdWp1ndiqGNS27hEwQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQBHzboagxcQ8L50vNYxDsscrvzcGeLtxdwkaQTW10v2 +# aTPJXDVIFjRwioUbqfGvtBDaq9QFgLBcV3qb5zGL0K33nlBa4+dK0AgYlbbkpnSp +# l9l3tTHoSRiKtFdmpIpsRQPXGZ5c6iGkicQNtX/D2c6SBQ++qayvldFZcU16y/4C +# IUzeFA8TYMYRJnGQRC7BG1xqAWztt+WIUGlO5kQOnuNYczbq/zvBrT5nBRwhqcQQ +# YzJRwkNf2F+G88rnBESxNxegRusbUX+v3bwsa6uxxLpSeqSDD3JasgCzS1eaTBYn +# NXGeHxHdweiG14ABsGjSbxT+wtB6eeNj0ymmsYJdm7ApoYIXGTCCFxUGCisGAQQB +# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME +# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIIEUntqZM075d/Xv5VtLazUG/C8XTr8E5AIBTLPG +# 2f+4AgZhlV5AOGMYEzIwMjExMjA4MjEwNDE0LjMzOFowBIACAfSggdikgdUwgdIx +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p +# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh +# bGVzIFRTUyBFU046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBU +# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYm0v4YwhBxL +# jwABAAABiTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg +# MjAxMDAeFw0yMTEwMjgxOTI3NDFaFw0yMzAxMjYxOTI3NDFaMIHSMQswCQYDVQQG +# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG +# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg +# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg +# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt +# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQZXxZFm +# a6plmuOyvNpV8xONOwcYolZG/BjyZWGSk5JOGaLyrKId5VxVHWHlsmJE4Svnzsdp +# sKmVx8otONveIUFvSceEZp8VXmu5m1fu8L7c+3lwXcibjccqtEvtQslokQVx0r+L +# 54abrNDarwFG73IaRidIS1i9c+unJ8oYyhDRLrCysFAVxyQhPNZkWK7Z8/VGukaK +# LAWHXCh/+R53h42gFL+9/mAALxzCXXuofi8f/XKCm7xNwVc1hONCCz6oq94AufzV +# NkkIW4brUQgYpCcJm9U0XNmQvtropYDn9UtY8YQ0NKenXPtdgLHdQ8Nnv3igErKL +# rWI0a5n5jjdKfwk+8mvakqdZmlOseeOS1XspQNJAK1uZllAITcnQZOcO5ofjOQ33 +# ujWckAXdz+/x3o7l4AU/TSOMzGZMwhUdtVwC3dSbItpSVFgnjM2COEJ9zgCadvOi +# rGDLN471jZI2jClkjsJTdgPk343TQA4JFvds/unZq0uLr+niZ3X44OBx2x+gVlln +# 2c4UbZXNueA4yS1TJGbbJFIILAmTUA9Auj5eISGTbNiyWx79HnCOTar39QEKozm4 +# LnTmDXy0/KI/H/nYZGKuTHfckP28wQS06rD+fDS5xLwcRMCW92DkHXmtbhGyRilB +# OL5LxZelQfxt54wl4WUC0AdAEolPekODwO8CAwEAAaOCATYwggEyMB0GA1UdDgQW +# BBSXbx+zR1p4IIAeguA6rHKkrfl7UDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl +# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j +# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx +# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh +# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG +# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQCOtLdpWUI4KwfLLrfaKrLB92Dq +# bAspGWM41TaO4Jl+sHxPo522uu3GKQCjmkRWreHtlfyy9kOk7LWax3k3ke8Gtfet +# fbh7qH0LeV2XOWg39BOnHf6mTcZq7FYSZZch1JDQjc98+Odlow+oWih0Dbt4CV/e +# 19ZcE+1n1zzWkskUEd0f5jPIUis33p+vkY8szduAtCcIcPFUhI8Hb5alPUAPMjGz +# wKb7NIKbnf8j8cP18As5IveckF0oh1cw63RY/vPK62LDYdpi7WnG2ObvngfWVKtw +# iwTI4jHj2cO9q37HDe/PPl216gSpUZh0ap24mKmMDfcKp1N4mEdsxz4oseOrPYeF +# sHHWJFJ6Aivvqn70KTeJpp5r+DxSqbeSy0mxIUOq/lAaUxgNSQVUX26t8r+fciko +# fKv23WHrtRV3t7rVTsB9YzrRaiikmz68K5HWdt9MqULxPQPo+ppZ0LRqkOae466+ +# UKRY0JxWtdrMc5vHlHZfnqjawj/RsM2S6Q6fa9T9CnY1Nz7DYBG3yZJyCPFsrgU0 +# 5s9ljqfsSptpFdUh9R4ce+L71SWDLM2x/1MFLLHAMbXsEp8KloEGtaDULnxtfS2t +# YhfuKGqRXoEfDPAMnIdTvQPh3GHQ4SjkkBARHL0MY75alhGTKHWjC2aLVOo8obKI +# Bk8hfnFDUf/EyVw4uTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw +# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n +# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y +# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv +# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg +# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO +# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 +# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 +# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL +# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 +# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj +# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE +# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 +# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 +# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB +# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE +# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG +# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 +# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV +# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV +# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo +# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m +# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j +# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv +# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN +# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 +# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 +# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX +# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew +# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 +# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd +# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr +# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh +# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n +# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ +# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw +# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI +# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv +# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh +# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00Qjgw +# LTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB +# ATAHBgUrDgMCGgMVACGlCa3ketyeuey7bJNpWkMuiCcQoIGDMIGApH4wfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tYMCIY +# DzIwMjExMjA5MDM1MTUyWhgPMjAyMTEyMTAwMzUxNTJaMHcwPQYKKwYBBAGEWQoE +# ATEvMC0wCgIFAOVbi1gCAQAwCgIBAAICHvwCAf8wBwIBAAICETcwCgIFAOVc3NgC +# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK +# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQCbF/Q1IJzqUwQBkXn+GjUxZzVN +# O+9p1fpL7W8dEy9/m1L7dl968KiYqfO5rekvXeSUDTFYrkS/r0w8p2ZZ7d0TMtJt +# TrKmc85aRmxtSvCNAS2stE2sS2Y5np5+/02w3DDn3Nni6vvF8nsuiIlbiyHrGQrC +# 9eis1rpLSNvXisSYoDGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w +# IFBDQSAyMDEwAhMzAAABibS/hjCEHEuPAAEAAAGJMA0GCWCGSAFlAwQCAQUAoIIB +# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEINjr +# jaYjHvF5zcuiSPmsJnfGwWcQHYP/2CYeqIoTLbM/MIH6BgsqhkiG9w0BCRACLzGB +# 6jCB5zCB5DCBvQQgZndHMdxQV1VsbpWHOTHqWEycvcRJm7cY69l/UmT8j0UwgZgw +# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE +# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD +# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYm0v4YwhBxL +# jwABAAABiTAiBCCErc3WAJDL+6+RTcx4qvTV2Dv0bP6a0jmZjnUp3u9sbzANBgkq +# hkiG9w0BAQsFAASCAgBlISYxvNqg3TVBqRooVDAWRo+EMXUl4mBMwOvnI755iHjz +# ksXBl+FBaJdTbgfrrbkqVuTFgjnA7/1hzx8FuYRnz7aS7yWbUamn2DKeVHfcmL4w +# luTTDqklOtM/LNUOi2iRHQHG2+bi8OvJIavShvbjjv9telA3MY+ONzP+2t7H2ESf +# 7Sht+eH7Il5Wc9p2QB1o2iMaRK+TZoE1petI8ZxSJn0F6rFdBGIOI1mhNaZTZGuk +# UVAe9v6kd5k9BQZ1mfLCVf+A86Ul66fvrwAtETiuFMWYQhbnRWRLElWVUA/3zIS4 +# MVVyPlFjINt2m980WlIgHkt+K+cSbEtIUZ4Scpt/Tf9K0Kd2PEV+2z5n7xbwDPhy +# uczGyZm+0/NH6HDWrr74wX7+UJQzHGU7cP6yIDk/MJF5+E6ahKx6XfJYB2TK28qi +# K0g2HqkFhgS6zvnoNZNpWd28UKH9TLZIyWY9I7jKEMxP6jLzPugPYsL8pxvJLsAI +# /vn5Go+lLdNHUykJgB2ChUKsm3x1aUrSpGiW8UJ5xUiJ5RB1nFfUv0AWHcouYl92 +# FJhWIn3qaZExP6R7NijbAMyoYChcDgPrOGseESmfGZuVFbhE7gMai1VIRCLnmBoK +# Der+JOgsWW/eHU9nN5uuyP6uqtP01F5eayK++qjH+B9xQAJNq79RVXVvyaNZlw== +# SIG # End signature block diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1 b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1 new file mode 100644 index 0000000..a370f4c --- /dev/null +++ b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1 @@ -0,0 +1,230 @@ +@{ +GUID="766204A6-330E-4263-A7AB-46C87AFC366C" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +FunctionsToExport = @() +CmdletsToExport="Disable-WSManCredSSP", "Enable-WSManCredSSP", "Get-WSManCredSSP", "Set-WSManQuickConfig", "Test-WSMan", "Invoke-WSManAction", "Connect-WSMan", "Disconnect-WSMan", "Get-WSManInstance", "Set-WSManInstance", "Remove-WSManInstance", "New-WSManInstance", "New-WSManSessionOption" +AliasesToExport = @() +NestedModules="Microsoft.WSMan.Management.dll" +FormatsToProcess="WSMan.format.ps1xml" +HelpInfoURI = 'https://aka.ms/powershell72-help' +} + +# SIG # Begin signature block +# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCB+Ujs/uIRQu9NJ +# wrRJEY/iIf48rrMaCNk+CtkIzIqDVqCCDYEwggX/MIID56ADAgECAhMzAAACUosz +# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I +# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O +# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA +# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o +# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 +# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 +# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp +# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 +# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u +# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 +# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti +# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z +# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf +# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK +# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW +# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F +# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgypxuMQwq +# 1eGPEmRm52ViV1FEshB3MTFlVOkKoUKOQmgwQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQBwQLkeEMe+dK/nBzeh5yKFRrxpey/F+58vzZS97hfh +# rOZPhi6B29T/8kJqtTW8EVhdy+XNARi5JYKvFt6cO1TFJlb9H6ncq7TAYPV6ue/R +# 1CmnXltjWiRYZAibhN3Y7Yq+pnqIskQb8LI499I2Sg8JLuvRXBYqUb6F4wZ/vgH2 +# Vz/dHRgonqNkI94s5mOFXG0TX3/JzQD+xj3NWFNeOUCLsQQ0k7EA2pcF9odFgyNS +# QY0KGk3Bu+KcQUxmPdbgtIoM1ebLvINLR3mpD6xeWuusLS2NXX/7x3otBPyC17R2 +# hjh5a4lKYQH16inEdSg6jGkMXymnKOPRAmXZnFI9FET1oYIXGTCCFxUGCisGAQQB +# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME +# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIGqYa00kDq7cefzR97imqg4FhBGef4q3IvGpky5C +# NPnvAgZhlV5AOG4YEzIwMjExMjA4MjEwNDE0LjYwN1owBIACAfSggdikgdUwgdIx +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p +# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh +# bGVzIFRTUyBFU046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBU +# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYm0v4YwhBxL +# jwABAAABiTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg +# MjAxMDAeFw0yMTEwMjgxOTI3NDFaFw0yMzAxMjYxOTI3NDFaMIHSMQswCQYDVQQG +# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG +# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg +# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg +# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt +# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQZXxZFm +# a6plmuOyvNpV8xONOwcYolZG/BjyZWGSk5JOGaLyrKId5VxVHWHlsmJE4Svnzsdp +# sKmVx8otONveIUFvSceEZp8VXmu5m1fu8L7c+3lwXcibjccqtEvtQslokQVx0r+L +# 54abrNDarwFG73IaRidIS1i9c+unJ8oYyhDRLrCysFAVxyQhPNZkWK7Z8/VGukaK +# LAWHXCh/+R53h42gFL+9/mAALxzCXXuofi8f/XKCm7xNwVc1hONCCz6oq94AufzV +# NkkIW4brUQgYpCcJm9U0XNmQvtropYDn9UtY8YQ0NKenXPtdgLHdQ8Nnv3igErKL +# rWI0a5n5jjdKfwk+8mvakqdZmlOseeOS1XspQNJAK1uZllAITcnQZOcO5ofjOQ33 +# ujWckAXdz+/x3o7l4AU/TSOMzGZMwhUdtVwC3dSbItpSVFgnjM2COEJ9zgCadvOi +# rGDLN471jZI2jClkjsJTdgPk343TQA4JFvds/unZq0uLr+niZ3X44OBx2x+gVlln +# 2c4UbZXNueA4yS1TJGbbJFIILAmTUA9Auj5eISGTbNiyWx79HnCOTar39QEKozm4 +# LnTmDXy0/KI/H/nYZGKuTHfckP28wQS06rD+fDS5xLwcRMCW92DkHXmtbhGyRilB +# OL5LxZelQfxt54wl4WUC0AdAEolPekODwO8CAwEAAaOCATYwggEyMB0GA1UdDgQW +# BBSXbx+zR1p4IIAeguA6rHKkrfl7UDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl +# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j +# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx +# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh +# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG +# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQCOtLdpWUI4KwfLLrfaKrLB92Dq +# bAspGWM41TaO4Jl+sHxPo522uu3GKQCjmkRWreHtlfyy9kOk7LWax3k3ke8Gtfet +# fbh7qH0LeV2XOWg39BOnHf6mTcZq7FYSZZch1JDQjc98+Odlow+oWih0Dbt4CV/e +# 19ZcE+1n1zzWkskUEd0f5jPIUis33p+vkY8szduAtCcIcPFUhI8Hb5alPUAPMjGz +# wKb7NIKbnf8j8cP18As5IveckF0oh1cw63RY/vPK62LDYdpi7WnG2ObvngfWVKtw +# iwTI4jHj2cO9q37HDe/PPl216gSpUZh0ap24mKmMDfcKp1N4mEdsxz4oseOrPYeF +# sHHWJFJ6Aivvqn70KTeJpp5r+DxSqbeSy0mxIUOq/lAaUxgNSQVUX26t8r+fciko +# fKv23WHrtRV3t7rVTsB9YzrRaiikmz68K5HWdt9MqULxPQPo+ppZ0LRqkOae466+ +# UKRY0JxWtdrMc5vHlHZfnqjawj/RsM2S6Q6fa9T9CnY1Nz7DYBG3yZJyCPFsrgU0 +# 5s9ljqfsSptpFdUh9R4ce+L71SWDLM2x/1MFLLHAMbXsEp8KloEGtaDULnxtfS2t +# YhfuKGqRXoEfDPAMnIdTvQPh3GHQ4SjkkBARHL0MY75alhGTKHWjC2aLVOo8obKI +# Bk8hfnFDUf/EyVw4uTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw +# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n +# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y +# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv +# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg +# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO +# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 +# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 +# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL +# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 +# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj +# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE +# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 +# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 +# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB +# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE +# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG +# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 +# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV +# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV +# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo +# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m +# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j +# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv +# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN +# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 +# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 +# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX +# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew +# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 +# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd +# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr +# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh +# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n +# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ +# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw +# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI +# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv +# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh +# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00Qjgw +# LTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB +# ATAHBgUrDgMCGgMVACGlCa3ketyeuey7bJNpWkMuiCcQoIGDMIGApH4wfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tYMCIY +# DzIwMjExMjA5MDM1MTUyWhgPMjAyMTEyMTAwMzUxNTJaMHcwPQYKKwYBBAGEWQoE +# ATEvMC0wCgIFAOVbi1gCAQAwCgIBAAICHvwCAf8wBwIBAAICETcwCgIFAOVc3NgC +# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK +# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQCbF/Q1IJzqUwQBkXn+GjUxZzVN +# O+9p1fpL7W8dEy9/m1L7dl968KiYqfO5rekvXeSUDTFYrkS/r0w8p2ZZ7d0TMtJt +# TrKmc85aRmxtSvCNAS2stE2sS2Y5np5+/02w3DDn3Nni6vvF8nsuiIlbiyHrGQrC +# 9eis1rpLSNvXisSYoDGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w +# IFBDQSAyMDEwAhMzAAABibS/hjCEHEuPAAEAAAGJMA0GCWCGSAFlAwQCAQUAoIIB +# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIN1F +# wmeehZy4wMNXqLnULVbk4oVsB3cWo9ryHOQxmYoPMIH6BgsqhkiG9w0BCRACLzGB +# 6jCB5zCB5DCBvQQgZndHMdxQV1VsbpWHOTHqWEycvcRJm7cY69l/UmT8j0UwgZgw +# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE +# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD +# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYm0v4YwhBxL +# jwABAAABiTAiBCCErc3WAJDL+6+RTcx4qvTV2Dv0bP6a0jmZjnUp3u9sbzANBgkq +# hkiG9w0BAQsFAASCAgAWjRg7KzoR7Kd4cPnoMh490c1gOoabocbdzphBISFn24S4 +# Nomokt8QSkLypqSgMe0FQyCku8urnNIhX6CA1FObkCe+DFM9FFaOHNY3Lqv4oVGW +# O2nCjMXPxj8FMZM7UyZB11zPMhPHaleWP0UQPuqEf/d6V8vbh23OyZ9RfYUKft+m +# zKsR+gnqKtrmAuqLSrwoo/6JvgchTRqV+ODeDc1l3JfbhQW+6hFryB3RSAau+Msg +# n/QwOqIYCYJl/t7kV/Ze7WF97Kc294zbuRT4LTMccfms19oeACHoZpU2H7JWSEZn +# MTMnaEVlM+9ylAgC4wxiEsXlJCI5K167HTpkfR3/9/4hJo+5Pmacd0HQjpP6zDqw +# a8sveaOAmaI0eRC6ByG00sBwPmbRTRvDA4Dc2b3bKqINgkZpM7/NFmclkho4jvF0 +# XJ4jk/Ul2rvaQtTrWY0ZCITR79XpLpRZMukTFTybSZrE+bERy3eK/KNee4Wbt6wz +# 86sci4DvgqPc1nBsX0Y5iWhiPA2I9rXH36iH7ZI7D/I4+0qEWLxfsLNTUthwb8Zg +# 1ukHkIyEk14gOar+Exf4MRZ8slf1518X2zoCj6ZeYfXB8pRz/+N7w8rEtbKCjX+U +# dyI16Oy8vNwWWZRdoG6e2rMmvDDSTz34db1DymXU+a92+q/qcwFAkl1dPVTn5Q== +# SIG # End signature block diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml new file mode 100644 index 0000000..8907c23 --- /dev/null +++ b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml @@ -0,0 +1,451 @@ + + + + + + + System.Xml.XmlElement#http://schemas.dmtf.org/wbem/wsman/identity/1/wsmanidentity.xsd#IdentifyResponse + + System.Xml.XmlElement#http://schemas.dmtf.org/wbem/wsman/identity/1/wsmanidentity.xsd#IdentifyResponse + + + + + + + wsmid + + + ProtocolVersion + + + ProductVendor + + + ProductVersion + + + + + + + + Microsoft.WSMan.Management.WSManConfigElement + + Microsoft.WSMan.Management.WSManConfigElement + + + PSParentPath + + + + + + + 15 + + + + 30 + + + + + + + TypeNameOfElement + + + Name + + + + + + + + Microsoft.WSMan.Management.WSManConfigContainerElement + + Microsoft.WSMan.Management.WSManConfigContainerElement + + + PSParentPath + + + + + + + 15 + + + + 35 + + + + + + + + + + TypeNameOfElement + + + Keys + + + Name + + + + + + + + Microsoft.WSMan.Management.WSManConfigLeafElement + + Microsoft.WSMan.Management.WSManConfigLeafElement + + + PSParentPath + + + + + + + 15 + + + + 30 + + + + 15 + + + + + + + + + + TypeNameOfElement + + + Name + + + SourceOfValue + + + Value + + + + + + + + Microsoft.WSMan.Management.WSManConfigLeafElement#InitParams + + Microsoft.WSMan.Management.WSManConfigLeafElement#InitParams + + + PSParentPath + + + + + + + 30 + + + + 20 + + + + + + + Name + + + Value + + + + + + + + Microsoft.WSMan.Management.WSManConfigContainerElement#ComputerLevel + + Microsoft.WSMan.Management.WSManConfigContainerElement#ComputerLevel + + + PSParentPath + + + + + + + 45 + + + + 20 + + + + + + + Name + + + TypeNameOfElement + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psd1 b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psd1 new file mode 100644 index 0000000..626dc3a --- /dev/null +++ b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psd1 @@ -0,0 +1,207 @@ +@{ + GUID="c61d6278-02a3-4618-ae37-a524d40a7f44 " + Author="PowerShell" + CompanyName="Microsoft Corporation" + Copyright="Copyright (c) Microsoft Corporation." + ModuleVersion="7.0.0.0" + CompatiblePSEditions = @("Core") + PowerShellVersion="3.0" + ModuleToProcess="PSDiagnostics.psm1" + FunctionsToExport="Disable-PSTrace","Disable-PSWSManCombinedTrace","Disable-WSManTrace","Enable-PSTrace","Enable-PSWSManCombinedTrace","Enable-WSManTrace","Get-LogProperties","Set-LogProperties","Start-Trace","Stop-Trace" + CmdletsToExport = @() + AliasesToExport = @() + HelpInfoUri="https://aka.ms/powershell72-help" +} + +# SIG # Begin signature block +# MIIjkQYJKoZIhvcNAQcCoIIjgjCCI34CAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCD/dfsIexbywzf4 +# vgDANLKxbLCeK+0wW4ZnFQP22V0sXqCCDYEwggX/MIID56ADAgECAhMzAAACUosz +# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I +# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O +# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA +# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o +# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 +# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 +# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp +# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 +# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u +# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 +# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti +# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z +# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf +# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK +# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW +# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F +# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIVZjCCFWICAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgoT0Qfn6u +# IFQn6DGWcQzw34/4HzFrnEYbuu3YQlqVoaQwQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQCt/xkRVxP7BXqiUQi+IuzI0bokgJJBF15CLUb5UcOl +# ojrCl4Rx34i0hAAoWt5uOvUG37LQEGnKm5DEgRwG5d+R8SHjAZxk83VzPAg9c7S/ +# GLe8AdcLJ4L5rjGb5YReU+eIPGNvrcZu8JYN2dlBO1nY6axLwonRTpQj43J7wrWd +# InSCbV8CnUfK4/lgftJ5P7SCNLe7Enjv8dQOahg3B4BMReQxHm/SZWgSGb8t++wI +# ZWCw6sRh+XjE63P3VzhAp8Z8KOR3TSCE4Bt5tfy8xDbmePlVrK3GKoVVq4RkVn96 +# 4TRCHvs3RZTQm57yJ2NplI10zIqZz2geZRns5nVGDHcYoYIS8DCCEuwGCisGAQQB +# gjcDAwExghLcMIIS2AYJKoZIhvcNAQcCoIISyTCCEsUCAQMxDzANBglghkgBZQME +# AgEFADCCAVQGCyqGSIb3DQEJEAEEoIIBQwSCAT8wggE7AgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIG5NKJe+omftR+S4BYKgAMTO7Tl6rem9xPJkoE7D +# yZYZAgZhk97zjjgYEjIwMjExMjA4MjEwNDE0Ljg2WjAEgAIB9KCB1KSB0TCBzjEL +# MAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1v +# bmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEpMCcGA1UECxMgTWlj +# cm9zb2Z0IE9wZXJhdGlvbnMgUHVlcnRvIFJpY28xJjAkBgNVBAsTHVRoYWxlcyBU +# U1MgRVNOOjMyQkQtRTNENS0zQjFEMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1T +# dGFtcCBTZXJ2aWNloIIORDCCBPUwggPdoAMCAQICEzMAAAFi0P4C8wHlzUkAAAAA +# AWIwDQYJKoZIhvcNAQELBQAwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hp +# bmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jw +# b3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAw +# HhcNMjEwMTE0MTkwMjIyWhcNMjIwNDExMTkwMjIyWjCBzjELMAkGA1UEBhMCVVMx +# EzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoT +# FU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEpMCcGA1UECxMgTWljcm9zb2Z0IE9wZXJh +# dGlvbnMgUHVlcnRvIFJpY28xJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNOOjMyQkQt +# RTNENS0zQjFEMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNl +# MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA74ah1Pa5wvcyvYNCy/YQ +# s1tK8rIGlh1Qq1QFaJmYVXLXykb+m5yCStzmL227wJjsalZX8JA2YcbaZV5Icwm9 +# vAJz8AC/sk/dsUK3pmDvkhtVI04YDV6otuZCILpQB9Ipcs3d0e1Dl2KKFvdibOk0 +# /0rRxU9l+/Yxeb5lVTRERLxzI+Rd6Xv5QQYT6Sp2IE0N1vzIFd3yyO773T5XifNg +# L5lZbtIUnYUVmUBKlVoemO/54aiFeVBpIG+YzhDTF7cuHNAzxWIbP1wt4VIqAV9J +# juqLMvvBSD56pi8NTKM9fxrERAeaTS2HbfBYfmnRZ27Czjeo0ijQ5DSZGi0ErvWf +# KQIDAQABo4IBGzCCARcwHQYDVR0OBBYEFMvEShFgSkO3OnzgHlaVk3aQ/iprMB8G +# A1UdIwQYMBaAFNVjOlyKMZDzQ3t8RhvFM2hahW1VMFYGA1UdHwRPME0wS6BJoEeG +# RWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Rp +# bVN0YVBDQV8yMDEwLTA3LTAxLmNybDBaBggrBgEFBQcBAQROMEwwSgYIKwYBBQUH +# MAKGPmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljVGltU3Rh +# UENBXzIwMTAtMDctMDEuY3J0MAwGA1UdEwEB/wQCMAAwEwYDVR0lBAwwCgYIKwYB +# BQUHAwgwDQYJKoZIhvcNAQELBQADggEBAC1BrcOhdhtb9xcAJtxVIUZ7iALwZewX +# FIdPcmDAVT810k5xuRwVNW9Onq+WZO8ebqwiOSdEEHReLU0FOo/DbS7q79PsKdz/ +# PSBPqZ/1ysjRVH0L5HUK2N7NgpkR1lnt+41BaOzJ+00OFDL5GqeqvK3RWh7MtqWF +# 6KKcfNkP/hjiFlg9/S7xNK/Vl8q10HB5YbdBTQun8j1Jsih6YMb3tFQsxw++ra5+ +# FSnc4yJhAYvVaqTKRKepEmwzYhwDiXh2ag80/p0uDkOvs1WhgogwidpBVmNLAMxm +# FavK9+LNfRKvPIuCQw+EsxWR8vFBBJDfs14WTsXVF94CQ1YCHqYI5EEwggZxMIIE +# WaADAgECAgphCYEqAAAAAAACMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJV +# UzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UE +# ChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9v +# dCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgMjAxMDAeFw0xMDA3MDEyMTM2NTVaFw0y +# NTA3MDEyMTQ2NTVaMHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9u +# MRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRp +# b24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwMIIBIjAN +# BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqR0NvHcRijog7PwTl/X6f2mUa3RU +# ENWlCgCChfvtfGhLLF/Fw+Vhwna3PmYrW/AVUycEMR9BGxqVHc4JE458YTBZsTBE +# D/FgiIRUQwzXTbg4CLNC3ZOs1nMwVyaCo0UN0Or1R4HNvyRgMlhgRvJYR4YyhB50 +# YWeRX4FUsc+TTJLBxKZd0WETbijGGvmGgLvfYfxGwScdJGcSchohiq9LZIlQYrFd +# /XcfPfBXday9ikJNQFHRD5wGPmd/9WbAA5ZEfu/QS/1u5ZrKsajyeioKMfDaTgaR +# togINeh4HLDpmc085y9Euqf03GS9pAHBIAmTeM38vMDJRF1eFpwBBU8iTQIDAQAB +# o4IB5jCCAeIwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFNVjOlyKMZDzQ3t8 +# RhvFM2hahW1VMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB +# hjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNX2VsuP6KJcYmjRPZSQW9fO +# mhjEMFYGA1UdHwRPME0wS6BJoEeGRWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w +# a2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNybDBaBggr +# BgEFBQcBAQROMEwwSgYIKwYBBQUHMAKGPmh0dHA6Ly93d3cubWljcm9zb2Z0LmNv +# bS9wa2kvY2VydHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3J0MIGgBgNVHSAB +# Af8EgZUwgZIwgY8GCSsGAQQBgjcuAzCBgTA9BggrBgEFBQcCARYxaHR0cDovL3d3 +# dy5taWNyb3NvZnQuY29tL1BLSS9kb2NzL0NQUy9kZWZhdWx0Lmh0bTBABggrBgEF +# BQcCAjA0HjIgHQBMAGUAZwBhAGwAXwBQAG8AbABpAGMAeQBfAFMAdABhAHQAZQBt +# AGUAbgB0AC4gHTANBgkqhkiG9w0BAQsFAAOCAgEAB+aIUQ3ixuCYP4FxAz2do6Eh +# b7Prpsz1Mb7PBeKp/vpXbRkws8LFZslq3/Xn8Hi9x6ieJeP5vO1rVFcIK1GCRBL7 +# uVOMzPRgEop2zEBAQZvcXBf/XPleFzWYJFZLdO9CEMivv3/Gf/I3fVo/HPKZeUqR +# UgCvOA8X9S95gWXZqbVr5MfO9sp6AG9LMEQkIjzP7QOllo9ZKby2/QThcJ8ySif9 +# Va8v/rbljjO7Yl+a21dA6fHOmWaQjP9qYn/dxUoLkSbiOewZSnFjnXshbcOco6I8 +# +n99lmqQeKZt0uGc+R38ONiU9MalCpaGpL2eGq4EQoO4tYCbIjggtSXlZOz39L9+ +# Y1klD3ouOVd2onGqBooPiRa6YacRy5rYDkeagMXQzafQ732D8OE7cQnfXXSYIghh +# 2rBQHm+98eEA3+cxB6STOvdlR3jo+KhIq/fecn5ha293qYHLpwmsObvsxsvYgrRy +# zR30uIUBHoD7G4kqVDmyW9rIDVWZeodzOwjmmC3qjeAzLhIp9cAvVCch98isTtoo +# uLGp25ayp0Kiyc8ZQU3ghvkqmqMRZjDTu3QyS99je/WZii8bxyGvWbWu3EQ8l1Bx +# 16HSxVXjad5XwdHeMMD9zOZN+w2/XU/pnR4ZOC+8z1gFLu8NoFA12u8JJxzVs341 +# Hgi62jbb01+P3nSISRKhggLSMIICOwIBATCB/KGB1KSB0TCBzjELMAkGA1UEBhMC +# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV +# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEpMCcGA1UECxMgTWljcm9zb2Z0IE9w +# ZXJhdGlvbnMgUHVlcnRvIFJpY28xJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNOOjMy +# QkQtRTNENS0zQjFEMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2 +# aWNloiMKAQEwBwYFKw4DAhoDFQCas/oKGtvPRrHuznufk+indULyDKCBgzCBgKR+ +# MHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMT +# HU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBBQUAAgUA +# 5Vtd4DAiGA8yMDIxMTIwODIwMzc1MloYDzIwMjExMjA5MjAzNzUyWjB3MD0GCisG +# AQQBhFkKBAExLzAtMAoCBQDlW13gAgEAMAoCAQACAiXlAgH/MAcCAQACAhIPMAoC +# BQDlXK9gAgEAMDYGCisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEA +# AgMHoSChCjAIAgEAAgMBhqAwDQYJKoZIhvcNAQEFBQADgYEAM2SMFWUY36bc2OtE +# Rp28goB1/JaCRplwIWPeW6MSG1c3i2g4X2GIc4vvRrc834fuuJ+Qm07NFeRHQA61 +# lJAHbTlZBMdkDILSVP+20NGOy6B3k5K1WMfGN0Et9EQJpvfEJaB2F4d+LCCNd/MM +# dXEvG2iFxgW3C4TCWZENGlxsa5ExggMNMIIDCQIBATCBkzB8MQswCQYDVQQGEwJV +# UzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UE +# ChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGlt +# ZS1TdGFtcCBQQ0EgMjAxMAITMwAAAWLQ/gLzAeXNSQAAAAABYjANBglghkgBZQME +# AgEFAKCCAUowGgYJKoZIhvcNAQkDMQ0GCyqGSIb3DQEJEAEEMC8GCSqGSIb3DQEJ +# BDEiBCB66+Xkbn3ewO+BRQNGeKLsT3CZTxRw6oyH+Hqt0XKBjzCB+gYLKoZIhvcN +# AQkQAi8xgeowgecwgeQwgb0EIIqqGJX7PA0OulTsNEHsyLnvGLoYE1iwaOBmqrap +# UwoyMIGYMIGApH4wfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24x +# EDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlv +# bjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTACEzMAAAFi +# 0P4C8wHlzUkAAAAAAWIwIgQgPmj2PBaeW66dmUvg/M3GbG9dSU9ROIZo6V1zy7iW +# 604wDQYJKoZIhvcNAQELBQAEggEA6MvaPUzarjssGW9T9f6ohr8y3PWDaJKtB/jB +# siPN63Ektk0b2P1aJLd+FV3f3m4dq25TfYZEIliZtog2M9YOce/24reMnhBbyWwO +# tVGurL4kJQ2+z3qsASFQvZxc4O2NVFQDyyued5Y4+imuQGM3u4TOo5DSTCsvqw89 +# P5J99wB5W9hifpU65qjBROE+LNY6aMF0bIGeDbqb0m9cPe8JE2gZN+SMQQ9kzTUm +# eLAuoyvdm6wGrsx8/xgC2XFHA47DLev3lgUfx6FczxiRna/aI6Y8oqY+Z/R5Vd/L +# vZwZYPSInN7G2gVwJV9/VzLkLQ5hjDJrDMAyZ1smJnQAdnVlLg== +# SIG # End signature block diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psm1 b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psm1 new file mode 100644 index 0000000..f4c16f0 --- /dev/null +++ b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psm1 @@ -0,0 +1,663 @@ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. + +<# + PowerShell Diagnostics Module + This module contains a set of wrapper scripts that + enable a user to use ETW tracing in Windows + PowerShell. + #> + +$script:Logman="$env:windir\system32\logman.exe" +$script:wsmanlogfile = "$env:windir\system32\wsmtraces.log" +$script:wsmprovfile = "$env:windir\system32\wsmtraceproviders.txt" +$script:wsmsession = "wsmlog" +$script:pssession = "PSTrace" +$script:psprovidername="Microsoft-Windows-PowerShell" +$script:wsmprovidername = "Microsoft-Windows-WinRM" +$script:oplog = "/Operational" +$script:analyticlog="/Analytic" +$script:debuglog="/Debug" +$script:wevtutil="$env:windir\system32\wevtutil.exe" +$script:slparam = "sl" +$script:glparam = "gl" + +function Start-Trace +{ + Param( + [Parameter(Mandatory=$true, + Position=0)] + [string] + $SessionName, + [Parameter(Position=1)] + [ValidateNotNullOrEmpty()] + [string] + $OutputFilePath, + [Parameter(Position=2)] + [ValidateNotNullOrEmpty()] + [string] + $ProviderFilePath, + [Parameter()] + [Switch] + $ETS, + [Parameter()] + [ValidateSet("bin", "bincirc", "csv", "tsv", "sql")] + $Format, + [Parameter()] + [int] + $MinBuffers=0, + [Parameter()] + [int] + $MaxBuffers=256, + [Parameter()] + [int] + $BufferSizeInKB = 0, + [Parameter()] + [int] + $MaxLogFileSizeInMB=0 + ) + + Process + { + $executestring = " start $SessionName" + + if ($ETS) + { + $executestring += " -ets" + } + + if ($null -ne $OutputFilePath) + { + $executestring += " -o ""$OutputFilePath""" + } + + if ($null -ne $ProviderFilePath) + { + $executestring += " -pf ""$ProviderFilePath""" + } + + if ($null -ne $Format) + { + $executestring += " -f $Format" + } + + if ($MinBuffers -ne 0 -or $MaxBuffers -ne 256) + { + $executestring += " -nb $MinBuffers $MaxBuffers" + } + + if ($BufferSizeInKB -ne 0) + { + $executestring += " -bs $BufferSizeInKB" + } + + if ($MaxLogFileSizeInMB -ne 0) + { + $executestring += " -max $MaxLogFileSizeInMB" + } + + & $script:Logman $executestring.Split(" ") + } +} + +function Stop-Trace +{ + param( + [Parameter(Mandatory=$true, + Position=0)] + $SessionName, + [Parameter()] + [switch] + $ETS + ) + + Process + { + if ($ETS) + { + & $script:Logman update $SessionName -ets + & $script:Logman stop $SessionName -ets + } + else + { + & $script:Logman update $SessionName + & $script:Logman stop $SessionName + } + } +} + +function Enable-WSManTrace +{ + + # winrm + "{04c6e16d-b99f-4a3a-9b3e-b8325bbc781e} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii + + # winrsmgr + "{c0a36be8-a515-4cfa-b2b6-2676366efff7} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append + + # WinrsExe + "{f1cab2c0-8beb-4fa2-90e1-8f17e0acdd5d} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append + + # WinrsCmd + "{03992646-3dfe-4477-80e3-85936ace7abb} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append + + # IPMIPrv + "{651d672b-e11f-41b7-add3-c2f6a4023672} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append + + #IpmiDrv + "{D5C6A3E9-FA9C-434e-9653-165B4FC869E4} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append + + # WSManProvHost + "{6e1b64d7-d3be-4651-90fb-3583af89d7f1} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append + + # Event Forwarding + "{6FCDF39A-EF67-483D-A661-76D715C6B008} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append + + Start-Trace -SessionName $script:wsmsession -ETS -OutputFilePath $script:wsmanlogfile -Format bincirc -MinBuffers 16 -MaxBuffers 256 -BufferSizeInKB 64 -MaxLogFileSizeInMB 256 -ProviderFilePath $script:wsmprovfile +} + +function Disable-WSManTrace +{ + Stop-Trace $script:wsmsession -ETS +} + +function Enable-PSWSManCombinedTrace +{ + param ( + [switch] $DoNotOverwriteExistingTrace + ) + + $provfile = [io.path]::GetTempFilename() + + $traceFileName = [string][Guid]::NewGuid() + if ($DoNotOverwriteExistingTrace) { + $fileName = [string][guid]::newguid() + $logfile = $PSHOME + "\\Traces\\PSTrace_$fileName.etl" + } else { + $logfile = $PSHOME + "\\Traces\\PSTrace.etl" + } + + "Microsoft-Windows-PowerShell 0 5" | Out-File $provfile -Encoding ascii + "Microsoft-Windows-WinRM 0 5" | Out-File $provfile -Encoding ascii -Append + + if (!(Test-Path $PSHOME\Traces)) + { + New-Item -ItemType Directory -Force $PSHOME\Traces | Out-Null + } + + if (Test-Path $logfile) + { + Remove-Item -Force $logfile | Out-Null + } + + Start-Trace -SessionName $script:pssession -OutputFilePath $logfile -ProviderFilePath $provfile -ETS + + Remove-Item $provfile -Force -ea 0 +} + +function Disable-PSWSManCombinedTrace +{ + Stop-Trace -SessionName $script:pssession -ETS +} + +function Set-LogProperties +{ + param( + [Parameter(Mandatory=$true, Position=0, ValueFromPipeline=$true)] + [Microsoft.PowerShell.Diagnostics.LogDetails] + $LogDetails, + [switch] $Force + ) + + Process + { + if ($LogDetails.AutoBackup -and !$LogDetails.Retention) + { + throw (New-Object System.InvalidOperationException) + } + + $enabled = $LogDetails.Enabled.ToString() + $retention = $LogDetails.Retention.ToString() + $autobackup = $LogDetails.AutoBackup.ToString() + $maxLogSize = $LogDetails.MaxLogSize.ToString() + $osVersion = [Version] (Get-CimInstance Win32_OperatingSystem).Version + + if (($LogDetails.Type -eq "Analytic") -or ($LogDetails.Type -eq "Debug")) + { + if ($LogDetails.Enabled) + { + if($osVersion -lt 6.3.7600) + { + & $script:wevtutil $script:slparam $LogDetails.Name -e:$Enabled + } + else + { + & $script:wevtutil /q:$Force $script:slparam $LogDetails.Name -e:$Enabled + } + } + else + { + if($osVersion -lt 6.3.7600) + { + & $script:wevtutil $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ms:$MaxLogSize + } + else + { + & $script:wevtutil /q:$Force $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ms:$MaxLogSize + } + } + } + else + { + if($osVersion -lt 6.3.7600) + { + & $script:wevtutil $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ab:$AutoBackup -ms:$MaxLogSize + } + else + { + & $script:wevtutil /q:$Force $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ab:$AutoBackup -ms:$MaxLogSize + } + } + } +} + +function ConvertTo-Bool([string]$value) +{ + if ($value -ieq "true") + { + return $true + } + else + { + return $false + } +} + +function Get-LogProperties +{ + param( + [Parameter(Mandatory=$true, ValueFromPipeline=$true, Position=0)] $Name + ) + + Process + { + $details = & $script:wevtutil $script:glparam $Name + $indexes = @(1,2,8,9,10) + $value = @() + foreach($index in $indexes) + { + $value += @(($details[$index].SubString($details[$index].IndexOf(":")+1)).Trim()) + } + + $enabled = ConvertTo-Bool $value[0] + $retention = ConvertTo-Bool $value[2] + $autobackup = ConvertTo-Bool $value[3] + + New-Object Microsoft.PowerShell.Diagnostics.LogDetails $Name, $enabled, $value[1], $retention, $autobackup, $value[4] + } +} + +function Enable-PSTrace +{ + param( + [switch] $Force, + [switch] $AnalyticOnly + ) + + $Properties = Get-LogProperties ($script:psprovidername + $script:analyticlog) + + if (!$Properties.Enabled) { + $Properties.Enabled = $true + if ($Force) { + Set-LogProperties $Properties -Force + } else { + Set-LogProperties $Properties + } + } + + if (!$AnalyticOnly) { + $Properties = Get-LogProperties ($script:psprovidername + $script:debuglog) + if (!$Properties.Enabled) { + $Properties.Enabled = $true + if ($Force) { + Set-LogProperties $Properties -Force + } else { + Set-LogProperties $Properties + } + } + } +} + +function Disable-PSTrace +{ + param( + [switch] $AnalyticOnly + ) + $Properties = Get-LogProperties ($script:psprovidername + $script:analyticlog) + if ($Properties.Enabled) { + $Properties.Enabled = $false + Set-LogProperties $Properties + } + + if (!$AnalyticOnly) { + $Properties = Get-LogProperties ($script:psprovidername + $script:debuglog) + if ($Properties.Enabled) { + $Properties.Enabled = $false + Set-LogProperties $Properties + } + } +} +Add-Type @" +using System; + +namespace Microsoft.PowerShell.Diagnostics +{ + public class LogDetails + { + public string Name + { + get + { + return name; + } + } + private string name; + + public bool Enabled + { + get + { + return enabled; + } + set + { + enabled = value; + } + } + private bool enabled; + + public string Type + { + get + { + return type; + } + } + private string type; + + public bool Retention + { + get + { + return retention; + } + set + { + retention = value; + } + } + private bool retention; + + public bool AutoBackup + { + get + { + return autoBackup; + } + set + { + autoBackup = value; + } + } + private bool autoBackup; + + public int MaxLogSize + { + get + { + return maxLogSize; + } + set + { + maxLogSize = value; + } + } + private int maxLogSize; + + public LogDetails(string name, bool enabled, string type, bool retention, bool autoBackup, int maxLogSize) + { + this.name = name; + this.enabled = enabled; + this.type = type; + this.retention = retention; + this.autoBackup = autoBackup; + this.maxLogSize = maxLogSize; + } + } +} +"@ + +if (Get-Command logman.exe -Type Application -ErrorAction SilentlyContinue) +{ + Export-ModuleMember Disable-PSTrace, Disable-PSWSManCombinedTrace, Disable-WSManTrace, Enable-PSTrace, Enable-PSWSManCombinedTrace, Enable-WSManTrace, Get-LogProperties, Set-LogProperties, Start-Trace, Stop-Trace +} +else +{ + # Currently we only support these cmdlets as logman.exe is not available on systems like Nano and IoT + Export-ModuleMember Disable-PSTrace, Enable-PSTrace, Get-LogProperties, Set-LogProperties +} + +# SIG # Begin signature block +# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCBzuFp8c8UN6ilP +# /hSmUPDtAUbo8uWTs6wUbaR/ZpM1B6CCDYEwggX/MIID56ADAgECAhMzAAACUosz +# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I +# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O +# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA +# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o +# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 +# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 +# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp +# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 +# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u +# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 +# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti +# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z +# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf +# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK +# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW +# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F +# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgSB3jjVY/ +# WMZ8WHFGDewy2JQLkkMsgxe7OQ9hGxl1POAwQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQDECdQe+dGfTQ9+1MUoap76UXkZqRUtWJtHANEX9QRF +# zu/zYxq/dvy7faWSumOPbC+fRwu+83u+3CYadkq+B7I6NDeWqTacnJnPk+uV78yi +# UnGjJx9i8cu6fUBS7HhFg1+VS5IZsor64K33Etj9NPBvVxW/AdbcA1Vm1/HCcnfC +# ZVVP8SUsEQsnksf1sgEix5zjYP5yoRrc7zZ31CsfFUseccW0GbjWVellm+JVYQR8 +# PyRw/UvU9wBEGmoG05yKQHMtIQzbgamTF+mFpvvLdNamUk2kTBtPw8esiUQSQSKT +# 893Bw7LCuWiqo8pwi1U45lsh2/5GrxKGyLwQY3vXep01oYIXGTCCFxUGCisGAQQB +# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME +# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIEeWczI88EUPcg8HePXnLkMZtTRhTovyeZypUyUE +# AkF4AgZhlV5AOFwYEzIwMjExMjA4MjEwNDE0LjA2NVowBIACAfSggdikgdUwgdIx +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p +# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh +# bGVzIFRTUyBFU046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBU +# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYm0v4YwhBxL +# jwABAAABiTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg +# MjAxMDAeFw0yMTEwMjgxOTI3NDFaFw0yMzAxMjYxOTI3NDFaMIHSMQswCQYDVQQG +# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG +# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg +# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg +# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt +# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQZXxZFm +# a6plmuOyvNpV8xONOwcYolZG/BjyZWGSk5JOGaLyrKId5VxVHWHlsmJE4Svnzsdp +# sKmVx8otONveIUFvSceEZp8VXmu5m1fu8L7c+3lwXcibjccqtEvtQslokQVx0r+L +# 54abrNDarwFG73IaRidIS1i9c+unJ8oYyhDRLrCysFAVxyQhPNZkWK7Z8/VGukaK +# LAWHXCh/+R53h42gFL+9/mAALxzCXXuofi8f/XKCm7xNwVc1hONCCz6oq94AufzV +# NkkIW4brUQgYpCcJm9U0XNmQvtropYDn9UtY8YQ0NKenXPtdgLHdQ8Nnv3igErKL +# rWI0a5n5jjdKfwk+8mvakqdZmlOseeOS1XspQNJAK1uZllAITcnQZOcO5ofjOQ33 +# ujWckAXdz+/x3o7l4AU/TSOMzGZMwhUdtVwC3dSbItpSVFgnjM2COEJ9zgCadvOi +# rGDLN471jZI2jClkjsJTdgPk343TQA4JFvds/unZq0uLr+niZ3X44OBx2x+gVlln +# 2c4UbZXNueA4yS1TJGbbJFIILAmTUA9Auj5eISGTbNiyWx79HnCOTar39QEKozm4 +# LnTmDXy0/KI/H/nYZGKuTHfckP28wQS06rD+fDS5xLwcRMCW92DkHXmtbhGyRilB +# OL5LxZelQfxt54wl4WUC0AdAEolPekODwO8CAwEAAaOCATYwggEyMB0GA1UdDgQW +# BBSXbx+zR1p4IIAeguA6rHKkrfl7UDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl +# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j +# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx +# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh +# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG +# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQCOtLdpWUI4KwfLLrfaKrLB92Dq +# bAspGWM41TaO4Jl+sHxPo522uu3GKQCjmkRWreHtlfyy9kOk7LWax3k3ke8Gtfet +# fbh7qH0LeV2XOWg39BOnHf6mTcZq7FYSZZch1JDQjc98+Odlow+oWih0Dbt4CV/e +# 19ZcE+1n1zzWkskUEd0f5jPIUis33p+vkY8szduAtCcIcPFUhI8Hb5alPUAPMjGz +# wKb7NIKbnf8j8cP18As5IveckF0oh1cw63RY/vPK62LDYdpi7WnG2ObvngfWVKtw +# iwTI4jHj2cO9q37HDe/PPl216gSpUZh0ap24mKmMDfcKp1N4mEdsxz4oseOrPYeF +# sHHWJFJ6Aivvqn70KTeJpp5r+DxSqbeSy0mxIUOq/lAaUxgNSQVUX26t8r+fciko +# fKv23WHrtRV3t7rVTsB9YzrRaiikmz68K5HWdt9MqULxPQPo+ppZ0LRqkOae466+ +# UKRY0JxWtdrMc5vHlHZfnqjawj/RsM2S6Q6fa9T9CnY1Nz7DYBG3yZJyCPFsrgU0 +# 5s9ljqfsSptpFdUh9R4ce+L71SWDLM2x/1MFLLHAMbXsEp8KloEGtaDULnxtfS2t +# YhfuKGqRXoEfDPAMnIdTvQPh3GHQ4SjkkBARHL0MY75alhGTKHWjC2aLVOo8obKI +# Bk8hfnFDUf/EyVw4uTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw +# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n +# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y +# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv +# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg +# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO +# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 +# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 +# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL +# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 +# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj +# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE +# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 +# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 +# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB +# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE +# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG +# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 +# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV +# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV +# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo +# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m +# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j +# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv +# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN +# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 +# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 +# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX +# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew +# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 +# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd +# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr +# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh +# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n +# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ +# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw +# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI +# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv +# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh +# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00Qjgw +# LTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB +# ATAHBgUrDgMCGgMVACGlCa3ketyeuey7bJNpWkMuiCcQoIGDMIGApH4wfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tYMCIY +# DzIwMjExMjA5MDM1MTUyWhgPMjAyMTEyMTAwMzUxNTJaMHcwPQYKKwYBBAGEWQoE +# ATEvMC0wCgIFAOVbi1gCAQAwCgIBAAICHvwCAf8wBwIBAAICETcwCgIFAOVc3NgC +# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK +# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQCbF/Q1IJzqUwQBkXn+GjUxZzVN +# O+9p1fpL7W8dEy9/m1L7dl968KiYqfO5rekvXeSUDTFYrkS/r0w8p2ZZ7d0TMtJt +# TrKmc85aRmxtSvCNAS2stE2sS2Y5np5+/02w3DDn3Nni6vvF8nsuiIlbiyHrGQrC +# 9eis1rpLSNvXisSYoDGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w +# IFBDQSAyMDEwAhMzAAABibS/hjCEHEuPAAEAAAGJMA0GCWCGSAFlAwQCAQUAoIIB +# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIE9C +# YLePpB7z2n25zIz6S9czmnMvqhq9zWDUWGRetdy3MIH6BgsqhkiG9w0BCRACLzGB +# 6jCB5zCB5DCBvQQgZndHMdxQV1VsbpWHOTHqWEycvcRJm7cY69l/UmT8j0UwgZgw +# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE +# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD +# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYm0v4YwhBxL +# jwABAAABiTAiBCCErc3WAJDL+6+RTcx4qvTV2Dv0bP6a0jmZjnUp3u9sbzANBgkq +# hkiG9w0BAQsFAASCAgCLuF4LX6ghAt1uercf24wmzMJ22FHRyklnWLILmQXDOSwZ +# bLzptb/gXN2KtDnQU3xF02SLNfmPvFCYkU7l9pYTmDQ18Pm6GtnwLMke8xbMlWsl +# 2gZCMMI3Q40kidzeZ3yYggxf5a+YP0JI3rcgZuRDnEeJ69oUqVvD/sWPTuWqKV7V +# 2jb5gnLURKrzDKPYf1trvb7M2oRkxXToLOEtbsHI2O46WJCbGrYlERk6Sp8+nmPD +# oQ7Lz8Vq5xXn3L8z3QqDI0UCdxxd32JBQbzMZ21xI+JgljiGXv3TSrtz+0M88mLM +# m+Kf7LHqDN3v6xfGI+AWD5KPfxzLekMmtTIlkeA93MolkgeFfkx5BpqbWLrbd63S +# RzhF88sZt47hwzoDfn4DMzFOrtbJqbdVWcVtIgY07AmWUSvpNtXgljty4kzg1rHV +# v2m6ezcnQa0D9a8WQJSd+gRfD6BEmDBOyGL7w49Tcgp2vZiWWdnHrWeRXMp+N4Fs +# 4IbQ51teHXISCvqZoVaz8/jEvWPftKkwcXuM89+S7hN4NMq0zpON1lizLV/FPP7p +# bpAQuaBgSY2f0Hfyko8JAH/KJFpmuzjTTcUAwvru2dsCdakB4kd6k6JHpu+XjWez +# M4lfX7MZegJiXfCQ8QBIKwg80WLwjJjjHrvTap+yPG9goxm6Nzh+UftgAcz+Qw== +# SIG # End signature block diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.Odbc.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.Odbc.dll new file mode 100644 index 0000000..cc9c1da Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.Odbc.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.OleDb.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.OleDb.dll new file mode 100644 index 0000000..95d3e71 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.OleDb.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll new file mode 100644 index 0000000..bc23526 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..03b44f1 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll new file mode 100644 index 0000000..235a22f Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll new file mode 100644 index 0000000..58eacf8 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..7f910de Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.dll new file mode 100644 index 0000000..650007c Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll new file mode 100644 index 0000000..7c9e87b Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.IO.Ports.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.IO.Ports.dll new file mode 100644 index 0000000..b678ac4 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.IO.Ports.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.Automation.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.Automation.dll new file mode 100644 index 0000000..0c2333e Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.Automation.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.dll new file mode 100644 index 0000000..3e409fa Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll new file mode 100644 index 0000000..2b6fda4 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll new file mode 100644 index 0000000..bdca76d Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll new file mode 100644 index 0000000..10c0dd8 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..332dbfa Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll new file mode 100644 index 0000000..8a6feee Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Speech.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Speech.dll new file mode 100644 index 0000000..b551f9c Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Speech.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Threading.AccessControl.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Threading.AccessControl.dll new file mode 100644 index 0000000..8109eae Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Threading.AccessControl.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..69f0d1b Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll new file mode 100644 index 0000000..d92be8f Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..c70b1d3 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..6d14e76 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll new file mode 100644 index 0000000..2e5c7ea Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x64/native/mi.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x64/native/mi.dll new file mode 100644 index 0000000..f169cbe Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x64/native/mi.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x64/native/miutils.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x64/native/miutils.dll new file mode 100644 index 0000000..f9c9d3f Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x64/native/miutils.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..e1819d5 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..13d9f3b Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll new file mode 100644 index 0000000..434e1f4 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x86/native/mi.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x86/native/mi.dll new file mode 100644 index 0000000..cfa3846 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x86/native/mi.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x86/native/miutils.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x86/native/miutils.dll new file mode 100644 index 0000000..6a6fdd1 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win10-x86/native/miutils.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..c70b1d3 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..6d14e76 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll new file mode 100644 index 0000000..90fc1b2 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x64/native/mi.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x64/native/mi.dll new file mode 100644 index 0000000..75de9d2 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x64/native/mi.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x64/native/miutils.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x64/native/miutils.dll new file mode 100644 index 0000000..d6d3465 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x64/native/miutils.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..e1819d5 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..13d9f3b Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll new file mode 100644 index 0000000..7a2fe92 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x86/native/mi.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x86/native/mi.dll new file mode 100644 index 0000000..f0f556f Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x86/native/mi.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x86/native/miutils.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x86/native/miutils.dll new file mode 100644 index 0000000..19dbafc Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win7-x86/native/miutils.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..c70b1d3 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..6d14e76 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x64/native/mi.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x64/native/mi.dll new file mode 100644 index 0000000..34043ba Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x64/native/mi.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x64/native/miutils.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x64/native/miutils.dll new file mode 100644 index 0000000..0579e97 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x64/native/miutils.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..e1819d5 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..13d9f3b Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x86/native/mi.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x86/native/mi.dll new file mode 100644 index 0000000..f303e1e Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x86/native/mi.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x86/native/miutils.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x86/native/miutils.dll new file mode 100644 index 0000000..d305891 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win8-x86/native/miutils.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..c70b1d3 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..6d14e76 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll new file mode 100644 index 0000000..8af4889 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x64/native/mi.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x64/native/mi.dll new file mode 100644 index 0000000..46dedce Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x64/native/mi.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x64/native/miutils.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x64/native/miutils.dll new file mode 100644 index 0000000..3c8ebbd Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x64/native/miutils.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..e1819d5 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..13d9f3b Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll new file mode 100644 index 0000000..9dcbfd1 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x86/native/mi.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x86/native/mi.dll new file mode 100644 index 0000000..087163a Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x86/native/mi.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x86/native/miutils.dll b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x86/native/miutils.dll new file mode 100644 index 0000000..21ad782 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/runtimes/win81-x86/native/miutils.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/testhost.dll b/linguard/Cli.Test/bin/Debug/net6.0/testhost.dll new file mode 100644 index 0000000..4a8a1a3 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/testhost.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/testhost.exe b/linguard/Cli.Test/bin/Debug/net6.0/testhost.exe new file mode 100644 index 0000000..f2ab13c Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/testhost.exe differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..56f6a16 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..81ce1fc Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..667bb80 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..7914420 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..70172b5 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..d819258 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..6fa1eb3 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/tr/System.Private.ServiceModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/tr/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..4a0bd6f Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/tr/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/tr/System.Web.Services.Description.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/tr/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..7917190 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/tr/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/xunit.abstractions.dll b/linguard/Cli.Test/bin/Debug/net6.0/xunit.abstractions.dll new file mode 100644 index 0000000..d1e90bf Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/xunit.abstractions.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/xunit.assert.dll b/linguard/Cli.Test/bin/Debug/net6.0/xunit.assert.dll new file mode 100644 index 0000000..6cec730 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/xunit.assert.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/xunit.core.dll b/linguard/Cli.Test/bin/Debug/net6.0/xunit.core.dll new file mode 100644 index 0000000..4f2f495 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/xunit.core.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/xunit.execution.dotnet.dll b/linguard/Cli.Test/bin/Debug/net6.0/xunit.execution.dotnet.dll new file mode 100644 index 0000000..fb72ce0 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/xunit.execution.dotnet.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/xunit.runner.reporters.netcoreapp10.dll b/linguard/Cli.Test/bin/Debug/net6.0/xunit.runner.reporters.netcoreapp10.dll new file mode 100644 index 0000000..953544f Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/xunit.runner.reporters.netcoreapp10.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/xunit.runner.utility.netcoreapp10.dll b/linguard/Cli.Test/bin/Debug/net6.0/xunit.runner.utility.netcoreapp10.dll new file mode 100644 index 0000000..f389ee1 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/xunit.runner.utility.netcoreapp10.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/xunit.runner.visualstudio.dotnetcore.testadapter.dll b/linguard/Cli.Test/bin/Debug/net6.0/xunit.runner.visualstudio.dotnetcore.testadapter.dll new file mode 100644 index 0000000..94b21e6 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/xunit.runner.visualstudio.dotnetcore.testadapter.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..ffe2682 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..d17ccb3 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..9271276 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..ea7e5f8 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..a5cbbbc Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..d0478ca Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..edce377 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/System.Private.ServiceModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..8e8fe2e Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/System.Web.Services.Description.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..903dca8 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hans/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..2efe878 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..62c7b50 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..097303b Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..77d4ab4 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..146df9b Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..21b8a3d Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..0962268 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/System.Private.ServiceModel.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..2001bc8 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/System.Web.Services.Description.resources.dll b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..6bf5a85 Binary files /dev/null and b/linguard/Cli.Test/bin/Debug/net6.0/zh-Hant/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Cli.Test/obj/Cli.Test.csproj.nuget.dgspec.json b/linguard/Cli.Test/obj/Cli.Test.csproj.nuget.dgspec.json new file mode 100644 index 0000000..ffb9ee9 --- /dev/null +++ b/linguard/Cli.Test/obj/Cli.Test.csproj.nuget.dgspec.json @@ -0,0 +1,405 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli.Test\\Cli.Test.csproj": {} + }, + "projects": { + "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli.Test\\Cli.Test.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli.Test\\Cli.Test.csproj", + "projectName": "Cli.Test", + "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli.Test\\Cli.Test.csproj", + "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", + "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli.Test\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj": { + "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj" + }, + "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj": { + "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "FluentAssertions": { + "target": "Package", + "version": "[6.4.0, )" + }, + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[16.11.0, )" + }, + "Moq": { + "target": "Package", + "version": "[4.16.1, )" + }, + "coverlet.msbuild": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[3.1.2, )" + }, + "xunit": { + "target": "Package", + "version": "[2.4.1, )" + }, + "xunit.runner.visualstudio": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[2.4.3, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj": { + "version": "2.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj", + "projectName": "Linguard.Cli", + "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj", + "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", + "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj": { + "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "CommandLineParser": { + "target": "Package", + "version": "[2.8.0, )" + }, + "FluentValidation": { + "target": "Package", + "version": "[10.3.6, )" + }, + "Typin": { + "target": "Package", + "version": "[3.1.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj", + "projectName": "Core.Test", + "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj", + "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", + "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj": { + "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "FluentAssertions": { + "target": "Package", + "version": "[6.4.0, )" + }, + "FluentValidation": { + "target": "Package", + "version": "[10.3.6, )" + }, + "IPNetwork2": { + "target": "Package", + "version": "[2.5.386, )" + }, + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[16.11.0, )" + }, + "Moq": { + "target": "Package", + "version": "[4.16.1, )" + }, + "coverlet.msbuild": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[3.1.2, )" + }, + "xunit": { + "target": "Package", + "version": "[2.4.1, )" + }, + "xunit.runner.visualstudio": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[2.4.3, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj": { + "version": "2.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj", + "projectName": "Linguard.Core", + "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj", + "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", + "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj": { + "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "Bogus": { + "target": "Package", + "version": "[34.0.1, )" + }, + "ByteSize": { + "target": "Package", + "version": "[2.1.1, )" + }, + "FluentValidation": { + "target": "Package", + "version": "[10.3.6, )" + }, + "IPNetwork2": { + "target": "Package", + "version": "[2.5.386, )" + }, + "Microsoft.PowerShell.SDK": { + "target": "Package", + "version": "[7.2.1, )" + }, + "System.Management.Automation": { + "target": "Package", + "version": "[7.2.1, )" + }, + "YamlDotNet": { + "target": "Package", + "version": "[11.2.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj": { + "version": "2.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj", + "projectName": "Linguard.Log", + "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj", + "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", + "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "NLog": { + "target": "Package", + "version": "[4.7.13, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/linguard/Cli.Test/obj/Cli.Test.csproj.nuget.g.props b/linguard/Cli.Test/obj/Cli.Test.csproj.nuget.g.props new file mode 100644 index 0000000..5985ad6 --- /dev/null +++ b/linguard/Cli.Test/obj/Cli.Test.csproj.nuget.g.props @@ -0,0 +1,27 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\theyu\.nuget\packages\ + PackageReference + 6.0.0 + + + + + + + + + + + + + + C:\Users\theyu\.nuget\packages\xunit.analyzers\0.10.0 + C:\Users\theyu\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.2 + + \ No newline at end of file diff --git a/linguard/Cli.Test/obj/Cli.Test.csproj.nuget.g.targets b/linguard/Cli.Test/obj/Cli.Test.csproj.nuget.g.targets new file mode 100644 index 0000000..6d23769 --- /dev/null +++ b/linguard/Cli.Test/obj/Cli.Test.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/linguard/Cli.Test/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/linguard/Cli.Test/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/linguard/Cli.Test/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.AssemblyInfo.cs b/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.AssemblyInfo.cs new file mode 100644 index 0000000..15730d2 --- /dev/null +++ b/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Cli.Test")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Cli.Test")] +[assembly: System.Reflection.AssemblyTitleAttribute("Cli.Test")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generado por la clase WriteCodeFragment de MSBuild. + diff --git a/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.AssemblyInfoInputs.cache b/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.AssemblyInfoInputs.cache new file mode 100644 index 0000000..fa72776 --- /dev/null +++ b/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +af3d9608d8e0d17527db1220c7d060420e5f970d diff --git a/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.GeneratedMSBuildEditorConfig.editorconfig b/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..f9b964b --- /dev/null +++ b/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Cli.Test +build_property.ProjectDir = C:\Users\theyu\repos\linguard\Linguard\Cli.Test\ diff --git a/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.assets.cache b/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.assets.cache new file mode 100644 index 0000000..4b69c7a Binary files /dev/null and b/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.assets.cache differ diff --git a/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.csproj.AssemblyReference.cache b/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.csproj.AssemblyReference.cache new file mode 100644 index 0000000..63d4067 Binary files /dev/null and b/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.csproj.AssemblyReference.cache differ diff --git a/linguard/__init__.py b/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.csproj.CopyComplete similarity index 100% rename from linguard/__init__.py rename to linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.csproj.CopyComplete diff --git a/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.csproj.CoreCompileInputs.cache b/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..1f3887a --- /dev/null +++ b/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +1e789b65a76640fe2c4f6a504b7145329d40fdee diff --git a/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.csproj.FileListAbsolute.txt b/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..64532eb --- /dev/null +++ b/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.csproj.FileListAbsolute.txt @@ -0,0 +1,1065 @@ +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\testhost.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\testhost.exe +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.TestPlatform.PlatformAbstractions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\xunit.runner.visualstudio.dotnetcore.testadapter.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\xunit.runner.reporters.netcoreapp10.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\xunit.runner.utility.netcoreapp10.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Cli.Test.deps.json +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Cli.Test.runtimeconfig.json +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Cli.Test.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\Cli.Test.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Cli.Test.pdb +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.VisualStudio.CodeCoverage.Shim.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.TestPlatform.CoreUtilities.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.VisualStudio.TestPlatform.ObjectModel.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.TestPlatform.CommunicationUtilities.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.TestPlatform.CrossPlatEngine.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.TestPlatform.Utilities.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.VisualStudio.TestPlatform.Common.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Newtonsoft.Json.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\NuGet.Frameworks.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\xunit.abstractions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\xunit.assert.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\xunit.core.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\xunit.execution.dotnet.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\cs\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\de\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\de\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\es\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\es\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\fr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\it\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\it\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ja\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ko\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pl\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ru\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\tr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\cs\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\de\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\de\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\de\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\es\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\es\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\es\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\fr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\it\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\it\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\it\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ja\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ko\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pl\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ru\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\tr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.csproj.AssemblyReference.cache +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.AssemblyInfoInputs.cache +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.AssemblyInfo.cs +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.csproj.CoreCompileInputs.cache +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.csproj.CopyComplete +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\obj\Debug\net6.0\ref\Cli.Test.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.pdb +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.genruntimeconfig.cache +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\CoverletSourceRootsMapping +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Cli.deps.json +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Cli.runtimeconfig.json +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\Microsoft.CSharp.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\Microsoft.VisualBasic.Core.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\Microsoft.VisualBasic.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\Microsoft.Win32.Primitives.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\Microsoft.Win32.Registry.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.AppContext.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Buffers.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Collections.Concurrent.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Collections.Immutable.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Collections.NonGeneric.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Collections.Specialized.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Collections.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ComponentModel.Annotations.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ComponentModel.DataAnnotations.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ComponentModel.EventBasedAsync.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ComponentModel.Primitives.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ComponentModel.TypeConverter.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ComponentModel.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Configuration.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Console.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Core.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Data.Common.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Data.DataSetExtensions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Data.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.Contracts.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.Debug.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.DiagnosticSource.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.FileVersionInfo.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.Process.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.StackTrace.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.TextWriterTraceListener.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.Tools.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.TraceSource.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.Tracing.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Drawing.Primitives.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Drawing.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Dynamic.Runtime.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Formats.Asn1.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Globalization.Calendars.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Globalization.Extensions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Globalization.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.Compression.Brotli.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.Compression.FileSystem.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.Compression.ZipFile.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.Compression.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.AccessControl.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.DriveInfo.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.Primitives.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.Watcher.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.IsolatedStorage.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.MemoryMappedFiles.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.Pipes.AccessControl.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.Pipes.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.UnmanagedMemoryStream.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Linq.Expressions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Linq.Parallel.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Linq.Queryable.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Linq.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Memory.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.Http.Json.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.Http.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.HttpListener.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.Mail.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.NameResolution.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.NetworkInformation.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.Ping.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.Primitives.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.Requests.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.Security.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.ServicePoint.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.Sockets.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.WebClient.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.WebHeaderCollection.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.WebProxy.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.WebSockets.Client.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.WebSockets.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Numerics.Vectors.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Numerics.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ObjectModel.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.DispatchProxy.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.Emit.ILGeneration.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.Emit.Lightweight.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.Emit.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.Extensions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.Metadata.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.Primitives.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.TypeExtensions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Resources.Reader.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Resources.ResourceManager.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Resources.Writer.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.CompilerServices.Unsafe.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.CompilerServices.VisualC.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Extensions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Handles.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.InteropServices.RuntimeInformation.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.InteropServices.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Intrinsics.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Loader.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Numerics.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.Formatters.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.Json.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.Primitives.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.Xml.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.AccessControl.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Claims.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Algorithms.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Cng.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Csp.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Encoding.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.OpenSsl.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Primitives.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.X509Certificates.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Principal.Windows.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Principal.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.SecureString.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ServiceModel.Web.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ServiceProcess.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Text.Encoding.CodePages.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Text.Encoding.Extensions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Text.Encoding.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Text.Encodings.Web.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Text.Json.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Text.RegularExpressions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.Channels.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.Overlapped.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.Tasks.Dataflow.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.Tasks.Extensions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.Tasks.Parallel.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.Tasks.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.Thread.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.ThreadPool.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.Timer.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Transactions.Local.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Transactions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ValueTuple.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Web.HttpUtility.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Web.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Windows.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.Linq.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.ReaderWriter.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.Serialization.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.XDocument.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.XPath.XDocument.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.XPath.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.XmlDocument.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.XmlSerializer.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\WindowsBase.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\mscorlib.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ref\netstandard.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\CimCmdlets\CimCmdlets.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Diagnostics.format.ps1xml +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Event.format.ps1xml +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\GetEvent.types.ps1xml +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Microsoft.PowerShell.Diagnostics.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\Microsoft.WSMan.Management.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\WSMan.format.ps1xml +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psm1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\NLog.config +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Cli.exe +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\CommandLine.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\FluentAssertions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Net.IPNetwork.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Markdig.Signed.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.ApplicationInsights.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Bcl.AsyncInterfaces.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.CodeAnalysis.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.CodeAnalysis.CSharp.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Extensions.ObjectPool.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.PowerShell.MarkdownRender.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Win32.Registry.AccessControl.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Win32.SystemEvents.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Namotion.Reflection.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\NJsonSchema.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\NLog.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.CodeDom.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.ComponentModel.Composition.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.ComponentModel.Composition.Registration.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Configuration.ConfigurationManager.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Data.OleDb.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Data.SqlClient.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Diagnostics.EventLog.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Diagnostics.PerformanceCounter.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.DirectoryServices.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.DirectoryServices.AccountManagement.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.DirectoryServices.Protocols.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Drawing.Common.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.IO.Packaging.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.IO.Ports.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Management.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Net.Http.WinHttpHandler.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Private.ServiceModel.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Reflection.Context.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Runtime.Caching.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Security.Cryptography.Pkcs.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Security.Cryptography.ProtectedData.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Security.Cryptography.Xml.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Security.Permissions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.ServiceModel.Duplex.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.ServiceModel.Http.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.ServiceModel.NetTcp.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.ServiceModel.Primitives.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.ServiceModel.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.ServiceModel.Security.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.ServiceModel.Syndication.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.ServiceProcess.ServiceController.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Speech.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Threading.AccessControl.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Web.Services.Description.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\System.Windows.Extensions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\YamlDotNet.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\cs\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\de\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\es\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\fr\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\it\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ja\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ko\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pl\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ru\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\tr\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\cs\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\de\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\es\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\fr\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\it\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ja\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ko\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pl\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ru\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\tr\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\cs\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\de\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\es\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\fr\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\it\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ja\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ko\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pl\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\ru\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\tr\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Management.Infrastructure.CimCmdlets.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm\native\mi.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm\native\miutils.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm64\native\mi.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm64\native\miutils.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x64\native\mi.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x64\native\miutils.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x86\native\mi.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x86\native\miutils.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x64\native\mi.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x64\native\miutils.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x86\native\mi.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x86\native\miutils.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win8-x64\native\mi.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win8-x64\native\miutils.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win8-x86\native\mi.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win8-x86\native\miutils.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x64\native\mi.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x64\native\miutils.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x86\native\mi.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x86\native\miutils.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Diagnostics.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.CoreCLR.Eventing.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-arm\native\libpsl-native.so +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-arm64\native\libpsl-native.so +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-musl-x64\native\libpsl-native.so +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-x64\native\libmi.so +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-x64\native\libpsl-native.so +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-x64\native\libpsrpclient.so +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\osx\native\libmi.dylib +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\osx\native\libpsl-native.dylib +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\osx\native\libpsrpclient.dylib +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm\native\PowerShell.Core.Instrumentation.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm\native\pwrshplugin.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm64\native\PowerShell.Core.Instrumentation.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm64\native\pwrshplugin.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-x64\native\PowerShell.Core.Instrumentation.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-x64\native\pwrshplugin.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-x86\native\PowerShell.Core.Instrumentation.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-x86\native\pwrshplugin.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.SDK.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.SDK.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Security.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Security.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Win32.Registry.AccessControl.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.WSMan.Management.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.WSMan.Runtime.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-arm\native\libSystem.IO.Ports.Native.so +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-arm64\native\libSystem.IO.Ports.Native.so +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-x64\native\libSystem.IO.Ports.Native.so +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\osx-arm64\native\libSystem.IO.Ports.Native.dylib +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\osx-x64\native\libSystem.IO.Ports.Native.dylib +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm64\native\sni.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-x64\native\sni.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-x86\native\sni.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\freebsd\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\illumos\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\ios\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\osx\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\solaris\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\tvos\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Data.OleDb.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.Messages.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.PerformanceCounter.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.AccountManagement.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux\lib\net6.0\System.DirectoryServices.Protocols.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\osx\lib\net6.0\System.DirectoryServices.Protocols.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.Protocols.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.IO.Ports.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.IO.Ports.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Management.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.Management.Automation.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Management.Automation.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Net.Http.WinHttpHandler.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Runtime.Caching.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Security.Cryptography.Pkcs.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.ServiceProcess.ServiceController.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Speech.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Threading.AccessControl.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Cli.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Core.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Log.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Cli.pdb +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Core.pdb +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Log.pdb +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Bogus.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Castle.Core.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\FluentValidation.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Extensions.DependencyInjection.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Extensions.Logging.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Extensions.Logging.Abstractions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Extensions.Logging.Debug.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Extensions.Options.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Extensions.Primitives.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Moq.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Typin.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Typin.Core.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Core.Test.deps.json +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Core.Test.runtimeconfig.json +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Core.Test.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli.Test\bin\Debug\net6.0\Core.Test.pdb +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\CoverletSourceRootsMapping +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\Microsoft.CSharp.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\Microsoft.VisualBasic.Core.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\Microsoft.VisualBasic.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\Microsoft.Win32.Primitives.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\Microsoft.Win32.Registry.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.AppContext.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Buffers.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Collections.Concurrent.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Collections.Immutable.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Collections.NonGeneric.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Collections.Specialized.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Collections.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ComponentModel.Annotations.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ComponentModel.DataAnnotations.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ComponentModel.EventBasedAsync.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ComponentModel.Primitives.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ComponentModel.TypeConverter.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ComponentModel.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Configuration.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Console.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Core.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Data.Common.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Data.DataSetExtensions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Data.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.Contracts.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.Debug.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.DiagnosticSource.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.FileVersionInfo.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.Process.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.StackTrace.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.TextWriterTraceListener.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.Tools.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.TraceSource.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Diagnostics.Tracing.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Drawing.Primitives.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Drawing.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Dynamic.Runtime.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Formats.Asn1.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Globalization.Calendars.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Globalization.Extensions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Globalization.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.Compression.Brotli.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.Compression.FileSystem.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.Compression.ZipFile.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.Compression.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.AccessControl.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.DriveInfo.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.Primitives.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.Watcher.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.IsolatedStorage.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.MemoryMappedFiles.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.Pipes.AccessControl.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.Pipes.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.UnmanagedMemoryStream.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.IO.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Linq.Expressions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Linq.Parallel.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Linq.Queryable.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Linq.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Memory.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.Http.Json.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.Http.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.HttpListener.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.Mail.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.NameResolution.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.NetworkInformation.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.Ping.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.Primitives.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.Requests.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.Security.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.ServicePoint.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.Sockets.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.WebClient.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.WebHeaderCollection.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.WebProxy.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.WebSockets.Client.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.WebSockets.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Net.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Numerics.Vectors.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Numerics.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ObjectModel.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.DispatchProxy.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.Emit.ILGeneration.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.Emit.Lightweight.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.Emit.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.Extensions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.Metadata.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.Primitives.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.TypeExtensions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Reflection.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Resources.Reader.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Resources.ResourceManager.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Resources.Writer.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.CompilerServices.Unsafe.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.CompilerServices.VisualC.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Extensions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Handles.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.InteropServices.RuntimeInformation.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.InteropServices.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Intrinsics.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Loader.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Numerics.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.Formatters.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.Json.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.Primitives.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.Xml.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Runtime.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.AccessControl.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Claims.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Algorithms.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Cng.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Csp.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Encoding.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.OpenSsl.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Primitives.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.X509Certificates.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Principal.Windows.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.Principal.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.SecureString.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Security.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ServiceModel.Web.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ServiceProcess.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Text.Encoding.CodePages.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Text.Encoding.Extensions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Text.Encoding.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Text.Encodings.Web.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Text.Json.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Text.RegularExpressions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.Channels.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.Overlapped.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.Tasks.Dataflow.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.Tasks.Extensions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.Tasks.Parallel.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.Tasks.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.Thread.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.ThreadPool.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.Timer.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Threading.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Transactions.Local.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Transactions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.ValueTuple.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Web.HttpUtility.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Web.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Windows.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.Linq.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.ReaderWriter.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.Serialization.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.XDocument.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.XPath.XDocument.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.XPath.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.XmlDocument.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.XmlSerializer.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.Xml.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\System.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\WindowsBase.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\mscorlib.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\netstandard.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\CimCmdlets\CimCmdlets.psd1 +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Diagnostics.format.ps1xml +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Event.format.ps1xml +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\GetEvent.types.ps1xml +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Microsoft.PowerShell.Diagnostics.psd1 +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\Microsoft.WSMan.Management.psd1 +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\WSMan.format.ps1xml +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psd1 +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psm1 +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\NLog.config +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\testhost.exe +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\testhost.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\xunit.runner.visualstudio.dotnetcore.testadapter.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\xunit.runner.reporters.netcoreapp10.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\xunit.runner.utility.netcoreapp10.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Cli.deps.json +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Cli.runtimeconfig.json +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Cli.exe +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Core.Test.deps.json +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Core.Test.runtimeconfig.json +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.TestPlatform.PlatformAbstractions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Cli.Test.deps.json +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Cli.Test.runtimeconfig.json +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Cli.Test.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ref\Cli.Test.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Cli.Test.pdb +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Bogus.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Castle.Core.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\CommandLine.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\FluentAssertions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\FluentValidation.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Net.IPNetwork.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Markdig.Signed.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.ApplicationInsights.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Bcl.AsyncInterfaces.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.CodeAnalysis.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.CodeAnalysis.CSharp.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.VisualStudio.CodeCoverage.Shim.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Extensions.DependencyInjection.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Extensions.Logging.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Extensions.Logging.Abstractions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Extensions.Logging.Debug.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Extensions.ObjectPool.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Extensions.Options.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Extensions.Primitives.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.PowerShell.MarkdownRender.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.TestPlatform.CoreUtilities.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.VisualStudio.TestPlatform.ObjectModel.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.TestPlatform.CommunicationUtilities.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.TestPlatform.CrossPlatEngine.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.TestPlatform.Utilities.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.VisualStudio.TestPlatform.Common.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Win32.Registry.AccessControl.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Microsoft.Win32.SystemEvents.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Moq.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Namotion.Reflection.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Newtonsoft.Json.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\NJsonSchema.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\NLog.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\NuGet.Frameworks.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.CodeDom.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.ComponentModel.Composition.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.ComponentModel.Composition.Registration.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Configuration.ConfigurationManager.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Data.OleDb.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Data.SqlClient.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Diagnostics.EventLog.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Diagnostics.PerformanceCounter.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.DirectoryServices.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.DirectoryServices.AccountManagement.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.DirectoryServices.Protocols.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Drawing.Common.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.IO.Packaging.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.IO.Ports.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Management.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Net.Http.WinHttpHandler.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Private.ServiceModel.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Reflection.Context.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Runtime.Caching.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Security.Cryptography.Pkcs.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Security.Cryptography.ProtectedData.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Security.Cryptography.Xml.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Security.Permissions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.ServiceModel.Duplex.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.ServiceModel.Http.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.ServiceModel.NetTcp.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.ServiceModel.Primitives.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.ServiceModel.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.ServiceModel.Security.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.ServiceModel.Syndication.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.ServiceProcess.ServiceController.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Speech.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Threading.AccessControl.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Web.Services.Description.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\System.Windows.Extensions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Typin.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Typin.Core.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\xunit.abstractions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\xunit.assert.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\xunit.core.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\xunit.execution.dotnet.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\YamlDotNet.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\cs\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\de\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\es\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\fr\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\it\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ja\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ko\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pl\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ru\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\tr\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\cs\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\de\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\de\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\es\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\es\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\fr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\it\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\it\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ja\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ko\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pl\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ru\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\tr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\cs\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\de\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\de\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\de\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\es\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\es\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\es\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\fr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\it\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\it\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\it\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ja\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ko\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pl\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ru\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\tr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\cs\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\de\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\es\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\fr\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\it\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ja\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ko\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pl\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ru\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\tr\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\cs\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\de\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\es\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\fr\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\it\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ja\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ko\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pl\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\pt-BR\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ru\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\tr\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hans\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\zh-Hant\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Management.Infrastructure.CimCmdlets.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm\native\mi.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm\native\miutils.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm64\native\mi.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm64\native\miutils.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x64\native\mi.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x64\native\miutils.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x86\native\mi.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win10-x86\native\miutils.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x64\native\mi.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x64\native\miutils.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x86\native\mi.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win7-x86\native\miutils.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win8-x64\native\mi.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win8-x64\native\miutils.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win8-x86\native\mi.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win8-x86\native\miutils.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x64\native\mi.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x64\native\miutils.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x86\native\mi.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win81-x86\native\miutils.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Diagnostics.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.CoreCLR.Eventing.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-arm\native\libpsl-native.so +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-arm64\native\libpsl-native.so +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-musl-x64\native\libpsl-native.so +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-x64\native\libmi.so +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-x64\native\libpsl-native.so +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-x64\native\libpsrpclient.so +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\osx\native\libmi.dylib +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\osx\native\libpsl-native.dylib +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\osx\native\libpsrpclient.dylib +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm\native\PowerShell.Core.Instrumentation.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm\native\pwrshplugin.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm64\native\PowerShell.Core.Instrumentation.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm64\native\pwrshplugin.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-x64\native\PowerShell.Core.Instrumentation.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-x64\native\pwrshplugin.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-x86\native\PowerShell.Core.Instrumentation.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-x86\native\pwrshplugin.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.SDK.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.SDK.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Security.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Security.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Win32.Registry.AccessControl.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.WSMan.Management.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.WSMan.Runtime.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-arm\native\libSystem.IO.Ports.Native.so +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-arm64\native\libSystem.IO.Ports.Native.so +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux-x64\native\libSystem.IO.Ports.Native.so +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\osx-arm64\native\libSystem.IO.Ports.Native.dylib +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\osx-x64\native\libSystem.IO.Ports.Native.dylib +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-arm64\native\sni.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-x64\native\sni.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win-x86\native\sni.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\freebsd\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\illumos\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\ios\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\osx\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\solaris\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\tvos\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Data.OleDb.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.Messages.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.PerformanceCounter.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.AccountManagement.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\linux\lib\net6.0\System.DirectoryServices.Protocols.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\osx\lib\net6.0\System.DirectoryServices.Protocols.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.Protocols.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.IO.Ports.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.IO.Ports.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Management.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.Management.Automation.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Management.Automation.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Net.Http.WinHttpHandler.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Runtime.Caching.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Security.Cryptography.Pkcs.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.ServiceProcess.ServiceController.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Speech.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Threading.AccessControl.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Core.Test.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Cli.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Core.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Log.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Cli.pdb +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Core.Test.pdb +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Core.pdb +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\Linguard.Log.pdb +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.csproj.AssemblyReference.cache +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.AssemblyInfoInputs.cache +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.AssemblyInfo.cs +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.csproj.CoreCompileInputs.cache +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.csproj.CopyComplete +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\obj\Debug\net6.0\ref\Cli.Test.dll +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.pdb +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\obj\Debug\net6.0\Cli.Test.genruntimeconfig.cache +C:\Users\theyu\repos\linguard\Linguard\Cli.Test\bin\Debug\net6.0\ByteSize.dll diff --git a/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.dll b/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.dll new file mode 100644 index 0000000..b349c74 Binary files /dev/null and b/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.dll differ diff --git a/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.genruntimeconfig.cache b/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.genruntimeconfig.cache new file mode 100644 index 0000000..8940d29 --- /dev/null +++ b/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.genruntimeconfig.cache @@ -0,0 +1 @@ +1f1c222e58455d287bce06a74abab11408346d59 diff --git a/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.pdb b/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.pdb new file mode 100644 index 0000000..79e23dc Binary files /dev/null and b/linguard/Cli.Test/obj/Debug/net6.0/Cli.Test.pdb differ diff --git a/linguard/Cli.Test/obj/Debug/net6.0/ref/Cli.Test.dll b/linguard/Cli.Test/obj/Debug/net6.0/ref/Cli.Test.dll new file mode 100644 index 0000000..235cd68 Binary files /dev/null and b/linguard/Cli.Test/obj/Debug/net6.0/ref/Cli.Test.dll differ diff --git a/linguard/Cli.Test/obj/project.assets.json b/linguard/Cli.Test/obj/project.assets.json new file mode 100644 index 0000000..352dc3c --- /dev/null +++ b/linguard/Cli.Test/obj/project.assets.json @@ -0,0 +1,11693 @@ +{ + "version": 3, + "targets": { + "net6.0": { + "Bogus/34.0.1": { + "type": "package", + "compile": { + "lib/net6.0/Bogus.dll": {} + }, + "runtime": { + "lib/net6.0/Bogus.dll": {} + } + }, + "ByteSize/2.1.1": { + "type": "package", + "compile": { + "lib/net5.0/ByteSize.dll": {} + }, + "runtime": { + "lib/net5.0/ByteSize.dll": {} + } + }, + "Castle.Core/4.4.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Diagnostics.TraceSource": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Castle.Core.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Castle.Core.dll": {} + } + }, + "CommandLineParser/2.8.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/CommandLine.dll": {} + }, + "runtime": { + "lib/netstandard2.0/CommandLine.dll": {} + } + }, + "coverlet.msbuild/3.1.2": { + "type": "package", + "build": { + "build/coverlet.msbuild.props": {}, + "build/coverlet.msbuild.targets": {} + } + }, + "FluentAssertions/6.4.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "4.4.0" + }, + "compile": { + "lib/netcoreapp3.0/FluentAssertions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/FluentAssertions.dll": {} + } + }, + "FluentValidation/10.3.6": { + "type": "package", + "compile": { + "lib/net6.0/FluentValidation.dll": {} + }, + "runtime": { + "lib/net6.0/FluentValidation.dll": {} + } + }, + "IPNetwork2/2.5.386": { + "type": "package", + "compile": { + "lib/net5.0/System.Net.IPNetwork.dll": {} + }, + "runtime": { + "lib/net5.0/System.Net.IPNetwork.dll": {} + } + }, + "Markdig.Signed/0.22.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Markdig.Signed.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Markdig.Signed.dll": {} + } + }, + "Microsoft.ApplicationInsights/2.18.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.DiagnosticSource": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {} + } + }, + "Microsoft.Bcl.AsyncInterfaces/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": { + "type": "package", + "build": { + "build/_._": {} + } + }, + "Microsoft.CodeAnalysis.Common/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.2", + "System.Collections.Immutable": "5.0.0", + "System.Memory": "4.5.4", + "System.Reflection.Metadata": "5.0.0", + "System.Runtime.CompilerServices.Unsafe": "5.0.0", + "System.Text.Encoding.CodePages": "4.5.1", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {} + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[4.0.1]" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeCoverage/16.11.0": { + "type": "package", + "compile": { + "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "runtime": { + "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "build": { + "build/netstandard1.0/Microsoft.CodeCoverage.props": {}, + "build/netstandard1.0/Microsoft.CodeCoverage.targets": {} + } + }, + "Microsoft.CSharp/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Logging/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Logging.Debug/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {} + } + }, + "Microsoft.Extensions.ObjectPool/5.0.10": { + "type": "package", + "compile": { + "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": {} + }, + "runtime": { + "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": {} + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Management.Infrastructure/2.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0", + "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0" + }, + "compile": { + "ref/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {}, + "ref/netstandard1.6/Microsoft.Management.Infrastructure.dll": {} + }, + "runtime": { + "lib/netstandard1.6/_._": {} + } + }, + "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { + "type": "package", + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { + "type": "package", + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win-arm" + }, + "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win-arm" + }, + "runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm/native/mi.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm/native/miutils.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win-arm64" + }, + "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/mi.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/miutils.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win10-x64" + }, + "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win10-x64" + }, + "runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win10-x64" + }, + "runtimes/win10-x64/native/mi.dll": { + "assetType": "native", + "rid": "win10-x64" + }, + "runtimes/win10-x64/native/miutils.dll": { + "assetType": "native", + "rid": "win10-x64" + }, + "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win10-x86" + }, + "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win10-x86" + }, + "runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win10-x86" + }, + "runtimes/win10-x86/native/mi.dll": { + "assetType": "native", + "rid": "win10-x86" + }, + "runtimes/win10-x86/native/miutils.dll": { + "assetType": "native", + "rid": "win10-x86" + }, + "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win7-x64" + }, + "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/mi.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/miutils.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win7-x86" + }, + "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win7-x86" + }, + "runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win7-x86" + }, + "runtimes/win7-x86/native/mi.dll": { + "assetType": "native", + "rid": "win7-x86" + }, + "runtimes/win7-x86/native/miutils.dll": { + "assetType": "native", + "rid": "win7-x86" + }, + "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win8-x64" + }, + "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/mi.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/miutils.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win8-x86" + }, + "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win8-x86" + }, + "runtimes/win8-x86/native/mi.dll": { + "assetType": "native", + "rid": "win8-x86" + }, + "runtimes/win8-x86/native/miutils.dll": { + "assetType": "native", + "rid": "win8-x86" + }, + "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win81-x64" + }, + "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win81-x64" + }, + "runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win81-x64" + }, + "runtimes/win81-x64/native/mi.dll": { + "assetType": "native", + "rid": "win81-x64" + }, + "runtimes/win81-x64/native/miutils.dll": { + "assetType": "native", + "rid": "win81-x64" + }, + "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win81-x86" + }, + "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win81-x86" + }, + "runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win81-x86" + }, + "runtimes/win81-x86/native/mi.dll": { + "assetType": "native", + "rid": "win81-x86" + }, + "runtimes/win81-x86/native/miutils.dll": { + "assetType": "native", + "rid": "win81-x86" + } + } + }, + "Microsoft.NET.Test.Sdk/16.11.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeCoverage": "16.11.0", + "Microsoft.TestPlatform.TestHost": "16.11.0" + }, + "compile": { + "lib/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + }, + "build": { + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.props": {}, + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {} + } + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "type": "package" + }, + "Microsoft.PowerShell.Commands.Diagnostics/7.2.1": { + "type": "package", + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.PowerShell.Commands.Management/7.2.1": { + "type": "package", + "dependencies": { + "Microsoft.PowerShell.Security": "7.2.1", + "System.ServiceProcess.ServiceController": "6.0.0" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.PowerShell.Commands.Utility/7.2.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "4.0.1", + "Microsoft.PowerShell.MarkdownRender": "7.2.0", + "NJsonSchema": "10.5.2", + "System.Drawing.Common": "6.0.0", + "System.Management.Automation": "7.2.1", + "System.Threading.AccessControl": "6.0.0" + }, + "compile": { + "ref/net6.0/Microsoft.PowerShell.Commands.Utility.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.PowerShell.ConsoleHost/7.2.1": { + "type": "package", + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "compile": { + "ref/net6.0/Microsoft.PowerShell.ConsoleHost.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.EventLog": "6.0.0" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.PowerShell.MarkdownRender/7.2.0": { + "type": "package", + "dependencies": { + "Markdig.Signed": "0.22.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll": {} + } + }, + "Microsoft.PowerShell.Native/7.2.0": { + "type": "package", + "runtimeTargets": { + "runtimes/linux-arm/native/libpsl-native.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libpsl-native.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-musl-x64/native/libpsl-native.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libmi.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/linux-x64/native/libpsl-native.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/linux-x64/native/libpsrpclient.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/osx/native/libmi.dylib": { + "assetType": "native", + "rid": "osx" + }, + "runtimes/osx/native/libpsl-native.dylib": { + "assetType": "native", + "rid": "osx" + }, + "runtimes/osx/native/libpsrpclient.dylib": { + "assetType": "native", + "rid": "osx" + }, + "runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm/native/pwrshplugin.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/pwrshplugin.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x64/native/pwrshplugin.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll": { + "assetType": "native", + "rid": "win-x86" + }, + "runtimes/win-x86/native/pwrshplugin.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Microsoft.PowerShell.SDK/7.2.1": { + "type": "package", + "dependencies": { + "Microsoft.Management.Infrastructure.CimCmdlets": "7.2.1", + "Microsoft.NETCore.Windows.ApiSets": "1.0.1", + "Microsoft.PowerShell.Commands.Diagnostics": "7.2.1", + "Microsoft.PowerShell.Commands.Management": "7.2.1", + "Microsoft.PowerShell.Commands.Utility": "7.2.1", + "Microsoft.PowerShell.ConsoleHost": "7.2.1", + "Microsoft.PowerShell.Security": "7.2.1", + "Microsoft.WSMan.Management": "7.2.1", + "Microsoft.Windows.Compatibility": "6.0.0", + "System.Data.SqlClient": "4.8.3", + "System.IO.Packaging": "6.0.0", + "System.Management.Automation": "7.2.1", + "System.Net.Http.WinHttpHandler": "6.0.0", + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Duplex": "4.9.0", + "System.ServiceModel.Http": "4.9.0", + "System.ServiceModel.NetTcp": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0", + "System.ServiceModel.Security": "4.9.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "compile": { + "ref/net6.0/Microsoft.PowerShell.Commands.Utility.dll": {}, + "ref/net6.0/Microsoft.PowerShell.ConsoleHost.dll": {}, + "ref/net6.0/System.Management.Automation.dll": {} + }, + "contentFiles": { + "contentFiles/any/any/_._": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": false + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.PowerShell.Security/7.2.1": { + "type": "package", + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.TestPlatform.ObjectModel/16.11.0": { + "type": "package", + "dependencies": { + "NuGet.Frameworks": "5.0.0", + "System.Reflection.Metadata": "1.6.0" + }, + "compile": { + "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + }, + "resource": { + "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.TestPlatform.TestHost/16.11.0": { + "type": "package", + "dependencies": { + "Microsoft.TestPlatform.ObjectModel": "16.11.0", + "Newtonsoft.Json": "9.0.1" + }, + "compile": { + "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, + "lib/netcoreapp2.1/testhost.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, + "lib/netcoreapp2.1/testhost.dll": {} + }, + "resource": { + "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hant" + } + }, + "build": { + "build/netcoreapp2.1/Microsoft.TestPlatform.TestHost.props": {} + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.Registry.AccessControl/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Windows.Compatibility/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry.AccessControl": "6.0.0", + "Microsoft.Win32.SystemEvents": "6.0.0", + "System.CodeDom": "6.0.0", + "System.ComponentModel.Composition": "6.0.0", + "System.ComponentModel.Composition.Registration": "6.0.0", + "System.Configuration.ConfigurationManager": "6.0.0", + "System.Data.Odbc": "6.0.0", + "System.Data.OleDb": "6.0.0", + "System.Data.SqlClient": "4.8.3", + "System.Diagnostics.EventLog": "6.0.0", + "System.Diagnostics.PerformanceCounter": "6.0.0", + "System.DirectoryServices": "6.0.0", + "System.DirectoryServices.AccountManagement": "6.0.0", + "System.DirectoryServices.Protocols": "6.0.0", + "System.Drawing.Common": "6.0.0", + "System.IO.Packaging": "6.0.0", + "System.IO.Ports": "6.0.0", + "System.Management": "6.0.0", + "System.Reflection.Context": "6.0.0", + "System.Runtime.Caching": "6.0.0", + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.0", + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Cryptography.Xml": "6.0.0", + "System.Security.Permissions": "6.0.0", + "System.ServiceModel.Duplex": "4.9.0", + "System.ServiceModel.Http": "4.9.0", + "System.ServiceModel.NetTcp": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0", + "System.ServiceModel.Security": "4.9.0", + "System.ServiceModel.Syndication": "6.0.0", + "System.ServiceProcess.ServiceController": "6.0.0", + "System.Speech": "6.0.0", + "System.Text.Encoding.CodePages": "6.0.0", + "System.Threading.AccessControl": "6.0.0", + "System.Web.Services.Description": "4.9.0" + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.WSMan.Management/7.2.1": { + "type": "package", + "dependencies": { + "Microsoft.WSMan.Runtime": "7.2.1", + "System.Management.Automation": "7.2.1", + "System.ServiceProcess.ServiceController": "6.0.0" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.WSMan.Runtime/7.2.1": { + "type": "package", + "compile": { + "ref/net6.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Moq/4.16.1": { + "type": "package", + "dependencies": { + "Castle.Core": "4.4.0", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netstandard2.1/Moq.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Moq.dll": {} + } + }, + "Namotion.Reflection/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.3.0" + }, + "compile": { + "lib/netstandard2.0/Namotion.Reflection.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Namotion.Reflection.dll": {} + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "NJsonSchema/10.5.2": { + "type": "package", + "dependencies": { + "Namotion.Reflection": "2.0.3", + "Newtonsoft.Json": "9.0.1" + }, + "compile": { + "lib/netstandard2.0/NJsonSchema.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NJsonSchema.dll": {} + } + }, + "NLog/4.7.13": { + "type": "package", + "compile": { + "lib/netstandard2.0/NLog.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NLog.dll": {} + } + }, + "NuGet.Frameworks/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/NuGet.Frameworks.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NuGet.Frameworks.dll": {} + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "runtimeTargets": { + "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so": { + "assetType": "native", + "rid": "linux-arm" + } + } + }, + "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "runtimeTargets": { + "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so": { + "assetType": "native", + "rid": "linux-arm64" + } + } + }, + "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "runtimeTargets": { + "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so": { + "assetType": "native", + "rid": "linux-x64" + } + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "type": "package", + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "dependencies": { + "runtime.linux-arm.runtime.native.System.IO.Ports": "6.0.0", + "runtime.linux-arm64.runtime.native.System.IO.Ports": "6.0.0", + "runtime.linux-x64.runtime.native.System.IO.Ports": "6.0.0", + "runtime.osx-arm64.runtime.native.System.IO.Ports": "6.0.0", + "runtime.osx-x64.runtime.native.System.IO.Ports": "6.0.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib": { + "assetType": "native", + "rid": "osx-arm64" + } + } + }, + "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib": { + "assetType": "native", + "rid": "osx-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "assetType": "native", + "rid": "win-arm64" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "assetType": "native", + "rid": "win-x64" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.CodeDom/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.CodeDom.dll": {} + }, + "runtime": { + "lib/net6.0/System.CodeDom.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Composition/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.ComponentModel.Composition.dll": {} + }, + "runtime": { + "lib/net6.0/System.ComponentModel.Composition.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.ComponentModel.Composition.Registration/6.0.0": { + "type": "package", + "dependencies": { + "System.ComponentModel.Composition": "6.0.0", + "System.Reflection.Context": "6.0.0" + }, + "compile": { + "lib/net6.0/System.ComponentModel.Composition.Registration.dll": {} + }, + "runtime": { + "lib/net6.0/System.ComponentModel.Composition.Registration.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Configuration.ConfigurationManager/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": {} + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Console/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Data.Odbc/6.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encoding.CodePages": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Data.Odbc.dll": {} + }, + "runtime": { + "lib/net6.0/System.Data.Odbc.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "freebsd" + }, + "runtimes/illumos/lib/net6.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "illumos" + }, + "runtimes/ios/lib/net6.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "ios" + }, + "runtimes/linux/lib/net6.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "linux" + }, + "runtimes/osx/lib/net6.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/solaris/lib/net6.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "solaris" + }, + "runtimes/tvos/lib/net6.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "tvos" + }, + "runtimes/win/lib/net6.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Data.OleDb/6.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0", + "System.Diagnostics.PerformanceCounter": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Data.OleDb.dll": {} + }, + "runtime": { + "lib/net6.0/System.Data.OleDb.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Data.OleDb.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Data.SqlClient/4.8.3": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "runtime.native.System.Data.SqlClient.sni": "4.7.0" + }, + "compile": { + "ref/netcoreapp2.1/System.Data.SqlClient.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Diagnostics.EventLog/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Diagnostics.EventLog.dll": {} + }, + "runtime": { + "lib/net6.0/System.Diagnostics.EventLog.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll": { + "assetType": "runtime", + "rid": "win" + }, + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.PerformanceCounter/6.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": {} + }, + "runtime": { + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} + } + }, + "System.DirectoryServices/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.DirectoryServices.dll": {} + }, + "runtime": { + "lib/net6.0/System.DirectoryServices.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.DirectoryServices.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices.AccountManagement/6.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0", + "System.DirectoryServices": "6.0.0", + "System.DirectoryServices.Protocols": "6.0.0", + "System.Security.AccessControl": "6.0.0" + }, + "compile": { + "lib/net6.0/System.DirectoryServices.AccountManagement.dll": {} + }, + "runtime": { + "lib/net6.0/System.DirectoryServices.AccountManagement.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices.Protocols/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.DirectoryServices.Protocols.dll": {} + }, + "runtime": { + "lib/net6.0/System.DirectoryServices.Protocols.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "linux" + }, + "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Drawing.Common.dll": {} + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Formats.Asn1/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Formats.Asn1.dll": {} + }, + "runtime": { + "lib/net6.0/System.Formats.Asn1.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.Packaging/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.IO.Packaging.dll": {} + }, + "runtime": { + "lib/net6.0/System.IO.Packaging.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.IO.Ports/6.0.0": { + "type": "package", + "dependencies": { + "runtime.native.System.IO.Ports": "6.0.0" + }, + "compile": { + "lib/net6.0/System.IO.Ports.dll": {} + }, + "runtime": { + "lib/net6.0/System.IO.Ports.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.IO.Ports.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/System.IO.Ports.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Management/6.0.0": { + "type": "package", + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Management.dll": {} + }, + "runtime": { + "lib/net6.0/System.Management.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Management.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Management.Automation/7.2.1": { + "type": "package", + "dependencies": { + "Microsoft.ApplicationInsights": "2.18.0", + "Microsoft.Management.Infrastructure": "2.0.0", + "Microsoft.PowerShell.CoreCLR.Eventing": "7.2.1", + "Microsoft.PowerShell.Native": "7.2.0", + "Microsoft.Win32.Registry.AccessControl": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "System.Configuration.ConfigurationManager": "6.0.0", + "System.DirectoryServices": "6.0.0", + "System.Management": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.0", + "System.Security.Permissions": "6.0.0", + "System.Text.Encoding.CodePages": "6.0.0" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Management.Automation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/System.Management.Automation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Memory/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Http.WinHttpHandler/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Net.Http.WinHttpHandler.dll": {} + }, + "runtime": { + "lib/net6.0/System.Net.Http.WinHttpHandler.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Private.ServiceModel/4.9.0": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "5.0.0", + "Microsoft.Extensions.ObjectPool": "5.0.10", + "System.Numerics.Vectors": "4.5.0", + "System.Reflection.DispatchProxy": "4.7.1", + "System.Security.Cryptography.Xml": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Private.ServiceModel.dll": {} + }, + "resource": { + "lib/netstandard2.0/cs/System.Private.ServiceModel.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/System.Private.ServiceModel.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/System.Private.ServiceModel.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/System.Private.ServiceModel.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/System.Private.ServiceModel.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/System.Private.ServiceModel.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/System.Private.ServiceModel.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/System.Private.ServiceModel.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/System.Private.ServiceModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/System.Private.ServiceModel.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/System.Private.ServiceModel.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/System.Private.ServiceModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/System.Private.ServiceModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + } + }, + "System.Reflection.Context/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Reflection.Context.dll": {} + }, + "runtime": { + "lib/net6.0/System.Reflection.Context.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Reflection.DispatchProxy/4.7.1": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Reflection.DispatchProxy.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/System.Reflection.DispatchProxy.dll": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + } + }, + "System.Runtime.Caching/6.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/net6.0/System.Runtime.Caching.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "lib/net6.0/System.Security.AccessControl.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "System.Security.Cryptography.Pkcs/6.0.0": { + "type": "package", + "dependencies": { + "System.Formats.Asn1": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Security.Cryptography.Pkcs.dll": {} + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Pkcs.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {} + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Xml/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": {} + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.ServiceModel.Duplex/4.9.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "compile": { + "ref/net6.0/System.ServiceModel.Duplex.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Duplex.dll": {} + } + }, + "System.ServiceModel.Http/4.9.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "compile": { + "ref/net6.0/System.ServiceModel.Http.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Http.dll": {} + } + }, + "System.ServiceModel.NetTcp/4.9.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "compile": { + "ref/net6.0/System.ServiceModel.NetTcp.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.NetTcp.dll": {} + } + }, + "System.ServiceModel.Primitives/4.9.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.9.0" + }, + "compile": { + "ref/net6.0/System.ServiceModel.Primitives.dll": {}, + "ref/net6.0/System.ServiceModel.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Primitives.dll": {}, + "lib/net6.0/System.ServiceModel.dll": {} + } + }, + "System.ServiceModel.Security/4.9.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "compile": { + "ref/net6.0/System.ServiceModel.Security.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Security.dll": {} + } + }, + "System.ServiceModel.Syndication/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.ServiceModel.Syndication.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Syndication.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.ServiceProcess.ServiceController/6.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.EventLog": "6.0.0" + }, + "compile": { + "lib/net6.0/System.ServiceProcess.ServiceController.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceProcess.ServiceController.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Speech/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Speech.dll": {} + }, + "runtime": { + "lib/net6.0/System.Speech.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Speech.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.CodePages/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/net6.0/System.Text.Encoding.CodePages.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/net6.0/System.Text.Encodings.Web.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.AccessControl/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Threading.AccessControl.dll": {} + }, + "runtime": { + "lib/net6.0/System.Threading.AccessControl.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Threading.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.Web.Services.Description/4.9.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Web.Services.Description.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Web.Services.Description.dll": {} + }, + "resource": { + "lib/netstandard2.0/cs/System.Web.Services.Description.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/System.Web.Services.Description.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/System.Web.Services.Description.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/System.Web.Services.Description.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/System.Web.Services.Description.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/System.Web.Services.Description.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/System.Web.Services.Description.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/System.Web.Services.Description.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/System.Web.Services.Description.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/System.Web.Services.Description.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/System.Web.Services.Description.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/System.Web.Services.Description.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/System.Web.Services.Description.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Windows.Extensions.dll": {} + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "Typin/3.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.Logging.Debug": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Typin.Core": "3.1.0" + }, + "compile": { + "lib/net6.0/Typin.dll": {} + }, + "runtime": { + "lib/net6.0/Typin.dll": {} + } + }, + "Typin.Core/3.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0" + }, + "compile": { + "lib/net6.0/Typin.Core.dll": {} + }, + "runtime": { + "lib/net6.0/Typin.Core.dll": {} + } + }, + "xunit/2.4.1": { + "type": "package", + "dependencies": { + "xunit.analyzers": "0.10.0", + "xunit.assert": "[2.4.1]", + "xunit.core": "[2.4.1]" + } + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/xunit.abstractions.dll": {} + } + }, + "xunit.analyzers/0.10.0": { + "type": "package" + }, + "xunit.assert/2.4.1": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "lib/netstandard1.1/xunit.assert.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.assert.dll": {} + } + }, + "xunit.core/2.4.1": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.4.1]", + "xunit.extensibility.execution": "[2.4.1]" + }, + "build": { + "build/xunit.core.props": {}, + "build/xunit.core.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/xunit.core.props": {}, + "buildMultiTargeting/xunit.core.targets": {} + } + }, + "xunit.extensibility.core/2.4.1": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.core.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.4.1": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "[2.4.1]" + }, + "compile": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + } + }, + "xunit.runner.visualstudio/2.4.3": { + "type": "package", + "build": { + "build/netcoreapp2.1/xunit.runner.visualstudio.props": {} + } + }, + "YamlDotNet/11.2.1": { + "type": "package", + "compile": { + "lib/netstandard2.1/YamlDotNet.dll": {} + }, + "runtime": { + "lib/netstandard2.1/YamlDotNet.dll": {} + } + }, + "Core.Test/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "FluentAssertions": "6.4.0", + "FluentValidation": "10.3.6", + "IPNetwork2": "2.5.386", + "Linguard.Core": "2.0.0", + "Microsoft.NET.Test.Sdk": "16.11.0", + "Moq": "4.16.1", + "xunit": "2.4.1" + }, + "compile": { + "bin/placeholder/Core.Test.dll": {} + }, + "runtime": { + "bin/placeholder/Core.Test.dll": {} + } + }, + "Linguard.Cli/2.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "CommandLineParser": "2.8.0", + "FluentValidation": "10.3.6", + "Linguard.Core": "2.0.0", + "Typin": "3.1.0" + }, + "compile": { + "bin/placeholder/Linguard.Cli.dll": {} + }, + "runtime": { + "bin/placeholder/Linguard.Cli.dll": {} + } + }, + "Linguard.Core/2.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "Bogus": "34.0.1", + "ByteSize": "2.1.1", + "FluentValidation": "10.3.6", + "IPNetwork2": "2.5.386", + "Linguard.Log": "2.0.0", + "Microsoft.PowerShell.SDK": "7.2.1", + "System.Management.Automation": "7.2.1", + "YamlDotNet": "11.2.1" + }, + "compile": { + "bin/placeholder/Linguard.Core.dll": {} + }, + "runtime": { + "bin/placeholder/Linguard.Core.dll": {} + } + }, + "Linguard.Log/2.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "NLog": "4.7.13" + }, + "compile": { + "bin/placeholder/Linguard.Log.dll": {} + }, + "runtime": { + "bin/placeholder/Linguard.Log.dll": {} + } + } + } + }, + "libraries": { + "Bogus/34.0.1": { + "sha512": "49iq7QrD0wb7V4/FcK8p3dWdJxNUbojaqK9L6KRvdikIuRjt38EsNp7QXICcYdbYw01K8BHUdxlnTNn/YX3qDA==", + "type": "package", + "path": "bogus/34.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "bogus.34.0.1.nupkg.sha512", + "bogus.nuspec", + "lib/net40/Bogus.dll", + "lib/net40/Bogus.xml", + "lib/net6.0/Bogus.dll", + "lib/net6.0/Bogus.xml", + "lib/netstandard1.3/Bogus.dll", + "lib/netstandard1.3/Bogus.xml", + "lib/netstandard2.0/Bogus.dll", + "lib/netstandard2.0/Bogus.xml" + ] + }, + "ByteSize/2.1.1": { + "sha512": "D+Y3NpbHrW21vZwwegeWf/8iAg2Mr0s7n1su8Ysho+O9dctJ5/EkWUi19QVxc6+nZl080gGTXBP/Nz0twSI3dA==", + "type": "package", + "path": "bytesize/2.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "bytesize.2.1.1.nupkg.sha512", + "bytesize.nuspec", + "lib/net45/ByteSize.dll", + "lib/net45/ByteSize.xml", + "lib/net5.0/ByteSize.dll", + "lib/net5.0/ByteSize.xml", + "lib/netstandard1.0/ByteSize.dll", + "lib/netstandard1.0/ByteSize.xml", + "lib/netstandard2.0/ByteSize.dll", + "lib/netstandard2.0/ByteSize.xml", + "lib/netstandard2.1/ByteSize.dll", + "lib/netstandard2.1/ByteSize.xml" + ] + }, + "Castle.Core/4.4.0": { + "sha512": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", + "type": "package", + "path": "castle.core/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ASL - Apache Software Foundation License.txt", + "CHANGELOG.md", + "LICENSE", + "castle.core.4.4.0.nupkg.sha512", + "castle.core.nuspec", + "lib/net35/Castle.Core.dll", + "lib/net35/Castle.Core.xml", + "lib/net40/Castle.Core.dll", + "lib/net40/Castle.Core.xml", + "lib/net45/Castle.Core.dll", + "lib/net45/Castle.Core.xml", + "lib/netstandard1.3/Castle.Core.dll", + "lib/netstandard1.3/Castle.Core.xml", + "lib/netstandard1.5/Castle.Core.dll", + "lib/netstandard1.5/Castle.Core.xml", + "readme.txt" + ] + }, + "CommandLineParser/2.8.0": { + "sha512": "eco2HlKQBY4Joz9odHigzGpVzv6pjsXnY5lziioMveQxr+i2Z7xYcIOMeZTgYiqnMtMAbXMXsVhrNfWO5vJS8Q==", + "type": "package", + "path": "commandlineparser/2.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CommandLine20.png", + "License.md", + "README.md", + "commandlineparser.2.8.0.nupkg.sha512", + "commandlineparser.nuspec", + "lib/net40/CommandLine.dll", + "lib/net40/CommandLine.xml", + "lib/net45/CommandLine.dll", + "lib/net45/CommandLine.xml", + "lib/net461/CommandLine.dll", + "lib/net461/CommandLine.xml", + "lib/netstandard2.0/CommandLine.dll", + "lib/netstandard2.0/CommandLine.xml" + ] + }, + "coverlet.msbuild/3.1.2": { + "sha512": "QhM0fnDtmIMImY7oxyQ/kh1VYtRxPyRVeLwRUGuUvI6Xp83pSYG9gerK8WgJj4TzUl7ISziADUGtIWKhtlbkbQ==", + "type": "package", + "path": "coverlet.msbuild/3.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Microsoft.Build.Framework.dll", + "build/Microsoft.Build.Utilities.Core.dll", + "build/Microsoft.CSharp.dll", + "build/Microsoft.DotNet.PlatformAbstractions.dll", + "build/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "build/Microsoft.Extensions.DependencyInjection.dll", + "build/Microsoft.Extensions.DependencyModel.dll", + "build/Microsoft.Extensions.FileSystemGlobbing.dll", + "build/Mono.Cecil.Mdb.dll", + "build/Mono.Cecil.Pdb.dll", + "build/Mono.Cecil.Rocks.dll", + "build/Mono.Cecil.dll", + "build/Newtonsoft.Json.dll", + "build/System.AppContext.dll", + "build/System.Collections.Concurrent.dll", + "build/System.Collections.Immutable.dll", + "build/System.Collections.NonGeneric.dll", + "build/System.Dynamic.Runtime.dll", + "build/System.IO.FileSystem.Primitives.dll", + "build/System.Linq.Expressions.dll", + "build/System.Linq.dll", + "build/System.ObjectModel.dll", + "build/System.Private.DataContractSerialization.dll", + "build/System.Reflection.Emit.ILGeneration.dll", + "build/System.Reflection.Emit.Lightweight.dll", + "build/System.Reflection.Emit.dll", + "build/System.Reflection.Metadata.dll", + "build/System.Reflection.TypeExtensions.dll", + "build/System.Resources.Reader.dll", + "build/System.Runtime.Serialization.Primitives.dll", + "build/System.Runtime.Serialization.Xml.dll", + "build/System.Text.RegularExpressions.dll", + "build/System.Threading.Tasks.Extensions.dll", + "build/System.Threading.Tasks.Parallel.dll", + "build/System.Threading.Thread.dll", + "build/System.Threading.ThreadPool.dll", + "build/System.Threading.dll", + "build/System.Xml.ReaderWriter.dll", + "build/System.Xml.XDocument.dll", + "build/System.Xml.XmlDocument.dll", + "build/System.Xml.XmlSerializer.dll", + "build/coverlet.core.dll", + "build/coverlet.core.pdb", + "build/coverlet.msbuild.props", + "build/coverlet.msbuild.targets", + "build/coverlet.msbuild.tasks.dll", + "build/coverlet.msbuild.tasks.pdb", + "coverlet-icon.png", + "coverlet.msbuild.3.1.2.nupkg.sha512", + "coverlet.msbuild.nuspec" + ] + }, + "FluentAssertions/6.4.0": { + "sha512": "KOJE1UD7ndxoZAdmOraiUFLdcdGTArGQW8WYN+vwrC3mdt2G/B7gmsMOozgXKiNSh3fpD/Xp/0mhonRh8vrZKw==", + "type": "package", + "path": "fluentassertions/6.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "FluentAssertions.png", + "fluentassertions.6.4.0.nupkg.sha512", + "fluentassertions.nuspec", + "lib/net47/FluentAssertions.dll", + "lib/net47/FluentAssertions.pdb", + "lib/net47/FluentAssertions.xml", + "lib/netcoreapp2.1/FluentAssertions.dll", + "lib/netcoreapp2.1/FluentAssertions.pdb", + "lib/netcoreapp2.1/FluentAssertions.xml", + "lib/netcoreapp3.0/FluentAssertions.dll", + "lib/netcoreapp3.0/FluentAssertions.pdb", + "lib/netcoreapp3.0/FluentAssertions.xml", + "lib/netstandard2.0/FluentAssertions.dll", + "lib/netstandard2.0/FluentAssertions.pdb", + "lib/netstandard2.0/FluentAssertions.xml", + "lib/netstandard2.1/FluentAssertions.dll", + "lib/netstandard2.1/FluentAssertions.pdb", + "lib/netstandard2.1/FluentAssertions.xml" + ] + }, + "FluentValidation/10.3.6": { + "sha512": "iMd370ZDx6ydm8t7bIFdRbSKX0e42lpvCtifUSbTSXOk5iKjmgl7HU0PXBhIWQAyIRi3gCwfMI9luj8H6K+byw==", + "type": "package", + "path": "fluentvalidation/10.3.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "fluent-validation-icon.png", + "fluentvalidation.10.3.6.nupkg.sha512", + "fluentvalidation.nuspec", + "lib/net5.0/FluentValidation.dll", + "lib/net5.0/FluentValidation.xml", + "lib/net6.0/FluentValidation.dll", + "lib/net6.0/FluentValidation.xml", + "lib/netstandard2.0/FluentValidation.dll", + "lib/netstandard2.0/FluentValidation.xml", + "lib/netstandard2.1/FluentValidation.dll", + "lib/netstandard2.1/FluentValidation.xml" + ] + }, + "IPNetwork2/2.5.386": { + "sha512": "6ihnNm82vyJsUYYfR2BRTziY/mQ5UGLsQZuhdSYPeTlbQLhBW/4BC9hBz3h5bFDn8PkVw9dP0cpv9brIBmk4Fw==", + "type": "package", + "path": "ipnetwork2/2.5.386", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "ipnetwork2.2.5.386.nupkg.sha512", + "ipnetwork2.nuspec", + "lib/net40/System.Net.IPNetwork.dll", + "lib/net40/System.Net.IPNetwork.xml", + "lib/net45/System.Net.IPNetwork.dll", + "lib/net45/System.Net.IPNetwork.xml", + "lib/net46/System.Net.IPNetwork.dll", + "lib/net46/System.Net.IPNetwork.xml", + "lib/net47/System.Net.IPNetwork.dll", + "lib/net47/System.Net.IPNetwork.xml", + "lib/net48/System.Net.IPNetwork.dll", + "lib/net48/System.Net.IPNetwork.xml", + "lib/net5.0/System.Net.IPNetwork.dll", + "lib/net5.0/System.Net.IPNetwork.xml", + "lib/netcoreapp3.1/System.Net.IPNetwork.dll", + "lib/netcoreapp3.1/System.Net.IPNetwork.xml", + "lib/netstandard1.6/System.Net.IPNetwork.dll", + "lib/netstandard1.6/System.Net.IPNetwork.xml", + "lib/netstandard2.0/System.Net.IPNetwork.dll", + "lib/netstandard2.0/System.Net.IPNetwork.xml", + "lib/netstandard2.1/System.Net.IPNetwork.dll", + "lib/netstandard2.1/System.Net.IPNetwork.xml" + ] + }, + "Markdig.Signed/0.22.0": { + "sha512": "7x3FqS3wk8DXyQLuflD47tBs6+ly6k4VtoDCzlDWfy7XHVsBIi7eGYEM15sPAcwSCQjOksNWE8U5r2v0Sk5FzQ==", + "type": "package", + "path": "markdig.signed/0.22.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/Markdig.Signed.dll", + "lib/net452/Markdig.Signed.xml", + "lib/netcoreapp2.1/Markdig.Signed.dll", + "lib/netcoreapp2.1/Markdig.Signed.xml", + "lib/netcoreapp3.1/Markdig.Signed.dll", + "lib/netcoreapp3.1/Markdig.Signed.xml", + "lib/netstandard2.0/Markdig.Signed.dll", + "lib/netstandard2.0/Markdig.Signed.xml", + "lib/netstandard2.1/Markdig.Signed.dll", + "lib/netstandard2.1/Markdig.Signed.xml", + "markdig.signed.0.22.0.nupkg.sha512", + "markdig.signed.nuspec" + ] + }, + "Microsoft.ApplicationInsights/2.18.0": { + "sha512": "milJB3VOCoC4EWmpE/Co9cOJ7SV6Ji6VqV4Rf5UlqL9QCg+rAX1y+3Y+j1Gu/j4IExYiPq7SEKqkP2BFnEu6Vw==", + "type": "package", + "path": "microsoft.applicationinsights/2.18.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net452/Microsoft.ApplicationInsights.dll", + "lib/net452/Microsoft.ApplicationInsights.pdb", + "lib/net452/Microsoft.ApplicationInsights.xml", + "lib/net46/Microsoft.ApplicationInsights.dll", + "lib/net46/Microsoft.ApplicationInsights.pdb", + "lib/net46/Microsoft.ApplicationInsights.xml", + "lib/netstandard2.0/Microsoft.ApplicationInsights.dll", + "lib/netstandard2.0/Microsoft.ApplicationInsights.pdb", + "lib/netstandard2.0/Microsoft.ApplicationInsights.xml", + "microsoft.applicationinsights.2.18.0.nupkg.sha512", + "microsoft.applicationinsights.nuspec" + ] + }, + "Microsoft.Bcl.AsyncInterfaces/5.0.0": { + "sha512": "W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ==", + "type": "package", + "path": "microsoft.bcl.asyncinterfaces/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", + "microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": { + "sha512": "7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==", + "type": "package", + "path": "microsoft.codeanalysis.analyzers/3.3.2", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "EULA.rtf", + "ThirdPartyNotices.rtf", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "build/Microsoft.CodeAnalysis.Analyzers.props", + "build/Microsoft.CodeAnalysis.Analyzers.targets", + "build/config/AnalysisLevel_2_9_8_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_2_9_8_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_2_9_8_Default.editorconfig", + "build/config/AnalysisLevel_3_3_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_3_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_3_Default.editorconfig", + "build/config/AnalysisLevel_3_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_Default.editorconfig", + "documentation/Analyzer Configuration.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.sarif", + "editorconfig/AllRulesDefault/.editorconfig", + "editorconfig/AllRulesDisabled/.editorconfig", + "editorconfig/AllRulesEnabled/.editorconfig", + "editorconfig/CorrectnessRulesDefault/.editorconfig", + "editorconfig/CorrectnessRulesEnabled/.editorconfig", + "editorconfig/DataflowRulesDefault/.editorconfig", + "editorconfig/DataflowRulesEnabled/.editorconfig", + "editorconfig/LibraryRulesDefault/.editorconfig", + "editorconfig/LibraryRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig", + "editorconfig/PortedFromFxCopRulesDefault/.editorconfig", + "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig", + "microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512", + "microsoft.codeanalysis.analyzers.nuspec", + "rulesets/AllRulesDefault.ruleset", + "rulesets/AllRulesDisabled.ruleset", + "rulesets/AllRulesEnabled.ruleset", + "rulesets/CorrectnessRulesDefault.ruleset", + "rulesets/CorrectnessRulesEnabled.ruleset", + "rulesets/DataflowRulesDefault.ruleset", + "rulesets/DataflowRulesEnabled.ruleset", + "rulesets/LibraryRulesDefault.ruleset", + "rulesets/LibraryRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset", + "rulesets/PortedFromFxCopRulesDefault.ruleset", + "rulesets/PortedFromFxCopRulesEnabled.ruleset", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/4.0.1": { + "sha512": "SMREwaVD5SzatlWhh9aahQAtSWdb63NcE//f+bQzgHSECU6xtDtaxk0kwV+asdFfr6HtW38UeO6jvqdfzudg3w==", + "type": "package", + "path": "microsoft.codeanalysis.common/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml", + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "microsoft.codeanalysis.common.4.0.1.nupkg.sha512", + "microsoft.codeanalysis.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/4.0.1": { + "sha512": "Q9RxxydPpUElj/x1/qykDTUGsRoKbJG8H5XUSeMGmMu54fBiuX1xyanom9caa1oQfh5JIW1BgLxobSaWs4WyHQ==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "microsoft.codeanalysis.csharp.4.0.1.nupkg.sha512", + "microsoft.codeanalysis.csharp.nuspec" + ] + }, + "Microsoft.CodeCoverage/16.11.0": { + "sha512": "wf6lpAeCqP0KFfbDVtfL50lr7jY1gq0+0oSphyksfLOEygMDXqnaxHK5LPFtMEhYSEtgXdNyXNnEddOqQQUdlQ==", + "type": "package", + "path": "microsoft.codecoverage/16.11.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE_NET.txt", + "ThirdPartyNotices.txt", + "build/netstandard1.0/CodeCoverage/CodeCoverage.config", + "build/netstandard1.0/CodeCoverage/CodeCoverage.exe", + "build/netstandard1.0/CodeCoverage/VanguardInstrumentationProfiler_x86.config", + "build/netstandard1.0/CodeCoverage/amd64/CodeCoverage.exe", + "build/netstandard1.0/CodeCoverage/amd64/VanguardInstrumentationProfiler_x64.config", + "build/netstandard1.0/CodeCoverage/amd64/covrun64.dll", + "build/netstandard1.0/CodeCoverage/amd64/msdia140.dll", + "build/netstandard1.0/CodeCoverage/amd64/msvcdis140.dll", + "build/netstandard1.0/CodeCoverage/amd64/msvcp140.dll", + "build/netstandard1.0/CodeCoverage/amd64/msvcp140_atomic_wait.dll", + "build/netstandard1.0/CodeCoverage/amd64/vcruntime140.dll", + "build/netstandard1.0/CodeCoverage/amd64/vcruntime140_1.dll", + "build/netstandard1.0/CodeCoverage/codecoveragemessages.dll", + "build/netstandard1.0/CodeCoverage/coreclr/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "build/netstandard1.0/CodeCoverage/covrun32.dll", + "build/netstandard1.0/CodeCoverage/msdia140.dll", + "build/netstandard1.0/CodeCoverage/msvcdis140.dll", + "build/netstandard1.0/CodeCoverage/msvcp140.dll", + "build/netstandard1.0/CodeCoverage/msvcp140_atomic_wait.dll", + "build/netstandard1.0/CodeCoverage/vcruntime140.dll", + "build/netstandard1.0/InstrumentationEngine/alpine/x64/ProductionBreakpoints_x64.config", + "build/netstandard1.0/InstrumentationEngine/alpine/x64/libCoverageInstrumentationMethod.so", + "build/netstandard1.0/InstrumentationEngine/alpine/x64/libInstrumentationEngine.so", + "build/netstandard1.0/InstrumentationEngine/ubuntu/x64/ProductionBreakpoints_x64.config", + "build/netstandard1.0/InstrumentationEngine/ubuntu/x64/libCoverageInstrumentationMethod.so", + "build/netstandard1.0/InstrumentationEngine/ubuntu/x64/libInstrumentationEngine.so", + "build/netstandard1.0/InstrumentationEngine/x64/MicrosoftInstrumentationEngine_x64.dll", + "build/netstandard1.0/InstrumentationEngine/x86/MicrosoftInstrumentationEngine_x86.dll", + "build/netstandard1.0/Microsoft.CodeCoverage.props", + "build/netstandard1.0/Microsoft.CodeCoverage.targets", + "build/netstandard1.0/Microsoft.VisualStudio.Coverage.Core.dll", + "build/netstandard1.0/Microsoft.VisualStudio.Coverage.Instrumentation.dll", + "build/netstandard1.0/Microsoft.VisualStudio.Coverage.Interprocess.dll", + "build/netstandard1.0/Microsoft.VisualStudio.TraceDataCollector.dll", + "build/netstandard1.0/Mono.Cecil.Pdb.dll", + "build/netstandard1.0/Mono.Cecil.dll", + "build/netstandard1.0/ThirdPartyNotices.txt", + "build/netstandard1.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "lib/net45/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "microsoft.codecoverage.16.11.0.nupkg.sha512", + "microsoft.codecoverage.nuspec" + ] + }, + "Microsoft.CSharp/4.3.0": { + "sha512": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==", + "type": "package", + "path": "microsoft.csharp/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.3.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "sha512": "k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.DependencyInjection.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging/6.0.0": { + "sha512": "eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", + "type": "package", + "path": "microsoft.extensions.logging/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.dll", + "lib/net461/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "sha512": "/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "build/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Debug/6.0.0": { + "sha512": "M9g/JixseSZATJE9tcMn9uzoD4+DbSglivFqVx8YkRJ7VVPmnvCEbOZ0AAaxsL1EKyI4cz07DXOOJExxNsUOHw==", + "type": "package", + "path": "microsoft.extensions.logging.debug/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.Debug.dll", + "lib/net461/Microsoft.Extensions.Logging.Debug.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml", + "microsoft.extensions.logging.debug.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.debug.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.ObjectPool/5.0.10": { + "sha512": "pp9tbGqIhdEXL6Q1yJl+zevAJSq4BsxqhS1GXzBvEsEz9DDNu9GLNzgUy2xyFc4YjB4m4Ff2YEWTnvQvVYdkvQ==", + "type": "package", + "path": "microsoft.extensions.objectpool/5.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.ObjectPool.dll", + "lib/net461/Microsoft.Extensions.ObjectPool.xml", + "lib/net5.0/Microsoft.Extensions.ObjectPool.dll", + "lib/net5.0/Microsoft.Extensions.ObjectPool.xml", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml", + "microsoft.extensions.objectpool.5.0.10.nupkg.sha512", + "microsoft.extensions.objectpool.nuspec" + ] + }, + "Microsoft.Extensions.Options/6.0.0": { + "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "type": "package", + "path": "microsoft.extensions.options/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Options.dll", + "lib/net461/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.6.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "type": "package", + "path": "microsoft.extensions.primitives/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Primitives.dll", + "lib/net461/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Management.Infrastructure/2.0.0": { + "sha512": "IaKZRNBBv3sdrmBWd+aqwHq8cVHk/3WgWFAN/dt40MRY9rbtHiDfTTmaEN0tGTmQqGCGDo/ncntA8MvFMvcsRw==", + "type": "package", + "path": "microsoft.management.infrastructure/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard1.6/_._", + "microsoft.management.infrastructure.2.0.0.nupkg.sha512", + "microsoft.management.infrastructure.nuspec", + "ref/net451/Microsoft.Management.Infrastructure.Native.dll", + "ref/net451/Microsoft.Management.Infrastructure.dll", + "ref/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "ref/netstandard1.6/Microsoft.Management.Infrastructure.dll" + ] + }, + "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { + "sha512": "xe1x237SCyrjpmW1mP1T69/OOc/gtU66P8wVC+b4/u7Hz7fIO6B8P5yVQQfb79rAe1GocruIpQlX4KXTFQf09w==", + "type": "package", + "path": "microsoft.management.infrastructure.cimcmdlets/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.management.infrastructure.cimcmdlets.7.2.1.nupkg.sha512", + "microsoft.management.infrastructure.cimcmdlets.nuspec", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll" + ] + }, + "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { + "sha512": "p0lslMX5bdWLxO2P7ao+rjAMOB0LEwPYpzvdCQ2OEYgX2NxFpQ8ILvqPGnYlTAb53rT8gu5DyIol1HboHFYfxQ==", + "type": "package", + "path": "microsoft.management.infrastructure.runtime.unix/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512", + "microsoft.management.infrastructure.runtime.unix.nuspec", + "runtimes/unix/lib/net451/_._", + "runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll" + ] + }, + "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { + "sha512": "vjBWQeDOjgernkrOdbEgn7M70SF7hof7ORdKPSlL06Uc15+oYdth5dZju9KsgUoti/cwnkZTiwtDx/lRtay0sA==", + "type": "package", + "path": "microsoft.management.infrastructure.runtime.win/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512", + "microsoft.management.infrastructure.runtime.win.nuspec", + "runtimes/win-arm/lib/net451/_._", + "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win-arm/native/mi.dll", + "runtimes/win-arm/native/miutils.dll", + "runtimes/win-arm64/lib/net451/_._", + "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win-arm64/native/mi.dll", + "runtimes/win-arm64/native/miutils.dll", + "runtimes/win10-x64/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win10-x64/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win10-x64/native/mi.dll", + "runtimes/win10-x64/native/miutils.dll", + "runtimes/win10-x86/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win10-x86/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win10-x86/native/mi.dll", + "runtimes/win10-x86/native/miutils.dll", + "runtimes/win7-x64/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win7-x64/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win7-x64/native/mi.dll", + "runtimes/win7-x64/native/miutils.dll", + "runtimes/win7-x86/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win7-x86/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win7-x86/native/mi.dll", + "runtimes/win7-x86/native/miutils.dll", + "runtimes/win8-x64/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win8-x64/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win8-x64/native/mi.dll", + "runtimes/win8-x64/native/miutils.dll", + "runtimes/win8-x86/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win8-x86/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win8-x86/native/mi.dll", + "runtimes/win8-x86/native/miutils.dll", + "runtimes/win81-x64/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win81-x64/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win81-x64/native/mi.dll", + "runtimes/win81-x64/native/miutils.dll", + "runtimes/win81-x86/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win81-x86/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win81-x86/native/mi.dll", + "runtimes/win81-x86/native/miutils.dll" + ] + }, + "Microsoft.NET.Test.Sdk/16.11.0": { + "sha512": "f4mbG1SUSkNWF5p7B3Y8ZxMsvKhxCmpZhdl+w6tMtLSUGE7Izi1syU6TkmKOvB2BV66pdbENConFAISOix4ohQ==", + "type": "package", + "path": "microsoft.net.test.sdk/16.11.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE_NET.txt", + "build/net40/Microsoft.NET.Test.Sdk.props", + "build/net40/Microsoft.NET.Test.Sdk.targets", + "build/net45/Microsoft.NET.Test.Sdk.props", + "build/net45/Microsoft.NET.Test.Sdk.targets", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.cs", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.fs", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.vb", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.props", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.targets", + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.cs", + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.fs", + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.vb", + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.props", + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets", + "build/uap10.0/Microsoft.NET.Test.Sdk.props", + "buildMultiTargeting/Microsoft.NET.Test.Sdk.props", + "lib/net40/_._", + "lib/net45/_._", + "lib/netcoreapp1.0/_._", + "lib/netcoreapp2.1/_._", + "lib/uap10.0/_._", + "microsoft.net.test.sdk.16.11.0.nupkg.sha512", + "microsoft.net.test.sdk.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "type": "package", + "path": "microsoft.netcore.platforms/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "sha512": "SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==", + "type": "package", + "path": "microsoft.netcore.windows.apisets/1.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512", + "microsoft.netcore.windows.apisets.nuspec", + "runtime.json" + ] + }, + "Microsoft.PowerShell.Commands.Diagnostics/7.2.1": { + "sha512": "Bgw4Egv7cnYUTWAy6koxg+0+/8K6rqUdlAiAxuJby9FeDPZQFfqCHQqlyP9JDa6lvbtmeBx1btFDx6Kh8bxdwQ==", + "type": "package", + "path": "microsoft.powershell.commands.diagnostics/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.powershell.commands.diagnostics.7.2.1.nupkg.sha512", + "microsoft.powershell.commands.diagnostics.nuspec", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll" + ] + }, + "Microsoft.PowerShell.Commands.Management/7.2.1": { + "sha512": "YAMrGDF2QTg6Gwz07+m1+BnmcYsPyywfY4J8nOpImfXZLLNhD7zQQP0orNHu9WPPV3/+E33qUyPj5J3ugCMk6A==", + "type": "package", + "path": "microsoft.powershell.commands.management/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.powershell.commands.management.7.2.1.nupkg.sha512", + "microsoft.powershell.commands.management.nuspec", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll", + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll" + ] + }, + "Microsoft.PowerShell.Commands.Utility/7.2.1": { + "sha512": "PU15IxUJd7nSacTstlxqJoEeGlI+BH6cUKTppkkIIxEj7EfwC5nD1qTL41xye63BFeZmOFeqAhMI6LtJUd875g==", + "type": "package", + "path": "microsoft.powershell.commands.utility/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.powershell.commands.utility.7.2.1.nupkg.sha512", + "microsoft.powershell.commands.utility.nuspec", + "ref/net6.0/Microsoft.PowerShell.Commands.Utility.dll", + "ref/net6.0/Microsoft.PowerShell.Commands.Utility.xml", + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll", + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll" + ] + }, + "Microsoft.PowerShell.ConsoleHost/7.2.1": { + "sha512": "uAPSsTmkOa7na1+OAPF87yBRwD1Ka/qXThoyrlvP9ihzMWfHM52k3MuKVEGi04VP3Wdi7U4Rzkr3svxDDmkHgA==", + "type": "package", + "path": "microsoft.powershell.consolehost/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.powershell.consolehost.7.2.1.nupkg.sha512", + "microsoft.powershell.consolehost.nuspec", + "ref/net6.0/Microsoft.PowerShell.ConsoleHost.dll", + "ref/net6.0/Microsoft.PowerShell.ConsoleHost.xml", + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll", + "runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll" + ] + }, + "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { + "sha512": "fUz7InjavqKtslkQN828nWbZLnmmJRL9rn4b3e/XXdx0BcN+65x/pSgMnehwDVGIoqUPUMXN54eDo4HRVcLA5g==", + "type": "package", + "path": "microsoft.powershell.coreclr.eventing/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.powershell.coreclr.eventing.7.2.1.nupkg.sha512", + "microsoft.powershell.coreclr.eventing.nuspec", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll" + ] + }, + "Microsoft.PowerShell.MarkdownRender/7.2.0": { + "sha512": "1vqDtdX9RCGsMWCbzp0CIxZW3slWgq8mYHDfUlUKzmkV57fMAn4m0Gy2OtsqopZzrOiVJci+QCWx5FB7BVpMlw==", + "type": "package", + "path": "microsoft.powershell.markdownrender/7.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll", + "microsoft.powershell.markdownrender.7.2.0.nupkg.sha512", + "microsoft.powershell.markdownrender.nuspec" + ] + }, + "Microsoft.PowerShell.Native/7.2.0": { + "sha512": "TauOu3bYr4DRh9HpH3+fgaL+y2GY47KLsgU6qX1NDLqHshdEaCCjiF0N5sDEgCEhSb38FwWhpdFTIQvoOcYCXQ==", + "type": "package", + "path": "microsoft.powershell.native/7.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "PSRP_version.txt", + "Powershell_black_64.png", + "microsoft.powershell.native.7.2.0.nupkg.sha512", + "microsoft.powershell.native.nuspec", + "runtimes/linux-arm/native/libpsl-native.so", + "runtimes/linux-arm64/native/libpsl-native.so", + "runtimes/linux-musl-x64/native/libpsl-native.so", + "runtimes/linux-x64/native/libmi.so", + "runtimes/linux-x64/native/libpsl-native.so", + "runtimes/linux-x64/native/libpsrpclient.so", + "runtimes/osx/native/libmi.dylib", + "runtimes/osx/native/libpsl-native.dylib", + "runtimes/osx/native/libpsrpclient.dylib", + "runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll", + "runtimes/win-arm/native/pwrshplugin.dll", + "runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll", + "runtimes/win-arm64/native/pwrshplugin.dll", + "runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll", + "runtimes/win-x64/native/pwrshplugin.dll", + "runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll", + "runtimes/win-x86/native/pwrshplugin.dll" + ] + }, + "Microsoft.PowerShell.SDK/7.2.1": { + "sha512": "UufIcywqI/22p0oqC5qg+yDoW39U2JAQyaHxy2Tr/h0hdWuFimtmhxp/FDXTxszgOdobtjcrCkSzqcoNmu/vQQ==", + "type": "package", + "path": "microsoft.powershell.sdk/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "contentFiles/any/any/ref/Microsoft.CSharp.dll", + "contentFiles/any/any/ref/Microsoft.VisualBasic.Core.dll", + "contentFiles/any/any/ref/Microsoft.VisualBasic.dll", + "contentFiles/any/any/ref/Microsoft.Win32.Primitives.dll", + "contentFiles/any/any/ref/Microsoft.Win32.Registry.dll", + "contentFiles/any/any/ref/System.AppContext.dll", + "contentFiles/any/any/ref/System.Buffers.dll", + "contentFiles/any/any/ref/System.Collections.Concurrent.dll", + "contentFiles/any/any/ref/System.Collections.Immutable.dll", + "contentFiles/any/any/ref/System.Collections.NonGeneric.dll", + "contentFiles/any/any/ref/System.Collections.Specialized.dll", + "contentFiles/any/any/ref/System.Collections.dll", + "contentFiles/any/any/ref/System.ComponentModel.Annotations.dll", + "contentFiles/any/any/ref/System.ComponentModel.DataAnnotations.dll", + "contentFiles/any/any/ref/System.ComponentModel.EventBasedAsync.dll", + "contentFiles/any/any/ref/System.ComponentModel.Primitives.dll", + "contentFiles/any/any/ref/System.ComponentModel.TypeConverter.dll", + "contentFiles/any/any/ref/System.ComponentModel.dll", + "contentFiles/any/any/ref/System.Configuration.dll", + "contentFiles/any/any/ref/System.Console.dll", + "contentFiles/any/any/ref/System.Core.dll", + "contentFiles/any/any/ref/System.Data.Common.dll", + "contentFiles/any/any/ref/System.Data.DataSetExtensions.dll", + "contentFiles/any/any/ref/System.Data.dll", + "contentFiles/any/any/ref/System.Diagnostics.Contracts.dll", + "contentFiles/any/any/ref/System.Diagnostics.Debug.dll", + "contentFiles/any/any/ref/System.Diagnostics.DiagnosticSource.dll", + "contentFiles/any/any/ref/System.Diagnostics.FileVersionInfo.dll", + "contentFiles/any/any/ref/System.Diagnostics.Process.dll", + "contentFiles/any/any/ref/System.Diagnostics.StackTrace.dll", + "contentFiles/any/any/ref/System.Diagnostics.TextWriterTraceListener.dll", + "contentFiles/any/any/ref/System.Diagnostics.Tools.dll", + "contentFiles/any/any/ref/System.Diagnostics.TraceSource.dll", + "contentFiles/any/any/ref/System.Diagnostics.Tracing.dll", + "contentFiles/any/any/ref/System.Drawing.Primitives.dll", + "contentFiles/any/any/ref/System.Drawing.dll", + "contentFiles/any/any/ref/System.Dynamic.Runtime.dll", + "contentFiles/any/any/ref/System.Formats.Asn1.dll", + "contentFiles/any/any/ref/System.Globalization.Calendars.dll", + "contentFiles/any/any/ref/System.Globalization.Extensions.dll", + "contentFiles/any/any/ref/System.Globalization.dll", + "contentFiles/any/any/ref/System.IO.Compression.Brotli.dll", + "contentFiles/any/any/ref/System.IO.Compression.FileSystem.dll", + "contentFiles/any/any/ref/System.IO.Compression.ZipFile.dll", + "contentFiles/any/any/ref/System.IO.Compression.dll", + "contentFiles/any/any/ref/System.IO.FileSystem.AccessControl.dll", + "contentFiles/any/any/ref/System.IO.FileSystem.DriveInfo.dll", + "contentFiles/any/any/ref/System.IO.FileSystem.Primitives.dll", + "contentFiles/any/any/ref/System.IO.FileSystem.Watcher.dll", + "contentFiles/any/any/ref/System.IO.FileSystem.dll", + "contentFiles/any/any/ref/System.IO.IsolatedStorage.dll", + "contentFiles/any/any/ref/System.IO.MemoryMappedFiles.dll", + "contentFiles/any/any/ref/System.IO.Pipes.AccessControl.dll", + "contentFiles/any/any/ref/System.IO.Pipes.dll", + "contentFiles/any/any/ref/System.IO.UnmanagedMemoryStream.dll", + "contentFiles/any/any/ref/System.IO.dll", + "contentFiles/any/any/ref/System.Linq.Expressions.dll", + "contentFiles/any/any/ref/System.Linq.Parallel.dll", + "contentFiles/any/any/ref/System.Linq.Queryable.dll", + "contentFiles/any/any/ref/System.Linq.dll", + "contentFiles/any/any/ref/System.Memory.dll", + "contentFiles/any/any/ref/System.Net.Http.Json.dll", + "contentFiles/any/any/ref/System.Net.Http.dll", + "contentFiles/any/any/ref/System.Net.HttpListener.dll", + "contentFiles/any/any/ref/System.Net.Mail.dll", + "contentFiles/any/any/ref/System.Net.NameResolution.dll", + "contentFiles/any/any/ref/System.Net.NetworkInformation.dll", + "contentFiles/any/any/ref/System.Net.Ping.dll", + "contentFiles/any/any/ref/System.Net.Primitives.dll", + "contentFiles/any/any/ref/System.Net.Requests.dll", + "contentFiles/any/any/ref/System.Net.Security.dll", + "contentFiles/any/any/ref/System.Net.ServicePoint.dll", + "contentFiles/any/any/ref/System.Net.Sockets.dll", + "contentFiles/any/any/ref/System.Net.WebClient.dll", + "contentFiles/any/any/ref/System.Net.WebHeaderCollection.dll", + "contentFiles/any/any/ref/System.Net.WebProxy.dll", + "contentFiles/any/any/ref/System.Net.WebSockets.Client.dll", + "contentFiles/any/any/ref/System.Net.WebSockets.dll", + "contentFiles/any/any/ref/System.Net.dll", + "contentFiles/any/any/ref/System.Numerics.Vectors.dll", + "contentFiles/any/any/ref/System.Numerics.dll", + "contentFiles/any/any/ref/System.ObjectModel.dll", + "contentFiles/any/any/ref/System.Reflection.DispatchProxy.dll", + "contentFiles/any/any/ref/System.Reflection.Emit.ILGeneration.dll", + "contentFiles/any/any/ref/System.Reflection.Emit.Lightweight.dll", + "contentFiles/any/any/ref/System.Reflection.Emit.dll", + "contentFiles/any/any/ref/System.Reflection.Extensions.dll", + "contentFiles/any/any/ref/System.Reflection.Metadata.dll", + "contentFiles/any/any/ref/System.Reflection.Primitives.dll", + "contentFiles/any/any/ref/System.Reflection.TypeExtensions.dll", + "contentFiles/any/any/ref/System.Reflection.dll", + "contentFiles/any/any/ref/System.Resources.Reader.dll", + "contentFiles/any/any/ref/System.Resources.ResourceManager.dll", + "contentFiles/any/any/ref/System.Resources.Writer.dll", + "contentFiles/any/any/ref/System.Runtime.CompilerServices.Unsafe.dll", + "contentFiles/any/any/ref/System.Runtime.CompilerServices.VisualC.dll", + "contentFiles/any/any/ref/System.Runtime.Extensions.dll", + "contentFiles/any/any/ref/System.Runtime.Handles.dll", + "contentFiles/any/any/ref/System.Runtime.InteropServices.RuntimeInformation.dll", + "contentFiles/any/any/ref/System.Runtime.InteropServices.dll", + "contentFiles/any/any/ref/System.Runtime.Intrinsics.dll", + "contentFiles/any/any/ref/System.Runtime.Loader.dll", + "contentFiles/any/any/ref/System.Runtime.Numerics.dll", + "contentFiles/any/any/ref/System.Runtime.Serialization.Formatters.dll", + "contentFiles/any/any/ref/System.Runtime.Serialization.Json.dll", + "contentFiles/any/any/ref/System.Runtime.Serialization.Primitives.dll", + "contentFiles/any/any/ref/System.Runtime.Serialization.Xml.dll", + "contentFiles/any/any/ref/System.Runtime.Serialization.dll", + "contentFiles/any/any/ref/System.Runtime.dll", + "contentFiles/any/any/ref/System.Security.AccessControl.dll", + "contentFiles/any/any/ref/System.Security.Claims.dll", + "contentFiles/any/any/ref/System.Security.Cryptography.Algorithms.dll", + "contentFiles/any/any/ref/System.Security.Cryptography.Cng.dll", + "contentFiles/any/any/ref/System.Security.Cryptography.Csp.dll", + "contentFiles/any/any/ref/System.Security.Cryptography.Encoding.dll", + "contentFiles/any/any/ref/System.Security.Cryptography.OpenSsl.dll", + "contentFiles/any/any/ref/System.Security.Cryptography.Primitives.dll", + "contentFiles/any/any/ref/System.Security.Cryptography.X509Certificates.dll", + "contentFiles/any/any/ref/System.Security.Principal.Windows.dll", + "contentFiles/any/any/ref/System.Security.Principal.dll", + "contentFiles/any/any/ref/System.Security.SecureString.dll", + "contentFiles/any/any/ref/System.Security.dll", + "contentFiles/any/any/ref/System.ServiceModel.Web.dll", + "contentFiles/any/any/ref/System.ServiceProcess.dll", + "contentFiles/any/any/ref/System.Text.Encoding.CodePages.dll", + "contentFiles/any/any/ref/System.Text.Encoding.Extensions.dll", + "contentFiles/any/any/ref/System.Text.Encoding.dll", + "contentFiles/any/any/ref/System.Text.Encodings.Web.dll", + "contentFiles/any/any/ref/System.Text.Json.dll", + "contentFiles/any/any/ref/System.Text.RegularExpressions.dll", + "contentFiles/any/any/ref/System.Threading.Channels.dll", + "contentFiles/any/any/ref/System.Threading.Overlapped.dll", + "contentFiles/any/any/ref/System.Threading.Tasks.Dataflow.dll", + "contentFiles/any/any/ref/System.Threading.Tasks.Extensions.dll", + "contentFiles/any/any/ref/System.Threading.Tasks.Parallel.dll", + "contentFiles/any/any/ref/System.Threading.Tasks.dll", + "contentFiles/any/any/ref/System.Threading.Thread.dll", + "contentFiles/any/any/ref/System.Threading.ThreadPool.dll", + "contentFiles/any/any/ref/System.Threading.Timer.dll", + "contentFiles/any/any/ref/System.Threading.dll", + "contentFiles/any/any/ref/System.Transactions.Local.dll", + "contentFiles/any/any/ref/System.Transactions.dll", + "contentFiles/any/any/ref/System.ValueTuple.dll", + "contentFiles/any/any/ref/System.Web.HttpUtility.dll", + "contentFiles/any/any/ref/System.Web.dll", + "contentFiles/any/any/ref/System.Windows.dll", + "contentFiles/any/any/ref/System.Xml.Linq.dll", + "contentFiles/any/any/ref/System.Xml.ReaderWriter.dll", + "contentFiles/any/any/ref/System.Xml.Serialization.dll", + "contentFiles/any/any/ref/System.Xml.XDocument.dll", + "contentFiles/any/any/ref/System.Xml.XPath.XDocument.dll", + "contentFiles/any/any/ref/System.Xml.XPath.dll", + "contentFiles/any/any/ref/System.Xml.XmlDocument.dll", + "contentFiles/any/any/ref/System.Xml.XmlSerializer.dll", + "contentFiles/any/any/ref/System.Xml.dll", + "contentFiles/any/any/ref/System.dll", + "contentFiles/any/any/ref/WindowsBase.dll", + "contentFiles/any/any/ref/mscorlib.dll", + "contentFiles/any/any/ref/netstandard.dll", + "contentFiles/any/any/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1", + "contentFiles/any/any/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1", + "contentFiles/any/any/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1", + "contentFiles/any/any/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/CimCmdlets/CimCmdlets.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psm1", + "microsoft.powershell.sdk.7.2.1.nupkg.sha512", + "microsoft.powershell.sdk.nuspec", + "ref/net6.0/Microsoft.PowerShell.Commands.Utility.dll", + "ref/net6.0/Microsoft.PowerShell.Commands.Utility.xml", + "ref/net6.0/Microsoft.PowerShell.ConsoleHost.dll", + "ref/net6.0/Microsoft.PowerShell.ConsoleHost.xml", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll", + "runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll" + ] + }, + "Microsoft.PowerShell.Security/7.2.1": { + "sha512": "GV3RuuOmXHAaEjeBcyixdzUIAQvHW6xgoWwafzTe97DbhI+N1sg4fa/FQ9pd8lqG+kkWxGwTy1VgudXX6rhUkg==", + "type": "package", + "path": "microsoft.powershell.security/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.powershell.security.7.2.1.nupkg.sha512", + "microsoft.powershell.security.nuspec", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll", + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll" + ] + }, + "Microsoft.TestPlatform.ObjectModel/16.11.0": { + "sha512": "EiknJx9N9Z30gs7R+HHhki7fA8EiiM3pwD1vkw3bFsBC8kdVq/O7mHf1hrg5aJp+ASO6BoOzQueD2ysfTOy/Bg==", + "type": "package", + "path": "microsoft.testplatform.objectmodel/16.11.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE_NET.txt", + "lib/net45/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/net45/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/net45/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/net45/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/net451/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/net451/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/net451/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp1.0/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netcoreapp1.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netcoreapp1.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp1.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp1.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp1.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp1.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp1.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp1.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp1.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp1.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp1.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp1.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp1.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp1.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp1.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp1.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp1.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp1.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp1.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp1.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp1.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp1.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp1.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp1.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp1.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netstandard1.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netstandard1.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netstandard1.3/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netstandard1.3/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netstandard1.3/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/uap10.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/uap10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "microsoft.testplatform.objectmodel.16.11.0.nupkg.sha512", + "microsoft.testplatform.objectmodel.nuspec" + ] + }, + "Microsoft.TestPlatform.TestHost/16.11.0": { + "sha512": "/Q+R0EcCJE8JaYCk+bGReicw/xrB0HhecrYrUcLbn95BnAlaTJrZhoLkUhvtKTAVtqX/AIKWXYtutiU/Q6QUgg==", + "type": "package", + "path": "microsoft.testplatform.testhost/16.11.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE_NET.txt", + "ThirdPartyNotices.txt", + "build/netcoreapp1.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "build/netcoreapp1.0/Microsoft.TestPlatform.TestHost.props", + "build/netcoreapp1.0/x64/Microsoft.TestPlatform.PlatformAbstractions.dll", + "build/netcoreapp1.0/x64/testhost.dll", + "build/netcoreapp1.0/x64/testhost.exe", + "build/netcoreapp1.0/x86/Microsoft.TestPlatform.PlatformAbstractions.dll", + "build/netcoreapp1.0/x86/testhost.x86.dll", + "build/netcoreapp1.0/x86/testhost.x86.exe", + "build/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll", + "build/netcoreapp2.1/Microsoft.TestPlatform.TestHost.props", + "build/netcoreapp2.1/x64/Microsoft.TestPlatform.PlatformAbstractions.dll", + "build/netcoreapp2.1/x64/testhost.dll", + "build/netcoreapp2.1/x64/testhost.exe", + "build/netcoreapp2.1/x86/Microsoft.TestPlatform.PlatformAbstractions.dll", + "build/netcoreapp2.1/x86/testhost.x86.dll", + "build/netcoreapp2.1/x86/testhost.x86.exe", + "build/uap10.0/Microsoft.TestPlatform.TestHost.props", + "build/uap10.0/Microsoft.TestPlatform.TestHost.targets", + "build/uap10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/cs/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/de/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/es/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/fr/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/it/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/ja/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/ko/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/pl/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/pt-BR/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/ru/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/tr/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/x64/msdia140.dll", + "build/uap10.0/x86/msdia140.dll", + "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/_._", + "lib/netcoreapp1.0/Microsoft.TestPlatform.CommunicationUtilities.dll", + "lib/netcoreapp1.0/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netcoreapp1.0/Microsoft.TestPlatform.CrossPlatEngine.dll", + "lib/netcoreapp1.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netcoreapp1.0/Microsoft.TestPlatform.Utilities.dll", + "lib/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.Common.dll", + "lib/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netcoreapp1.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/testhost.deps.json", + "lib/netcoreapp1.0/testhost.dll", + "lib/netcoreapp1.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/x64/msdia140.dll", + "lib/netcoreapp1.0/x86/msdia140.dll", + "lib/netcoreapp1.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll", + "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll", + "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll", + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll", + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/testhost.deps.json", + "lib/netcoreapp2.1/testhost.dll", + "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/x64/msdia140.dll", + "lib/netcoreapp2.1/x86/msdia140.dll", + "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/uap10.0/Microsoft.TestPlatform.CommunicationUtilities.dll", + "lib/uap10.0/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/uap10.0/Microsoft.TestPlatform.CrossPlatEngine.dll", + "lib/uap10.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/uap10.0/Microsoft.TestPlatform.Utilities.dll", + "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.Common.dll", + "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/uap10.0/testhost.dll", + "microsoft.testplatform.testhost.16.11.0.nupkg.sha512", + "microsoft.testplatform.testhost.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.3.0": { + "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "type": "package", + "path": "microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.3.0.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.Win32.Registry/4.7.0": { + "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "type": "package", + "path": "microsoft.win32.registry/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.4.7.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/net472/Microsoft.Win32.Registry.dll", + "ref/net472/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.Registry.AccessControl/6.0.0": { + "sha512": "UoE+eeuBKL+GFHxHV3FjHlY5K8Wr/IR7Ee/a2oDNqFodF1iMqyt5hIs0U9Z217AbWrHrNle4750kD03hv1IMZw==", + "type": "package", + "path": "microsoft.win32.registry.accesscontrol/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.Registry.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Win32.Registry.AccessControl.dll", + "lib/net461/Microsoft.Win32.Registry.AccessControl.xml", + "lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll", + "lib/net6.0/Microsoft.Win32.Registry.AccessControl.xml", + "lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.xml", + "microsoft.win32.registry.accesscontrol.6.0.0.nupkg.sha512", + "microsoft.win32.registry.accesscontrol.nuspec", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.AccessControl.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.AccessControl.xml", + "runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.xml", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "type": "package", + "path": "microsoft.win32.systemevents/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Windows.Compatibility/6.0.0": { + "sha512": "9esuK5JqnjkDgO9/AHesyJSG0aKwpfLVzTw6nIGYhqE91VLxZyv3HKulNoPVy/NOuyAaf1kE4FKtdZDzdd/SLw==", + "type": "package", + "path": "microsoft.windows.compatibility/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Windows.Compatibility.targets", + "buildTransitive/netcoreapp3.1/_._", + "microsoft.windows.compatibility.6.0.0.nupkg.sha512", + "microsoft.windows.compatibility.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.WSMan.Management/7.2.1": { + "sha512": "vMOJMof4eLql180G4PmTurN8h8+VmPaf1l/Tqq+GI7HYyNv140iY3/Z18MiZA4dRG14qghLNo5JxtTolY7b4og==", + "type": "package", + "path": "microsoft.wsman.management/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.wsman.management.7.2.1.nupkg.sha512", + "microsoft.wsman.management.nuspec", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll" + ] + }, + "Microsoft.WSMan.Runtime/7.2.1": { + "sha512": "v14vzUXIg7opXoQI8Eb82dvsRwBNylZ44lvyXOBSRCiVfvMhyTqE8bpPWbwwmQ5JZRnG/dP5/aOYuu9l163fyQ==", + "type": "package", + "path": "microsoft.wsman.runtime/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.wsman.runtime.7.2.1.nupkg.sha512", + "microsoft.wsman.runtime.nuspec", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll" + ] + }, + "Moq/4.16.1": { + "sha512": "bw3R9q8cVNhWXNpnvWb0OGP4HadS4zvClq+T1zf7AF+tLY1haZ2AvbHidQekf4PDv1T40c6brZeT/V0IBq7cEQ==", + "type": "package", + "path": "moq/4.16.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Moq.dll", + "lib/net45/Moq.xml", + "lib/netstandard2.0/Moq.dll", + "lib/netstandard2.0/Moq.xml", + "lib/netstandard2.1/Moq.dll", + "lib/netstandard2.1/Moq.xml", + "moq.4.16.1.nupkg.sha512", + "moq.nuspec", + "moq.png" + ] + }, + "Namotion.Reflection/2.0.3": { + "sha512": "tZCe/UrSBAMW8A4TjD/SlpRHaWjnHlSWdyRuOXhf3yrE0OX+4fXg0uzj7mwFDclXznfCGRAZbP+akPt4G/mclw==", + "type": "package", + "path": "namotion.reflection/2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net40/Namotion.Reflection.dll", + "lib/net40/Namotion.Reflection.xml", + "lib/net45/Namotion.Reflection.dll", + "lib/net45/Namotion.Reflection.xml", + "lib/netstandard1.0/Namotion.Reflection.dll", + "lib/netstandard1.0/Namotion.Reflection.xml", + "lib/netstandard2.0/Namotion.Reflection.dll", + "lib/netstandard2.0/Namotion.Reflection.xml", + "namotion.reflection.2.0.3.nupkg.sha512", + "namotion.reflection.nuspec" + ] + }, + "NETStandard.Library/1.6.1": { + "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "type": "package", + "path": "netstandard.library/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.1.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "Newtonsoft.Json/13.0.1": { + "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "type": "package", + "path": "newtonsoft.json/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "NJsonSchema/10.5.2": { + "sha512": "Vr2CbySuXh74TQFU0rGJYZOS492xOE64cPXdB7a0cfXJb/N45Bf4v7sd4LOla0jNhgc5V/B61Ko3qecriL195w==", + "type": "package", + "path": "njsonschema/10.5.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "NuGetIcon.png", + "lib/net40/NJsonSchema.dll", + "lib/net40/NJsonSchema.xml", + "lib/net45/NJsonSchema.dll", + "lib/net45/NJsonSchema.xml", + "lib/netstandard1.0/NJsonSchema.dll", + "lib/netstandard1.0/NJsonSchema.xml", + "lib/netstandard2.0/NJsonSchema.dll", + "lib/netstandard2.0/NJsonSchema.xml", + "njsonschema.10.5.2.nupkg.sha512", + "njsonschema.nuspec" + ] + }, + "NLog/4.7.13": { + "sha512": "AvoGpCuq36B+0wY313XA6gC+YeMvk24rqF8P+HS9fInBGOjCzPjpXp2ln9ATZjPOJtXgHfc8zNmTjyswFGLxvg==", + "type": "package", + "path": "nlog/4.7.13", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/monoandroid44/NLog.dll", + "lib/monoandroid44/NLog.xml", + "lib/net35/NLog.dll", + "lib/net35/NLog.xml", + "lib/net40-client/NLog.dll", + "lib/net40-client/NLog.xml", + "lib/net45/NLog.dll", + "lib/net45/NLog.xml", + "lib/netstandard1.3/NLog.dll", + "lib/netstandard1.3/NLog.xml", + "lib/netstandard1.5/NLog.dll", + "lib/netstandard1.5/NLog.xml", + "lib/netstandard2.0/NLog.dll", + "lib/netstandard2.0/NLog.xml", + "lib/sl4/NLog.dll", + "lib/sl4/NLog.xml", + "lib/sl5/NLog.dll", + "lib/sl5/NLog.xml", + "lib/wp8/NLog.dll", + "lib/wp8/NLog.xml", + "lib/xamarinios10/NLog.dll", + "lib/xamarinios10/NLog.xml", + "nlog.4.7.13.nupkg.sha512", + "nlog.nuspec" + ] + }, + "NuGet.Frameworks/5.0.0": { + "sha512": "c5JVjuVAm4f7E9Vj+v09Z9s2ZsqFDjBpcsyS3M9xRo0bEdm/LVZSzLxxNvfvAwRiiE8nwe1h2G4OwiwlzFKXlA==", + "type": "package", + "path": "nuget.frameworks/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net40/NuGet.Frameworks.dll", + "lib/net40/NuGet.Frameworks.xml", + "lib/net472/NuGet.Frameworks.dll", + "lib/net472/NuGet.Frameworks.xml", + "lib/netstandard2.0/NuGet.Frameworks.dll", + "lib/netstandard2.0/NuGet.Frameworks.xml", + "nuget.frameworks.5.0.0.nupkg.sha512", + "nuget.frameworks.nuspec" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { + "sha512": "75q52H7CSpgIoIDwXb9o833EvBZIXJ0mdPhz1E6jSisEXUBlSCPalC29cj3EXsjpuDwr0dj1LRXZepIQH/oL4Q==", + "type": "package", + "path": "runtime.linux-arm.runtime.native.system.io.ports/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.linux-arm.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "runtime.linux-arm.runtime.native.system.io.ports.nuspec", + "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so", + "useSharedDesignerContext.txt" + ] + }, + "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": { + "sha512": "xn2bMThmXr3CsvOYmS8ex2Yz1xo+kcnhVg2iVhS9PlmqjZPAkrEo/I40wjrBZH/tU4kvH0s1AE8opAvQ3KIS8g==", + "type": "package", + "path": "runtime.linux-arm64.runtime.native.system.io.ports/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.linux-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "runtime.linux-arm64.runtime.native.system.io.ports.nuspec", + "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so", + "useSharedDesignerContext.txt" + ] + }, + "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": { + "sha512": "16nbNXwv0sC+gLGIuecri0skjuh6R1maIJggsaNP7MQBcbVcEfWFUOkEnsnvoLEjy0XerfibuRptfQ8AmdIcWA==", + "type": "package", + "path": "runtime.linux-x64.runtime.native.system.io.ports/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.linux-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "runtime.linux-x64.runtime.native.system.io.ports.nuspec", + "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so", + "useSharedDesignerContext.txt" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "sha512": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", + "type": "package", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", + "runtime.native.system.data.sqlclient.sni.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.native.System.IO.Compression/4.3.0": { + "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "type": "package", + "path": "runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.IO.Ports/6.0.0": { + "sha512": "KaaXlpOcuZjMdmyF5wzzx3b+PRKIzt6A5Ax9dKenPDQbVJAFpev+casD0BIig1pBcbs3zx7CqWemzUJKAeHdSQ==", + "type": "package", + "path": "runtime.native.system.io.ports/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "runtime.native.system.io.ports.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "runtime.native.System.Net.Http/4.3.0": { + "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "type": "package", + "path": "runtime.native.system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.http.4.3.0.nupkg.sha512", + "runtime.native.system.net.http.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "type": "package", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.apple.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": { + "sha512": "fXG12NodG1QrCdoaeSQ1gVnk/koi4WYY4jZtarMkZeQMyReBm1nZlSRoPnUjLr2ZR36TiMjpcGnQfxymieUe7w==", + "type": "package", + "path": "runtime.osx-arm64.runtime.native.system.io.ports/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.osx-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "runtime.osx-arm64.runtime.native.system.io.ports.nuspec", + "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib", + "useSharedDesignerContext.txt" + ] + }, + "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { + "sha512": "/As+zPY49+dSUXkh+fTUbyPhqrdGN//evLxo4Vue88pfh1BHZgF7q4kMblTkxYvwR6Vi03zSYxysSFktO8/SDQ==", + "type": "package", + "path": "runtime.osx-x64.runtime.native.system.io.ports/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.osx-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "runtime.osx-x64.runtime.native.system.io.ports.nuspec", + "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib", + "useSharedDesignerContext.txt" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "type": "package", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-arm64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "type": "package", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "type": "package", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x86/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.AppContext/4.3.0": { + "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "type": "package", + "path": "system.appcontext/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.3.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.3.0": { + "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "type": "package", + "path": "system.buffers/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.1/.xml", + "lib/netstandard1.1/System.Buffers.dll", + "system.buffers.4.3.0.nupkg.sha512", + "system.buffers.nuspec" + ] + }, + "System.CodeDom/6.0.0": { + "sha512": "CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "type": "package", + "path": "system.codedom/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.CodeDom.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.CodeDom.dll", + "lib/net461/System.CodeDom.xml", + "lib/net6.0/System.CodeDom.dll", + "lib/net6.0/System.CodeDom.xml", + "lib/netstandard2.0/System.CodeDom.dll", + "lib/netstandard2.0/System.CodeDom.xml", + "system.codedom.6.0.0.nupkg.sha512", + "system.codedom.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.3.0": { + "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "type": "package", + "path": "system.collections.concurrent/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.3.0.nupkg.sha512", + "system.collections.concurrent.nuspec" + ] + }, + "System.Collections.Immutable/5.0.0": { + "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", + "type": "package", + "path": "system.collections.immutable/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Collections.Immutable.dll", + "lib/net461/System.Collections.Immutable.xml", + "lib/netstandard1.0/System.Collections.Immutable.dll", + "lib/netstandard1.0/System.Collections.Immutable.xml", + "lib/netstandard1.3/System.Collections.Immutable.dll", + "lib/netstandard1.3/System.Collections.Immutable.xml", + "lib/netstandard2.0/System.Collections.Immutable.dll", + "lib/netstandard2.0/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "system.collections.immutable.5.0.0.nupkg.sha512", + "system.collections.immutable.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections.NonGeneric/4.3.0": { + "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "type": "package", + "path": "system.collections.nongeneric/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/netstandard1.3/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.nongeneric.4.3.0.nupkg.sha512", + "system.collections.nongeneric.nuspec" + ] + }, + "System.Collections.Specialized/4.3.0": { + "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "type": "package", + "path": "system.collections.specialized/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.Specialized.dll", + "lib/netstandard1.3/System.Collections.Specialized.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.xml", + "ref/netstandard1.3/de/System.Collections.Specialized.xml", + "ref/netstandard1.3/es/System.Collections.Specialized.xml", + "ref/netstandard1.3/fr/System.Collections.Specialized.xml", + "ref/netstandard1.3/it/System.Collections.Specialized.xml", + "ref/netstandard1.3/ja/System.Collections.Specialized.xml", + "ref/netstandard1.3/ko/System.Collections.Specialized.xml", + "ref/netstandard1.3/ru/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.specialized.4.3.0.nupkg.sha512", + "system.collections.specialized.nuspec" + ] + }, + "System.ComponentModel/4.3.0": { + "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "type": "package", + "path": "system.componentmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/netstandard1.3/System.ComponentModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/netcore50/de/System.ComponentModel.xml", + "ref/netcore50/es/System.ComponentModel.xml", + "ref/netcore50/fr/System.ComponentModel.xml", + "ref/netcore50/it/System.ComponentModel.xml", + "ref/netcore50/ja/System.ComponentModel.xml", + "ref/netcore50/ko/System.ComponentModel.xml", + "ref/netcore50/ru/System.ComponentModel.xml", + "ref/netcore50/zh-hans/System.ComponentModel.xml", + "ref/netcore50/zh-hant/System.ComponentModel.xml", + "ref/netstandard1.0/System.ComponentModel.dll", + "ref/netstandard1.0/System.ComponentModel.xml", + "ref/netstandard1.0/de/System.ComponentModel.xml", + "ref/netstandard1.0/es/System.ComponentModel.xml", + "ref/netstandard1.0/fr/System.ComponentModel.xml", + "ref/netstandard1.0/it/System.ComponentModel.xml", + "ref/netstandard1.0/ja/System.ComponentModel.xml", + "ref/netstandard1.0/ko/System.ComponentModel.xml", + "ref/netstandard1.0/ru/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.4.3.0.nupkg.sha512", + "system.componentmodel.nuspec" + ] + }, + "System.ComponentModel.Composition/6.0.0": { + "sha512": "60Qv+F7oxomOjJeTDA5Z4iCyFbQ0B/2Mi5HT+13pxxq0lVnu2ipbWMzFB+RWKr3wWKA8BSncXr9PH/fECwMX5Q==", + "type": "package", + "path": "system.componentmodel.composition/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.ComponentModel.Composition.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.ComponentModel.Composition.dll", + "lib/net6.0/System.ComponentModel.Composition.xml", + "lib/netcoreapp3.1/System.ComponentModel.Composition.dll", + "lib/netcoreapp3.1/System.ComponentModel.Composition.xml", + "lib/netstandard2.0/System.ComponentModel.Composition.dll", + "lib/netstandard2.0/System.ComponentModel.Composition.xml", + "system.componentmodel.composition.6.0.0.nupkg.sha512", + "system.componentmodel.composition.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.ComponentModel.Composition.Registration/6.0.0": { + "sha512": "+i3RLlOgTsf15VeADBPpzPyRiXq71aLSuzdHeNtmq9f6BwpF3OWhB76p0WDUNCa3Z+SLD4dJbBM9yAep7kQCGA==", + "type": "package", + "path": "system.componentmodel.composition.registration/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.ComponentModel.Composition.Registration.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.ComponentModel.Composition.Registration.dll", + "lib/net6.0/System.ComponentModel.Composition.Registration.xml", + "lib/netstandard2.1/System.ComponentModel.Composition.Registration.dll", + "lib/netstandard2.1/System.ComponentModel.Composition.Registration.xml", + "system.componentmodel.composition.registration.6.0.0.nupkg.sha512", + "system.componentmodel.composition.registration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.ComponentModel.Primitives/4.3.0": { + "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "type": "package", + "path": "system.componentmodel.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.Primitives.dll", + "lib/netstandard1.0/System.ComponentModel.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.primitives.4.3.0.nupkg.sha512", + "system.componentmodel.primitives.nuspec" + ] + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "type": "package", + "path": "system.componentmodel.typeconverter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.TypeConverter.dll", + "lib/net462/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.TypeConverter.dll", + "ref/net462/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "system.componentmodel.typeconverter.nuspec" + ] + }, + "System.Configuration.ConfigurationManager/6.0.0": { + "sha512": "7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", + "type": "package", + "path": "system.configuration.configurationmanager/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/net461/System.Configuration.ConfigurationManager.xml", + "lib/net6.0/System.Configuration.ConfigurationManager.dll", + "lib/net6.0/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll", + "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.6.0.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Console/4.3.0": { + "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "type": "package", + "path": "system.console/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.3.0.nupkg.sha512", + "system.console.nuspec" + ] + }, + "System.Data.Odbc/6.0.0": { + "sha512": "pnZjwe0Qwr1Rnp7NExd5zz4YwXJrYuAbWNKjEQpTzCEg6f/L5DYJS7w3hG3vgSj1t/r79UL390YzXIklf1VuQQ==", + "type": "package", + "path": "system.data.odbc/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Data.Odbc.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Data.Odbc.dll", + "lib/net461/System.Data.Odbc.xml", + "lib/net6.0/System.Data.Odbc.dll", + "lib/net6.0/System.Data.Odbc.xml", + "lib/netcoreapp3.1/System.Data.Odbc.dll", + "lib/netcoreapp3.1/System.Data.Odbc.xml", + "lib/netstandard2.0/System.Data.Odbc.dll", + "lib/netstandard2.0/System.Data.Odbc.xml", + "runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll", + "runtimes/freebsd/lib/net6.0/System.Data.Odbc.xml", + "runtimes/freebsd/lib/netcoreapp3.1/System.Data.Odbc.dll", + "runtimes/freebsd/lib/netcoreapp3.1/System.Data.Odbc.xml", + "runtimes/illumos/lib/net6.0/System.Data.Odbc.dll", + "runtimes/illumos/lib/net6.0/System.Data.Odbc.xml", + "runtimes/ios/lib/net6.0/System.Data.Odbc.dll", + "runtimes/ios/lib/net6.0/System.Data.Odbc.xml", + "runtimes/linux/lib/net6.0/System.Data.Odbc.dll", + "runtimes/linux/lib/net6.0/System.Data.Odbc.xml", + "runtimes/linux/lib/netcoreapp3.1/System.Data.Odbc.dll", + "runtimes/linux/lib/netcoreapp3.1/System.Data.Odbc.xml", + "runtimes/osx/lib/net6.0/System.Data.Odbc.dll", + "runtimes/osx/lib/net6.0/System.Data.Odbc.xml", + "runtimes/osx/lib/netcoreapp3.1/System.Data.Odbc.dll", + "runtimes/osx/lib/netcoreapp3.1/System.Data.Odbc.xml", + "runtimes/solaris/lib/net6.0/System.Data.Odbc.dll", + "runtimes/solaris/lib/net6.0/System.Data.Odbc.xml", + "runtimes/tvos/lib/net6.0/System.Data.Odbc.dll", + "runtimes/tvos/lib/net6.0/System.Data.Odbc.xml", + "runtimes/win/lib/net461/System.Data.Odbc.dll", + "runtimes/win/lib/net461/System.Data.Odbc.xml", + "runtimes/win/lib/net6.0/System.Data.Odbc.dll", + "runtimes/win/lib/net6.0/System.Data.Odbc.xml", + "runtimes/win/lib/netcoreapp3.1/System.Data.Odbc.dll", + "runtimes/win/lib/netcoreapp3.1/System.Data.Odbc.xml", + "system.data.odbc.6.0.0.nupkg.sha512", + "system.data.odbc.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Data.OleDb/6.0.0": { + "sha512": "LQ8PjTIF1LtrrlGiyiTVjAkQtTWKm9GSNnygIlWjhN9y88s7xhy6DUNDDkmQQ9f6ex7mA4k0Tl97lz/CklaiLg==", + "type": "package", + "path": "system.data.oledb/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Data.OleDb.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Data.OleDb.dll", + "lib/net461/System.Data.OleDb.xml", + "lib/net6.0/System.Data.OleDb.dll", + "lib/net6.0/System.Data.OleDb.xml", + "lib/netstandard2.0/System.Data.OleDb.dll", + "lib/netstandard2.0/System.Data.OleDb.xml", + "runtimes/win/lib/net461/System.Data.OleDb.dll", + "runtimes/win/lib/net461/System.Data.OleDb.xml", + "runtimes/win/lib/net6.0/System.Data.OleDb.dll", + "runtimes/win/lib/net6.0/System.Data.OleDb.xml", + "runtimes/win/lib/netstandard2.0/System.Data.OleDb.dll", + "runtimes/win/lib/netstandard2.0/System.Data.OleDb.xml", + "system.data.oledb.6.0.0.nupkg.sha512", + "system.data.oledb.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Data.SqlClient/4.8.3": { + "sha512": "yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==", + "type": "package", + "path": "system.data.sqlclient/4.8.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/System.Data.SqlClient.dll", + "lib/net46/System.Data.SqlClient.dll", + "lib/net461/System.Data.SqlClient.dll", + "lib/net461/System.Data.SqlClient.xml", + "lib/netcoreapp2.1/System.Data.SqlClient.dll", + "lib/netcoreapp2.1/System.Data.SqlClient.xml", + "lib/netstandard1.2/System.Data.SqlClient.dll", + "lib/netstandard1.2/System.Data.SqlClient.xml", + "lib/netstandard1.3/System.Data.SqlClient.dll", + "lib/netstandard1.3/System.Data.SqlClient.xml", + "lib/netstandard2.0/System.Data.SqlClient.dll", + "lib/netstandard2.0/System.Data.SqlClient.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/System.Data.SqlClient.dll", + "ref/net46/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.xml", + "ref/netcoreapp2.1/System.Data.SqlClient.dll", + "ref/netcoreapp2.1/System.Data.SqlClient.xml", + "ref/netstandard1.2/System.Data.SqlClient.dll", + "ref/netstandard1.2/System.Data.SqlClient.xml", + "ref/netstandard1.2/de/System.Data.SqlClient.xml", + "ref/netstandard1.2/es/System.Data.SqlClient.xml", + "ref/netstandard1.2/fr/System.Data.SqlClient.xml", + "ref/netstandard1.2/it/System.Data.SqlClient.xml", + "ref/netstandard1.2/ja/System.Data.SqlClient.xml", + "ref/netstandard1.2/ko/System.Data.SqlClient.xml", + "ref/netstandard1.2/ru/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard1.3/System.Data.SqlClient.dll", + "ref/netstandard1.3/System.Data.SqlClient.xml", + "ref/netstandard1.3/de/System.Data.SqlClient.xml", + "ref/netstandard1.3/es/System.Data.SqlClient.xml", + "ref/netstandard1.3/fr/System.Data.SqlClient.xml", + "ref/netstandard1.3/it/System.Data.SqlClient.xml", + "ref/netstandard1.3/ja/System.Data.SqlClient.xml", + "ref/netstandard1.3/ko/System.Data.SqlClient.xml", + "ref/netstandard1.3/ru/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard2.0/System.Data.SqlClient.dll", + "ref/netstandard2.0/System.Data.SqlClient.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.xml", + "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml", + "runtimes/win/lib/net451/System.Data.SqlClient.dll", + "runtimes/win/lib/net46/System.Data.SqlClient.dll", + "runtimes/win/lib/net461/System.Data.SqlClient.dll", + "runtimes/win/lib/net461/System.Data.SqlClient.xml", + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll", + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml", + "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml", + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll", + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml", + "system.data.sqlclient.4.8.3.nupkg.sha512", + "system.data.sqlclient.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "sha512": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.DiagnosticSource.dll", + "lib/net461/System.Diagnostics.DiagnosticSource.xml", + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.EventLog/6.0.0": { + "sha512": "lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "type": "package", + "path": "system.diagnostics.eventlog/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.EventLog.dll", + "lib/net461/System.Diagnostics.EventLog.xml", + "lib/net6.0/System.Diagnostics.EventLog.dll", + "lib/net6.0/System.Diagnostics.EventLog.xml", + "lib/netcoreapp3.1/System.Diagnostics.EventLog.dll", + "lib/netcoreapp3.1/System.Diagnostics.EventLog.xml", + "lib/netstandard2.0/System.Diagnostics.EventLog.dll", + "lib/netstandard2.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.6.0.0.nupkg.sha512", + "system.diagnostics.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.PerformanceCounter/6.0.0": { + "sha512": "gbeE5tNp/oB7O8kTTLh3wPPJCxpNOphXPTWVs1BsYuFOYapFijWuh0LYw1qnDo4gwDUYPXOmpTIhvtxisGsYOQ==", + "type": "package", + "path": "system.diagnostics.performancecounter/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.PerformanceCounter.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.PerformanceCounter.dll", + "lib/net461/System.Diagnostics.PerformanceCounter.xml", + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll", + "lib/net6.0/System.Diagnostics.PerformanceCounter.xml", + "lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.dll", + "lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.xml", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.xml", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.dll", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.xml", + "system.diagnostics.performancecounter.6.0.0.nupkg.sha512", + "system.diagnostics.performancecounter.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.Tools/4.3.0": { + "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "type": "package", + "path": "system.diagnostics.tools/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.3.0.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.TraceSource/4.3.0": { + "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", + "type": "package", + "path": "system.diagnostics.tracesource/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.TraceSource.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.TraceSource.dll", + "ref/netstandard1.3/System.Diagnostics.TraceSource.dll", + "ref/netstandard1.3/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", + "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll", + "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", + "system.diagnostics.tracesource.4.3.0.nupkg.sha512", + "system.diagnostics.tracesource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "type": "package", + "path": "system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.3.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.DirectoryServices/6.0.0": { + "sha512": "kp/Op0nxDVGlElDKh8TsXO0GKXftQgAB6sJk0wUetZK1Rr0Pbd86Tn7AllLLlROFZa4BTl/LVHakljtGELFzCg==", + "type": "package", + "path": "system.directoryservices/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.DirectoryServices.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.DirectoryServices.dll", + "lib/net6.0/System.DirectoryServices.xml", + "lib/netcoreapp3.1/System.DirectoryServices.dll", + "lib/netcoreapp3.1/System.DirectoryServices.xml", + "lib/netstandard2.0/System.DirectoryServices.dll", + "lib/netstandard2.0/System.DirectoryServices.xml", + "runtimes/win/lib/net6.0/System.DirectoryServices.dll", + "runtimes/win/lib/net6.0/System.DirectoryServices.xml", + "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.dll", + "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.xml", + "system.directoryservices.6.0.0.nupkg.sha512", + "system.directoryservices.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.DirectoryServices.AccountManagement/6.0.0": { + "sha512": "2iKkY6VC4WX6H13N8WhH2SRUfWCwg2KZR5w9JIS9cw9N8cZhT7VXxHX0L6OX6Po419aSu2LWrJE9tu6b+cUnPA==", + "type": "package", + "path": "system.directoryservices.accountmanagement/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.DirectoryServices.AccountManagement.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.DirectoryServices.AccountManagement.dll", + "lib/net6.0/System.DirectoryServices.AccountManagement.xml", + "lib/netcoreapp3.1/System.DirectoryServices.AccountManagement.dll", + "lib/netcoreapp3.1/System.DirectoryServices.AccountManagement.xml", + "lib/netstandard2.0/System.DirectoryServices.AccountManagement.dll", + "lib/netstandard2.0/System.DirectoryServices.AccountManagement.xml", + "runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll", + "runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.xml", + "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.AccountManagement.dll", + "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.AccountManagement.xml", + "system.directoryservices.accountmanagement.6.0.0.nupkg.sha512", + "system.directoryservices.accountmanagement.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.DirectoryServices.Protocols/6.0.0": { + "sha512": "++WKU7HQPo/FJdhywWw+q2lLjcVAGVw5XLH9kRCV+4DvkhVAcHCksh0ezIqwNROmaU9LMJN0d/LAdeWXu3pi6Q==", + "type": "package", + "path": "system.directoryservices.protocols/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.DirectoryServices.Protocols.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.DirectoryServices.Protocols.dll", + "lib/net6.0/System.DirectoryServices.Protocols.xml", + "lib/netcoreapp3.1/System.DirectoryServices.Protocols.dll", + "lib/netcoreapp3.1/System.DirectoryServices.Protocols.xml", + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll", + "lib/netstandard2.0/System.DirectoryServices.Protocols.xml", + "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll", + "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.xml", + "runtimes/linux/lib/netcoreapp3.1/System.DirectoryServices.Protocols.dll", + "runtimes/linux/lib/netcoreapp3.1/System.DirectoryServices.Protocols.xml", + "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll", + "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.xml", + "runtimes/osx/lib/netcoreapp3.1/System.DirectoryServices.Protocols.dll", + "runtimes/osx/lib/netcoreapp3.1/System.DirectoryServices.Protocols.xml", + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll", + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.xml", + "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.Protocols.dll", + "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.Protocols.xml", + "system.directoryservices.protocols.6.0.0.nupkg.sha512", + "system.directoryservices.protocols.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Drawing.Common/6.0.0": { + "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "type": "package", + "path": "system.drawing.common/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/net461/System.Drawing.Common.xml", + "lib/net6.0/System.Drawing.Common.dll", + "lib/net6.0/System.Drawing.Common.xml", + "lib/netcoreapp3.1/System.Drawing.Common.dll", + "lib/netcoreapp3.1/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll", + "runtimes/unix/lib/net6.0/System.Drawing.Common.xml", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml", + "runtimes/win/lib/net6.0/System.Drawing.Common.dll", + "runtimes/win/lib/net6.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml", + "system.drawing.common.6.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Dynamic.Runtime/4.3.0": { + "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", + "type": "package", + "path": "system.dynamic.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/netstandard1.3/System.Dynamic.Runtime.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/System.Dynamic.Runtime.dll", + "ref/netstandard1.0/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/System.Dynamic.Runtime.dll", + "ref/netstandard1.3/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", + "system.dynamic.runtime.4.3.0.nupkg.sha512", + "system.dynamic.runtime.nuspec" + ] + }, + "System.Formats.Asn1/6.0.0": { + "sha512": "T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA==", + "type": "package", + "path": "system.formats.asn1/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Formats.Asn1.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Formats.Asn1.dll", + "lib/net461/System.Formats.Asn1.xml", + "lib/net6.0/System.Formats.Asn1.dll", + "lib/net6.0/System.Formats.Asn1.xml", + "lib/netstandard2.0/System.Formats.Asn1.dll", + "lib/netstandard2.0/System.Formats.Asn1.xml", + "system.formats.asn1.6.0.0.nupkg.sha512", + "system.formats.asn1.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.3.0": { + "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.Compression/4.3.0": { + "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "type": "package", + "path": "system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.3.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.3.0": { + "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "type": "package", + "path": "system.io.compression.zipfile/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.3.0.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.3.0": { + "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "type": "package", + "path": "system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.IO.Packaging/6.0.0": { + "sha512": "C7OkTRIjqIjAKu6ef/fuj8ynCZTPcTYZnvHaq48bniACgXXJogmEoIc56YCDNTc14xhsbLmgpS3KP+evbsUa2g==", + "type": "package", + "path": "system.io.packaging/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.IO.Packaging.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.IO.Packaging.dll", + "lib/net461/System.IO.Packaging.xml", + "lib/net6.0/System.IO.Packaging.dll", + "lib/net6.0/System.IO.Packaging.xml", + "lib/netstandard2.0/System.IO.Packaging.dll", + "lib/netstandard2.0/System.IO.Packaging.xml", + "system.io.packaging.6.0.0.nupkg.sha512", + "system.io.packaging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.IO.Ports/6.0.0": { + "sha512": "dRyGI7fUESar5ZLIpiBOaaNLW7YyOBGftjj5Of+xcduC/Rjl7RjhEnWDvvNBmHuF3d0tdXoqdVI/yrVA8f00XA==", + "type": "package", + "path": "system.io.ports/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.IO.Ports.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.IO.Ports.dll", + "lib/net461/System.IO.Ports.xml", + "lib/net6.0/System.IO.Ports.dll", + "lib/net6.0/System.IO.Ports.xml", + "lib/netstandard2.0/System.IO.Ports.dll", + "lib/netstandard2.0/System.IO.Ports.xml", + "runtimes/unix/lib/net6.0/System.IO.Ports.dll", + "runtimes/unix/lib/net6.0/System.IO.Ports.xml", + "runtimes/unix/lib/netstandard2.0/System.IO.Ports.dll", + "runtimes/unix/lib/netstandard2.0/System.IO.Ports.xml", + "runtimes/win/lib/net461/System.IO.Ports.dll", + "runtimes/win/lib/net461/System.IO.Ports.xml", + "runtimes/win/lib/net6.0/System.IO.Ports.dll", + "runtimes/win/lib/net6.0/System.IO.Ports.xml", + "runtimes/win/lib/netstandard2.0/System.IO.Ports.dll", + "runtimes/win/lib/netstandard2.0/System.IO.Ports.xml", + "system.io.ports.6.0.0.nupkg.sha512", + "system.io.ports.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Expressions/4.3.0": { + "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "type": "package", + "path": "system.linq.expressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.3.0.nupkg.sha512", + "system.linq.expressions.nuspec" + ] + }, + "System.Management/6.0.0": { + "sha512": "sHsESYMmPDhQuOC66h6AEOs/XowzKsbT9srMbX71TCXP58hkpn1BqBjdmKj1+DCA/WlBETX1K5WjQHwmV0Txrg==", + "type": "package", + "path": "system.management/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Management.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.Management.dll", + "lib/net6.0/System.Management.xml", + "lib/netcoreapp3.1/System.Management.dll", + "lib/netcoreapp3.1/System.Management.xml", + "lib/netstandard2.0/System.Management.dll", + "lib/netstandard2.0/System.Management.xml", + "runtimes/win/lib/net6.0/System.Management.dll", + "runtimes/win/lib/net6.0/System.Management.xml", + "runtimes/win/lib/netcoreapp3.1/System.Management.dll", + "runtimes/win/lib/netcoreapp3.1/System.Management.xml", + "system.management.6.0.0.nupkg.sha512", + "system.management.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Management.Automation/7.2.1": { + "sha512": "YlTE+q14vQ1YU//A5+/Jwl5+L5r6uOVIWuB4D/T9r80AaCeUAZMMvTKjgvIr9lwkovwQflVL+1JfBAi9f0q0KA==", + "type": "package", + "path": "system.management.automation/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/unix/lib/net6.0/System.Management.Automation.dll", + "runtimes/win/lib/net6.0/System.Management.Automation.dll", + "system.management.automation.7.2.1.nupkg.sha512", + "system.management.automation.nuspec" + ] + }, + "System.Memory/4.5.4": { + "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "type": "package", + "path": "system.memory/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/System.Memory.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.4.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Http/4.3.0": { + "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "type": "package", + "path": "system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.Http.WinHttpHandler/6.0.0": { + "sha512": "jubNN9jH4NzVrvEf4fGwESLBsfH8whWNbHMhgM6IwA8UCt6+/M19bbOHc21JhigvC2HQKCl8HKGZMcBtIpzqIg==", + "type": "package", + "path": "system.net.http.winhttphandler/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Net.Http.WinHttpHandler.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Net.Http.WinHttpHandler.dll", + "lib/net461/System.Net.Http.WinHttpHandler.xml", + "lib/net6.0/System.Net.Http.WinHttpHandler.dll", + "lib/net6.0/System.Net.Http.WinHttpHandler.xml", + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll", + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.xml", + "lib/netstandard2.1/System.Net.Http.WinHttpHandler.dll", + "lib/netstandard2.1/System.Net.Http.WinHttpHandler.xml", + "runtimes/win/lib/net461/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/net461/System.Net.Http.WinHttpHandler.xml", + "runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.xml", + "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.xml", + "runtimes/win/lib/netstandard2.1/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/netstandard2.1/System.Net.Http.WinHttpHandler.xml", + "system.net.http.winhttphandler.6.0.0.nupkg.sha512", + "system.net.http.winhttphandler.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Sockets/4.3.0": { + "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "type": "package", + "path": "system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.3.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.Numerics.Vectors/4.5.0": { + "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "type": "package", + "path": "system.numerics.vectors/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Numerics.Vectors.dll", + "lib/net46/System.Numerics.Vectors.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.Numerics.Vectors.dll", + "lib/netstandard1.0/System.Numerics.Vectors.xml", + "lib/netstandard2.0/System.Numerics.Vectors.dll", + "lib/netstandard2.0/System.Numerics.Vectors.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.Numerics.Vectors.dll", + "ref/net45/System.Numerics.Vectors.xml", + "ref/net46/System.Numerics.Vectors.dll", + "ref/net46/System.Numerics.Vectors.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/System.Numerics.Vectors.dll", + "ref/netstandard1.0/System.Numerics.Vectors.xml", + "ref/netstandard2.0/System.Numerics.Vectors.dll", + "ref/netstandard2.0/System.Numerics.Vectors.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.numerics.vectors.4.5.0.nupkg.sha512", + "system.numerics.vectors.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ObjectModel/4.3.0": { + "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "type": "package", + "path": "system.objectmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.3.0.nupkg.sha512", + "system.objectmodel.nuspec" + ] + }, + "System.Private.ServiceModel/4.9.0": { + "sha512": "d3RjkrtpjUQ63PzFmm/SZ4aOXeJNP+8YW5QeP0lCJy8iX4xlHdlNLWTF9sRn9SmrFTK757kQXT9Op/R4l858uw==", + "type": "package", + "path": "system.private.servicemodel/4.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard2.0/System.Private.ServiceModel.dll", + "lib/netstandard2.0/System.Private.ServiceModel.pdb", + "lib/netstandard2.0/cs/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/de/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/es/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/fr/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/it/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/ja/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/ko/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/pl/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/pt-BR/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/ru/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/tr/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/zh-Hans/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/zh-Hant/System.Private.ServiceModel.resources.dll", + "ref/netstandard2.0/_._", + "system.private.servicemodel.4.9.0.nupkg.sha512", + "system.private.servicemodel.nuspec" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Context/6.0.0": { + "sha512": "Vi+Gb41oyOYie7uLSsjRmfRg3bryUg5DssJvj3gDUl0D8z6ipSm6/yi/XNx2rcS5iVMvHcwRUHjcx7ixv0K3/w==", + "type": "package", + "path": "system.reflection.context/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Reflection.Context.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.Reflection.Context.dll", + "lib/net6.0/System.Reflection.Context.xml", + "lib/netstandard2.0/System.Reflection.Context.dll", + "lib/netstandard2.0/System.Reflection.Context.xml", + "lib/netstandard2.1/System.Reflection.Context.dll", + "lib/netstandard2.1/System.Reflection.Context.xml", + "system.reflection.context.6.0.0.nupkg.sha512", + "system.reflection.context.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Reflection.DispatchProxy/4.7.1": { + "sha512": "C1sMLwIG6ILQ2bmOT4gh62V6oJlyF4BlHcVMrOoor49p0Ji2tA8QAoqyMcIhAdH6OHKJ8m7BU+r4LK2CUEOKqw==", + "type": "package", + "path": "system.reflection.dispatchproxy/4.7.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Reflection.DispatchProxy.dll", + "lib/net461/System.Reflection.DispatchProxy.xml", + "lib/netcoreapp2.0/System.Reflection.DispatchProxy.dll", + "lib/netcoreapp2.0/System.Reflection.DispatchProxy.xml", + "lib/netstandard1.3/System.Reflection.DispatchProxy.dll", + "lib/netstandard2.0/System.Reflection.DispatchProxy.dll", + "lib/netstandard2.0/System.Reflection.DispatchProxy.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Reflection.DispatchProxy.dll", + "ref/net461/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/System.Reflection.DispatchProxy.dll", + "ref/netstandard1.3/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/de/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/es/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/fr/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/it/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ja/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ko/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ru/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.DispatchProxy.xml", + "ref/netstandard2.0/System.Reflection.DispatchProxy.dll", + "ref/netstandard2.0/System.Reflection.DispatchProxy.xml", + "ref/uap10.0.16299/System.Reflection.DispatchProxy.dll", + "ref/uap10.0.16299/System.Reflection.DispatchProxy.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll", + "runtimes/win-aot/lib/uap10.0.16299/System.Reflection.DispatchProxy.dll", + "runtimes/win/lib/uap10.0.16299/System.Reflection.DispatchProxy.dll", + "system.reflection.dispatchproxy.4.7.1.nupkg.sha512", + "system.reflection.dispatchproxy.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Emit/4.3.0": { + "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.3.0": { + "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "type": "package", + "path": "system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.3.0.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Metadata/5.0.0": { + "sha512": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==", + "type": "package", + "path": "system.reflection.metadata/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Reflection.Metadata.dll", + "lib/net461/System.Reflection.Metadata.xml", + "lib/netstandard1.1/System.Reflection.Metadata.dll", + "lib/netstandard1.1/System.Reflection.Metadata.xml", + "lib/netstandard2.0/System.Reflection.Metadata.dll", + "lib/netstandard2.0/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.5.0.0.nupkg.sha512", + "system.reflection.metadata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.3.0": { + "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "type": "package", + "path": "system.reflection.typeextensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net462/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net462/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.3.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Caching/6.0.0": { + "sha512": "E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==", + "type": "package", + "path": "system.runtime.caching/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.Caching.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/_._", + "lib/net6.0/System.Runtime.Caching.dll", + "lib/net6.0/System.Runtime.Caching.xml", + "lib/netcoreapp3.1/System.Runtime.Caching.dll", + "lib/netcoreapp3.1/System.Runtime.Caching.xml", + "lib/netstandard2.0/System.Runtime.Caching.dll", + "lib/netstandard2.0/System.Runtime.Caching.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net461/_._", + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll", + "runtimes/win/lib/net6.0/System.Runtime.Caching.xml", + "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.dll", + "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.xml", + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll", + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml", + "system.runtime.caching.6.0.0.nupkg.sha512", + "system.runtime.caching.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Numerics/4.3.0": { + "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "type": "package", + "path": "system.runtime.numerics/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.3.0.nupkg.sha512", + "system.runtime.numerics.nuspec" + ] + }, + "System.Security.AccessControl/6.0.0": { + "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "type": "package", + "path": "system.security.accesscontrol/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/net6.0/System.Security.AccessControl.dll", + "lib/net6.0/System.Security.AccessControl.xml", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll", + "runtimes/win/lib/net6.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml", + "system.security.accesscontrol.6.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.3.0": { + "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "type": "package", + "path": "system.security.cryptography.cng/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net463/System.Security.Cryptography.Cng.dll", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net463/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "system.security.cryptography.cng.4.3.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec" + ] + }, + "System.Security.Cryptography.Csp/4.3.0": { + "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "type": "package", + "path": "system.security.cryptography.csp/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "system.security.cryptography.csp.4.3.0.nupkg.sha512", + "system.security.cryptography.csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "type": "package", + "path": "system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "system.security.cryptography.openssl.nuspec" + ] + }, + "System.Security.Cryptography.Pkcs/6.0.0": { + "sha512": "elM3x+xSRhzQysiqo85SbidJJ2YbZlnvmh+53TuSZHsD7dNuuEWser+9EFtY+rYupBwkq2avc6ZCO3/6qACgmg==", + "type": "package", + "path": "system.security.cryptography.pkcs/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Cryptography.Pkcs.dll", + "lib/net461/System.Security.Cryptography.Pkcs.xml", + "lib/net6.0/System.Security.Cryptography.Pkcs.dll", + "lib/net6.0/System.Security.Cryptography.Pkcs.xml", + "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll", + "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml", + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml", + "system.security.cryptography.pkcs.6.0.0.nupkg.sha512", + "system.security.cryptography.pkcs.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "type": "package", + "path": "system.security.cryptography.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "type": "package", + "path": "system.security.cryptography.protecteddata/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.xml", + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Cryptography.Xml/6.0.0": { + "sha512": "puJ4UCh9JVRwOCyCIcq71JY6Axr8Sp8E2GjTIU1Fj8hm4+oX6NEoyGFGa/+pBG8SrVxbQPSj7hvtaREyTHHsmw==", + "type": "package", + "path": "system.security.cryptography.xml/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Xml.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Cryptography.Xml.dll", + "lib/net461/System.Security.Cryptography.Xml.xml", + "lib/net6.0/System.Security.Cryptography.Xml.dll", + "lib/net6.0/System.Security.Cryptography.Xml.xml", + "lib/netstandard2.0/System.Security.Cryptography.Xml.dll", + "lib/netstandard2.0/System.Security.Cryptography.Xml.xml", + "runtimes/win/lib/net461/System.Security.Cryptography.Xml.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Xml.xml", + "system.security.cryptography.xml.6.0.0.nupkg.sha512", + "system.security.cryptography.xml.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Permissions/6.0.0": { + "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "type": "package", + "path": "system.security.permissions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/net5.0/System.Security.Permissions.dll", + "lib/net5.0/System.Security.Permissions.xml", + "lib/net6.0/System.Security.Permissions.dll", + "lib/net6.0/System.Security.Permissions.xml", + "lib/netcoreapp3.1/System.Security.Permissions.dll", + "lib/netcoreapp3.1/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "runtimes/win/lib/net461/System.Security.Permissions.dll", + "runtimes/win/lib/net461/System.Security.Permissions.xml", + "system.security.permissions.6.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Principal.Windows/5.0.0": { + "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "type": "package", + "path": "system.security.principal.windows/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.5.0.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ServiceModel.Duplex/4.9.0": { + "sha512": "Yb8MFiJxBBtm2JnfS/5SxYzm2HqkEmHu5xeaVIHXy83sNpty9wc30JifH2xgda821D6nr1UctbwbdZqN4LBUKQ==", + "type": "package", + "path": "system.servicemodel.duplex/4.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ServiceModel.Duplex.dll", + "lib/net461/System.ServiceModel.Duplex.pdb", + "lib/net6.0/System.ServiceModel.Duplex.dll", + "lib/net6.0/System.ServiceModel.Duplex.pdb", + "lib/netcore50/System.ServiceModel.Duplex.dll", + "lib/netstandard1.3/System.ServiceModel.Duplex.dll", + "lib/netstandard2.0/System.ServiceModel.Duplex.dll", + "lib/netstandard2.0/System.ServiceModel.Duplex.pdb", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ServiceModel.Duplex.dll", + "ref/net6.0/System.ServiceModel.Duplex.dll", + "ref/netcore50/System.ServiceModel.Duplex.dll", + "ref/netstandard1.1/System.ServiceModel.Duplex.dll", + "ref/netstandard2.0/System.ServiceModel.Duplex.dll", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.servicemodel.duplex.4.9.0.nupkg.sha512", + "system.servicemodel.duplex.nuspec" + ] + }, + "System.ServiceModel.Http/4.9.0": { + "sha512": "Z+s3RkLNzJ31fDXAjqXdXp67FqsNG4V3Md3r7FOrzMkHmg61gY8faEfTFPBLxU9tax1HPWt6IHVAquXBKySJaw==", + "type": "package", + "path": "system.servicemodel.http/4.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.ServiceModel.Http.dll", + "lib/net461/System.ServiceModel.Http.dll", + "lib/net461/System.ServiceModel.Http.pdb", + "lib/net6.0/System.ServiceModel.Http.dll", + "lib/net6.0/System.ServiceModel.Http.pdb", + "lib/netcore50/System.ServiceModel.Http.dll", + "lib/netstandard1.3/System.ServiceModel.Http.dll", + "lib/netstandard2.0/System.ServiceModel.Http.dll", + "lib/netstandard2.0/System.ServiceModel.Http.pdb", + "lib/portable-net45+win8+wp8/_._", + "lib/win8/_._", + "lib/wp8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.ServiceModel.Http.dll", + "ref/net461/System.ServiceModel.Http.dll", + "ref/net6.0/System.ServiceModel.Http.dll", + "ref/netcore50/System.ServiceModel.Http.dll", + "ref/netstandard1.0/System.ServiceModel.Http.dll", + "ref/netstandard1.1/System.ServiceModel.Http.dll", + "ref/netstandard1.3/System.ServiceModel.Http.dll", + "ref/netstandard2.0/System.ServiceModel.Http.dll", + "ref/portable-net45+win8+wp8/_._", + "ref/win8/_._", + "ref/wp8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.servicemodel.http.4.9.0.nupkg.sha512", + "system.servicemodel.http.nuspec" + ] + }, + "System.ServiceModel.NetTcp/4.9.0": { + "sha512": "nXgnnkrZERUF/KwmoLwZPkc7fqgiq94DXkmUZBvDNh/LdZquDvjy2NbhJLElpApOa5x8zEoQoBZyJ2PqNC39qg==", + "type": "package", + "path": "system.servicemodel.nettcp/4.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.ServiceModel.NetTcp.dll", + "lib/net461/System.ServiceModel.NetTcp.dll", + "lib/net461/System.ServiceModel.NetTcp.pdb", + "lib/net6.0/System.ServiceModel.NetTcp.dll", + "lib/net6.0/System.ServiceModel.NetTcp.pdb", + "lib/netcore50/System.ServiceModel.NetTcp.dll", + "lib/netstandard1.3/System.ServiceModel.NetTcp.dll", + "lib/netstandard2.0/System.ServiceModel.NetTcp.dll", + "lib/netstandard2.0/System.ServiceModel.NetTcp.pdb", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.ServiceModel.NetTcp.dll", + "ref/net461/System.ServiceModel.NetTcp.dll", + "ref/net6.0/System.ServiceModel.NetTcp.dll", + "ref/netcore50/System.ServiceModel.NetTcp.dll", + "ref/netstandard1.1/System.ServiceModel.NetTcp.dll", + "ref/netstandard1.3/System.ServiceModel.NetTcp.dll", + "ref/netstandard2.0/System.ServiceModel.NetTcp.dll", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.servicemodel.nettcp.4.9.0.nupkg.sha512", + "system.servicemodel.nettcp.nuspec" + ] + }, + "System.ServiceModel.Primitives/4.9.0": { + "sha512": "LTFPVdS8Nf76xg/wRZkDa+2Q+GnjTOmwkTlwuoetwX37mAfYnGkf7p8ydhpDwVmomNljpUOhUUGxfjQyd5YcOg==", + "type": "package", + "path": "system.servicemodel.primitives/4.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.ServiceModel.Primitives.dll", + "lib/net461/System.ServiceModel.Primitives.dll", + "lib/net461/System.ServiceModel.Primitives.pdb", + "lib/net6.0/System.ServiceModel.Primitives.dll", + "lib/net6.0/System.ServiceModel.Primitives.pdb", + "lib/net6.0/System.ServiceModel.dll", + "lib/netcore50/System.ServiceModel.Primitives.dll", + "lib/netcoreapp2.1/System.ServiceModel.Primitives.dll", + "lib/netcoreapp2.1/System.ServiceModel.Primitives.pdb", + "lib/netcoreapp2.1/System.ServiceModel.dll", + "lib/netstandard1.3/System.ServiceModel.Primitives.dll", + "lib/netstandard2.0/System.ServiceModel.Primitives.dll", + "lib/netstandard2.0/System.ServiceModel.Primitives.pdb", + "lib/netstandard2.0/System.ServiceModel.dll", + "lib/portable-net45+win8+wp8/_._", + "lib/win8/_._", + "lib/wp8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.ServiceModel.Primitives.dll", + "ref/net461/System.ServiceModel.Primitives.dll", + "ref/net6.0/System.ServiceModel.Primitives.dll", + "ref/net6.0/System.ServiceModel.dll", + "ref/netcore50/System.ServiceModel.Primitives.dll", + "ref/netcoreapp2.1/System.ServiceModel.Primitives.dll", + "ref/netcoreapp2.1/System.ServiceModel.dll", + "ref/netstandard1.0/System.ServiceModel.Primitives.dll", + "ref/netstandard1.1/System.ServiceModel.Primitives.dll", + "ref/netstandard1.3/System.ServiceModel.Primitives.dll", + "ref/netstandard2.0/System.ServiceModel.Primitives.dll", + "ref/netstandard2.0/System.ServiceModel.dll", + "ref/portable-net45+win8+wp8/_._", + "ref/win8/_._", + "ref/wp8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.servicemodel.primitives.4.9.0.nupkg.sha512", + "system.servicemodel.primitives.nuspec" + ] + }, + "System.ServiceModel.Security/4.9.0": { + "sha512": "iurpbSmPgotHps94VQ6acvL6hU2gjiuBmQI7PwLLN76jsbSpUcahT0PglccKIAwoMujATk/LWtAapBHpwCFn2g==", + "type": "package", + "path": "system.servicemodel.security/4.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ServiceModel.Security.dll", + "lib/net461/System.ServiceModel.Security.pdb", + "lib/net6.0/System.ServiceModel.Security.dll", + "lib/net6.0/System.ServiceModel.Security.pdb", + "lib/netcore50/System.ServiceModel.Security.dll", + "lib/netstandard1.3/System.ServiceModel.Security.dll", + "lib/netstandard2.0/System.ServiceModel.Security.dll", + "lib/netstandard2.0/System.ServiceModel.Security.pdb", + "lib/portable-net45+win8+wp8/_._", + "lib/win8/_._", + "lib/wp8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ServiceModel.Security.dll", + "ref/net6.0/System.ServiceModel.Security.dll", + "ref/netcore50/System.ServiceModel.Security.dll", + "ref/netstandard1.0/System.ServiceModel.Security.dll", + "ref/netstandard1.1/System.ServiceModel.Security.dll", + "ref/netstandard2.0/System.ServiceModel.Security.dll", + "ref/portable-net45+win8+wp8/_._", + "ref/win8/_._", + "ref/wp8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.servicemodel.security.4.9.0.nupkg.sha512", + "system.servicemodel.security.nuspec" + ] + }, + "System.ServiceModel.Syndication/6.0.0": { + "sha512": "cp1mMNG87iJtE0oHXFtfWT6cfski2JNo5iU0siTPi/uN2k1CIJI6FE4jr4v3got2dzt7wBq17fSy44btun9GiA==", + "type": "package", + "path": "system.servicemodel.syndication/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.ServiceModel.Syndication.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.ServiceModel.Syndication.dll", + "lib/net461/System.ServiceModel.Syndication.xml", + "lib/net6.0/System.ServiceModel.Syndication.dll", + "lib/net6.0/System.ServiceModel.Syndication.xml", + "lib/netcoreapp3.1/System.ServiceModel.Syndication.dll", + "lib/netcoreapp3.1/System.ServiceModel.Syndication.xml", + "lib/netstandard2.0/System.ServiceModel.Syndication.dll", + "lib/netstandard2.0/System.ServiceModel.Syndication.xml", + "system.servicemodel.syndication.6.0.0.nupkg.sha512", + "system.servicemodel.syndication.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.ServiceProcess.ServiceController/6.0.0": { + "sha512": "qMBvG8ZFbkXoe0Z5/D7FAAadfPkH2v7vSuh2xsLf3U6jNoejpIdeV18A0htiASsLK1CCAc/p59kaLXlt2yB1gw==", + "type": "package", + "path": "system.serviceprocess.servicecontroller/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.ServiceProcess.ServiceController.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.ServiceProcess.ServiceController.dll", + "lib/net461/System.ServiceProcess.ServiceController.xml", + "lib/net6.0/System.ServiceProcess.ServiceController.dll", + "lib/net6.0/System.ServiceProcess.ServiceController.xml", + "lib/netcoreapp3.1/System.ServiceProcess.ServiceController.dll", + "lib/netcoreapp3.1/System.ServiceProcess.ServiceController.xml", + "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll", + "lib/netstandard2.0/System.ServiceProcess.ServiceController.xml", + "runtimes/win/lib/net461/System.ServiceProcess.ServiceController.dll", + "runtimes/win/lib/net461/System.ServiceProcess.ServiceController.xml", + "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll", + "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.xml", + "runtimes/win/lib/netcoreapp3.1/System.ServiceProcess.ServiceController.dll", + "runtimes/win/lib/netcoreapp3.1/System.ServiceProcess.ServiceController.xml", + "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.dll", + "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.xml", + "system.serviceprocess.servicecontroller.6.0.0.nupkg.sha512", + "system.serviceprocess.servicecontroller.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Speech/6.0.0": { + "sha512": "GQovERMrNP0Vbtgk8LzH4PlFS6lqHgsL9WkUmv8Kkxa0m0vNakitytpHZlfJ9WR7n9WKLXh68nn2kyL9mflnLg==", + "type": "package", + "path": "system.speech/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Speech.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.Speech.dll", + "lib/net6.0/System.Speech.xml", + "lib/netcoreapp3.1/System.Speech.dll", + "lib/netcoreapp3.1/System.Speech.xml", + "lib/netstandard2.0/System.Speech.dll", + "lib/netstandard2.0/System.Speech.xml", + "runtimes/win/lib/net6.0/System.Speech.dll", + "runtimes/win/lib/net6.0/System.Speech.xml", + "runtimes/win/lib/netcoreapp3.1/System.Speech.dll", + "runtimes/win/lib/netcoreapp3.1/System.Speech.xml", + "system.speech.6.0.0.nupkg.sha512", + "system.speech.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.CodePages/6.0.0": { + "sha512": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", + "type": "package", + "path": "system.text.encoding.codepages/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.xml", + "lib/net6.0/System.Text.Encoding.CodePages.dll", + "lib/net6.0/System.Text.Encoding.CodePages.xml", + "lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll", + "lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "system.text.encoding.codepages.6.0.0.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "type": "package", + "path": "system.text.encoding.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.Encodings.Web/6.0.0": { + "sha512": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "type": "package", + "path": "system.text.encodings.web/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Text.Encodings.Web.dll", + "lib/net461/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/netcoreapp3.1/System.Text.Encodings.Web.dll", + "lib/netcoreapp3.1/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.6.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.RegularExpressions/4.3.0": { + "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "type": "package", + "path": "system.text.regularexpressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.AccessControl/6.0.0": { + "sha512": "2258mqWesMch/xCpcnjJBgJP33yhpZLGLbEOm01qwq0efG4b+NG8c9sxYOWNxmDQ82swXrnQRl1Yp2wC1NrfZA==", + "type": "package", + "path": "system.threading.accesscontrol/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Threading.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Threading.AccessControl.dll", + "lib/net461/System.Threading.AccessControl.xml", + "lib/net6.0/System.Threading.AccessControl.dll", + "lib/net6.0/System.Threading.AccessControl.xml", + "lib/netstandard2.0/System.Threading.AccessControl.dll", + "lib/netstandard2.0/System.Threading.AccessControl.xml", + "runtimes/win/lib/net461/System.Threading.AccessControl.dll", + "runtimes/win/lib/net461/System.Threading.AccessControl.xml", + "runtimes/win/lib/net6.0/System.Threading.AccessControl.dll", + "runtimes/win/lib/net6.0/System.Threading.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/System.Threading.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.Threading.AccessControl.xml", + "system.threading.accesscontrol.6.0.0.nupkg.sha512", + "system.threading.accesscontrol.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Threading.Tasks.Extensions.dll", + "lib/net461/System.Threading.Tasks.Extensions.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netcoreapp2.1/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Timer/4.3.0": { + "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "type": "package", + "path": "system.threading.timer/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.3.0.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.Web.Services.Description/4.9.0": { + "sha512": "d20B3upsWddwSG5xF3eQLs0cAV3tXDsBNqP4kh02ylfgZwqfpf4f/9KiZVIGIoxULt2cKqxWs+U4AdNAJ7L8cQ==", + "type": "package", + "path": "system.web.services.description/4.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Web.Services.Description.dll", + "lib/net461/System.Web.Services.Description.pdb", + "lib/netstandard2.0/System.Web.Services.Description.dll", + "lib/netstandard2.0/System.Web.Services.Description.pdb", + "lib/netstandard2.0/cs/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/de/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/es/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/fr/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/it/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/ja/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/ko/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/pl/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/pt-BR/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/ru/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/tr/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/zh-Hans/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/zh-Hant/System.Web.Services.Description.resources.dll", + "system.web.services.description.4.9.0.nupkg.sha512", + "system.web.services.description.nuspec" + ] + }, + "System.Windows.Extensions/6.0.0": { + "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "type": "package", + "path": "system.windows.extensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/System.Windows.Extensions.dll", + "lib/net6.0/System.Windows.Extensions.xml", + "lib/netcoreapp3.1/System.Windows.Extensions.dll", + "lib/netcoreapp3.1/System.Windows.Extensions.xml", + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net6.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml", + "system.windows.extensions.6.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Xml.ReaderWriter/4.3.0": { + "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "type": "package", + "path": "system.xml.readerwriter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.3.0.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.3.0": { + "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "type": "package", + "path": "system.xml.xdocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.3.0.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.3.0": { + "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "type": "package", + "path": "system.xml.xmldocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xmldocument.4.3.0.nupkg.sha512", + "system.xml.xmldocument.nuspec" + ] + }, + "Typin/3.1.0": { + "sha512": "BV/TvL7a2c8FHBFc3YiWEzQua2NitFY5JnE30zJxo2nQrHeZuJYruZ7H+sT+/cnBLjsDr/mUpYtIS1HRTJQ3xg==", + "type": "package", + "path": "typin/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Typin.dll", + "lib/net5.0/Typin.xml", + "lib/net6.0/Typin.dll", + "lib/net6.0/Typin.xml", + "lib/netstandard2.0/Typin.dll", + "lib/netstandard2.0/Typin.xml", + "lib/netstandard2.1/Typin.dll", + "lib/netstandard2.1/Typin.xml", + "typin-favicon-64px.png", + "typin.3.1.0.nupkg.sha512", + "typin.nuspec" + ] + }, + "Typin.Core/3.1.0": { + "sha512": "0M44paHjcQuVTMCyfySqklbfVcQ38GfFGBkeKz0E+zhXdV0wD9tI5GwZdjUPOGlqhOmP7CHh452JSgJK2hc57A==", + "type": "package", + "path": "typin.core/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Typin.Core.dll", + "lib/net5.0/Typin.Core.xml", + "lib/net6.0/Typin.Core.dll", + "lib/net6.0/Typin.Core.xml", + "lib/netstandard2.0/Typin.Core.dll", + "lib/netstandard2.0/Typin.Core.xml", + "lib/netstandard2.1/Typin.Core.dll", + "lib/netstandard2.1/Typin.Core.xml", + "typin-favicon-64px.png", + "typin.core.3.1.0.nupkg.sha512", + "typin.core.nuspec" + ] + }, + "xunit/2.4.1": { + "sha512": "XNR3Yz9QTtec16O0aKcO6+baVNpXmOnPUxDkCY97J+8krUYxPvXT1szYYEUdKk4sB8GOI2YbAjRIOm8ZnXRfzQ==", + "type": "package", + "path": "xunit/2.4.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "xunit.2.4.1.nupkg.sha512", + "xunit.nuspec" + ] + }, + "xunit.abstractions/2.0.3": { + "sha512": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", + "type": "package", + "path": "xunit.abstractions/2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/netstandard1.0/xunit.abstractions.dll", + "lib/netstandard1.0/xunit.abstractions.xml", + "lib/netstandard2.0/xunit.abstractions.dll", + "lib/netstandard2.0/xunit.abstractions.xml", + "xunit.abstractions.2.0.3.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.analyzers/0.10.0": { + "sha512": "4/IDFCJfIeg6bix9apmUtIMwvOsiwqdEexeO/R2D4GReIGPLIRODTpId/l4LRSrAJk9lEO3Zx1H0Zx6uohJDNg==", + "type": "package", + "path": "xunit.analyzers/0.10.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "analyzers/dotnet/cs/xunit.analyzers.dll", + "tools/install.ps1", + "tools/uninstall.ps1", + "xunit.analyzers.0.10.0.nupkg.sha512", + "xunit.analyzers.nuspec" + ] + }, + "xunit.assert/2.4.1": { + "sha512": "O/Oe0BS5RmSsM+LQOb041TzuPo5MdH2Rov+qXGS37X+KFG1Hxz7kopYklM5+1Y+tRGeXrOx5+Xne1RuqLFQoyQ==", + "type": "package", + "path": "xunit.assert/2.4.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard1.1/xunit.assert.dll", + "lib/netstandard1.1/xunit.assert.xml", + "xunit.assert.2.4.1.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.core/2.4.1": { + "sha512": "Zsj5OMU6JasNGERXZy8s72+pcheG6Q15atS5XpZXqAtULuyQiQ6XNnUsp1gyfC6WgqScqMvySiEHmHcOG6Eg0Q==", + "type": "package", + "path": "xunit.core/2.4.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/xunit.core.props", + "build/xunit.core.targets", + "buildMultiTargeting/xunit.core.props", + "buildMultiTargeting/xunit.core.targets", + "xunit.core.2.4.1.nupkg.sha512", + "xunit.core.nuspec" + ] + }, + "xunit.extensibility.core/2.4.1": { + "sha512": "yKZKm/8QNZnBnGZFD9SewkllHBiK0DThybQD/G4PiAmQjKtEZyHi6ET70QPU9KtSMJGRYS6Syk7EyR2EVDU4Kg==", + "type": "package", + "path": "xunit.extensibility.core/2.4.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/xunit.core.dll", + "lib/net452/xunit.core.dll.tdnet", + "lib/net452/xunit.core.xml", + "lib/net452/xunit.runner.tdnet.dll", + "lib/net452/xunit.runner.utility.net452.dll", + "lib/netstandard1.1/xunit.core.dll", + "lib/netstandard1.1/xunit.core.xml", + "xunit.extensibility.core.2.4.1.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.4.1": { + "sha512": "7e/1jqBpcb7frLkB6XDrHCGXAbKN4Rtdb88epYxCSRQuZDRW8UtTfdTEVpdTl8s4T56e07hOBVd4G0OdCxIY2A==", + "type": "package", + "path": "xunit.extensibility.execution/2.4.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/xunit.execution.desktop.dll", + "lib/net452/xunit.execution.desktop.xml", + "lib/netstandard1.1/xunit.execution.dotnet.dll", + "lib/netstandard1.1/xunit.execution.dotnet.xml", + "xunit.extensibility.execution.2.4.1.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.runner.visualstudio/2.4.3": { + "sha512": "kZZSmOmKA8OBlAJaquPXnJJLM9RwQ27H7BMVqfMLUcTi9xHinWGJiWksa3D4NEtz0wZ/nxd2mogObvBgJKCRhQ==", + "type": "package", + "path": "xunit.runner.visualstudio/2.4.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "License.txt", + "build/net452/xunit.abstractions.dll", + "build/net452/xunit.runner.reporters.net452.dll", + "build/net452/xunit.runner.utility.net452.dll", + "build/net452/xunit.runner.visualstudio.props", + "build/net452/xunit.runner.visualstudio.testadapter.dll", + "build/netcoreapp2.1/xunit.abstractions.dll", + "build/netcoreapp2.1/xunit.runner.reporters.netcoreapp10.dll", + "build/netcoreapp2.1/xunit.runner.utility.netcoreapp10.dll", + "build/netcoreapp2.1/xunit.runner.visualstudio.dotnetcore.testadapter.dll", + "build/netcoreapp2.1/xunit.runner.visualstudio.props", + "build/uap10.0.16299/xunit.runner.reporters.netstandard15.dll", + "build/uap10.0.16299/xunit.runner.utility.netstandard15.dll", + "build/uap10.0.16299/xunit.runner.utility.uwp10.dll", + "build/uap10.0.16299/xunit.runner.utility.uwp10.pri", + "build/uap10.0.16299/xunit.runner.visualstudio.props", + "build/uap10.0.16299/xunit.runner.visualstudio.targets", + "build/uap10.0.16299/xunit.runner.visualstudio.uwp.testadapter.dll", + "build/uap10.0.16299/xunit.runner.visualstudio.uwp.testadapter.pri", + "logo-512-transparent.png", + "xunit.runner.visualstudio.2.4.3.nupkg.sha512", + "xunit.runner.visualstudio.nuspec" + ] + }, + "YamlDotNet/11.2.1": { + "sha512": "tBt8K+korVfrjH9wyDEhiLKxbs8qoLCLIFwvYgkSUuMC9//w3z0cFQ8LQAI/5MCKq+BMil0cfRTRvPeE7eXhQw==", + "type": "package", + "path": "yamldotnet/11.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "images/yamldotnet.png", + "lib/net20/YamlDotNet.dll", + "lib/net20/YamlDotNet.xml", + "lib/net35-client/YamlDotNet.dll", + "lib/net35-client/YamlDotNet.xml", + "lib/net35/YamlDotNet.dll", + "lib/net35/YamlDotNet.xml", + "lib/net45/YamlDotNet.dll", + "lib/net45/YamlDotNet.xml", + "lib/netstandard1.3/YamlDotNet.dll", + "lib/netstandard1.3/YamlDotNet.xml", + "lib/netstandard2.1/YamlDotNet.dll", + "lib/netstandard2.1/YamlDotNet.xml", + "yamldotnet.11.2.1.nupkg.sha512", + "yamldotnet.nuspec" + ] + }, + "Core.Test/1.0.0": { + "type": "project", + "path": "../Core.Test/Core.Test.csproj", + "msbuildProject": "../Core.Test/Core.Test.csproj" + }, + "Linguard.Cli/2.0.0": { + "type": "project", + "path": "../Cli/Cli.csproj", + "msbuildProject": "../Cli/Cli.csproj" + }, + "Linguard.Core/2.0.0": { + "type": "project", + "path": "../Core/Core.csproj", + "msbuildProject": "../Core/Core.csproj" + }, + "Linguard.Log/2.0.0": { + "type": "project", + "path": "../Log/Log.csproj", + "msbuildProject": "../Log/Log.csproj" + } + }, + "projectFileDependencyGroups": { + "net6.0": [ + "Core.Test >= 1.0.0", + "FluentAssertions >= 6.4.0", + "Linguard.Cli >= 2.0.0", + "Microsoft.NET.Test.Sdk >= 16.11.0", + "Moq >= 4.16.1", + "coverlet.msbuild >= 3.1.2", + "xunit >= 2.4.1", + "xunit.runner.visualstudio >= 2.4.3" + ] + }, + "packageFolders": { + "C:\\Users\\theyu\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli.Test\\Cli.Test.csproj", + "projectName": "Cli.Test", + "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli.Test\\Cli.Test.csproj", + "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", + "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli.Test\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj": { + "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj" + }, + "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj": { + "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "FluentAssertions": { + "target": "Package", + "version": "[6.4.0, )" + }, + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[16.11.0, )" + }, + "Moq": { + "target": "Package", + "version": "[4.16.1, )" + }, + "coverlet.msbuild": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[3.1.2, )" + }, + "xunit": { + "target": "Package", + "version": "[2.4.1, )" + }, + "xunit.runner.visualstudio": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[2.4.3, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/linguard/Cli.Test/obj/project.nuget.cache b/linguard/Cli.Test/obj/project.nuget.cache new file mode 100644 index 0000000..1463ef2 --- /dev/null +++ b/linguard/Cli.Test/obj/project.nuget.cache @@ -0,0 +1,211 @@ +{ + "version": 2, + "dgSpecHash": "kpJPd+VeVDF26IyVj1ne9ep3ec02jKV09oU9Rj+Lw+6ca0e6BQwexLe58hvbmEL++S4Kcg1d7piridYrvy+dnA==", + "success": true, + "projectFilePath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli.Test\\Cli.Test.csproj", + "expectedPackageFiles": [ + "C:\\Users\\theyu\\.nuget\\packages\\bogus\\34.0.1\\bogus.34.0.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\bytesize\\2.1.1\\bytesize.2.1.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\castle.core\\4.4.0\\castle.core.4.4.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\commandlineparser\\2.8.0\\commandlineparser.2.8.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\coverlet.msbuild\\3.1.2\\coverlet.msbuild.3.1.2.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\fluentassertions\\6.4.0\\fluentassertions.6.4.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\fluentvalidation\\10.3.6\\fluentvalidation.10.3.6.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\ipnetwork2\\2.5.386\\ipnetwork2.2.5.386.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\markdig.signed\\0.22.0\\markdig.signed.0.22.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.applicationinsights\\2.18.0\\microsoft.applicationinsights.2.18.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\5.0.0\\microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.2\\microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.codeanalysis.common\\4.0.1\\microsoft.codeanalysis.common.4.0.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.0.1\\microsoft.codeanalysis.csharp.4.0.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.codecoverage\\16.11.0\\microsoft.codecoverage.16.11.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.csharp\\4.3.0\\microsoft.csharp.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\6.0.0\\microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.logging\\6.0.0\\microsoft.extensions.logging.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.0\\microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.logging.debug\\6.0.0\\microsoft.extensions.logging.debug.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.objectpool\\5.0.10\\microsoft.extensions.objectpool.5.0.10.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.management.infrastructure\\2.0.0\\microsoft.management.infrastructure.2.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.management.infrastructure.cimcmdlets\\7.2.1\\microsoft.management.infrastructure.cimcmdlets.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.management.infrastructure.runtime.unix\\2.0.0\\microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.management.infrastructure.runtime.win\\2.0.0\\microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.net.test.sdk\\16.11.0\\microsoft.net.test.sdk.16.11.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.netcore.windows.apisets\\1.0.1\\microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.commands.diagnostics\\7.2.1\\microsoft.powershell.commands.diagnostics.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.commands.management\\7.2.1\\microsoft.powershell.commands.management.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.commands.utility\\7.2.1\\microsoft.powershell.commands.utility.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.consolehost\\7.2.1\\microsoft.powershell.consolehost.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.coreclr.eventing\\7.2.1\\microsoft.powershell.coreclr.eventing.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.markdownrender\\7.2.0\\microsoft.powershell.markdownrender.7.2.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.native\\7.2.0\\microsoft.powershell.native.7.2.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.sdk\\7.2.1\\microsoft.powershell.sdk.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.security\\7.2.1\\microsoft.powershell.security.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.testplatform.objectmodel\\16.11.0\\microsoft.testplatform.objectmodel.16.11.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.testplatform.testhost\\16.11.0\\microsoft.testplatform.testhost.16.11.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.win32.registry.accesscontrol\\6.0.0\\microsoft.win32.registry.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.windows.compatibility\\6.0.0\\microsoft.windows.compatibility.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.wsman.management\\7.2.1\\microsoft.wsman.management.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.wsman.runtime\\7.2.1\\microsoft.wsman.runtime.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\moq\\4.16.1\\moq.4.16.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\namotion.reflection\\2.0.3\\namotion.reflection.2.0.3.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\njsonschema\\10.5.2\\njsonschema.10.5.2.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\nlog\\4.7.13\\nlog.4.7.13.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\nuget.frameworks\\5.0.0\\nuget.frameworks.5.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.linux-arm.runtime.native.system.io.ports\\6.0.0\\runtime.linux-arm.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.linux-arm64.runtime.native.system.io.ports\\6.0.0\\runtime.linux-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.linux-x64.runtime.native.system.io.ports\\6.0.0\\runtime.linux-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.native.system.io.ports\\6.0.0\\runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.osx-arm64.runtime.native.system.io.ports\\6.0.0\\runtime.osx-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.osx-x64.runtime.native.system.io.ports\\6.0.0\\runtime.osx-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.buffers\\4.3.0\\system.buffers.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.codedom\\6.0.0\\system.codedom.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.componentmodel.composition\\6.0.0\\system.componentmodel.composition.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.componentmodel.composition.registration\\6.0.0\\system.componentmodel.composition.registration.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.0\\system.configuration.configurationmanager.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.data.odbc\\6.0.0\\system.data.odbc.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.data.oledb\\6.0.0\\system.data.oledb.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.data.sqlclient\\4.8.3\\system.data.sqlclient.4.8.3.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.0\\system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.eventlog\\6.0.0\\system.diagnostics.eventlog.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.performancecounter\\6.0.0\\system.diagnostics.performancecounter.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.tracesource\\4.3.0\\system.diagnostics.tracesource.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.directoryservices\\6.0.0\\system.directoryservices.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.directoryservices.accountmanagement\\6.0.0\\system.directoryservices.accountmanagement.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.directoryservices.protocols\\6.0.0\\system.directoryservices.protocols.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.formats.asn1\\6.0.0\\system.formats.asn1.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.io.packaging\\6.0.0\\system.io.packaging.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.io.ports\\6.0.0\\system.io.ports.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.management\\6.0.0\\system.management.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.management.automation\\7.2.1\\system.management.automation.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.net.http.winhttphandler\\6.0.0\\system.net.http.winhttphandler.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.private.servicemodel\\4.9.0\\system.private.servicemodel.4.9.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.context\\6.0.0\\system.reflection.context.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.dispatchproxy\\4.7.1\\system.reflection.dispatchproxy.4.7.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.metadata\\5.0.0\\system.reflection.metadata.5.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.caching\\6.0.0\\system.runtime.caching.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.cng\\4.3.0\\system.security.cryptography.cng.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.pkcs\\6.0.0\\system.security.cryptography.pkcs.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.xml\\6.0.0\\system.security.cryptography.xml.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.duplex\\4.9.0\\system.servicemodel.duplex.4.9.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.http\\4.9.0\\system.servicemodel.http.4.9.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.nettcp\\4.9.0\\system.servicemodel.nettcp.4.9.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.primitives\\4.9.0\\system.servicemodel.primitives.4.9.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.security\\4.9.0\\system.servicemodel.security.4.9.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.syndication\\6.0.0\\system.servicemodel.syndication.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.serviceprocess.servicecontroller\\6.0.0\\system.serviceprocess.servicecontroller.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.speech\\6.0.0\\system.speech.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.text.encoding.codepages\\6.0.0\\system.text.encoding.codepages.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.text.encodings.web\\6.0.0\\system.text.encodings.web.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.threading.accesscontrol\\6.0.0\\system.threading.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.web.services.description\\4.9.0\\system.web.services.description.4.9.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\typin\\3.1.0\\typin.3.1.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\typin.core\\3.1.0\\typin.core.3.1.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\xunit\\2.4.1\\xunit.2.4.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\xunit.abstractions\\2.0.3\\xunit.abstractions.2.0.3.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\xunit.analyzers\\0.10.0\\xunit.analyzers.0.10.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\xunit.assert\\2.4.1\\xunit.assert.2.4.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\xunit.core\\2.4.1\\xunit.core.2.4.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\xunit.extensibility.core\\2.4.1\\xunit.extensibility.core.2.4.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\xunit.extensibility.execution\\2.4.1\\xunit.extensibility.execution.2.4.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\xunit.runner.visualstudio\\2.4.3\\xunit.runner.visualstudio.2.4.3.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\yamldotnet\\11.2.1\\yamldotnet.11.2.1.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/linguard/Cli.Test/obj/project.packagespec.json b/linguard/Cli.Test/obj/project.packagespec.json new file mode 100644 index 0000000..d506208 --- /dev/null +++ b/linguard/Cli.Test/obj/project.packagespec.json @@ -0,0 +1 @@ +"restore":{"projectUniqueName":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli.Test\\Cli.Test.csproj","projectName":"Cli.Test","projectPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli.Test\\Cli.Test.csproj","outputPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli.Test\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net6.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net6.0":{"targetAlias":"net6.0","projectReferences":{"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj":{"projectPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj"},"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj":{"projectPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net6.0":{"targetAlias":"net6.0","dependencies":{"FluentAssertions":{"target":"Package","version":"[6.4.0, )"},"Microsoft.NET.Test.Sdk":{"target":"Package","version":"[16.11.0, )"},"Moq":{"target":"Package","version":"[4.16.1, )"},"coverlet.msbuild":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[3.1.2, )"},"xunit":{"target":"Package","version":"[2.4.1, )"},"xunit.runner.visualstudio":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[2.4.3, )"}},"imports":["net461","net462","net47","net471","net472","net48"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/linguard/Cli.Test/obj/rider.project.restore.info b/linguard/Cli.Test/obj/rider.project.restore.info new file mode 100644 index 0000000..42db7f9 --- /dev/null +++ b/linguard/Cli.Test/obj/rider.project.restore.info @@ -0,0 +1 @@ +16455551443568370 \ No newline at end of file diff --git a/linguard/Cli/Cli.csproj b/linguard/Cli/Cli.csproj new file mode 100644 index 0000000..5bae305 --- /dev/null +++ b/linguard/Cli/Cli.csproj @@ -0,0 +1,35 @@ + + + + Exe + net6.0 + enable + enable + Linguard.Cli + Linguard.Cli + Linguard.Cli + 2.0.0 + linguard-cli + José Antonio Mazón San Bartolomé + José Antonio Mazón San Bartolomé + Linguard + 2.0.0 + + + + + + + + + + + + + + + PreserveNewest + + + + diff --git a/linguard/Cli/CliStartup.cs b/linguard/Cli/CliStartup.cs new file mode 100644 index 0000000..317609c --- /dev/null +++ b/linguard/Cli/CliStartup.cs @@ -0,0 +1,39 @@ +using FluentValidation; +using Linguard.Cli.Middlewares; +using Linguard.Core.Configuration; +using Linguard.Core.Managers; +using Linguard.Core.Models.Wireguard; +using Linguard.Core.Models.Wireguard.Validators; +using Linguard.Core.OS; +using Linguard.Core.Services; +using Linguard.Log; +using Microsoft.Extensions.DependencyInjection; +using Typin; +using Typin.Directives; +using Typin.Modes; + +namespace Linguard.Cli; + +public class CliStartup : ICliStartup { + + public void ConfigureServices(IServiceCollection services) { + var manager = new YamlConfigurationManager(new Configuration(), new WorkingDirectory()); + services.AddSingleton(manager); + + services.AddTransient(); + services.AddTransient(); + services.AddTransient(); + services.AddTransient(); + services.AddTransient(); + services.AddTransient, InterfaceValidator>(); + services.AddTransient, ClientValidator>(); + } + + public void Configure(CliApplicationBuilder app) + { + app.AddCommandsFromThisAssembly() + .AddDirective() + .UseMiddleware() + .UseInteractiveMode(); + } +} \ No newline at end of file diff --git a/linguard/Cli/Commands/AddClientCommand.cs b/linguard/Cli/Commands/AddClientCommand.cs new file mode 100644 index 0000000..964df48 --- /dev/null +++ b/linguard/Cli/Commands/AddClientCommand.cs @@ -0,0 +1,121 @@ +using FluentValidation; +using Linguard.Cli.TypeConverters; +using Linguard.Core; +using Linguard.Core.Configuration; +using Linguard.Core.Managers; +using Linguard.Core.Models.Wireguard; +using Linguard.Core.Services; +using Linguard.Log; +using Typin; +using Typin.Attributes; +using Typin.Console; +using UriTypeConverter = Linguard.Cli.TypeConverters.UriTypeConverter; + +namespace Linguard.Cli.Commands; + +[Command("add client", Description = "Add a new client to an existent interface")] +public class AddClientCommand : ICommand { + + public AddClientCommand(IConfigurationManager configurationManager, IClientGenerator generator, + ILogger logger, AbstractValidator validator) { + _configurationManager = configurationManager; + _generator = generator; + _logger = logger; + _validator = validator; + } + + private readonly AbstractValidator _validator; + private readonly ILogger _logger; + private readonly IClientGenerator _generator; + private readonly IConfigurationManager _configurationManager; + private IWireguardConfiguration Configuration => _configurationManager.Configuration.Wireguard; + + [CommandOption("name", Description = "Name of the peer.")] + public string? Name { get; set; } + + [CommandOption("description", Description = "Additional information about the peer.")] + public string? Description { get; set; } + + [CommandOption("ipv4", Description = "IPv4 address of the peer.", + Converter = typeof(IPAddressCidrTypeConverter))] + public IPAddressCidr? IPv4Address { get; set; } + + [CommandOption("ipv6", Description = "IPv6 address of the peer.", + Converter = typeof(IPAddressCidrTypeConverter))] + public IPAddressCidr? IPv6Address { get; set; } + + [CommandOption("allowedIps", Description = "Allowed IPs.", + Converter = typeof(IPAddressCidrCollectionTypeConverter))] + public ICollection? AllowedIPs { get; set; } + + [CommandOption("nat", Description = "Whether the peer is behind a NAT.")] + public bool? Nat { get; set; } + + [CommandOption("dns1", Description = "Primary DNS used by the peer.", + Converter = typeof(UriTypeConverter))] + public Uri? PrimaryDns { get; set; } + + [CommandOption("dns2", Description = "Secondary DNS used by the peer.", + Converter = typeof(UriTypeConverter))] + public Uri? SecondaryDns { get; set; } + + [CommandOption("pubkey", Description = "The peer's public key.")] + public string? PublicKey { get; set; } + + [CommandOption("privkey", Description = "The peer's private key.")] + public string? PrivateKey { get; set; } + + [CommandOption("endpoint", Description = "Whether the peer is behind a NAT.", + Converter = typeof(UriTypeConverter))] + public Uri? Endpoint { get; set; } + + [CommandOption("interface", Description = "Name of the interface used by the peer.", IsRequired = true)] + public string? Interface { get; set; } + + public ValueTask ExecuteAsync(IConsole console) { + if (Interface == default) { + console.Error.WriteLine(Validation.InterfaceNotFound); + return ValueTask.CompletedTask; + } + var iface = Configuration.Interfaces.SingleOrDefault(i => i.Name.Equals(Interface)); + if (iface == default) { + console.Error.WriteLine(Validation.InterfaceNotFound); + return ValueTask.CompletedTask; + } + var peer = _generator.Generate(iface); + ApplyParametersSetByUser(peer); + if (!Validate(peer, console)) { + return ValueTask.CompletedTask; + } + + iface.Clients.Add(peer); + _configurationManager.Save(); + var msg = $"Added peer '{peer.Name}' to interface '{iface.Name}'."; + _logger.Info(msg); + console.Output.WriteLine(msg); + return ValueTask.CompletedTask; + } + + protected void ApplyParametersSetByUser(Client client) { + if (Name != default) client.Name = Name; + if (Description != default) client.Description = Description; + if (PrivateKey != default) client.PrivateKey = PrivateKey; + if (PublicKey != default) client.PublicKey = PublicKey; + if (IPv4Address != default) client.IPv4Address = IPv4Address; + if (IPv6Address != default) client.IPv6Address = IPv6Address; + if (Nat != default) client.Nat = Nat.Value; + if (PrimaryDns != default) client.PrimaryDns = PrimaryDns; + if (SecondaryDns != default) client.SecondaryDns = SecondaryDns; + if (AllowedIPs != default) client.AllowedIPs = AllowedIPs; + if (Endpoint != default) client.Endpoint = Endpoint; + } + + protected bool Validate(Client client, IConsole console) { + var result = _validator.Validate(client); + if (result.IsValid) return true; + foreach (var error in result.Errors) { + console.Error.WriteLine(error); + } + return false; + } +} \ No newline at end of file diff --git a/linguard/Cli/Commands/AddInterfaceCommand.cs b/linguard/Cli/Commands/AddInterfaceCommand.cs new file mode 100644 index 0000000..308f711 --- /dev/null +++ b/linguard/Cli/Commands/AddInterfaceCommand.cs @@ -0,0 +1,104 @@ +using System.Net.NetworkInformation; +using FluentValidation; +using Linguard.Cli.TypeConverters; +using Linguard.Core; +using Linguard.Core.Configuration; +using Linguard.Core.Managers; +using Linguard.Core.Models.Wireguard; +using Linguard.Core.Services; +using Linguard.Log; +using Typin; +using Typin.Attributes; +using Typin.Console; + +namespace Linguard.Cli.Commands; + +[Command("add interface", Description = "Add a new interface")] +public class AddInterfaceCommand : ICommand { + protected readonly IConfigurationManager ConfigurationManager; + protected IConfiguration Configuration => ConfigurationManager.Configuration; + protected readonly ILogger Logger; + protected readonly IInterfaceGenerator Generator; + protected readonly AbstractValidator Validator; + + public AddInterfaceCommand(IConfigurationManager configurationManager, ILogger logger, IInterfaceGenerator interfaceGenerator, + AbstractValidator validator) { + ConfigurationManager = configurationManager; + Logger = logger; + Generator = interfaceGenerator; + Validator = validator; + } + + [CommandOption("name", Description = "Name of the interface.")] + public string? Name { get; set; } = default; + + [CommandOption("description", Description = "Additional information about the interface.")] + public string? Description { get; set; } = default; + + [CommandOption("ipv4", Description = "IPv4 address of the interface.", + Converter = typeof(IPAddressCidrTypeConverter))] + public IPAddressCidr? IPv4Address { get; set; } = default; + + [CommandOption("ipv6", Description = "IPv6 address of the interface.", + Converter = typeof(IPAddressCidrTypeConverter))] + public IPAddressCidr? IPv6Address { get; set; } = default; + + [CommandOption("gateway", Description = "Gateway used by the interface.", + Converter = typeof(NetworkInterfaceTypeConverter))] + public NetworkInterface? Gateway { get; set; } = default; + + [CommandOption("port", Description = "Port used by the interface.")] + public int? Port { get; set; } = default; + + [CommandOption("auto", Description = "Whether to automatically start the interface when the app starts up.")] + public bool? Auto { get; set; } = default; + + [CommandOption("onUp", Description = "Commands to execute right after the interface is brought up.")] + public ICollection? OnUp { get; set; } = default; + + [CommandOption("onDown", Description = "Commands to execute right after the interface is brought down.")] + public ICollection? OnDown { get; set; } = default; + + [CommandOption("pubkey", Description = "The peer's public key.")] + public string? PublicKey { get; set; } = default; + + [CommandOption("privkey", Description = "The peer's private key.")] + public string? PrivateKey { get; set; } = default; + + public virtual ValueTask ExecuteAsync(IConsole console) { + var iface = Generator.Generate(); + ApplyParametersSetByUser(iface); + if (!Validate(iface, console)) { + return ValueTask.CompletedTask; + } + Configuration.Wireguard.Interfaces.Add(iface); + ConfigurationManager.Save(); + var msg = $"Added interface '{iface.Name}'."; + Logger.Info(msg); + console.Output.WriteLine(msg); + return ValueTask.CompletedTask; + } + + protected bool Validate(Interface iface, IConsole console) { + var result = Validator.Validate(iface); + if (result.IsValid) return true; + foreach (var error in result.Errors) { + console.Error.WriteLine(error); + } + return false; + } + + protected void ApplyParametersSetByUser(Interface iface) { + if (Name != default) iface.Name = Name; + if (Description != default) iface.Description = Description; + if (PrivateKey != default) iface.PrivateKey = PrivateKey; + if (PublicKey != default) iface.PublicKey = PublicKey; + if (IPv4Address != default) iface.IPv4Address = IPv4Address; + if (IPv6Address != default) iface.IPv6Address = IPv6Address; + if (Auto != default) iface.Auto = Auto.Value; + if (Gateway != default) iface.Gateway = Gateway; + if (Port != default) iface.Port = Port.Value; + if (OnDown != default) iface.OnDown = OnDown; + if (OnUp != default) iface.OnUp = OnUp; + } +} \ No newline at end of file diff --git a/linguard/Cli/Commands/EditClientCommand.cs b/linguard/Cli/Commands/EditClientCommand.cs new file mode 100644 index 0000000..d9b7676 --- /dev/null +++ b/linguard/Cli/Commands/EditClientCommand.cs @@ -0,0 +1,145 @@ +using FluentValidation; +using Linguard.Cli.TypeConverters; +using Linguard.Core; +using Linguard.Core.Configuration; +using Linguard.Core.Managers; +using Linguard.Core.Models.Wireguard; +using Linguard.Log; +using Typin; +using Typin.Attributes; +using Typin.Console; +using UriTypeConverter = Linguard.Cli.TypeConverters.UriTypeConverter; + +namespace Linguard.Cli.Commands; + +[Command("edit client", Description = "Edit the configuration of an existent client.")] +public class EditClientCommand : ICommand { + + public EditClientCommand(IConfigurationManager configurationManager, + ILogger logger, AbstractValidator validator) { + _configurationManager = configurationManager; + _logger = logger; + _validator = validator; + } + + private readonly AbstractValidator _validator; + private readonly ILogger _logger; + private readonly IConfigurationManager _configurationManager; + private IWireguardConfiguration Configuration => _configurationManager.Configuration.Wireguard; + + [CommandOption("name", Description = "Current name of the client.", IsRequired = true)] + public string Name { get; set; } + + [CommandOption("newName", Description = "New name for the client.")] + public string? NewName { get; set; } + + [CommandOption("description", Description = "Additional information about the client.")] + public string? Description { get; set; } + + [CommandOption("ipv4", Description = "IPv4 address of the client.", + Converter = typeof(IPAddressCidrTypeConverter))] + public IPAddressCidr? IPv4Address { get; set; } + + [CommandOption("ipv6", Description = "IPv6 address of the client.", + Converter = typeof(IPAddressCidrTypeConverter))] + public IPAddressCidr? IPv6Address { get; set; } + + [CommandOption("allowedIps", Description = "Allowed IPs.", + Converter = typeof(IPAddressCidrCollectionTypeConverter))] + public ICollection? AllowedIPs { get; set; } + + [CommandOption("nat", Description = "Whether the client is behind a NAT.")] + public bool? Nat { get; set; } + + [CommandOption("dns1", Description = "Primary DNS used by the client.", + Converter = typeof(UriTypeConverter))] + public Uri? PrimaryDns { get; set; } + + [CommandOption("dns2", Description = "Secondary DNS used by the client.", + Converter = typeof(UriTypeConverter))] + public Uri? SecondaryDns { get; set; } + + [CommandOption("pubkey", Description = "The client's public key.")] + public string? PublicKey { get; set; } + + [CommandOption("privkey", Description = "The client's private key.")] + public string? PrivateKey { get; set; } + + [CommandOption("endpoint", Description = "Whether the client is behind a NAT.", + Converter = typeof(UriTypeConverter))] + public Uri? Endpoint { get; set; } + + [CommandOption("interface", Description = "Name of the current interface used by the client.", IsRequired = true)] + public string Interface { get; set; } + + [CommandOption("newInterface", Description = "Name of the new interface to be used by the client.")] + public string? NewInterface { get; set; } + + public ValueTask ExecuteAsync(IConsole console) { + var iface = Configuration.Interfaces.SingleOrDefault(i => i.Name.Equals(Interface)); + if (iface == default) { + console.Error.WriteLine(Validation.InterfaceNotFound); + return ValueTask.CompletedTask; + } + + var peer = iface.Clients.SingleOrDefault(c => c.Name.Equals(Name)); + if (peer == default) { + console.Error.WriteLine(Validation.ClientNotFound); + return ValueTask.CompletedTask; + } + + try { + ApplyParametersSetByUser(peer); + } + catch (ArgumentException e) { + console.Error.WriteLine(e.Message); + return ValueTask.CompletedTask; + } + if (!Validate(peer, console)) { + return ValueTask.CompletedTask; + } + + _configurationManager.Save(); + var msg = $"Edited client '{peer.Name}' from interface '{iface.Name}'."; + _logger.Info(msg); + console.Output.WriteLine(msg); + return ValueTask.CompletedTask; + } + + protected void ApplyParametersSetByUser(Client client) { + if (NewName != default) client.Name = NewName; + if (Description != default) client.Description = Description; + if (PrivateKey != default) client.PrivateKey = PrivateKey; + if (PublicKey != default) client.PublicKey = PublicKey; + if (IPv4Address != default) client.IPv4Address = IPv4Address; + if (IPv6Address != default) client.IPv6Address = IPv6Address; + if (Nat != default) client.Nat = Nat.Value; + if (PrimaryDns != default) client.PrimaryDns = PrimaryDns; + if (SecondaryDns != default) client.SecondaryDns = SecondaryDns; + if (AllowedIPs != default) client.AllowedIPs = AllowedIPs; + if (Endpoint != default) client.Endpoint = Endpoint; + if (NewInterface == default || NewInterface.Equals(Interface)) return; + var iface = Configuration.Interfaces + .SingleOrDefault(i => i.Name.Equals(NewInterface)); + if (iface == default) { + throw new ArgumentException( + $"{Validation.InterfaceNotFound}: '{NewInterface}'" + ); + } + if (iface.Clients.Contains(client)) { + throw new ArgumentException( + $"{Validation.ClientNameAlreadyInUse} in interface '{NewInterface}'." + ); + } + iface.Clients.Add(client); + } + + protected bool Validate(Client client, IConsole console) { + var result = _validator.Validate(client); + if (result.IsValid) return true; + foreach (var error in result.Errors) { + console.Error.WriteLine(error); + } + return false; + } +} \ No newline at end of file diff --git a/linguard/Cli/Commands/EditInterfaceCommand.cs b/linguard/Cli/Commands/EditInterfaceCommand.cs new file mode 100644 index 0000000..8037144 --- /dev/null +++ b/linguard/Cli/Commands/EditInterfaceCommand.cs @@ -0,0 +1,33 @@ +using FluentValidation; +using Linguard.Core; +using Linguard.Core.Managers; +using Linguard.Core.Models.Wireguard; +using Linguard.Core.Services; +using Linguard.Log; +using Typin.Attributes; +using Typin.Console; + +namespace Linguard.Cli.Commands; + +[Command("edit interface", Description = "Edit the configuration of an existent interface.")] +public class EditInterfaceCommand : AddInterfaceCommand { + public EditInterfaceCommand(IConfigurationManager configurationManager, ILogger logger, + IInterfaceGenerator interfaceGenerator, AbstractValidator validator) + : base(configurationManager, logger, interfaceGenerator, validator) { + } + + public override ValueTask ExecuteAsync(IConsole console) { + var iface = Configuration.Wireguard.Interfaces.SingleOrDefault(i => i.Name.Equals(Name)); + if (iface == default) { + Logger.Error($"No interface named '{Name}' was found."); + console.Error.WriteLine(Validation.InterfaceNotFound); + return ValueTask.CompletedTask; + } + ApplyParametersSetByUser(iface); + if (!Validate(iface, console)) { + return ValueTask.CompletedTask; + } + ConfigurationManager.Save(); + return base.ExecuteAsync(console); + } +} \ No newline at end of file diff --git a/linguard/Cli/Commands/ListClientsCommand.cs b/linguard/Cli/Commands/ListClientsCommand.cs new file mode 100644 index 0000000..d99fff5 --- /dev/null +++ b/linguard/Cli/Commands/ListClientsCommand.cs @@ -0,0 +1,45 @@ +using Linguard.Core; +using Linguard.Core.Configuration; +using Linguard.Core.Managers; +using Linguard.Core.Models.Wireguard; +using Typin; +using Typin.Attributes; +using Typin.Console; + +namespace Linguard.Cli.Commands; + +[Command("list clients", Description = "List all clients, showing basic information about them.")] +public class ListClientsCommand : ICommand { + + public ListClientsCommand(IConfigurationManager configurationManager) { + _configurationManager = configurationManager; + } + + private readonly IConfigurationManager _configurationManager; + private IWireguardConfiguration Configuration => _configurationManager.Configuration.Wireguard; + + [CommandOption("interface", Description = "Name of the client's interface.")] + public string? Interface { get; set; } = default; + + public ValueTask ExecuteAsync(IConsole console) { + ICollection peers; + if (Interface != default) { + var iface = Configuration.Interfaces.SingleOrDefault(i => i.Name.Equals(Interface)); + if (iface == default) { + console.Error.WriteLine(Validation.InterfaceNotFound); + return ValueTask.CompletedTask; + } + peers = iface.Clients; + } + else { + peers = Configuration.Interfaces.SelectMany(i => i.Clients).ToList(); + } + if (!peers.Any()) { + console.Output.WriteLine("There are no clients yet."); + return ValueTask.CompletedTask; + } + var result = string.Join(Environment.NewLine, peers.Select(c => c.Brief())); + console.Output.WriteLine(result); + return ValueTask.CompletedTask; + } +} \ No newline at end of file diff --git a/linguard/Cli/Commands/ListInterfacesCommand.cs b/linguard/Cli/Commands/ListInterfacesCommand.cs new file mode 100644 index 0000000..9b273aa --- /dev/null +++ b/linguard/Cli/Commands/ListInterfacesCommand.cs @@ -0,0 +1,29 @@ +using Linguard.Core.Configuration; +using Linguard.Core.Managers; +using Typin; +using Typin.Attributes; +using Typin.Console; + +namespace Linguard.Cli.Commands; + +[Command("list interfaces", Description = "List all interfaces, showing basic information about them.")] +public class ListInterfacesCommand : ICommand { + + public ListInterfacesCommand(IConfigurationManager configurationManager) { + _configurationManager = configurationManager; + } + + private readonly IConfigurationManager _configurationManager; + private IWireguardConfiguration Configuration => _configurationManager.Configuration.Wireguard; + + public ValueTask ExecuteAsync(IConsole console) { + var interfaces = Configuration.Interfaces; + if (!interfaces.Any()) { + console.Output.WriteLine("There are no interfaces yet."); + return ValueTask.CompletedTask; + } + var result = string.Join(Environment.NewLine, interfaces.Select(i => i.Brief())); + console.Output.WriteLine(result); + return ValueTask.CompletedTask; + } +} \ No newline at end of file diff --git a/linguard/Cli/Commands/ShowClientCommand.cs b/linguard/Cli/Commands/ShowClientCommand.cs new file mode 100644 index 0000000..56274ba --- /dev/null +++ b/linguard/Cli/Commands/ShowClientCommand.cs @@ -0,0 +1,37 @@ +using Linguard.Core; +using Linguard.Core.Configuration; +using Linguard.Core.Managers; +using Typin; +using Typin.Attributes; +using Typin.Console; + +namespace Linguard.Cli.Commands; + +[Command("show client", Description = "Show information about an specific client.")] +public class ShowClientCommand : ICommand { + private readonly IConfigurationManager _configurationManager; + private IConfiguration Configuration => _configurationManager.Configuration; + + [CommandOption("name", Description = "Name of the client.")] + public string Name { get; set; } + + [CommandOption("interface", Description = "Name of the clients's interface.")] + public string Interface { get; set; } + + public ShowClientCommand(IConfigurationManager configurationManager) { + _configurationManager = configurationManager; + } + + public ValueTask ExecuteAsync(IConsole console) { + var peer = Configuration.Wireguard.Interfaces + .SingleOrDefault(i => i.Name.Equals(Interface)) + ?.Clients + .SingleOrDefault(c => c.Name.Equals(Name)); + if (peer == default) { + console.Error.WriteLine(Validation.ClientNotFound); + return ValueTask.CompletedTask; + } + console.Output.WriteLine(peer); + return ValueTask.CompletedTask; + } +} \ No newline at end of file diff --git a/linguard/Cli/Commands/ShowInterfaceCommand.cs b/linguard/Cli/Commands/ShowInterfaceCommand.cs new file mode 100644 index 0000000..dc2a0af --- /dev/null +++ b/linguard/Cli/Commands/ShowInterfaceCommand.cs @@ -0,0 +1,31 @@ +using Linguard.Core; +using Linguard.Core.Configuration; +using Linguard.Core.Managers; +using Typin; +using Typin.Attributes; +using Typin.Console; + +namespace Linguard.Cli.Commands; + +[Command("show interface", Description = "Show information about an specific interface.")] +public class ShowInterfacesCommand : ICommand { + private readonly IConfigurationManager _configurationManager; + private IConfiguration Configuration => _configurationManager.Configuration; + + [CommandOption("name", Description = "Name of the interface.")] + public string? Name { get; set; } = default; + + public ShowInterfacesCommand(IConfigurationManager configurationManager) { + _configurationManager = configurationManager; + } + + public ValueTask ExecuteAsync(IConsole console) { + var iface = Configuration.Wireguard.Interfaces.SingleOrDefault(i => i.Name.Equals(Name)); + if (iface == default) { + console.Error.WriteLine(Validation.InterfaceNotFound); + return ValueTask.CompletedTask; + } + console.Output.WriteLine(iface); + return ValueTask.CompletedTask; + } +} \ No newline at end of file diff --git a/linguard/Cli/Middlewares/ConfigurationSetupMiddleware.cs b/linguard/Cli/Middlewares/ConfigurationSetupMiddleware.cs new file mode 100644 index 0000000..8a39fdc --- /dev/null +++ b/linguard/Cli/Middlewares/ConfigurationSetupMiddleware.cs @@ -0,0 +1,56 @@ +using Linguard.Core.Configuration.Exceptions; +using Linguard.Core.Managers; +using Linguard.Core.Utils; +using Linguard.Log; +using Typin; + +namespace Linguard.Cli.Middlewares; + +public class ConfigurationSetupMiddleware : IMiddleware { + private readonly IConfigurationManager _configurationManager; + private readonly ILogger _logger; + + private static readonly string WorkingDirectoryEnvironmentVariable = $"{AssemblyInfo.Product}Workdir"; + + public ConfigurationSetupMiddleware(IConfigurationManager configurationManager, ILogger logger) { + _configurationManager = configurationManager; + _logger = logger; + } + + public async Task HandleAsync(ICliContext context, CommandPipelineHandlerDelegate next, + CancellationToken cancellationToken) { + if (_configurationManager.WorkingDirectory.BaseDirectory != default) { + return; + } + _configurationManager.WorkingDirectory.BaseDirectory = GetWorkingDirectory(context); + _logger.Info("Loading configuration..."); + try { + _configurationManager.Load(); + _logger.Info("Configuration loaded."); + } + catch (ConfigurationNotLoadedError e) { + _logger.Warn(e, "Unable to load configuration. Using defaults."); + _configurationManager.LoadDefaults(); + } + await next.Invoke(); + } + + private static DirectoryInfo GetWorkingDirectory(ICliContext context) { + DirectoryInfo workingDirectory; + try { + workingDirectory = new DirectoryInfo(context.EnvironmentVariables[WorkingDirectoryEnvironmentVariable]); + context.Console.Output.WriteLine($"Using '{workingDirectory.FullName}' as working directory..."); + } + catch { + workingDirectory = new DirectoryInfo(Path.GetFullPath(".")); + var warn = "WARNING: No working directory specified through environment variable " + + $"'{WorkingDirectoryEnvironmentVariable}'. " + + $"The current directory, '{workingDirectory}', will be used instead."; + context.Console.ForegroundColor = ConsoleColor.Yellow; + context.Console.Output.WriteLine(warn); + context.Console.ResetColor(); + } + workingDirectory.Create(); + return workingDirectory; + } +} \ No newline at end of file diff --git a/linguard/Cli/NLog.config b/linguard/Cli/NLog.config new file mode 100644 index 0000000..5a581ee --- /dev/null +++ b/linguard/Cli/NLog.config @@ -0,0 +1,15 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/linguard/Cli/Program.cs b/linguard/Cli/Program.cs new file mode 100644 index 0000000..a718027 --- /dev/null +++ b/linguard/Cli/Program.cs @@ -0,0 +1,11 @@ +using Typin; + +namespace Linguard.Cli; + +public static class Program { + public static async Task Main() => + await new CliApplicationBuilder() + .UseStartup() + .Build() + .RunAsync(); +} \ No newline at end of file diff --git a/linguard/Cli/TypeConverters/IPAddressCidrCollectionTypeConverter.cs b/linguard/Cli/TypeConverters/IPAddressCidrCollectionTypeConverter.cs new file mode 100644 index 0000000..8476c33 --- /dev/null +++ b/linguard/Cli/TypeConverters/IPAddressCidrCollectionTypeConverter.cs @@ -0,0 +1,15 @@ +using Linguard.Core; +using Typin.Binding; + +namespace Linguard.Cli.TypeConverters; + +public class IPAddressCidrCollectionTypeConverter : BindingConverter> { + + public override ICollection? Convert(string? value) { + throw new NotImplementedException(); + } + + public override ICollection ConvertCollection(IReadOnlyCollection values) { + return values.Select(IPAddressCidr.Parse).ToList(); + } +} \ No newline at end of file diff --git a/linguard/Cli/TypeConverters/IPAddressCidrTypeConverter.cs b/linguard/Cli/TypeConverters/IPAddressCidrTypeConverter.cs new file mode 100644 index 0000000..6b74b51 --- /dev/null +++ b/linguard/Cli/TypeConverters/IPAddressCidrTypeConverter.cs @@ -0,0 +1,17 @@ +using Linguard.Core; +using Typin.Binding; + +namespace Linguard.Cli.TypeConverters; + +public class IPAddressCidrTypeConverter : BindingConverter { + + public override IPAddressCidr? Convert(string? value) { + return value != default + ? IPAddressCidr.Parse(value) + : default; + } + + public override IPAddressCidr ConvertCollection(IReadOnlyCollection values) { + throw new NotImplementedException(); + } +} \ No newline at end of file diff --git a/linguard/Cli/TypeConverters/NetworkInterfaceTypeConverter.cs b/linguard/Cli/TypeConverters/NetworkInterfaceTypeConverter.cs new file mode 100644 index 0000000..752ea9c --- /dev/null +++ b/linguard/Cli/TypeConverters/NetworkInterfaceTypeConverter.cs @@ -0,0 +1,20 @@ +using System.Net.NetworkInformation; +using Typin.Binding; + +namespace Linguard.Cli.TypeConverters; + +public class NetworkInterfaceTypeConverter : BindingConverter { + + public override NetworkInterface? Convert(string? value) { + return value != default + ? NetworkInterface + .GetAllNetworkInterfaces() + .SingleOrDefault(i => + i.Name.Equals(value, StringComparison.OrdinalIgnoreCase)) + : default; + } + + public override NetworkInterface ConvertCollection(IReadOnlyCollection values) { + throw new NotImplementedException(); + } +} \ No newline at end of file diff --git a/linguard/Cli/TypeConverters/UriTypeConverter.cs b/linguard/Cli/TypeConverters/UriTypeConverter.cs new file mode 100644 index 0000000..a6d4702 --- /dev/null +++ b/linguard/Cli/TypeConverters/UriTypeConverter.cs @@ -0,0 +1,15 @@ +using Typin.Binding; + +namespace Linguard.Cli.TypeConverters; + +public class UriTypeConverter : BindingConverter { + public override Uri? Convert(string? value) { + return value != default + ? new Uri(value, UriKind.RelativeOrAbsolute) + : default; + } + + public override Uri ConvertCollection(IReadOnlyCollection values) { + throw new NotImplementedException(); + } +} \ No newline at end of file diff --git a/linguard/Cli/bin/Debug/net6.0/Bogus.dll b/linguard/Cli/bin/Debug/net6.0/Bogus.dll new file mode 100644 index 0000000..84e6073 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/Bogus.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/CommandLine.dll b/linguard/Cli/bin/Debug/net6.0/CommandLine.dll new file mode 100644 index 0000000..af18229 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/CommandLine.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/FluentValidation.dll b/linguard/Cli/bin/Debug/net6.0/FluentValidation.dll new file mode 100644 index 0000000..fd90d11 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/FluentValidation.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/Linguard.Cli.deps.json b/linguard/Cli/bin/Debug/net6.0/Linguard.Cli.deps.json new file mode 100644 index 0000000..652891e --- /dev/null +++ b/linguard/Cli/bin/Debug/net6.0/Linguard.Cli.deps.json @@ -0,0 +1,3017 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "Linguard.Cli/2.0.0": { + "dependencies": { + "CommandLineParser": "2.8.0", + "FluentValidation": "10.3.6", + "Linguard.Core": "2.0.0", + "Typin": "3.1.0" + }, + "runtime": { + "Linguard.Cli.dll": {} + } + }, + "Bogus/34.0.1": { + "runtime": { + "lib/net6.0/Bogus.dll": { + "assemblyVersion": "34.0.1.0", + "fileVersion": "34.0.1.0" + } + } + }, + "ByteSize/2.1.1": { + "runtime": { + "lib/net5.0/ByteSize.dll": { + "assemblyVersion": "2.1.1.0", + "fileVersion": "2.1.1.0" + } + } + }, + "CommandLineParser/2.8.0": { + "runtime": { + "lib/netstandard2.0/CommandLine.dll": { + "assemblyVersion": "2.8.0.0", + "fileVersion": "2.8.0.0" + } + } + }, + "FluentValidation/10.3.6": { + "runtime": { + "lib/net6.0/FluentValidation.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "10.3.6.0" + } + } + }, + "IPNetwork2/2.5.386": { + "runtime": { + "lib/net5.0/System.Net.IPNetwork.dll": { + "assemblyVersion": "2.5.386.0", + "fileVersion": "2.5.386.0" + } + } + }, + "Markdig.Signed/0.22.0": { + "runtime": { + "lib/netcoreapp3.1/Markdig.Signed.dll": { + "assemblyVersion": "0.22.0.0", + "fileVersion": "0.22.0.0" + } + } + }, + "Microsoft.ApplicationInsights/2.18.0": { + "dependencies": { + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": { + "assemblyVersion": "2.18.0.315", + "fileVersion": "2.18.0.315" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/5.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": {}, + "Microsoft.CodeAnalysis.Common/4.0.1": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.2", + "System.Collections.Immutable": "5.0.0", + "System.Memory": "4.5.4", + "System.Reflection.Metadata": "5.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encoding.CodePages": "6.0.0", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.121.55815" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.0.1": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "4.0.1" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.121.55815" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CSharp/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Logging/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Logging.Debug/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.ObjectPool/5.0.10": { + "runtime": { + "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.1021.41022" + } + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Management.Infrastructure/2.0.0": { + "dependencies": { + "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0", + "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0" + } + }, + "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { + "runtimeTargets": { + "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win-arm", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win-arm", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win-arm64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win-arm64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win10-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win10-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win10-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win10-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win7-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win7-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win7-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win7-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win8-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win8-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win8-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win8-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win81-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win81-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win81-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win81-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm/native/mi.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm/native/miutils.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm64/native/mi.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm64/native/miutils.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win10-x64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x64/native/mi.dll": { + "rid": "win10-x64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x64/native/miutils.dll": { + "rid": "win10-x64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win10-x86", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x86/native/mi.dll": { + "rid": "win10-x86", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x86/native/miutils.dll": { + "rid": "win10-x86", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win7-x64", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win7-x64/native/mi.dll": { + "rid": "win7-x64", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win7-x64/native/miutils.dll": { + "rid": "win7-x64", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win7-x86", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win7-x86/native/mi.dll": { + "rid": "win7-x86", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win7-x86/native/miutils.dll": { + "rid": "win7-x86", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win8-x64/native/mi.dll": { + "rid": "win8-x64", + "assetType": "native", + "fileVersion": "6.2.9200.22812" + }, + "runtimes/win8-x64/native/miutils.dll": { + "rid": "win8-x64", + "assetType": "native", + "fileVersion": "6.2.9200.22812" + }, + "runtimes/win8-x86/native/mi.dll": { + "rid": "win8-x86", + "assetType": "native", + "fileVersion": "6.2.9200.22812" + }, + "runtimes/win8-x86/native/miutils.dll": { + "rid": "win8-x86", + "assetType": "native", + "fileVersion": "6.2.9200.22812" + }, + "runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win81-x64", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + }, + "runtimes/win81-x64/native/mi.dll": { + "rid": "win81-x64", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + }, + "runtimes/win81-x64/native/miutils.dll": { + "rid": "win81-x64", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + }, + "runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win81-x86", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + }, + "runtimes/win81-x86/native/mi.dll": { + "rid": "win81-x86", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + }, + "runtimes/win81-x86/native/miutils.dll": { + "rid": "win81-x86", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + } + } + }, + "Microsoft.NETCore.Platforms/1.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": {}, + "Microsoft.PowerShell.Commands.Diagnostics/7.2.1": { + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.PowerShell.Commands.Management/7.2.1": { + "dependencies": { + "Microsoft.PowerShell.Security": "7.2.1", + "System.ServiceProcess.ServiceController": "6.0.0" + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.PowerShell.Commands.Utility/7.2.1": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "4.0.1", + "Microsoft.PowerShell.MarkdownRender": "7.2.0", + "NJsonSchema": "10.5.2", + "System.Drawing.Common": "6.0.0", + "System.Management.Automation": "7.2.1", + "System.Threading.AccessControl": "6.0.0" + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.PowerShell.ConsoleHost/7.2.1": { + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { + "dependencies": { + "System.Diagnostics.EventLog": "6.0.0" + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.PowerShell.MarkdownRender/7.2.0": { + "dependencies": { + "Markdig.Signed": "0.22.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll": { + "assemblyVersion": "7.2.0.0", + "fileVersion": "7.2.0.0" + } + } + }, + "Microsoft.PowerShell.Native/7.2.0": { + "runtimeTargets": { + "runtimes/linux-arm/native/libpsl-native.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libpsl-native.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libpsl-native.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libmi.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libpsl-native.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libpsrpclient.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx/native/libmi.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx/native/libpsl-native.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx/native/libpsrpclient.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-arm/native/pwrshplugin.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-arm64/native/pwrshplugin.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-x64/native/pwrshplugin.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-x86/native/pwrshplugin.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + } + } + }, + "Microsoft.PowerShell.SDK/7.2.1": { + "dependencies": { + "Microsoft.Management.Infrastructure.CimCmdlets": "7.2.1", + "Microsoft.NETCore.Windows.ApiSets": "1.0.1", + "Microsoft.PowerShell.Commands.Diagnostics": "7.2.1", + "Microsoft.PowerShell.Commands.Management": "7.2.1", + "Microsoft.PowerShell.Commands.Utility": "7.2.1", + "Microsoft.PowerShell.ConsoleHost": "7.2.1", + "Microsoft.PowerShell.Security": "7.2.1", + "Microsoft.WSMan.Management": "7.2.1", + "Microsoft.Windows.Compatibility": "6.0.0", + "System.Data.SqlClient": "4.8.3", + "System.IO.Packaging": "6.0.0", + "System.Management.Automation": "7.2.1", + "System.Net.Http.WinHttpHandler": "6.0.0", + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Duplex": "4.9.0", + "System.ServiceModel.Http": "4.9.0", + "System.ServiceModel.NetTcp": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0", + "System.ServiceModel.Security": "4.9.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.PowerShell.Security/7.2.1": { + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "Microsoft.Win32.Registry.AccessControl/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Windows.Compatibility/6.0.0": { + "dependencies": { + "Microsoft.Win32.Registry.AccessControl": "6.0.0", + "Microsoft.Win32.SystemEvents": "6.0.0", + "System.CodeDom": "6.0.0", + "System.ComponentModel.Composition": "6.0.0", + "System.ComponentModel.Composition.Registration": "6.0.0", + "System.Configuration.ConfigurationManager": "6.0.0", + "System.Data.Odbc": "6.0.0", + "System.Data.OleDb": "6.0.0", + "System.Data.SqlClient": "4.8.3", + "System.Diagnostics.EventLog": "6.0.0", + "System.Diagnostics.PerformanceCounter": "6.0.0", + "System.DirectoryServices": "6.0.0", + "System.DirectoryServices.AccountManagement": "6.0.0", + "System.DirectoryServices.Protocols": "6.0.0", + "System.Drawing.Common": "6.0.0", + "System.IO.Packaging": "6.0.0", + "System.IO.Ports": "6.0.0", + "System.Management": "6.0.0", + "System.Reflection.Context": "6.0.0", + "System.Runtime.Caching": "6.0.0", + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.0", + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Cryptography.Xml": "6.0.0", + "System.Security.Permissions": "6.0.0", + "System.ServiceModel.Duplex": "4.9.0", + "System.ServiceModel.Http": "4.9.0", + "System.ServiceModel.NetTcp": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0", + "System.ServiceModel.Security": "4.9.0", + "System.ServiceModel.Syndication": "6.0.0", + "System.ServiceProcess.ServiceController": "6.0.0", + "System.Speech": "6.0.0", + "System.Text.Encoding.CodePages": "6.0.0", + "System.Threading.AccessControl": "6.0.0", + "System.Web.Services.Description": "4.9.0" + } + }, + "Microsoft.WSMan.Management/7.2.1": { + "dependencies": { + "Microsoft.WSMan.Runtime": "7.2.1", + "System.Management.Automation": "7.2.1", + "System.ServiceProcess.ServiceController": "6.0.0" + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.WSMan.Runtime/7.2.1": { + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Namotion.Reflection/2.0.3": { + "dependencies": { + "Microsoft.CSharp": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/Namotion.Reflection.dll": { + "assemblyVersion": "2.0.3.0", + "fileVersion": "2.0.3.0" + } + } + }, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + } + }, + "NJsonSchema/10.5.2": { + "dependencies": { + "Namotion.Reflection": "2.0.3", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netstandard2.0/NJsonSchema.dll": { + "assemblyVersion": "10.5.2.0", + "fileVersion": "10.5.2.0" + } + } + }, + "NLog/4.7.13": { + "runtime": { + "lib/netstandard2.0/NLog.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.7.13.493" + } + } + }, + "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { + "runtimeTargets": { + "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": { + "runtimeTargets": { + "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": { + "runtimeTargets": { + "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.native.System.IO.Ports/6.0.0": { + "dependencies": { + "runtime.linux-arm.runtime.native.System.IO.Ports": "6.0.0", + "runtime.linux-arm64.runtime.native.System.IO.Ports": "6.0.0", + "runtime.linux-x64.runtime.native.System.IO.Ports": "6.0.0", + "runtime.osx-arm64.runtime.native.System.IO.Ports": "6.0.0", + "runtime.osx-x64.runtime.native.System.IO.Ports": "6.0.0" + } + }, + "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": { + "runtimeTargets": { + "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib": { + "rid": "osx-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { + "runtimeTargets": { + "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "System.CodeDom/6.0.0": { + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Immutable/5.0.0": {}, + "System.ComponentModel.Composition/6.0.0": { + "runtime": { + "lib/net6.0/System.ComponentModel.Composition.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.ComponentModel.Composition.Registration/6.0.0": { + "dependencies": { + "System.ComponentModel.Composition": "6.0.0", + "System.Reflection.Context": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.ComponentModel.Composition.Registration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Configuration.ConfigurationManager/6.0.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Data.Odbc/6.0.0": { + "dependencies": { + "System.Text.Encoding.CodePages": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Data.Odbc.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll": { + "rid": "freebsd", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/illumos/lib/net6.0/System.Data.Odbc.dll": { + "rid": "illumos", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/ios/lib/net6.0/System.Data.Odbc.dll": { + "rid": "ios", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/linux/lib/net6.0/System.Data.Odbc.dll": { + "rid": "linux", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/osx/lib/net6.0/System.Data.Odbc.dll": { + "rid": "osx", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/solaris/lib/net6.0/System.Data.Odbc.dll": { + "rid": "solaris", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/tvos/lib/net6.0/System.Data.Odbc.dll": { + "rid": "tvos", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.Data.Odbc.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Data.OleDb/6.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0", + "System.Diagnostics.PerformanceCounter": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Data.OleDb.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Data.OleDb.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Data.SqlClient/4.8.3": { + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Principal.Windows": "5.0.0", + "runtime.native.System.Data.SqlClient.sni": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assemblyVersion": "4.6.1.3", + "fileVersion": "4.700.21.41603" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.6.1.3", + "fileVersion": "4.700.21.41603" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.6.1.3", + "fileVersion": "4.700.21.41603" + } + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Diagnostics.EventLog/6.0.0": { + "runtime": { + "lib/net6.0/System.Diagnostics.EventLog.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "0.0.0.0" + }, + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Diagnostics.PerformanceCounter/6.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.DirectoryServices/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.DirectoryServices.AccountManagement/6.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0", + "System.DirectoryServices": "6.0.0", + "System.DirectoryServices.Protocols": "6.0.0", + "System.Security.AccessControl": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.DirectoryServices.AccountManagement.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.DirectoryServices.Protocols/6.0.0": { + "runtime": { + "lib/net6.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "rid": "linux", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "rid": "osx", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Drawing.Common/6.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Dynamic.Runtime/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Formats.Asn1/6.0.0": {}, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Packaging/6.0.0": { + "runtime": { + "lib/net6.0/System.IO.Packaging.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.IO.Ports/6.0.0": { + "dependencies": { + "runtime.native.System.IO.Ports": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.IO.Ports.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.IO.Ports.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.IO.Ports.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Management/6.0.0": { + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Management.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Management.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Management.Automation/7.2.1": { + "dependencies": { + "Microsoft.ApplicationInsights": "2.18.0", + "Microsoft.Management.Infrastructure": "2.0.0", + "Microsoft.PowerShell.CoreCLR.Eventing": "7.2.1", + "Microsoft.PowerShell.Native": "7.2.0", + "Microsoft.Win32.Registry.AccessControl": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "System.Configuration.ConfigurationManager": "6.0.0", + "System.DirectoryServices": "6.0.0", + "System.Management": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.0", + "System.Security.Permissions": "6.0.0", + "System.Text.Encoding.CodePages": "6.0.0" + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Management.Automation.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + }, + "runtimes/win/lib/net6.0/System.Management.Automation.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "System.Memory/4.5.4": {}, + "System.Net.Http.WinHttpHandler/6.0.0": { + "runtime": { + "lib/net6.0/System.Net.Http.WinHttpHandler.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Numerics.Vectors/4.5.0": {}, + "System.ObjectModel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Private.ServiceModel/4.9.0": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "5.0.0", + "Microsoft.Extensions.ObjectPool": "5.0.10", + "System.Numerics.Vectors": "4.5.0", + "System.Reflection.DispatchProxy": "4.7.1", + "System.Security.Cryptography.Xml": "6.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Private.ServiceModel.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + }, + "resources": { + "lib/netstandard2.0/cs/System.Private.ServiceModel.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/System.Private.ServiceModel.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/System.Private.ServiceModel.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/System.Private.ServiceModel.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/System.Private.ServiceModel.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/System.Private.ServiceModel.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/System.Private.ServiceModel.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/System.Private.ServiceModel.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/System.Private.ServiceModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/System.Private.ServiceModel.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/System.Private.ServiceModel.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/System.Private.ServiceModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/System.Private.ServiceModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Context/6.0.0": { + "runtime": { + "lib/net6.0/System.Reflection.Context.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Reflection.DispatchProxy/4.7.1": {}, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Metadata/5.0.0": {}, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/6.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Security.AccessControl/6.0.0": {}, + "System.Security.Cryptography.Pkcs/6.0.0": { + "dependencies": { + "System.Formats.Asn1": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Cryptography.Xml/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Permissions/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Principal.Windows/5.0.0": {}, + "System.ServiceModel.Duplex/4.9.0": { + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Duplex.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + } + }, + "System.ServiceModel.Http/4.9.0": { + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Http.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + } + }, + "System.ServiceModel.NetTcp/4.9.0": { + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.NetTcp.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + } + }, + "System.ServiceModel.Primitives/4.9.0": { + "dependencies": { + "System.Private.ServiceModel": "4.9.0" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Primitives.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + }, + "lib/net6.0/System.ServiceModel.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.900.21.52002" + } + } + }, + "System.ServiceModel.Security/4.9.0": { + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Security.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + } + }, + "System.ServiceModel.Syndication/6.0.0": { + "runtime": { + "lib/net6.0/System.ServiceModel.Syndication.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.ServiceProcess.ServiceController/6.0.0": { + "dependencies": { + "System.Diagnostics.EventLog": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.ServiceProcess.ServiceController.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Speech/6.0.0": { + "runtime": { + "lib/net6.0/System.Speech.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Speech.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.AccessControl/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Threading.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Threading.AccessControl.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.5.4": {}, + "System.Web.Services.Description/4.9.0": { + "runtime": { + "lib/netstandard2.0/System.Web.Services.Description.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + }, + "resources": { + "lib/netstandard2.0/cs/System.Web.Services.Description.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/System.Web.Services.Description.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/System.Web.Services.Description.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/System.Web.Services.Description.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/System.Web.Services.Description.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/System.Web.Services.Description.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/System.Web.Services.Description.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/System.Web.Services.Description.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/System.Web.Services.Description.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/System.Web.Services.Description.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/System.Web.Services.Description.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/System.Web.Services.Description.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/System.Web.Services.Description.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Windows.Extensions/6.0.0": { + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Typin/3.1.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.Logging.Debug": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Typin.Core": "3.1.0" + }, + "runtime": { + "lib/net6.0/Typin.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "Typin.Core/3.1.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0" + }, + "runtime": { + "lib/net6.0/Typin.Core.dll": { + "assemblyVersion": "3.1.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "YamlDotNet/11.2.1": { + "runtime": { + "lib/netstandard2.1/YamlDotNet.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.2.1.0" + } + } + }, + "Linguard.Core/2.0.0": { + "dependencies": { + "Bogus": "34.0.1", + "ByteSize": "2.1.1", + "FluentValidation": "10.3.6", + "IPNetwork2": "2.5.386", + "Linguard.Log": "2.0.0", + "Microsoft.PowerShell.SDK": "7.2.1", + "System.Management.Automation": "7.2.1", + "YamlDotNet": "11.2.1" + }, + "runtime": { + "Linguard.Core.dll": {} + } + }, + "Linguard.Log/2.0.0": { + "dependencies": { + "NLog": "4.7.13" + }, + "runtime": { + "Linguard.Log.dll": {} + } + } + } + }, + "libraries": { + "Linguard.Cli/2.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Bogus/34.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-49iq7QrD0wb7V4/FcK8p3dWdJxNUbojaqK9L6KRvdikIuRjt38EsNp7QXICcYdbYw01K8BHUdxlnTNn/YX3qDA==", + "path": "bogus/34.0.1", + "hashPath": "bogus.34.0.1.nupkg.sha512" + }, + "ByteSize/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-D+Y3NpbHrW21vZwwegeWf/8iAg2Mr0s7n1su8Ysho+O9dctJ5/EkWUi19QVxc6+nZl080gGTXBP/Nz0twSI3dA==", + "path": "bytesize/2.1.1", + "hashPath": "bytesize.2.1.1.nupkg.sha512" + }, + "CommandLineParser/2.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eco2HlKQBY4Joz9odHigzGpVzv6pjsXnY5lziioMveQxr+i2Z7xYcIOMeZTgYiqnMtMAbXMXsVhrNfWO5vJS8Q==", + "path": "commandlineparser/2.8.0", + "hashPath": "commandlineparser.2.8.0.nupkg.sha512" + }, + "FluentValidation/10.3.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iMd370ZDx6ydm8t7bIFdRbSKX0e42lpvCtifUSbTSXOk5iKjmgl7HU0PXBhIWQAyIRi3gCwfMI9luj8H6K+byw==", + "path": "fluentvalidation/10.3.6", + "hashPath": "fluentvalidation.10.3.6.nupkg.sha512" + }, + "IPNetwork2/2.5.386": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6ihnNm82vyJsUYYfR2BRTziY/mQ5UGLsQZuhdSYPeTlbQLhBW/4BC9hBz3h5bFDn8PkVw9dP0cpv9brIBmk4Fw==", + "path": "ipnetwork2/2.5.386", + "hashPath": "ipnetwork2.2.5.386.nupkg.sha512" + }, + "Markdig.Signed/0.22.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7x3FqS3wk8DXyQLuflD47tBs6+ly6k4VtoDCzlDWfy7XHVsBIi7eGYEM15sPAcwSCQjOksNWE8U5r2v0Sk5FzQ==", + "path": "markdig.signed/0.22.0", + "hashPath": "markdig.signed.0.22.0.nupkg.sha512" + }, + "Microsoft.ApplicationInsights/2.18.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-milJB3VOCoC4EWmpE/Co9cOJ7SV6Ji6VqV4Rf5UlqL9QCg+rAX1y+3Y+j1Gu/j4IExYiPq7SEKqkP2BFnEu6Vw==", + "path": "microsoft.applicationinsights/2.18.0", + "hashPath": "microsoft.applicationinsights.2.18.0.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ==", + "path": "microsoft.bcl.asyncinterfaces/5.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==", + "path": "microsoft.codeanalysis.analyzers/3.3.2", + "hashPath": "microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SMREwaVD5SzatlWhh9aahQAtSWdb63NcE//f+bQzgHSECU6xtDtaxk0kwV+asdFfr6HtW38UeO6jvqdfzudg3w==", + "path": "microsoft.codeanalysis.common/4.0.1", + "hashPath": "microsoft.codeanalysis.common.4.0.1.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q9RxxydPpUElj/x1/qykDTUGsRoKbJG8H5XUSeMGmMu54fBiuX1xyanom9caa1oQfh5JIW1BgLxobSaWs4WyHQ==", + "path": "microsoft.codeanalysis.csharp/4.0.1", + "hashPath": "microsoft.codeanalysis.csharp.4.0.1.nupkg.sha512" + }, + "Microsoft.CSharp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==", + "path": "microsoft.csharp/4.3.0", + "hashPath": "microsoft.csharp.4.3.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", + "path": "microsoft.extensions.dependencyinjection/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", + "path": "microsoft.extensions.logging/6.0.0", + "hashPath": "microsoft.extensions.logging.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", + "path": "microsoft.extensions.logging.abstractions/6.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Debug/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-M9g/JixseSZATJE9tcMn9uzoD4+DbSglivFqVx8YkRJ7VVPmnvCEbOZ0AAaxsL1EKyI4cz07DXOOJExxNsUOHw==", + "path": "microsoft.extensions.logging.debug/6.0.0", + "hashPath": "microsoft.extensions.logging.debug.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.ObjectPool/5.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pp9tbGqIhdEXL6Q1yJl+zevAJSq4BsxqhS1GXzBvEsEz9DDNu9GLNzgUy2xyFc4YjB4m4Ff2YEWTnvQvVYdkvQ==", + "path": "microsoft.extensions.objectpool/5.0.10", + "hashPath": "microsoft.extensions.objectpool.5.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "path": "microsoft.extensions.options/6.0.0", + "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "path": "microsoft.extensions.primitives/6.0.0", + "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" + }, + "Microsoft.Management.Infrastructure/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IaKZRNBBv3sdrmBWd+aqwHq8cVHk/3WgWFAN/dt40MRY9rbtHiDfTTmaEN0tGTmQqGCGDo/ncntA8MvFMvcsRw==", + "path": "microsoft.management.infrastructure/2.0.0", + "hashPath": "microsoft.management.infrastructure.2.0.0.nupkg.sha512" + }, + "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xe1x237SCyrjpmW1mP1T69/OOc/gtU66P8wVC+b4/u7Hz7fIO6B8P5yVQQfb79rAe1GocruIpQlX4KXTFQf09w==", + "path": "microsoft.management.infrastructure.cimcmdlets/7.2.1", + "hashPath": "microsoft.management.infrastructure.cimcmdlets.7.2.1.nupkg.sha512" + }, + "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-p0lslMX5bdWLxO2P7ao+rjAMOB0LEwPYpzvdCQ2OEYgX2NxFpQ8ILvqPGnYlTAb53rT8gu5DyIol1HboHFYfxQ==", + "path": "microsoft.management.infrastructure.runtime.unix/2.0.0", + "hashPath": "microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512" + }, + "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vjBWQeDOjgernkrOdbEgn7M70SF7hof7ORdKPSlL06Uc15+oYdth5dZju9KsgUoti/cwnkZTiwtDx/lRtay0sA==", + "path": "microsoft.management.infrastructure.runtime.win/2.0.0", + "hashPath": "microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "path": "microsoft.netcore.platforms/1.1.0", + "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==", + "path": "microsoft.netcore.windows.apisets/1.0.1", + "hashPath": "microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512" + }, + "Microsoft.PowerShell.Commands.Diagnostics/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Bgw4Egv7cnYUTWAy6koxg+0+/8K6rqUdlAiAxuJby9FeDPZQFfqCHQqlyP9JDa6lvbtmeBx1btFDx6Kh8bxdwQ==", + "path": "microsoft.powershell.commands.diagnostics/7.2.1", + "hashPath": "microsoft.powershell.commands.diagnostics.7.2.1.nupkg.sha512" + }, + "Microsoft.PowerShell.Commands.Management/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YAMrGDF2QTg6Gwz07+m1+BnmcYsPyywfY4J8nOpImfXZLLNhD7zQQP0orNHu9WPPV3/+E33qUyPj5J3ugCMk6A==", + "path": "microsoft.powershell.commands.management/7.2.1", + "hashPath": "microsoft.powershell.commands.management.7.2.1.nupkg.sha512" + }, + "Microsoft.PowerShell.Commands.Utility/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PU15IxUJd7nSacTstlxqJoEeGlI+BH6cUKTppkkIIxEj7EfwC5nD1qTL41xye63BFeZmOFeqAhMI6LtJUd875g==", + "path": "microsoft.powershell.commands.utility/7.2.1", + "hashPath": "microsoft.powershell.commands.utility.7.2.1.nupkg.sha512" + }, + "Microsoft.PowerShell.ConsoleHost/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uAPSsTmkOa7na1+OAPF87yBRwD1Ka/qXThoyrlvP9ihzMWfHM52k3MuKVEGi04VP3Wdi7U4Rzkr3svxDDmkHgA==", + "path": "microsoft.powershell.consolehost/7.2.1", + "hashPath": "microsoft.powershell.consolehost.7.2.1.nupkg.sha512" + }, + "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fUz7InjavqKtslkQN828nWbZLnmmJRL9rn4b3e/XXdx0BcN+65x/pSgMnehwDVGIoqUPUMXN54eDo4HRVcLA5g==", + "path": "microsoft.powershell.coreclr.eventing/7.2.1", + "hashPath": "microsoft.powershell.coreclr.eventing.7.2.1.nupkg.sha512" + }, + "Microsoft.PowerShell.MarkdownRender/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1vqDtdX9RCGsMWCbzp0CIxZW3slWgq8mYHDfUlUKzmkV57fMAn4m0Gy2OtsqopZzrOiVJci+QCWx5FB7BVpMlw==", + "path": "microsoft.powershell.markdownrender/7.2.0", + "hashPath": "microsoft.powershell.markdownrender.7.2.0.nupkg.sha512" + }, + "Microsoft.PowerShell.Native/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TauOu3bYr4DRh9HpH3+fgaL+y2GY47KLsgU6qX1NDLqHshdEaCCjiF0N5sDEgCEhSb38FwWhpdFTIQvoOcYCXQ==", + "path": "microsoft.powershell.native/7.2.0", + "hashPath": "microsoft.powershell.native.7.2.0.nupkg.sha512" + }, + "Microsoft.PowerShell.SDK/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UufIcywqI/22p0oqC5qg+yDoW39U2JAQyaHxy2Tr/h0hdWuFimtmhxp/FDXTxszgOdobtjcrCkSzqcoNmu/vQQ==", + "path": "microsoft.powershell.sdk/7.2.1", + "hashPath": "microsoft.powershell.sdk.7.2.1.nupkg.sha512" + }, + "Microsoft.PowerShell.Security/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GV3RuuOmXHAaEjeBcyixdzUIAQvHW6xgoWwafzTe97DbhI+N1sg4fa/FQ9pd8lqG+kkWxGwTy1VgudXX6rhUkg==", + "path": "microsoft.powershell.security/7.2.1", + "hashPath": "microsoft.powershell.security.7.2.1.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry.AccessControl/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UoE+eeuBKL+GFHxHV3FjHlY5K8Wr/IR7Ee/a2oDNqFodF1iMqyt5hIs0U9Z217AbWrHrNle4750kD03hv1IMZw==", + "path": "microsoft.win32.registry.accesscontrol/6.0.0", + "hashPath": "microsoft.win32.registry.accesscontrol.6.0.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "path": "microsoft.win32.systemevents/6.0.0", + "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" + }, + "Microsoft.Windows.Compatibility/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9esuK5JqnjkDgO9/AHesyJSG0aKwpfLVzTw6nIGYhqE91VLxZyv3HKulNoPVy/NOuyAaf1kE4FKtdZDzdd/SLw==", + "path": "microsoft.windows.compatibility/6.0.0", + "hashPath": "microsoft.windows.compatibility.6.0.0.nupkg.sha512" + }, + "Microsoft.WSMan.Management/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vMOJMof4eLql180G4PmTurN8h8+VmPaf1l/Tqq+GI7HYyNv140iY3/Z18MiZA4dRG14qghLNo5JxtTolY7b4og==", + "path": "microsoft.wsman.management/7.2.1", + "hashPath": "microsoft.wsman.management.7.2.1.nupkg.sha512" + }, + "Microsoft.WSMan.Runtime/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v14vzUXIg7opXoQI8Eb82dvsRwBNylZ44lvyXOBSRCiVfvMhyTqE8bpPWbwwmQ5JZRnG/dP5/aOYuu9l163fyQ==", + "path": "microsoft.wsman.runtime/7.2.1", + "hashPath": "microsoft.wsman.runtime.7.2.1.nupkg.sha512" + }, + "Namotion.Reflection/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tZCe/UrSBAMW8A4TjD/SlpRHaWjnHlSWdyRuOXhf3yrE0OX+4fXg0uzj7mwFDclXznfCGRAZbP+akPt4G/mclw==", + "path": "namotion.reflection/2.0.3", + "hashPath": "namotion.reflection.2.0.3.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + }, + "NJsonSchema/10.5.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vr2CbySuXh74TQFU0rGJYZOS492xOE64cPXdB7a0cfXJb/N45Bf4v7sd4LOla0jNhgc5V/B61Ko3qecriL195w==", + "path": "njsonschema/10.5.2", + "hashPath": "njsonschema.10.5.2.nupkg.sha512" + }, + "NLog/4.7.13": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AvoGpCuq36B+0wY313XA6gC+YeMvk24rqF8P+HS9fInBGOjCzPjpXp2ln9ATZjPOJtXgHfc8zNmTjyswFGLxvg==", + "path": "nlog/4.7.13", + "hashPath": "nlog.4.7.13.nupkg.sha512" + }, + "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-75q52H7CSpgIoIDwXb9o833EvBZIXJ0mdPhz1E6jSisEXUBlSCPalC29cj3EXsjpuDwr0dj1LRXZepIQH/oL4Q==", + "path": "runtime.linux-arm.runtime.native.system.io.ports/6.0.0", + "hashPath": "runtime.linux-arm.runtime.native.system.io.ports.6.0.0.nupkg.sha512" + }, + "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xn2bMThmXr3CsvOYmS8ex2Yz1xo+kcnhVg2iVhS9PlmqjZPAkrEo/I40wjrBZH/tU4kvH0s1AE8opAvQ3KIS8g==", + "path": "runtime.linux-arm64.runtime.native.system.io.ports/6.0.0", + "hashPath": "runtime.linux-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" + }, + "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-16nbNXwv0sC+gLGIuecri0skjuh6R1maIJggsaNP7MQBcbVcEfWFUOkEnsnvoLEjy0XerfibuRptfQ8AmdIcWA==", + "path": "runtime.linux-x64.runtime.native.system.io.ports/6.0.0", + "hashPath": "runtime.linux-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", + "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512" + }, + "runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KaaXlpOcuZjMdmyF5wzzx3b+PRKIzt6A5Ax9dKenPDQbVJAFpev+casD0BIig1pBcbs3zx7CqWemzUJKAeHdSQ==", + "path": "runtime.native.system.io.ports/6.0.0", + "hashPath": "runtime.native.system.io.ports.6.0.0.nupkg.sha512" + }, + "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fXG12NodG1QrCdoaeSQ1gVnk/koi4WYY4jZtarMkZeQMyReBm1nZlSRoPnUjLr2ZR36TiMjpcGnQfxymieUe7w==", + "path": "runtime.osx-arm64.runtime.native.system.io.ports/6.0.0", + "hashPath": "runtime.osx-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" + }, + "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/As+zPY49+dSUXkh+fTUbyPhqrdGN//evLxo4Vue88pfh1BHZgF7q4kMblTkxYvwR6Vi03zSYxysSFktO8/SDQ==", + "path": "runtime.osx-x64.runtime.native.system.io.ports/6.0.0", + "hashPath": "runtime.osx-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "System.CodeDom/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "path": "system.codedom/6.0.0", + "hashPath": "system.codedom.6.0.0.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Immutable/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", + "path": "system.collections.immutable/5.0.0", + "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512" + }, + "System.ComponentModel.Composition/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-60Qv+F7oxomOjJeTDA5Z4iCyFbQ0B/2Mi5HT+13pxxq0lVnu2ipbWMzFB+RWKr3wWKA8BSncXr9PH/fECwMX5Q==", + "path": "system.componentmodel.composition/6.0.0", + "hashPath": "system.componentmodel.composition.6.0.0.nupkg.sha512" + }, + "System.ComponentModel.Composition.Registration/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+i3RLlOgTsf15VeADBPpzPyRiXq71aLSuzdHeNtmq9f6BwpF3OWhB76p0WDUNCa3Z+SLD4dJbBM9yAep7kQCGA==", + "path": "system.componentmodel.composition.registration/6.0.0", + "hashPath": "system.componentmodel.composition.registration.6.0.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", + "path": "system.configuration.configurationmanager/6.0.0", + "hashPath": "system.configuration.configurationmanager.6.0.0.nupkg.sha512" + }, + "System.Data.Odbc/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pnZjwe0Qwr1Rnp7NExd5zz4YwXJrYuAbWNKjEQpTzCEg6f/L5DYJS7w3hG3vgSj1t/r79UL390YzXIklf1VuQQ==", + "path": "system.data.odbc/6.0.0", + "hashPath": "system.data.odbc.6.0.0.nupkg.sha512" + }, + "System.Data.OleDb/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LQ8PjTIF1LtrrlGiyiTVjAkQtTWKm9GSNnygIlWjhN9y88s7xhy6DUNDDkmQQ9f6ex7mA4k0Tl97lz/CklaiLg==", + "path": "system.data.oledb/6.0.0", + "hashPath": "system.data.oledb.6.0.0.nupkg.sha512" + }, + "System.Data.SqlClient/4.8.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==", + "path": "system.data.sqlclient/4.8.3", + "hashPath": "system.data.sqlclient.4.8.3.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "path": "system.diagnostics.eventlog/6.0.0", + "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gbeE5tNp/oB7O8kTTLh3wPPJCxpNOphXPTWVs1BsYuFOYapFijWuh0LYw1qnDo4gwDUYPXOmpTIhvtxisGsYOQ==", + "path": "system.diagnostics.performancecounter/6.0.0", + "hashPath": "system.diagnostics.performancecounter.6.0.0.nupkg.sha512" + }, + "System.DirectoryServices/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kp/Op0nxDVGlElDKh8TsXO0GKXftQgAB6sJk0wUetZK1Rr0Pbd86Tn7AllLLlROFZa4BTl/LVHakljtGELFzCg==", + "path": "system.directoryservices/6.0.0", + "hashPath": "system.directoryservices.6.0.0.nupkg.sha512" + }, + "System.DirectoryServices.AccountManagement/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2iKkY6VC4WX6H13N8WhH2SRUfWCwg2KZR5w9JIS9cw9N8cZhT7VXxHX0L6OX6Po419aSu2LWrJE9tu6b+cUnPA==", + "path": "system.directoryservices.accountmanagement/6.0.0", + "hashPath": "system.directoryservices.accountmanagement.6.0.0.nupkg.sha512" + }, + "System.DirectoryServices.Protocols/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-++WKU7HQPo/FJdhywWw+q2lLjcVAGVw5XLH9kRCV+4DvkhVAcHCksh0ezIqwNROmaU9LMJN0d/LAdeWXu3pi6Q==", + "path": "system.directoryservices.protocols/6.0.0", + "hashPath": "system.directoryservices.protocols.6.0.0.nupkg.sha512" + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "path": "system.drawing.common/6.0.0", + "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", + "path": "system.dynamic.runtime/4.3.0", + "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" + }, + "System.Formats.Asn1/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA==", + "path": "system.formats.asn1/6.0.0", + "hashPath": "system.formats.asn1.6.0.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Packaging/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-C7OkTRIjqIjAKu6ef/fuj8ynCZTPcTYZnvHaq48bniACgXXJogmEoIc56YCDNTc14xhsbLmgpS3KP+evbsUa2g==", + "path": "system.io.packaging/6.0.0", + "hashPath": "system.io.packaging.6.0.0.nupkg.sha512" + }, + "System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dRyGI7fUESar5ZLIpiBOaaNLW7YyOBGftjj5Of+xcduC/Rjl7RjhEnWDvvNBmHuF3d0tdXoqdVI/yrVA8f00XA==", + "path": "system.io.ports/6.0.0", + "hashPath": "system.io.ports.6.0.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Management/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sHsESYMmPDhQuOC66h6AEOs/XowzKsbT9srMbX71TCXP58hkpn1BqBjdmKj1+DCA/WlBETX1K5WjQHwmV0Txrg==", + "path": "system.management/6.0.0", + "hashPath": "system.management.6.0.0.nupkg.sha512" + }, + "System.Management.Automation/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YlTE+q14vQ1YU//A5+/Jwl5+L5r6uOVIWuB4D/T9r80AaCeUAZMMvTKjgvIr9lwkovwQflVL+1JfBAi9f0q0KA==", + "path": "system.management.automation/7.2.1", + "hashPath": "system.management.automation.7.2.1.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Net.Http.WinHttpHandler/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jubNN9jH4NzVrvEf4fGwESLBsfH8whWNbHMhgM6IwA8UCt6+/M19bbOHc21JhigvC2HQKCl8HKGZMcBtIpzqIg==", + "path": "system.net.http.winhttphandler/6.0.0", + "hashPath": "system.net.http.winhttphandler.6.0.0.nupkg.sha512" + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "path": "system.numerics.vectors/4.5.0", + "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Private.ServiceModel/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-d3RjkrtpjUQ63PzFmm/SZ4aOXeJNP+8YW5QeP0lCJy8iX4xlHdlNLWTF9sRn9SmrFTK757kQXT9Op/R4l858uw==", + "path": "system.private.servicemodel/4.9.0", + "hashPath": "system.private.servicemodel.4.9.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Context/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vi+Gb41oyOYie7uLSsjRmfRg3bryUg5DssJvj3gDUl0D8z6ipSm6/yi/XNx2rcS5iVMvHcwRUHjcx7ixv0K3/w==", + "path": "system.reflection.context/6.0.0", + "hashPath": "system.reflection.context.6.0.0.nupkg.sha512" + }, + "System.Reflection.DispatchProxy/4.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-C1sMLwIG6ILQ2bmOT4gh62V6oJlyF4BlHcVMrOoor49p0Ji2tA8QAoqyMcIhAdH6OHKJ8m7BU+r4LK2CUEOKqw==", + "path": "system.reflection.dispatchproxy/4.7.1", + "hashPath": "system.reflection.dispatchproxy.4.7.1.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Metadata/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==", + "path": "system.reflection.metadata/5.0.0", + "hashPath": "system.reflection.metadata.5.0.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==", + "path": "system.runtime.caching/6.0.0", + "hashPath": "system.runtime.caching.6.0.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "path": "system.security.accesscontrol/6.0.0", + "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Pkcs/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-elM3x+xSRhzQysiqo85SbidJJ2YbZlnvmh+53TuSZHsD7dNuuEWser+9EFtY+rYupBwkq2avc6ZCO3/6qACgmg==", + "path": "system.security.cryptography.pkcs/6.0.0", + "hashPath": "system.security.cryptography.pkcs.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "path": "system.security.cryptography.protecteddata/6.0.0", + "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Xml/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-puJ4UCh9JVRwOCyCIcq71JY6Axr8Sp8E2GjTIU1Fj8hm4+oX6NEoyGFGa/+pBG8SrVxbQPSj7hvtaREyTHHsmw==", + "path": "system.security.cryptography.xml/6.0.0", + "hashPath": "system.security.cryptography.xml.6.0.0.nupkg.sha512" + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "path": "system.security.permissions/6.0.0", + "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "path": "system.security.principal.windows/5.0.0", + "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" + }, + "System.ServiceModel.Duplex/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Yb8MFiJxBBtm2JnfS/5SxYzm2HqkEmHu5xeaVIHXy83sNpty9wc30JifH2xgda821D6nr1UctbwbdZqN4LBUKQ==", + "path": "system.servicemodel.duplex/4.9.0", + "hashPath": "system.servicemodel.duplex.4.9.0.nupkg.sha512" + }, + "System.ServiceModel.Http/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z+s3RkLNzJ31fDXAjqXdXp67FqsNG4V3Md3r7FOrzMkHmg61gY8faEfTFPBLxU9tax1HPWt6IHVAquXBKySJaw==", + "path": "system.servicemodel.http/4.9.0", + "hashPath": "system.servicemodel.http.4.9.0.nupkg.sha512" + }, + "System.ServiceModel.NetTcp/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nXgnnkrZERUF/KwmoLwZPkc7fqgiq94DXkmUZBvDNh/LdZquDvjy2NbhJLElpApOa5x8zEoQoBZyJ2PqNC39qg==", + "path": "system.servicemodel.nettcp/4.9.0", + "hashPath": "system.servicemodel.nettcp.4.9.0.nupkg.sha512" + }, + "System.ServiceModel.Primitives/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LTFPVdS8Nf76xg/wRZkDa+2Q+GnjTOmwkTlwuoetwX37mAfYnGkf7p8ydhpDwVmomNljpUOhUUGxfjQyd5YcOg==", + "path": "system.servicemodel.primitives/4.9.0", + "hashPath": "system.servicemodel.primitives.4.9.0.nupkg.sha512" + }, + "System.ServiceModel.Security/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iurpbSmPgotHps94VQ6acvL6hU2gjiuBmQI7PwLLN76jsbSpUcahT0PglccKIAwoMujATk/LWtAapBHpwCFn2g==", + "path": "system.servicemodel.security/4.9.0", + "hashPath": "system.servicemodel.security.4.9.0.nupkg.sha512" + }, + "System.ServiceModel.Syndication/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cp1mMNG87iJtE0oHXFtfWT6cfski2JNo5iU0siTPi/uN2k1CIJI6FE4jr4v3got2dzt7wBq17fSy44btun9GiA==", + "path": "system.servicemodel.syndication/6.0.0", + "hashPath": "system.servicemodel.syndication.6.0.0.nupkg.sha512" + }, + "System.ServiceProcess.ServiceController/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qMBvG8ZFbkXoe0Z5/D7FAAadfPkH2v7vSuh2xsLf3U6jNoejpIdeV18A0htiASsLK1CCAc/p59kaLXlt2yB1gw==", + "path": "system.serviceprocess.servicecontroller/6.0.0", + "hashPath": "system.serviceprocess.servicecontroller.6.0.0.nupkg.sha512" + }, + "System.Speech/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GQovERMrNP0Vbtgk8LzH4PlFS6lqHgsL9WkUmv8Kkxa0m0vNakitytpHZlfJ9WR7n9WKLXh68nn2kyL9mflnLg==", + "path": "system.speech/6.0.0", + "hashPath": "system.speech.6.0.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", + "path": "system.text.encoding.codepages/6.0.0", + "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.AccessControl/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2258mqWesMch/xCpcnjJBgJP33yhpZLGLbEOm01qwq0efG4b+NG8c9sxYOWNxmDQ82swXrnQRl1Yp2wC1NrfZA==", + "path": "system.threading.accesscontrol/6.0.0", + "hashPath": "system.threading.accesscontrol.6.0.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "path": "system.threading.tasks.extensions/4.5.4", + "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" + }, + "System.Web.Services.Description/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-d20B3upsWddwSG5xF3eQLs0cAV3tXDsBNqP4kh02ylfgZwqfpf4f/9KiZVIGIoxULt2cKqxWs+U4AdNAJ7L8cQ==", + "path": "system.web.services.description/4.9.0", + "hashPath": "system.web.services.description.4.9.0.nupkg.sha512" + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "path": "system.windows.extensions/6.0.0", + "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" + }, + "Typin/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BV/TvL7a2c8FHBFc3YiWEzQua2NitFY5JnE30zJxo2nQrHeZuJYruZ7H+sT+/cnBLjsDr/mUpYtIS1HRTJQ3xg==", + "path": "typin/3.1.0", + "hashPath": "typin.3.1.0.nupkg.sha512" + }, + "Typin.Core/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0M44paHjcQuVTMCyfySqklbfVcQ38GfFGBkeKz0E+zhXdV0wD9tI5GwZdjUPOGlqhOmP7CHh452JSgJK2hc57A==", + "path": "typin.core/3.1.0", + "hashPath": "typin.core.3.1.0.nupkg.sha512" + }, + "YamlDotNet/11.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tBt8K+korVfrjH9wyDEhiLKxbs8qoLCLIFwvYgkSUuMC9//w3z0cFQ8LQAI/5MCKq+BMil0cfRTRvPeE7eXhQw==", + "path": "yamldotnet/11.2.1", + "hashPath": "yamldotnet.11.2.1.nupkg.sha512" + }, + "Linguard.Core/2.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Linguard.Log/2.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/linguard/Cli/bin/Debug/net6.0/Linguard.Cli.dll b/linguard/Cli/bin/Debug/net6.0/Linguard.Cli.dll new file mode 100644 index 0000000..5de6843 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/Linguard.Cli.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/Linguard.Cli.exe b/linguard/Cli/bin/Debug/net6.0/Linguard.Cli.exe new file mode 100644 index 0000000..e8c7022 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/Linguard.Cli.exe differ diff --git a/linguard/Cli/bin/Debug/net6.0/Linguard.Cli.pdb b/linguard/Cli/bin/Debug/net6.0/Linguard.Cli.pdb new file mode 100644 index 0000000..4a718f4 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/Linguard.Cli.pdb differ diff --git a/linguard/Cli/bin/Debug/net6.0/Linguard.Cli.runtimeconfig.json b/linguard/Cli/bin/Debug/net6.0/Linguard.Cli.runtimeconfig.json new file mode 100644 index 0000000..4986d16 --- /dev/null +++ b/linguard/Cli/bin/Debug/net6.0/Linguard.Cli.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + } + } +} \ No newline at end of file diff --git a/linguard/Cli/bin/Debug/net6.0/Linguard.Core.dll b/linguard/Cli/bin/Debug/net6.0/Linguard.Core.dll new file mode 100644 index 0000000..f622876 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/Linguard.Core.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/Linguard.Core.pdb b/linguard/Cli/bin/Debug/net6.0/Linguard.Core.pdb new file mode 100644 index 0000000..5896cce Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/Linguard.Core.pdb differ diff --git a/linguard/Cli/bin/Debug/net6.0/Linguard.Log.dll b/linguard/Cli/bin/Debug/net6.0/Linguard.Log.dll new file mode 100644 index 0000000..561b728 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/Linguard.Log.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/Linguard.Log.pdb b/linguard/Cli/bin/Debug/net6.0/Linguard.Log.pdb new file mode 100644 index 0000000..ef5cdfa Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/Linguard.Log.pdb differ diff --git a/linguard/Cli/bin/Debug/net6.0/Markdig.Signed.dll b/linguard/Cli/bin/Debug/net6.0/Markdig.Signed.dll new file mode 100644 index 0000000..722a399 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/Markdig.Signed.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/Microsoft.ApplicationInsights.dll b/linguard/Cli/bin/Debug/net6.0/Microsoft.ApplicationInsights.dll new file mode 100644 index 0000000..8ef5eef Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/Microsoft.ApplicationInsights.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll b/linguard/Cli/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100644 index 0000000..be25bdb Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.dll b/linguard/Cli/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.dll new file mode 100644 index 0000000..581191d Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/Microsoft.CodeAnalysis.dll b/linguard/Cli/bin/Debug/net6.0/Microsoft.CodeAnalysis.dll new file mode 100644 index 0000000..c653dc8 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/Microsoft.CodeAnalysis.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 0000000..b4ee93d Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll b/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..97525f7 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll b/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..bb27a2f Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.Logging.Debug.dll b/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.Logging.Debug.dll new file mode 100644 index 0000000..6fc456c Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.Logging.Debug.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll b/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll new file mode 100644 index 0000000..9e2d7f9 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.Logging.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.ObjectPool.dll b/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.ObjectPool.dll new file mode 100644 index 0000000..730dead Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.ObjectPool.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.Options.dll b/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.Options.dll new file mode 100644 index 0000000..604b602 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.Options.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll b/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll new file mode 100644 index 0000000..1b2c43a Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/Microsoft.Extensions.Primitives.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/Microsoft.PowerShell.MarkdownRender.dll b/linguard/Cli/bin/Debug/net6.0/Microsoft.PowerShell.MarkdownRender.dll new file mode 100644 index 0000000..68f0076 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/Microsoft.PowerShell.MarkdownRender.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/Microsoft.Win32.Registry.AccessControl.dll b/linguard/Cli/bin/Debug/net6.0/Microsoft.Win32.Registry.AccessControl.dll new file mode 100644 index 0000000..b598181 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/Microsoft.Win32.Registry.AccessControl.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll b/linguard/Cli/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..3ab5850 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/NJsonSchema.dll b/linguard/Cli/bin/Debug/net6.0/NJsonSchema.dll new file mode 100644 index 0000000..0e6ee5b Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/NJsonSchema.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/NLog.config b/linguard/Cli/bin/Debug/net6.0/NLog.config new file mode 100644 index 0000000..5a581ee --- /dev/null +++ b/linguard/Cli/bin/Debug/net6.0/NLog.config @@ -0,0 +1,15 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/linguard/Cli/bin/Debug/net6.0/NLog.dll b/linguard/Cli/bin/Debug/net6.0/NLog.dll new file mode 100644 index 0000000..4aa35e7 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/NLog.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/Namotion.Reflection.dll b/linguard/Cli/bin/Debug/net6.0/Namotion.Reflection.dll new file mode 100644 index 0000000..39dbbfa Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/Namotion.Reflection.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/Newtonsoft.Json.dll b/linguard/Cli/bin/Debug/net6.0/Newtonsoft.Json.dll new file mode 100644 index 0000000..1ffeabe Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/Newtonsoft.Json.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.CodeDom.dll b/linguard/Cli/bin/Debug/net6.0/System.CodeDom.dll new file mode 100644 index 0000000..54c82b6 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.CodeDom.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.ComponentModel.Composition.Registration.dll b/linguard/Cli/bin/Debug/net6.0/System.ComponentModel.Composition.Registration.dll new file mode 100644 index 0000000..586e1af Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.ComponentModel.Composition.Registration.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.ComponentModel.Composition.dll b/linguard/Cli/bin/Debug/net6.0/System.ComponentModel.Composition.dll new file mode 100644 index 0000000..3e063b3 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.ComponentModel.Composition.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll b/linguard/Cli/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll new file mode 100644 index 0000000..d67c8a8 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Data.Odbc.dll b/linguard/Cli/bin/Debug/net6.0/System.Data.Odbc.dll new file mode 100644 index 0000000..5101278 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.Data.Odbc.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Data.OleDb.dll b/linguard/Cli/bin/Debug/net6.0/System.Data.OleDb.dll new file mode 100644 index 0000000..f7840cd Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.Data.OleDb.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Data.SqlClient.dll b/linguard/Cli/bin/Debug/net6.0/System.Data.SqlClient.dll new file mode 100644 index 0000000..d03f8a1 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.Data.SqlClient.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Diagnostics.EventLog.dll b/linguard/Cli/bin/Debug/net6.0/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..8a65e71 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.Diagnostics.EventLog.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Diagnostics.PerformanceCounter.dll b/linguard/Cli/bin/Debug/net6.0/System.Diagnostics.PerformanceCounter.dll new file mode 100644 index 0000000..e9092d7 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.Diagnostics.PerformanceCounter.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.DirectoryServices.AccountManagement.dll b/linguard/Cli/bin/Debug/net6.0/System.DirectoryServices.AccountManagement.dll new file mode 100644 index 0000000..77183e0 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.DirectoryServices.AccountManagement.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.DirectoryServices.Protocols.dll b/linguard/Cli/bin/Debug/net6.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..d62b127 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.DirectoryServices.Protocols.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.DirectoryServices.dll b/linguard/Cli/bin/Debug/net6.0/System.DirectoryServices.dll new file mode 100644 index 0000000..803611c Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.DirectoryServices.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Drawing.Common.dll b/linguard/Cli/bin/Debug/net6.0/System.Drawing.Common.dll new file mode 100644 index 0000000..be6915e Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.Drawing.Common.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.IO.Packaging.dll b/linguard/Cli/bin/Debug/net6.0/System.IO.Packaging.dll new file mode 100644 index 0000000..007253e Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.IO.Packaging.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.IO.Ports.dll b/linguard/Cli/bin/Debug/net6.0/System.IO.Ports.dll new file mode 100644 index 0000000..e10e943 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.IO.Ports.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Management.dll b/linguard/Cli/bin/Debug/net6.0/System.Management.dll new file mode 100644 index 0000000..fae6cf1 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.Management.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Net.Http.WinHttpHandler.dll b/linguard/Cli/bin/Debug/net6.0/System.Net.Http.WinHttpHandler.dll new file mode 100644 index 0000000..2490b06 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.Net.Http.WinHttpHandler.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Net.IPNetwork.dll b/linguard/Cli/bin/Debug/net6.0/System.Net.IPNetwork.dll new file mode 100644 index 0000000..9b94f0c Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.Net.IPNetwork.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Private.ServiceModel.dll b/linguard/Cli/bin/Debug/net6.0/System.Private.ServiceModel.dll new file mode 100644 index 0000000..82e7a91 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.Private.ServiceModel.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Reflection.Context.dll b/linguard/Cli/bin/Debug/net6.0/System.Reflection.Context.dll new file mode 100644 index 0000000..3faa973 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.Reflection.Context.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Runtime.Caching.dll b/linguard/Cli/bin/Debug/net6.0/System.Runtime.Caching.dll new file mode 100644 index 0000000..14826eb Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.Runtime.Caching.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Security.Cryptography.Pkcs.dll b/linguard/Cli/bin/Debug/net6.0/System.Security.Cryptography.Pkcs.dll new file mode 100644 index 0000000..c2bb12e Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.Security.Cryptography.Pkcs.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll b/linguard/Cli/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..1ba8770 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Security.Cryptography.Xml.dll b/linguard/Cli/bin/Debug/net6.0/System.Security.Cryptography.Xml.dll new file mode 100644 index 0000000..96d460e Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.Security.Cryptography.Xml.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Security.Permissions.dll b/linguard/Cli/bin/Debug/net6.0/System.Security.Permissions.dll new file mode 100644 index 0000000..39dd4df Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.Security.Permissions.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.Duplex.dll b/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.Duplex.dll new file mode 100644 index 0000000..7eeafd5 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.Duplex.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.Http.dll b/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.Http.dll new file mode 100644 index 0000000..79aab9d Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.Http.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.NetTcp.dll b/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.NetTcp.dll new file mode 100644 index 0000000..a59b27e Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.NetTcp.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.Primitives.dll b/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.Primitives.dll new file mode 100644 index 0000000..8c32245 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.Primitives.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.Security.dll b/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.Security.dll new file mode 100644 index 0000000..5f2fc73 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.Security.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.Syndication.dll b/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.Syndication.dll new file mode 100644 index 0000000..0dab5e1 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.Syndication.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.dll b/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.dll new file mode 100644 index 0000000..e7849b5 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.ServiceModel.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.ServiceProcess.ServiceController.dll b/linguard/Cli/bin/Debug/net6.0/System.ServiceProcess.ServiceController.dll new file mode 100644 index 0000000..3e5508c Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.ServiceProcess.ServiceController.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Speech.dll b/linguard/Cli/bin/Debug/net6.0/System.Speech.dll new file mode 100644 index 0000000..9d14819 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.Speech.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Threading.AccessControl.dll b/linguard/Cli/bin/Debug/net6.0/System.Threading.AccessControl.dll new file mode 100644 index 0000000..b6d69a4 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.Threading.AccessControl.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Web.Services.Description.dll b/linguard/Cli/bin/Debug/net6.0/System.Web.Services.Description.dll new file mode 100644 index 0000000..c230b5c Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.Web.Services.Description.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/System.Windows.Extensions.dll b/linguard/Cli/bin/Debug/net6.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..c3e8844 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/System.Windows.Extensions.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/Typin.Core.dll b/linguard/Cli/bin/Debug/net6.0/Typin.Core.dll new file mode 100644 index 0000000..58f476f Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/Typin.Core.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/Typin.dll b/linguard/Cli/bin/Debug/net6.0/Typin.dll new file mode 100644 index 0000000..67662ab Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/Typin.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/YamlDotNet.dll b/linguard/Cli/bin/Debug/net6.0/YamlDotNet.dll new file mode 100644 index 0000000..76b7999 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/YamlDotNet.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..d0282cc Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..fd3063e Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/cs/System.Private.ServiceModel.resources.dll b/linguard/Cli/bin/Debug/net6.0/cs/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..2cedcf5 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/cs/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/cs/System.Web.Services.Description.resources.dll b/linguard/Cli/bin/Debug/net6.0/cs/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..efe25cb Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/cs/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..e079e05 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..54aa47d Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/de/System.Private.ServiceModel.resources.dll b/linguard/Cli/bin/Debug/net6.0/de/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..3dc63b8 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/de/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/de/System.Web.Services.Description.resources.dll b/linguard/Cli/bin/Debug/net6.0/de/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..1f9fae9 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/de/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..4afd9fa Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..2d6218e Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/es/System.Private.ServiceModel.resources.dll b/linguard/Cli/bin/Debug/net6.0/es/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..65078e9 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/es/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/es/System.Web.Services.Description.resources.dll b/linguard/Cli/bin/Debug/net6.0/es/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..edfce43 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/es/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..93a31c1 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..a22b8d5 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/fr/System.Private.ServiceModel.resources.dll b/linguard/Cli/bin/Debug/net6.0/fr/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..a2ad076 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/fr/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/fr/System.Web.Services.Description.resources.dll b/linguard/Cli/bin/Debug/net6.0/fr/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..a9e94e0 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/fr/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..7f9325d Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..e71779f Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/it/System.Private.ServiceModel.resources.dll b/linguard/Cli/bin/Debug/net6.0/it/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..7bb0d14 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/it/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/it/System.Web.Services.Description.resources.dll b/linguard/Cli/bin/Debug/net6.0/it/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..d8b5101 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/it/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..58a375d Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..8c8510d Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ja/System.Private.ServiceModel.resources.dll b/linguard/Cli/bin/Debug/net6.0/ja/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..c92e54a Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ja/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ja/System.Web.Services.Description.resources.dll b/linguard/Cli/bin/Debug/net6.0/ja/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..d166bd0 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ja/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..3b3f0ed Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..66458d5 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ko/System.Private.ServiceModel.resources.dll b/linguard/Cli/bin/Debug/net6.0/ko/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..5f09fb1 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ko/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ko/System.Web.Services.Description.resources.dll b/linguard/Cli/bin/Debug/net6.0/ko/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..7acc280 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ko/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/linguard-cli.log b/linguard/Cli/bin/Debug/net6.0/linguard-cli.log new file mode 100644 index 0000000..d1cff66 --- /dev/null +++ b/linguard/Cli/bin/Debug/net6.0/linguard-cli.log @@ -0,0 +1,110 @@ +2022-02-05 20:43:56.9009 [INFO] CliStartup(CliStartup.cs:38): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... +2022-02-05 20:43:57.1973 [WARN] CliStartup(CliStartup.cs:44): No configuration file found. Using defaults. +2022-02-05 20:44:32.1672 [INFO] CliStartup(CliStartup.cs:38): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... +2022-02-05 20:44:32.4211 [WARN] CliStartup(CliStartup.cs:44): No configuration file found. Using defaults. +2022-02-05 20:45:38.0960 [INFO] CliStartup(CliStartup.cs:38): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... +2022-02-05 20:45:38.3627 [WARN] CliStartup(CliStartup.cs:44): No configuration file found. Using defaults. +2022-02-05 20:45:48.7568 [INFO] CliStartup(CliStartup.cs:38): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... +2022-02-05 20:45:49.0308 [WARN] CliStartup(CliStartup.cs:44): No configuration file found. Using defaults. +2022-02-05 20:47:43.0146 [INFO] CliStartup(CliStartup.cs:38): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... +2022-02-05 20:47:43.2919 [WARN] CliStartup(CliStartup.cs:44): No configuration file found. Using defaults. +2022-02-05 20:47:43.4941 [INFO] AddInterface(AddInterface.cs:71): Added interface ''. +2022-02-05 21:31:34.4901 [INFO] CliStartup(CliStartup.cs:41): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... +2022-02-05 21:31:34.7796 [WARN] CliStartup(CliStartup.cs:47): No configuration file found. Using defaults. +2022-02-05 21:31:35.5127 [INFO] AddInterface(AddInterface.cs:73): Added interface 'Amira9'. +2022-02-05 21:32:31.6621 [INFO] CliStartup(CliStartup.cs:41): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... +2022-02-05 21:32:32.0871 [WARN] CliStartup(CliStartup.cs:47): No configuration file found. Using defaults. +2022-02-05 21:32:32.6144 [INFO] AddInterface(AddInterface.cs:73): Added interface 'Laurence61'. +2022-02-05 21:32:38.6962 [INFO] CliStartup(CliStartup.cs:41): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... +2022-02-05 21:32:39.0421 [WARN] CliStartup(CliStartup.cs:47): No configuration file found. Using defaults. +2022-02-05 21:32:39.5559 [INFO] AddInterface(AddInterface.cs:73): Added interface 'Lamar_Cartwright83'. +2022-02-05 21:33:48.8615 [INFO] CliStartup(CliStartup.cs:41): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... +2022-02-05 21:33:49.2829 [WARN] CliStartup(CliStartup.cs:47): No configuration file found. Using defaults. +2022-02-05 21:33:49.7679 [INFO] AddInterface(AddInterface.cs:73): Added interface 'Camron55'. +2022-02-05 21:34:32.5084 [INFO] CliStartup(CliStartup.cs:41): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... +2022-02-05 21:34:32.8470 [WARN] CliStartup(CliStartup.cs:47): No configuration file found. Using defaults. +2022-02-05 21:34:33.2909 [INFO] AddInterface(AddInterface.cs:73): Added interface 'Weston44'. +2022-02-06 12:07:17.6583 [INFO] CliStartup(CliStartup.cs:41): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... +2022-02-06 12:07:18.6334 [WARN] CliStartup(CliStartup.cs:47): No configuration file found. Using defaults. +2022-02-06 12:14:09.4427 [INFO] CliStartup(CliStartup.cs:41): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... +2022-02-06 12:14:09.7271 [WARN] CliStartup(CliStartup.cs:47): No configuration file found. Using defaults. +2022-02-06 12:17:39.6079 [INFO] CliStartup(CliStartup.cs:41): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... +2022-02-06 12:17:39.9013 [WARN] CliStartup(CliStartup.cs:47): No configuration file found. Using defaults. +2022-02-06 12:33:47.9941 [INFO] ConfigurationSetupMiddleware(ConfigurationSetupMiddleware.cs:24): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... +2022-02-06 12:33:53.7264 [WARN] ConfigurationSetupMiddleware(ConfigurationSetupMiddleware.cs:30): No configuration file found. Using defaults. +2022-02-06 12:35:19.4477 [INFO] ConfigurationSetupMiddleware(ConfigurationSetupMiddleware.cs:24): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... +2022-02-06 12:35:19.7691 [WARN] ConfigurationSetupMiddleware(ConfigurationSetupMiddleware.cs:30): No configuration file found. Using defaults. +2022-02-06 12:36:58.1370 [INFO] ConfigurationSetupMiddleware(ConfigurationSetupMiddleware.cs:24): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... +2022-02-06 12:36:58.4897 [WARN] ConfigurationSetupMiddleware(ConfigurationSetupMiddleware.cs:30): No configuration file found. Using defaults. +2022-02-06 12:38:32.2333 [INFO] ConfigurationSetupMiddleware(ConfigurationSetupMiddleware.cs:24): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... +2022-02-06 12:38:32.5682 [WARN] ConfigurationSetupMiddleware(ConfigurationSetupMiddleware.cs:30): No configuration file found. Using defaults. +2022-02-06 12:42:56.1706 [INFO] d__5(ConfigurationSetupMiddleware.cs:24): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... +2022-02-06 12:42:56.5299 [WARN] d__5(ConfigurationSetupMiddleware.cs:30): No configuration file found. Using defaults. +2022-02-06 12:42:57.1188 [INFO] AddInterface(AddInterface.cs:72): Added interface 'Kelley.Davis'. +2022-02-06 12:59:41.0848 [INFO] d__5(ConfigurationSetupMiddleware.cs:24): Loading configuration from 'C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\linguard.yaml'... +2022-02-06 12:59:41.4412 [WARN] d__5(ConfigurationSetupMiddleware.cs:30): No configuration file found. Using defaults. +2022-02-07 20:45:55.0462 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... +2022-02-07 20:47:22.3540 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... +2022-02-07 20:48:03.5747 [WARN] d__4(ConfigurationSetupMiddleware.cs:24): Unable to load configuration. Using defaults. +2022-02-07 20:49:03.7825 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... +2022-02-07 20:49:04.0677 [WARN] d__4(ConfigurationSetupMiddleware.cs:24): Unable to load configuration. Using defaults. +2022-02-07 20:54:54.4416 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... +2022-02-07 20:54:54.7016 [WARN] d__4(ConfigurationSetupMiddleware.cs:24): Unable to load configuration. Using defaults. +2022-02-07 20:59:27.7731 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... +2022-02-07 20:59:28.0455 [WARN] d__4(ConfigurationSetupMiddleware.cs:24): Unable to load configuration. Using defaults. +2022-02-07 21:06:02.4092 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... +2022-02-07 21:06:02.6578 [WARN] d__4(ConfigurationSetupMiddleware.cs:24): Unable to load configuration. Using defaults. +2022-02-07 21:06:32.5130 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... +2022-02-07 21:06:32.7422 [WARN] d__4(ConfigurationSetupMiddleware.cs:24): Unable to load configuration. Using defaults. +2022-02-07 21:10:41.7825 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... +2022-02-07 21:10:42.0061 [WARN] d__4(ConfigurationSetupMiddleware.cs:24): Unable to load configuration. Using defaults. +2022-02-07 21:12:43.0068 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... +2022-02-07 21:12:43.2342 [WARN] d__4(ConfigurationSetupMiddleware.cs:24): Unable to load configuration. Using defaults. +2022-02-07 21:14:24.3137 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... +2022-02-07 21:14:24.5478 [WARN] d__4(ConfigurationSetupMiddleware.cs:24): Unable to load configuration. Using defaults. +2022-02-07 21:27:35.0334 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... +2022-02-07 21:27:35.3099 [WARN] d__4(ConfigurationSetupMiddleware.cs:24): Unable to load configuration. Using defaults. +2022-02-07 21:32:18.9229 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... +2022-02-07 21:32:19.2057 [WARN] d__4(ConfigurationSetupMiddleware.cs:24): Unable to load configuration. Using defaults. +2022-02-09 15:43:03.5802 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... +2022-02-09 15:43:03.9520 [WARN] d__4(ConfigurationSetupMiddleware.cs:24): Unable to load configuration. Using defaults. +2022-02-09 16:00:32.0500 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... +2022-02-09 16:00:32.2051 [WARN] d__4(ConfigurationSetupMiddleware.cs:24): Unable to load configuration. Using defaults. +2022-02-09 16:00:35.3847 [INFO] AddInterfaceCommand(AddInterfaceCommand.cs:77): Added interface 'wg0'. +2022-02-09 16:03:26.4849 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... +2022-02-09 16:03:26.8709 [WARN] d__4(ConfigurationSetupMiddleware.cs:24): Unable to load configuration. Using defaults. +2022-02-09 16:04:08.4566 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... +2022-02-09 16:04:08.7332 [WARN] d__4(ConfigurationSetupMiddleware.cs:24): Unable to load configuration. Using defaults. +2022-02-09 16:05:37.0187 [INFO] AddInterfaceCommand(AddInterfaceCommand.cs:77): Added interface 'wg0'. +2022-02-09 16:06:44.1584 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... +2022-02-09 16:06:44.4178 [WARN] d__4(ConfigurationSetupMiddleware.cs:24): Unable to load configuration. Using defaults. +2022-02-09 16:07:23.1012 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... +2022-02-09 16:07:23.9905 [INFO] d__4(ConfigurationSetupMiddleware.cs:25): Configuration loaded. +2022-02-09 16:09:38.7805 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... +2022-02-09 16:10:12.6996 [INFO] d__4(ConfigurationSetupMiddleware.cs:25): Configuration loaded. +2022-02-09 16:13:06.6158 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... +2022-02-09 16:13:07.7222 [INFO] d__4(ConfigurationSetupMiddleware.cs:25): Configuration loaded. +2022-02-09 16:14:48.3850 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... +2022-02-09 16:14:49.5654 [INFO] d__4(ConfigurationSetupMiddleware.cs:25): Configuration loaded. +2022-02-09 16:16:35.6003 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... +2022-02-09 16:16:36.7637 [INFO] d__4(ConfigurationSetupMiddleware.cs:25): Configuration loaded. +2022-02-09 16:17:26.2312 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... +2022-02-09 16:18:55.8357 [INFO] d__4(ConfigurationSetupMiddleware.cs:25): Configuration loaded. +2022-02-09 16:19:55.2805 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... +2022-02-09 16:19:56.5076 [INFO] d__4(ConfigurationSetupMiddleware.cs:25): Configuration loaded. +2022-02-09 16:21:16.9102 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... +2022-02-09 16:21:18.2166 [INFO] d__4(ConfigurationSetupMiddleware.cs:25): Configuration loaded. +2022-02-09 16:24:54.9312 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... +2022-02-09 16:24:56.1015 [INFO] d__4(ConfigurationSetupMiddleware.cs:25): Configuration loaded. +2022-02-09 16:28:31.6920 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... +2022-02-09 16:28:32.8631 [INFO] d__4(ConfigurationSetupMiddleware.cs:25): Configuration loaded. +2022-02-09 16:29:27.7931 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... +2022-02-09 16:29:28.9697 [INFO] d__4(ConfigurationSetupMiddleware.cs:25): Configuration loaded. +2022-02-09 16:42:02.1747 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... +2022-02-09 16:42:03.4889 [INFO] d__4(ConfigurationSetupMiddleware.cs:25): Configuration loaded. +2022-02-09 16:53:18.2199 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... +2022-02-09 16:53:19.4836 [INFO] d__4(ConfigurationSetupMiddleware.cs:25): Configuration loaded. +2022-02-09 16:53:35.7414 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... +2022-02-09 16:53:36.9863 [INFO] d__4(ConfigurationSetupMiddleware.cs:25): Configuration loaded. +2022-02-09 17:57:43.6916 [INFO] d__4(ConfigurationSetupMiddleware.cs:22): Loading configuration... +2022-02-09 17:57:44.4380 [INFO] d__4(ConfigurationSetupMiddleware.cs:25): Configuration loaded. diff --git a/linguard/Cli/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..0c6175e Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..82ff47c Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/pl/System.Private.ServiceModel.resources.dll b/linguard/Cli/bin/Debug/net6.0/pl/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..bcdbbbb Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/pl/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/pl/System.Web.Services.Description.resources.dll b/linguard/Cli/bin/Debug/net6.0/pl/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..421c859 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/pl/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..2d2ccbe Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..b583d8e Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/pt-BR/System.Private.ServiceModel.resources.dll b/linguard/Cli/bin/Debug/net6.0/pt-BR/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..6138c5d Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/pt-BR/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/pt-BR/System.Web.Services.Description.resources.dll b/linguard/Cli/bin/Debug/net6.0/pt-BR/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..8d4c892 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/pt-BR/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/Linguard.Cli.dll b/linguard/Cli/bin/Debug/net6.0/ref/Linguard.Cli.dll new file mode 100644 index 0000000..7069384 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/Linguard.Cli.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/Microsoft.CSharp.dll b/linguard/Cli/bin/Debug/net6.0/ref/Microsoft.CSharp.dll new file mode 100644 index 0000000..00529c3 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/Microsoft.CSharp.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/Microsoft.VisualBasic.Core.dll b/linguard/Cli/bin/Debug/net6.0/ref/Microsoft.VisualBasic.Core.dll new file mode 100644 index 0000000..d37bdc6 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/Microsoft.VisualBasic.Core.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/Microsoft.VisualBasic.dll b/linguard/Cli/bin/Debug/net6.0/ref/Microsoft.VisualBasic.dll new file mode 100644 index 0000000..eb198db Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/Microsoft.VisualBasic.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/Microsoft.Win32.Primitives.dll b/linguard/Cli/bin/Debug/net6.0/ref/Microsoft.Win32.Primitives.dll new file mode 100644 index 0000000..e39072e Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/Microsoft.Win32.Primitives.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/Microsoft.Win32.Registry.dll b/linguard/Cli/bin/Debug/net6.0/ref/Microsoft.Win32.Registry.dll new file mode 100644 index 0000000..0e4ca23 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/Microsoft.Win32.Registry.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.AppContext.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.AppContext.dll new file mode 100644 index 0000000..949e26a Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.AppContext.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Buffers.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Buffers.dll new file mode 100644 index 0000000..0ba2017 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Buffers.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Collections.Concurrent.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Collections.Concurrent.dll new file mode 100644 index 0000000..a34bdfd Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Collections.Concurrent.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Collections.Immutable.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Collections.Immutable.dll new file mode 100644 index 0000000..3559d71 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Collections.Immutable.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Collections.NonGeneric.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..0ff1e9e Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Collections.NonGeneric.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Collections.Specialized.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Collections.Specialized.dll new file mode 100644 index 0000000..9e63d8f Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Collections.Specialized.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Collections.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Collections.dll new file mode 100644 index 0000000..c563b3d Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Collections.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.Annotations.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.Annotations.dll new file mode 100644 index 0000000..e719616 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.Annotations.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.DataAnnotations.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 0000000..e92b9ec Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.DataAnnotations.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.EventBasedAsync.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 0000000..c13cab7 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.EventBasedAsync.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.Primitives.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.Primitives.dll new file mode 100644 index 0000000..2c8ac32 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.Primitives.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.TypeConverter.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.TypeConverter.dll new file mode 100644 index 0000000..8af874e Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.TypeConverter.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.dll new file mode 100644 index 0000000..dedec7c Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.ComponentModel.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Configuration.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Configuration.dll new file mode 100644 index 0000000..54fdf89 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Configuration.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Console.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Console.dll new file mode 100644 index 0000000..5934da2 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Console.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Core.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Core.dll new file mode 100644 index 0000000..b5abba6 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Core.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Data.Common.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Data.Common.dll new file mode 100644 index 0000000..fb6df46 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Data.Common.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Data.DataSetExtensions.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Data.DataSetExtensions.dll new file mode 100644 index 0000000..e5afb2e Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Data.DataSetExtensions.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Data.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Data.dll new file mode 100644 index 0000000..e54bdf1 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Data.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.Contracts.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.Contracts.dll new file mode 100644 index 0000000..b2a4266 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.Contracts.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.Debug.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.Debug.dll new file mode 100644 index 0000000..a0cd3f8 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.Debug.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.DiagnosticSource.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..39a6217 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.DiagnosticSource.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.FileVersionInfo.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 0000000..439c771 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.FileVersionInfo.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.Process.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.Process.dll new file mode 100644 index 0000000..2091f8c Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.Process.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.StackTrace.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..4b5a3d7 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.StackTrace.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.TextWriterTraceListener.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 0000000..1a5cbf2 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.Tools.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.Tools.dll new file mode 100644 index 0000000..335c9c1 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.Tools.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.TraceSource.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.TraceSource.dll new file mode 100644 index 0000000..749ba40 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.TraceSource.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.Tracing.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.Tracing.dll new file mode 100644 index 0000000..338074d Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Diagnostics.Tracing.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Drawing.Primitives.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Drawing.Primitives.dll new file mode 100644 index 0000000..8c0a332 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Drawing.Primitives.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Drawing.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Drawing.dll new file mode 100644 index 0000000..b226cf3 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Drawing.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Dynamic.Runtime.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Dynamic.Runtime.dll new file mode 100644 index 0000000..70edfa6 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Dynamic.Runtime.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Formats.Asn1.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Formats.Asn1.dll new file mode 100644 index 0000000..8625760 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Formats.Asn1.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Globalization.Calendars.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Globalization.Calendars.dll new file mode 100644 index 0000000..21a0037 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Globalization.Calendars.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Globalization.Extensions.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Globalization.Extensions.dll new file mode 100644 index 0000000..0dd96b7 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Globalization.Extensions.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Globalization.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Globalization.dll new file mode 100644 index 0000000..1c2e682 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Globalization.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Compression.Brotli.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Compression.Brotli.dll new file mode 100644 index 0000000..297977e Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Compression.Brotli.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Compression.FileSystem.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Compression.FileSystem.dll new file mode 100644 index 0000000..6586130 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Compression.FileSystem.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Compression.ZipFile.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Compression.ZipFile.dll new file mode 100644 index 0000000..6c9be3c Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Compression.ZipFile.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Compression.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Compression.dll new file mode 100644 index 0000000..832d832 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Compression.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.FileSystem.AccessControl.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.FileSystem.AccessControl.dll new file mode 100644 index 0000000..37f5c30 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.FileSystem.AccessControl.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.FileSystem.DriveInfo.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 0000000..3fafa94 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.FileSystem.DriveInfo.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.FileSystem.Primitives.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.FileSystem.Primitives.dll new file mode 100644 index 0000000..7e7c838 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.FileSystem.Primitives.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.FileSystem.Watcher.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.FileSystem.Watcher.dll new file mode 100644 index 0000000..413f9b4 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.FileSystem.Watcher.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.FileSystem.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.FileSystem.dll new file mode 100644 index 0000000..e2be89f Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.FileSystem.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.IsolatedStorage.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.IsolatedStorage.dll new file mode 100644 index 0000000..a17e9fc Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.IsolatedStorage.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.MemoryMappedFiles.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..2d4175d Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.MemoryMappedFiles.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Pipes.AccessControl.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Pipes.AccessControl.dll new file mode 100644 index 0000000..8627e1d Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Pipes.AccessControl.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Pipes.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Pipes.dll new file mode 100644 index 0000000..401b732 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.Pipes.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.UnmanagedMemoryStream.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 0000000..9c49c70 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.UnmanagedMemoryStream.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.IO.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.dll new file mode 100644 index 0000000..02ce4e2 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.IO.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Linq.Expressions.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Linq.Expressions.dll new file mode 100644 index 0000000..65c06c3 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Linq.Expressions.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Linq.Parallel.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Linq.Parallel.dll new file mode 100644 index 0000000..02a5fa6 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Linq.Parallel.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Linq.Queryable.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Linq.Queryable.dll new file mode 100644 index 0000000..0eeb7c8 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Linq.Queryable.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Linq.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Linq.dll new file mode 100644 index 0000000..2a86c79 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Linq.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Memory.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Memory.dll new file mode 100644 index 0000000..388044d Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Memory.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Http.Json.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Http.Json.dll new file mode 100644 index 0000000..22997ef Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Http.Json.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Http.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Http.dll new file mode 100644 index 0000000..abaf3da Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Http.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.HttpListener.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.HttpListener.dll new file mode 100644 index 0000000..55c3152 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.HttpListener.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Mail.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Mail.dll new file mode 100644 index 0000000..8c06ec8 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Mail.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.NameResolution.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.NameResolution.dll new file mode 100644 index 0000000..98dd2d8 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.NameResolution.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.NetworkInformation.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.NetworkInformation.dll new file mode 100644 index 0000000..842064d Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.NetworkInformation.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Ping.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Ping.dll new file mode 100644 index 0000000..0d4d3a9 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Ping.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Primitives.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Primitives.dll new file mode 100644 index 0000000..d54f4bd Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Primitives.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Requests.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Requests.dll new file mode 100644 index 0000000..f314471 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Requests.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Security.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Security.dll new file mode 100644 index 0000000..4e348d7 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Security.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.ServicePoint.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.ServicePoint.dll new file mode 100644 index 0000000..6077da1 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.ServicePoint.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Sockets.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Sockets.dll new file mode 100644 index 0000000..1af0691 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.Sockets.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.WebClient.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.WebClient.dll new file mode 100644 index 0000000..6a4a572 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.WebClient.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.WebHeaderCollection.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.WebHeaderCollection.dll new file mode 100644 index 0000000..114289b Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.WebHeaderCollection.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.WebProxy.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.WebProxy.dll new file mode 100644 index 0000000..d65ea58 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.WebProxy.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.WebSockets.Client.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.WebSockets.Client.dll new file mode 100644 index 0000000..5717169 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.WebSockets.Client.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.WebSockets.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.WebSockets.dll new file mode 100644 index 0000000..5bfa921 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.WebSockets.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Net.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.dll new file mode 100644 index 0000000..62feba4 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Net.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Numerics.Vectors.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Numerics.Vectors.dll new file mode 100644 index 0000000..2c3a984 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Numerics.Vectors.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Numerics.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Numerics.dll new file mode 100644 index 0000000..5d186c8 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Numerics.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.ObjectModel.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.ObjectModel.dll new file mode 100644 index 0000000..f92cc11 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.ObjectModel.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.DispatchProxy.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.DispatchProxy.dll new file mode 100644 index 0000000..b888c4b Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.DispatchProxy.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Emit.ILGeneration.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Emit.ILGeneration.dll new file mode 100644 index 0000000..81911c6 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Emit.ILGeneration.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Emit.Lightweight.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Emit.Lightweight.dll new file mode 100644 index 0000000..045952c Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Emit.Lightweight.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Emit.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Emit.dll new file mode 100644 index 0000000..e579588 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Emit.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Extensions.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Extensions.dll new file mode 100644 index 0000000..7987d1d Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Extensions.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Metadata.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Metadata.dll new file mode 100644 index 0000000..50158de Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Metadata.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Primitives.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Primitives.dll new file mode 100644 index 0000000..d9210c0 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.Primitives.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.TypeExtensions.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.TypeExtensions.dll new file mode 100644 index 0000000..792c8c8 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.TypeExtensions.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.dll new file mode 100644 index 0000000..3021f73 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Reflection.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Resources.Reader.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Resources.Reader.dll new file mode 100644 index 0000000..e46173b Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Resources.Reader.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Resources.ResourceManager.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Resources.ResourceManager.dll new file mode 100644 index 0000000..fc44423 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Resources.ResourceManager.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Resources.Writer.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Resources.Writer.dll new file mode 100644 index 0000000..68980f9 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Resources.Writer.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.Unsafe.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 0000000..546930e Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.VisualC.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 0000000..277cb81 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Extensions.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Extensions.dll new file mode 100644 index 0000000..441841e Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Extensions.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Handles.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Handles.dll new file mode 100644 index 0000000..70e3278 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Handles.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 0000000..89f8d39 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.InteropServices.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.InteropServices.dll new file mode 100644 index 0000000..a39d097 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.InteropServices.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Intrinsics.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Intrinsics.dll new file mode 100644 index 0000000..c9fcd40 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Intrinsics.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Loader.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Loader.dll new file mode 100644 index 0000000..f109988 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Loader.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Numerics.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Numerics.dll new file mode 100644 index 0000000..89937d1 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Numerics.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Serialization.Formatters.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 0000000..5438ce3 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Serialization.Formatters.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Serialization.Json.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Serialization.Json.dll new file mode 100644 index 0000000..399a512 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Serialization.Json.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Serialization.Primitives.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 0000000..c402e8a Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Serialization.Primitives.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Serialization.Xml.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Serialization.Xml.dll new file mode 100644 index 0000000..84fffc5 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Serialization.Xml.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Serialization.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Serialization.dll new file mode 100644 index 0000000..1c1891a Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.Serialization.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.dll new file mode 100644 index 0000000..921a08b Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Runtime.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.AccessControl.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.AccessControl.dll new file mode 100644 index 0000000..2c6f9f4 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.AccessControl.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Claims.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Claims.dll new file mode 100644 index 0000000..b6297f6 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Claims.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.Algorithms.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 0000000..4b89540 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.Algorithms.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.Cng.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.Cng.dll new file mode 100644 index 0000000..e76a578 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.Cng.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.Csp.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.Csp.dll new file mode 100644 index 0000000..2ceae69 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.Csp.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.Encoding.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.Encoding.dll new file mode 100644 index 0000000..a975809 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.Encoding.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.OpenSsl.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.OpenSsl.dll new file mode 100644 index 0000000..df3a3a9 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.OpenSsl.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.Primitives.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.Primitives.dll new file mode 100644 index 0000000..21222a6 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.Primitives.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.X509Certificates.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 0000000..eee372d Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Cryptography.X509Certificates.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Principal.Windows.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Principal.Windows.dll new file mode 100644 index 0000000..9a3798b Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Principal.Windows.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Principal.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Principal.dll new file mode 100644 index 0000000..0dbfa46 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.Principal.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.SecureString.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.SecureString.dll new file mode 100644 index 0000000..7299b40 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.SecureString.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Security.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.dll new file mode 100644 index 0000000..b83e96a Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Security.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.ServiceModel.Web.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.ServiceModel.Web.dll new file mode 100644 index 0000000..a4d4e0f Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.ServiceModel.Web.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.ServiceProcess.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.ServiceProcess.dll new file mode 100644 index 0000000..86c09dc Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.ServiceProcess.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Text.Encoding.CodePages.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Text.Encoding.CodePages.dll new file mode 100644 index 0000000..5ce72b1 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Text.Encoding.CodePages.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Text.Encoding.Extensions.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Text.Encoding.Extensions.dll new file mode 100644 index 0000000..05e497a Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Text.Encoding.Extensions.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Text.Encoding.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Text.Encoding.dll new file mode 100644 index 0000000..46c5400 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Text.Encoding.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Text.Encodings.Web.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..f2b10eb Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Text.Encodings.Web.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Text.Json.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Text.Json.dll new file mode 100644 index 0000000..37851d2 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Text.Json.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Text.RegularExpressions.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..983cbbd Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Text.RegularExpressions.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Channels.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Channels.dll new file mode 100644 index 0000000..34ae646 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Channels.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Overlapped.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Overlapped.dll new file mode 100644 index 0000000..9092609 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Overlapped.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Tasks.Dataflow.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Tasks.Dataflow.dll new file mode 100644 index 0000000..0731d06 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Tasks.Dataflow.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Tasks.Extensions.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Tasks.Extensions.dll new file mode 100644 index 0000000..e5840ae Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Tasks.Extensions.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Tasks.Parallel.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Tasks.Parallel.dll new file mode 100644 index 0000000..5bec78b Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Tasks.Parallel.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Tasks.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Tasks.dll new file mode 100644 index 0000000..04704d0 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Tasks.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Thread.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Thread.dll new file mode 100644 index 0000000..de9a348 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Thread.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.ThreadPool.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.ThreadPool.dll new file mode 100644 index 0000000..efab9c3 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.ThreadPool.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Timer.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Timer.dll new file mode 100644 index 0000000..718a039 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.Timer.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.dll new file mode 100644 index 0000000..d697919 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Threading.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Transactions.Local.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Transactions.Local.dll new file mode 100644 index 0000000..03df1fb Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Transactions.Local.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Transactions.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Transactions.dll new file mode 100644 index 0000000..1bd2e0a Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Transactions.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.ValueTuple.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.ValueTuple.dll new file mode 100644 index 0000000..b6103f6 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.ValueTuple.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Web.HttpUtility.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Web.HttpUtility.dll new file mode 100644 index 0000000..c77ebab Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Web.HttpUtility.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Web.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Web.dll new file mode 100644 index 0000000..d04d5e3 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Web.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Windows.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Windows.dll new file mode 100644 index 0000000..9133038 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Windows.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.Linq.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.Linq.dll new file mode 100644 index 0000000..d8aa5cd Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.Linq.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.ReaderWriter.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..66f199d Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.ReaderWriter.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.Serialization.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.Serialization.dll new file mode 100644 index 0000000..92bc678 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.Serialization.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.XDocument.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.XDocument.dll new file mode 100644 index 0000000..5ba2260 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.XDocument.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.XPath.XDocument.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.XPath.XDocument.dll new file mode 100644 index 0000000..be27c4e Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.XPath.XDocument.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.XPath.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.XPath.dll new file mode 100644 index 0000000..22482d8 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.XPath.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.XmlDocument.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.XmlDocument.dll new file mode 100644 index 0000000..20d0fac Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.XmlDocument.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.XmlSerializer.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.XmlSerializer.dll new file mode 100644 index 0000000..0a1664c Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.XmlSerializer.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.dll new file mode 100644 index 0000000..f2b768e Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.Xml.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/System.dll b/linguard/Cli/bin/Debug/net6.0/ref/System.dll new file mode 100644 index 0000000..9e8d0a4 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/System.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/WindowsBase.dll b/linguard/Cli/bin/Debug/net6.0/ref/WindowsBase.dll new file mode 100644 index 0000000..1032969 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/WindowsBase.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/mscorlib.dll b/linguard/Cli/bin/Debug/net6.0/ref/mscorlib.dll new file mode 100644 index 0000000..31e8f9b Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/mscorlib.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ref/netstandard.dll b/linguard/Cli/bin/Debug/net6.0/ref/netstandard.dll new file mode 100644 index 0000000..1452256 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ref/netstandard.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..08d18ad Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..0d0a62d Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ru/System.Private.ServiceModel.resources.dll b/linguard/Cli/bin/Debug/net6.0/ru/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..11f804c Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ru/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/ru/System.Web.Services.Description.resources.dll b/linguard/Cli/bin/Debug/net6.0/ru/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..a43bf0d Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/ru/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll new file mode 100644 index 0000000..8e0d27d Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/illumos/lib/net6.0/System.Data.Odbc.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/illumos/lib/net6.0/System.Data.Odbc.dll new file mode 100644 index 0000000..86425c9 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/illumos/lib/net6.0/System.Data.Odbc.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/ios/lib/net6.0/System.Data.Odbc.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/ios/lib/net6.0/System.Data.Odbc.dll new file mode 100644 index 0000000..72945c5 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/ios/lib/net6.0/System.Data.Odbc.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/linux-arm/native/libSystem.IO.Ports.Native.so b/linguard/Cli/bin/Debug/net6.0/runtimes/linux-arm/native/libSystem.IO.Ports.Native.so new file mode 100644 index 0000000..78b5008 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/linux-arm/native/libSystem.IO.Ports.Native.so differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/linux-arm/native/libpsl-native.so b/linguard/Cli/bin/Debug/net6.0/runtimes/linux-arm/native/libpsl-native.so new file mode 100644 index 0000000..eb7876d Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/linux-arm/native/libpsl-native.so differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so b/linguard/Cli/bin/Debug/net6.0/runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so new file mode 100644 index 0000000..dd85d2d Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/linux-arm64/native/libpsl-native.so b/linguard/Cli/bin/Debug/net6.0/runtimes/linux-arm64/native/libpsl-native.so new file mode 100644 index 0000000..ed4929b Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/linux-arm64/native/libpsl-native.so differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/linux-musl-x64/native/libpsl-native.so b/linguard/Cli/bin/Debug/net6.0/runtimes/linux-musl-x64/native/libpsl-native.so new file mode 100644 index 0000000..222670d Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/linux-musl-x64/native/libpsl-native.so differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/linux-x64/native/libSystem.IO.Ports.Native.so b/linguard/Cli/bin/Debug/net6.0/runtimes/linux-x64/native/libSystem.IO.Ports.Native.so new file mode 100644 index 0000000..9dbd44e Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/linux-x64/native/libSystem.IO.Ports.Native.so differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/linux-x64/native/libmi.so b/linguard/Cli/bin/Debug/net6.0/runtimes/linux-x64/native/libmi.so new file mode 100644 index 0000000..e87da8d Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/linux-x64/native/libmi.so differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/linux-x64/native/libpsl-native.so b/linguard/Cli/bin/Debug/net6.0/runtimes/linux-x64/native/libpsl-native.so new file mode 100644 index 0000000..c04a0e3 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/linux-x64/native/libpsl-native.so differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/linux-x64/native/libpsrpclient.so b/linguard/Cli/bin/Debug/net6.0/runtimes/linux-x64/native/libpsrpclient.so new file mode 100644 index 0000000..029ac86 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/linux-x64/native/libpsrpclient.so differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.Data.Odbc.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.Data.Odbc.dll new file mode 100644 index 0000000..6e67ec3 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.Data.Odbc.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..75139e1 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib b/linguard/Cli/bin/Debug/net6.0/runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib new file mode 100644 index 0000000..974ae77 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib b/linguard/Cli/bin/Debug/net6.0/runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib new file mode 100644 index 0000000..96ba9bf Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.Data.Odbc.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.Data.Odbc.dll new file mode 100644 index 0000000..eef28b5 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.Data.Odbc.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..3a64667 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/osx/native/libmi.dylib b/linguard/Cli/bin/Debug/net6.0/runtimes/osx/native/libmi.dylib new file mode 100644 index 0000000..71880e4 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/osx/native/libmi.dylib differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/osx/native/libpsl-native.dylib b/linguard/Cli/bin/Debug/net6.0/runtimes/osx/native/libpsl-native.dylib new file mode 100644 index 0000000..f4df8f4 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/osx/native/libpsl-native.dylib differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/osx/native/libpsrpclient.dylib b/linguard/Cli/bin/Debug/net6.0/runtimes/osx/native/libpsrpclient.dylib new file mode 100644 index 0000000..13680bf Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/osx/native/libpsrpclient.dylib differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/solaris/lib/net6.0/System.Data.Odbc.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/solaris/lib/net6.0/System.Data.Odbc.dll new file mode 100644 index 0000000..e283d99 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/solaris/lib/net6.0/System.Data.Odbc.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/tvos/lib/net6.0/System.Data.Odbc.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/tvos/lib/net6.0/System.Data.Odbc.dll new file mode 100644 index 0000000..9648360 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/tvos/lib/net6.0/System.Data.Odbc.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll new file mode 100644 index 0000000..93d7ef2 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll new file mode 100644 index 0000000..3258453 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll new file mode 100644 index 0000000..8cedac7 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll new file mode 100644 index 0000000..0ca804c Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll new file mode 100644 index 0000000..60f30e3 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 new file mode 100644 index 0000000..53e9bc5 --- /dev/null +++ b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 @@ -0,0 +1,14 @@ +@{ +GUID="56D66100-99A0-4FFC-A12D-EEE9A6718AEF" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +FunctionsToExport = @() +CmdletsToExport="Start-Transcript", "Stop-Transcript" +AliasesToExport = @() +NestedModules="Microsoft.PowerShell.ConsoleHost.dll" +HelpInfoURI = 'https://aka.ms/powershell72-help' +} diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 new file mode 100644 index 0000000..8d4d985 --- /dev/null +++ b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 @@ -0,0 +1,60 @@ +@{ +GUID="EEFCB906-B326-4E99-9F54-8B4BB6EF3C6D" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +NestedModules="Microsoft.PowerShell.Commands.Management.dll" +HelpInfoURI = 'https://aka.ms/powershell72-help' +FunctionsToExport = @() +AliasesToExport = @("gcb", "gtz", "scb") +CmdletsToExport=@("Add-Content", + "Clear-Content", + "Clear-ItemProperty", + "Join-Path", + "Convert-Path", + "Copy-ItemProperty", + "Get-ChildItem", + "Get-Clipboard", + "Set-Clipboard", + "Get-Content", + "Get-ItemProperty", + "Get-ItemPropertyValue", + "Move-ItemProperty", + "Get-Location", + "Set-Location", + "Push-Location", + "Pop-Location", + "New-PSDrive", + "Remove-PSDrive", + "Get-PSDrive", + "Get-Item", + "New-Item", + "Set-Item", + "Remove-Item", + "Move-Item", + "Rename-Item", + "Copy-Item", + "Clear-Item", + "Invoke-Item", + "Get-PSProvider", + "New-ItemProperty", + "Split-Path", + "Test-Path", + "Get-Process", + "Stop-Process", + "Wait-Process", + "Debug-Process", + "Start-Process", + "Test-Connection", + "Remove-ItemProperty", + "Rename-ItemProperty", + "Resolve-Path", + "Set-Content", + "Set-ItemProperty", + "Get-TimeZone", + "Stop-Computer", + "Restart-Computer") +} diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 new file mode 100644 index 0000000..9c9f978 --- /dev/null +++ b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 @@ -0,0 +1,14 @@ +@{ +GUID="A94C8C7E-9810-47C0-B8AF-65089C13A35A" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +FunctionsToExport = @() +CmdletsToExport="Get-Credential", "Get-ExecutionPolicy", "Set-ExecutionPolicy", "ConvertFrom-SecureString", "ConvertTo-SecureString", "Get-PfxCertificate" , "Protect-CmsMessage", "Unprotect-CmsMessage", "Get-CmsMessage" +AliasesToExport = @() +NestedModules="Microsoft.PowerShell.Security.dll" +HelpInfoURI = 'https://aka.ms/powershell72-help' +} diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 new file mode 100644 index 0000000..8efcaa0 --- /dev/null +++ b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 @@ -0,0 +1,34 @@ +@{ +GUID = "1DA87E53-152B-403E-98DC-74D7B4D63D59" +Author = "PowerShell" +CompanyName = "Microsoft Corporation" +Copyright = "Copyright (c) Microsoft Corporation." +ModuleVersion = "7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion = "3.0" +CmdletsToExport = @( + 'Export-Alias', 'Get-Alias', 'Import-Alias', 'New-Alias', 'Remove-Alias', 'Set-Alias', 'Export-Clixml', + 'Import-Clixml', 'Measure-Command', 'Trace-Command', 'ConvertFrom-Csv', 'ConvertTo-Csv', 'Export-Csv', + 'Import-Csv', 'Get-Culture', 'Format-Custom', 'Get-Date', 'Set-Date', 'Write-Debug', 'Wait-Debugger', + 'Register-EngineEvent', 'Write-Error', 'Get-Event', 'New-Event', 'Remove-Event', 'Unregister-Event', + 'Wait-Event', 'Get-EventSubscriber', 'Invoke-Expression', 'Out-File', 'Get-FileHash', 'Export-FormatData', + 'Get-FormatData', 'Update-FormatData', 'New-Guid', 'Format-Hex', 'Get-Host', 'Read-Host', 'Write-Host', + 'ConvertTo-Html', 'Write-Information', 'ConvertFrom-Json', 'ConvertTo-Json', 'Test-Json', 'Format-List', + 'Import-LocalizedData', 'Send-MailMessage', 'ConvertFrom-Markdown', 'Show-Markdown', 'Get-MarkdownOption', + 'Set-MarkdownOption', 'Add-Member', 'Get-Member', 'Compare-Object', 'Group-Object', 'Measure-Object', + 'New-Object', 'Select-Object', 'Sort-Object', 'Tee-Object', 'Register-ObjectEvent', 'Write-Output', + 'Import-PowerShellDataFile', 'Write-Progress', 'Disable-PSBreakpoint', 'Enable-PSBreakpoint', + 'Get-PSBreakpoint', 'Remove-PSBreakpoint', 'Set-PSBreakpoint', 'Get-PSCallStack', 'Export-PSSession', + 'Import-PSSession', 'Get-Random', 'Invoke-RestMethod', 'Debug-Runspace', 'Get-Runspace', + 'Disable-RunspaceDebug', 'Enable-RunspaceDebug', 'Get-RunspaceDebug', 'Start-Sleep', 'Join-String', + 'Out-String', 'Select-String', 'ConvertFrom-StringData', 'Format-Table', 'New-TemporaryFile', 'New-TimeSpan', + 'Get-TraceSource', 'Set-TraceSource', 'Add-Type', 'Get-TypeData', 'Remove-TypeData', 'Update-TypeData', + 'Get-UICulture', 'Get-Unique', 'Get-Uptime', 'Clear-Variable', 'Get-Variable', 'New-Variable', + 'Remove-Variable', 'Set-Variable', 'Get-Verb', 'Write-Verbose', 'Write-Warning', 'Invoke-WebRequest', + 'Format-Wide', 'ConvertTo-Xml', 'Select-Xml', 'Get-Error', 'Update-List', 'Unblock-File' +) +FunctionsToExport = @() +AliasesToExport = @('fhx') +NestedModules = @("Microsoft.PowerShell.Commands.Utility.dll") +HelpInfoURI = 'https://aka.ms/powershell72-help' +} diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll new file mode 100644 index 0000000..9e26473 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.IO.Ports.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.IO.Ports.dll new file mode 100644 index 0000000..8e7b399 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.IO.Ports.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Management.Automation.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Management.Automation.dll new file mode 100644 index 0000000..a5f1912 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Management.Automation.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll new file mode 100644 index 0000000..ad2a602 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..78105ed Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..2e7bf94 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..ac47598 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll new file mode 100644 index 0000000..56a149b Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll new file mode 100644 index 0000000..f60631c Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/native/mi.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/native/mi.dll new file mode 100644 index 0000000..7228cd0 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/native/mi.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/native/miutils.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/native/miutils.dll new file mode 100644 index 0000000..ab98cbf Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/native/miutils.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/native/pwrshplugin.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/native/pwrshplugin.dll new file mode 100644 index 0000000..0eec871 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm/native/pwrshplugin.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..50860ab Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..9dbe56e Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll new file mode 100644 index 0000000..a78573d Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll new file mode 100644 index 0000000..b148487 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/mi.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/mi.dll new file mode 100644 index 0000000..eb971a1 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/mi.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/miutils.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/miutils.dll new file mode 100644 index 0000000..0d3985d Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/miutils.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/pwrshplugin.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/pwrshplugin.dll new file mode 100644 index 0000000..f36ee7d Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/pwrshplugin.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/sni.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/sni.dll new file mode 100644 index 0000000..7b8f9d8 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win-arm64/native/sni.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll new file mode 100644 index 0000000..9d148cf Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-x64/native/pwrshplugin.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-x64/native/pwrshplugin.dll new file mode 100644 index 0000000..74da742 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win-x64/native/pwrshplugin.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-x64/native/sni.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-x64/native/sni.dll new file mode 100644 index 0000000..c1a05a5 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win-x64/native/sni.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll new file mode 100644 index 0000000..79a3085 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-x86/native/pwrshplugin.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-x86/native/pwrshplugin.dll new file mode 100644 index 0000000..200bf77 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win-x86/native/pwrshplugin.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win-x86/native/sni.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win-x86/native/sni.dll new file mode 100644 index 0000000..5fc21ac Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win-x86/native/sni.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll new file mode 100644 index 0000000..c8ff3c8 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll new file mode 100644 index 0000000..997d268 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll new file mode 100644 index 0000000..1e4a567 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll new file mode 100644 index 0000000..3e7ffc4 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll new file mode 100644 index 0000000..3dfb631 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll new file mode 100644 index 0000000..fa3247a Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll new file mode 100644 index 0000000..b6dc868 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll new file mode 100644 index 0000000..8ed4dde Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll new file mode 100644 index 0000000..b6a87a7 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll new file mode 100644 index 0000000..9896fd3 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll new file mode 100644 index 0000000..18eb223 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..66af198 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/CimCmdlets/CimCmdlets.psd1 b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/CimCmdlets/CimCmdlets.psd1 new file mode 100644 index 0000000..9c74ac8 --- /dev/null +++ b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/CimCmdlets/CimCmdlets.psd1 @@ -0,0 +1,233 @@ +@{ +GUID="{Fb6cc51d-c096-4b38-b78d-0fed6277096a}" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +RootModule="Microsoft.Management.Infrastructure.CimCmdlets" +RequiredAssemblies="Microsoft.Management.Infrastructure.CimCmdlets.dll","Microsoft.Management.Infrastructure.Dll" +FunctionsToExport = @() +CmdletsToExport= "Get-CimAssociatedInstance", "Get-CimClass", "Get-CimInstance", "Get-CimSession", "Invoke-CimMethod", + "New-CimInstance","New-CimSession","New-CimSessionOption","Register-CimIndicationEvent","Remove-CimInstance", + "Remove-CimSession","Set-CimInstance", + "Export-BinaryMiLog","Import-BinaryMiLog" +AliasesToExport = "gcim","scim","ncim", "rcim","icim","gcai","rcie","ncms","rcms","gcms","ncso","gcls" +HelpInfoUri="https://aka.ms/powershell72-help" +} + +# SIG # Begin signature block +# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCDVr9wtf0/6ef8P +# 7Oewmh6e4caAvboErstvAWik/E+xjqCCDYEwggX/MIID56ADAgECAhMzAAACUosz +# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I +# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O +# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA +# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o +# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 +# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 +# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp +# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 +# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u +# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 +# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti +# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z +# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf +# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK +# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW +# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F +# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQggKe1Wa+d +# fYvru2vipTPxs79u032BOtU/CXLz68NBYs0wQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQB0Sx7LIYYO505eD5CAwvSG6wwrjjzKL/MSFiL9Nh0Q +# YDyFIX4UsB617gQ/OLzvBaXpzuGbkzdtbxGuknwe5pNeLgzdAPj8f3aMfNM7JnL0 +# Pu6HUmHuaD11aY9bOOoddRWRZDGoSMXaPXvTHGXo8lk672+n6e2SNB28QG1ASAt7 +# 20qZLgr0ujUBlUe4zyg5MxZseqjEGR3bsUSltPOu2F107jcNqj1YZ/HXJHCAniSd +# XdMRipCWeydTNPpPLCWVtcjTyxXnJoDbTEVtyOpFx/0YxCgazCDY0ae+QKzp7sNe +# qbnNd30/F9pJ2S3hu9z9RcpgxbYDIHchMVO970sQOyvNoYIXGTCCFxUGCisGAQQB +# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME +# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIAaCwImJ8DxZ2FNq1L4wuBej3xtvL6SPai8XFzEz +# uLyVAgZhlV4Kp6EYEzIwMjExMjA4MjEwNDEzLjk2M1owBIACAfSggdikgdUwgdIx +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p +# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh +# bGVzIFRTUyBFU046MkFENC00QjkyLUZBMDExJTAjBgNVBAMTHE1pY3Jvc29mdCBU +# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYZ45RmJ+CRL +# zAABAAABhjANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg +# MjAxMDAeFw0yMTEwMjgxOTI3MzlaFw0yMzAxMjYxOTI3MzlaMIHSMQswCQYDVQQG +# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG +# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg +# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg +# RVNOOjJBRDQtNEI5Mi1GQTAxMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt +# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwI3G2Wpv +# 6B4IjAfrgfJpndPOPYO1Yd8+vlfoIxMW3gdCDT+zIbafg14pOu0t0ekUQx60p7Pa +# dH4OjnqNIE1q6ldH9ntj1gIdl4Hq4rdEHTZ6JFdE24DSbVoqqR+R4Iw4w3GPbfc2 +# Q3kfyyFyj+DOhmCWw/FZiTVTlT4bdejyAW6r/Jn4fr3xLjbvhITatr36VyyzgQ0Y +# 4Wr73H3gUcLjYu0qiHutDDb6+p+yDBGmKFznOW8wVt7D+u2VEJoE6JlK0EpVLZus +# dSzhecuUwJXxb2uygAZXlsa/fHlwW9YnlBqMHJ+im9HuK5X4x8/5B5dkuIoX5lWG +# jFMbD2A6Lu/PmUB4hK0CF5G1YaUtBrME73DAKkypk7SEm3BlJXwY/GrVoXWYUGEH +# yfrkLkws0RoEMpoIEgebZNKqjRynRJgR4fPCKrEhwEiTTAc4DXGci4HHOm64EQ1g +# /SDHMFqIKVSxoUbkGbdKNKHhmahuIrAy4we9s7rZJskveZYZiDmtAtBt/gQojxbZ +# 1vO9C11SthkrmkkTMLQf9cDzlVEBeu6KmHX2Sze6ggne3I4cy/5IULnHZ3rM4ZpJ +# c0s2KpGLHaVrEQy4x/mAn4yaYfgeH3MEAWkVjy/qTDh6cDCF/gyz3TaQDtvFnAK7 +# 0LqtbEvBPdBpeCG/hk9l0laYzwiyyGY/HqMCAwEAAaOCATYwggEyMB0GA1UdDgQW +# BBQZtqNFA+9mdEu/h33UhHMN6whcLjAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl +# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j +# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx +# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh +# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG +# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQDD7mehJY3fTHKC4hj+wBWB8544 +# uaJiMMIHnhK9ONTM7VraTYzx0U/TcLJ6gxw1tRzM5uu8kswJNlHNp7RedsAiwviV +# QZV9AL8IbZRLJTwNehCwk+BVcY2gh3ZGZmx8uatPZrRueyhhTTD2PvFVLrfwh2li +# DG/dEPNIHTKj79DlEcPIWoOCUp7p0ORMwQ95kVaibpX89pvjhPl2Fm0CBO3pXXJg +# 0bydpQ5dDDTv/qb0+WYF/vNVEU/MoMEQqlUWWuXECTqx6TayJuLJ6uU7K5QyTkQ/ +# l24IhGjDzf5AEZOrINYzkWVyNfUOpIxnKsWTBN2ijpZ/Tun5qrmo9vNIDT0lobgn +# ulae17NaEO9oiEJJH1tQ353dhuRi+A00PR781iYlzF5JU1DrEfEyNx8CWgERi90L +# KsYghZBCDjQ3DiJjfUZLqONeHrJfcmhz5/bfm8+aAaUPpZFeP0g0Iond6XNk4YiY +# bWPFoofc0LwcqSALtuIAyz6f3d+UaZZsp41U4hCIoGj6hoDIuU839bo/mZ/AgESw +# GxIXs0gZU6A+2qIUe60QdA969wWSzucKOisng9HCSZLF1dqc3QUawr0C0U41784K +# o9vckAG3akwYuVGcs6hM/SqEhoe9jHwe4Xp81CrTB1l9+EIdukCbP0kyzx0WZzte +# eiDN5rdiiQR9mBJuljCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw +# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n +# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y +# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv +# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg +# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO +# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 +# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 +# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL +# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 +# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj +# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE +# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 +# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 +# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB +# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE +# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG +# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 +# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV +# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV +# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo +# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m +# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j +# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv +# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN +# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 +# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 +# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX +# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew +# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 +# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd +# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr +# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh +# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n +# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ +# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw +# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI +# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv +# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh +# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046MkFENC00Qjky +# LUZBMDExJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB +# ATAHBgUrDgMCGgMVAAGu2DRzWkKljmXySX1korHL4fMnoIGDMIGApH4wfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tXMCIY +# DzIwMjExMjA5MDM1MTUxWhgPMjAyMTEyMTAwMzUxNTFaMHcwPQYKKwYBBAGEWQoE +# ATEvMC0wCgIFAOVbi1cCAQAwCgIBAAICFmICAf8wBwIBAAICEh0wCgIFAOVc3NcC +# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK +# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQAcxjpqy9KLSwM37+FXLc0BH8vQ +# bi/JiOUtzx1U3w8DY7ed3asVEpLwGzUKiZ6rI29ZJuKH6YlwiWrAcHP9QgQnWNwg +# LXWMiZLEeOE63JCAWeL4odLTq1DKced93+APIOfcpQ1ap6X/BY4fKpscksm/q98S +# mmAs+7pjsbcUGpWLtzGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w +# IFBDQSAyMDEwAhMzAAABhnjlGYn4JEvMAAEAAAGGMA0GCWCGSAFlAwQCAQUAoIIB +# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEINEG +# q0+SCFYCT6sOQMZPpgnAOe4W2XF/PwFbVzs1WLMVMIH6BgsqhkiG9w0BCRACLzGB +# 6jCB5zCB5DCBvQQgGpmI4LIsCFTGiYyfRAR7m7Fa2guxVNIw17mcAiq8Qn4wgZgw +# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE +# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD +# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYZ45RmJ+CRL +# zAABAAABhjAiBCAUmIgeNWf4KXB+/obIOhBMrPwiJ83+1ebXflyLLm9rjjANBgkq +# hkiG9w0BAQsFAASCAgBXBmO2FJAq4az5Z1fXe3nTGflWCimqnMzUudZ0JD5Omi9t +# KDRFGDjYxgAo4r26b3zc73bN/7kkUkJwwdDc2RsABuzjHa04XSfIbry8JwBw7utB +# lwotvUH6Wa22GXu0POFqMEywdRl2x4XM04hgdUfZdWznuVRzZACn1NIfYhjmsL97 +# WMTYX7dx4OVEIFWriI/R5+8p0IXDgLe3AxdrTSedGeQFgsbEvLRkVmU0m3Qsb3Qb +# V+Ds1llgS06AFYlJzgcSbBdr/6gU7V1s3EcH2z4GjPCs2rYmVIZ6XCwkn0no2vc9 +# jEHbLtaBZ7VJ/r3Xvbj/GEYdUbGgVAIdpDFnBKsamV/Z2X9eZZSIxjTnBdh4fdkJ +# 29TRUahZywqEtJWP7LOvjlIHK3Ri9AxxkJrGDhIyvJeOGT6fzT/SvWeHkAoqeGpp +# lqXzs/p5d1rsqFAST8pTTWVXItcmO84qO3+1is32A9nh1ngDva7RGXdsh3+kkobP +# eZkn0HnUxV0OUYgINHsDiCeDhwfElDpvix6/F+1S3yApsfT10k09qOWKBAxq1P7p +# j2Iih/xwZUTOwsPHTvczh8yrOAwVQoWiHKgNKXE4GyZmNAV2oUH0goTkTjqCOw7z +# /7UFMEhbEHABlSIKOQU/1hXDY4d07sfBlWPHskx8A+Yq7rTeFVPcXSnUUcqjcg== +# SIG # End signature block diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml new file mode 100644 index 0000000..8887031 --- /dev/null +++ b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml @@ -0,0 +1,294 @@ + + + + + + + + Counter + + Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSampleSet + + + + + + 25 + left + + + + left + 100 + + + + + + + + Timestamp + + + Readings + + + + + + + + Counter + + Microsoft.PowerShell.Commands.GetCounter.CounterFileInfo + + + + + 30 + left + + + 30 + left + + + 30 + left + + + + + + + + OldestRecord + + + NewestRecord + + + SampleCount + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml new file mode 100644 index 0000000..3cb0478 --- /dev/null +++ b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml @@ -0,0 +1,336 @@ + + + + + Default + + System.Diagnostics.Eventing.Reader.EventLogRecord + + + ProviderName + + + + + + 25 + + + 8 + right + + + 16 + + + + + + + + + TimeCreated + + + Id + + + LevelDisplayName + + + Message + + + + + + + + + Default + + System.Diagnostics.Eventing.Reader.EventLogConfiguration + + + + + + + 9 + + + + 18 + right + + + + 11 + right + + + + + + + + LogMode + + + MaximumSizeInBytes + + + RecordCount + + + LogName + + + + + + + + Default + + System.Diagnostics.Eventing.Reader.ProviderMetadata + + + + + + + Name + + + LogLinks + + + Opcodes + + + Tasks + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml new file mode 100644 index 0000000..a365f67 --- /dev/null +++ b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml @@ -0,0 +1,354 @@ + + + + + + System.Diagnostics.Eventing.Reader.EventLogConfiguration + + + PSStandardMembers + + + DefaultDisplayPropertySet + + LogName + MaximumSizeInBytes + RecordCount + LogMode + + + + + + + + System.Diagnostics.Eventing.Reader.EventLogRecord + + + PSStandardMembers + + + DefaultDisplayPropertySet + + TimeCreated + ProviderName + Id + Message + + + + + + + + System.Diagnostics.Eventing.Reader.ProviderMetadata + + + ProviderName + Name + + + PSStandardMembers + + + DefaultDisplayPropertySet + + Name + LogLinks + + + + + + + + Microsoft.PowerShell.Commands.GetCounter.CounterSet + + + Counter + Paths + + + + + Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSample + + + PSStandardMembers + + + DefaultDisplayPropertySet + + Path + InstanceName + CookedValue + + + + + + + + Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSampleSet + + + PSStandardMembers + + + DefaultDisplayPropertySet + + Timestamp + Readings + + + + + + + + Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSampleSet + + + Readings + + $strPaths = "" + foreach ($ctr in $this.CounterSamples) + { + $strPaths += ($ctr.Path + " :" + "`n") + $strPaths += ($ctr.CookedValue.ToString() + "`n`n") + } + return $strPaths + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1 b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1 new file mode 100644 index 0000000..880d7aa --- /dev/null +++ b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1 @@ -0,0 +1,231 @@ +@{ +GUID="CA046F10-CA64-4740-8FF9-2565DBA61A4F" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +FunctionsToExport = @() +CmdletsToExport="Get-WinEvent", "New-WinEvent", "Get-Counter" +AliasesToExport = @() +NestedModules="Microsoft.PowerShell.Commands.Diagnostics.dll" +TypesToProcess="GetEvent.types.ps1xml" +FormatsToProcess="Event.format.ps1xml", "Diagnostics.format.ps1xml" +HelpInfoURI = 'https://aka.ms/powershell72-help' +} + +# SIG # Begin signature block +# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCDPn0/Kw53z57yO +# 1TekDBJE1OmAf8RR94VaWe+Hq0qiG6CCDYEwggX/MIID56ADAgECAhMzAAACUosz +# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I +# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O +# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA +# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o +# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 +# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 +# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp +# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 +# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u +# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 +# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti +# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z +# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf +# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK +# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW +# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F +# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgODWoe2T6 +# RL6c8rlTHF90KQETb+lXsgMFPg5sa5qcVO8wQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQArTuRkyGCIWatxzP2XmCe8MGk2psH1zX2CtsCxq8Ap +# llWPArMeb/LjOcajbM5kypCRRAbwRz6aDbnQHt8odHEoRZU7pTPP6Gi5YLzfXy5B +# 0ww61qNEDWQD3Js4U0r/D5Bvbm0ewiX+JmBEh1lhTJYzIp8iXuTH3qe9bhKKb++x +# iTOWvO8/HgtkFqax0G4FyoGpyhcxGzGI0hzjTE+8qabrKI0VtLQ4FlvNluxrfISs +# nx56dtXmf0jiOSCWuGbtKydeTR6wtK8b8RfXdSfUfI2TbFk+nuTk9OADnpMxw87X +# rpiALWuM8oSYj9xv4oUCw6fsjnuryMRoM59K86mOjXkEoYIXGTCCFxUGCisGAQQB +# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME +# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIBHzUJcs5FFt55Hx994HtkOYw1sXWAszphHUNgXU +# AU+vAgZhlV4Kp54YEzIwMjExMjA4MjEwNDEzLjc5NlowBIACAfSggdikgdUwgdIx +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p +# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh +# bGVzIFRTUyBFU046MkFENC00QjkyLUZBMDExJTAjBgNVBAMTHE1pY3Jvc29mdCBU +# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYZ45RmJ+CRL +# zAABAAABhjANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg +# MjAxMDAeFw0yMTEwMjgxOTI3MzlaFw0yMzAxMjYxOTI3MzlaMIHSMQswCQYDVQQG +# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG +# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg +# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg +# RVNOOjJBRDQtNEI5Mi1GQTAxMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt +# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwI3G2Wpv +# 6B4IjAfrgfJpndPOPYO1Yd8+vlfoIxMW3gdCDT+zIbafg14pOu0t0ekUQx60p7Pa +# dH4OjnqNIE1q6ldH9ntj1gIdl4Hq4rdEHTZ6JFdE24DSbVoqqR+R4Iw4w3GPbfc2 +# Q3kfyyFyj+DOhmCWw/FZiTVTlT4bdejyAW6r/Jn4fr3xLjbvhITatr36VyyzgQ0Y +# 4Wr73H3gUcLjYu0qiHutDDb6+p+yDBGmKFznOW8wVt7D+u2VEJoE6JlK0EpVLZus +# dSzhecuUwJXxb2uygAZXlsa/fHlwW9YnlBqMHJ+im9HuK5X4x8/5B5dkuIoX5lWG +# jFMbD2A6Lu/PmUB4hK0CF5G1YaUtBrME73DAKkypk7SEm3BlJXwY/GrVoXWYUGEH +# yfrkLkws0RoEMpoIEgebZNKqjRynRJgR4fPCKrEhwEiTTAc4DXGci4HHOm64EQ1g +# /SDHMFqIKVSxoUbkGbdKNKHhmahuIrAy4we9s7rZJskveZYZiDmtAtBt/gQojxbZ +# 1vO9C11SthkrmkkTMLQf9cDzlVEBeu6KmHX2Sze6ggne3I4cy/5IULnHZ3rM4ZpJ +# c0s2KpGLHaVrEQy4x/mAn4yaYfgeH3MEAWkVjy/qTDh6cDCF/gyz3TaQDtvFnAK7 +# 0LqtbEvBPdBpeCG/hk9l0laYzwiyyGY/HqMCAwEAAaOCATYwggEyMB0GA1UdDgQW +# BBQZtqNFA+9mdEu/h33UhHMN6whcLjAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl +# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j +# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx +# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh +# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG +# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQDD7mehJY3fTHKC4hj+wBWB8544 +# uaJiMMIHnhK9ONTM7VraTYzx0U/TcLJ6gxw1tRzM5uu8kswJNlHNp7RedsAiwviV +# QZV9AL8IbZRLJTwNehCwk+BVcY2gh3ZGZmx8uatPZrRueyhhTTD2PvFVLrfwh2li +# DG/dEPNIHTKj79DlEcPIWoOCUp7p0ORMwQ95kVaibpX89pvjhPl2Fm0CBO3pXXJg +# 0bydpQ5dDDTv/qb0+WYF/vNVEU/MoMEQqlUWWuXECTqx6TayJuLJ6uU7K5QyTkQ/ +# l24IhGjDzf5AEZOrINYzkWVyNfUOpIxnKsWTBN2ijpZ/Tun5qrmo9vNIDT0lobgn +# ulae17NaEO9oiEJJH1tQ353dhuRi+A00PR781iYlzF5JU1DrEfEyNx8CWgERi90L +# KsYghZBCDjQ3DiJjfUZLqONeHrJfcmhz5/bfm8+aAaUPpZFeP0g0Iond6XNk4YiY +# bWPFoofc0LwcqSALtuIAyz6f3d+UaZZsp41U4hCIoGj6hoDIuU839bo/mZ/AgESw +# GxIXs0gZU6A+2qIUe60QdA969wWSzucKOisng9HCSZLF1dqc3QUawr0C0U41784K +# o9vckAG3akwYuVGcs6hM/SqEhoe9jHwe4Xp81CrTB1l9+EIdukCbP0kyzx0WZzte +# eiDN5rdiiQR9mBJuljCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw +# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n +# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y +# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv +# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg +# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO +# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 +# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 +# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL +# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 +# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj +# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE +# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 +# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 +# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB +# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE +# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG +# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 +# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV +# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV +# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo +# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m +# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j +# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv +# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN +# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 +# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 +# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX +# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew +# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 +# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd +# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr +# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh +# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n +# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ +# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw +# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI +# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv +# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh +# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046MkFENC00Qjky +# LUZBMDExJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB +# ATAHBgUrDgMCGgMVAAGu2DRzWkKljmXySX1korHL4fMnoIGDMIGApH4wfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tXMCIY +# DzIwMjExMjA5MDM1MTUxWhgPMjAyMTEyMTAwMzUxNTFaMHcwPQYKKwYBBAGEWQoE +# ATEvMC0wCgIFAOVbi1cCAQAwCgIBAAICFmICAf8wBwIBAAICEh0wCgIFAOVc3NcC +# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK +# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQAcxjpqy9KLSwM37+FXLc0BH8vQ +# bi/JiOUtzx1U3w8DY7ed3asVEpLwGzUKiZ6rI29ZJuKH6YlwiWrAcHP9QgQnWNwg +# LXWMiZLEeOE63JCAWeL4odLTq1DKced93+APIOfcpQ1ap6X/BY4fKpscksm/q98S +# mmAs+7pjsbcUGpWLtzGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w +# IFBDQSAyMDEwAhMzAAABhnjlGYn4JEvMAAEAAAGGMA0GCWCGSAFlAwQCAQUAoIIB +# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIIOe +# Fteykp3uhjp/CbUuslldSIpFBtmy2s0K3N7X+v4KMIH6BgsqhkiG9w0BCRACLzGB +# 6jCB5zCB5DCBvQQgGpmI4LIsCFTGiYyfRAR7m7Fa2guxVNIw17mcAiq8Qn4wgZgw +# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE +# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD +# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYZ45RmJ+CRL +# zAABAAABhjAiBCAUmIgeNWf4KXB+/obIOhBMrPwiJ83+1ebXflyLLm9rjjANBgkq +# hkiG9w0BAQsFAASCAgBf6Fat07wOy6aoLnxthDrldarQW8T2Ds6iTbNLhloJSJ1O +# Iu3QX6b7ktkdWHUtcOrW6wQ5y/EpoKQgPvT4+bs6e9QgdZqsz31NAecxGcivBfQz +# nxE8j6o46ky4HWO46ppqFjrz4ENa0ELpE8LC4fQC2h4N1EQPNkh9MQMunYZSK2Ck +# ritrVAuivl6vaeuVJyNBh0G20owR+ZDTocTnZYnOi4DqgKsrqe/8Q+kmQPmMZpig +# 3brD1Lg5JT/0zGlwNqvarcBJHRidNXrVJLxiHIcDTg4rwD+T4FN8EAbg+ioyv47T +# I6Ob7+gcrL2UdhVkZSUSqdVQVIX1V2SvP41TSHx7UCptCG0MaPiWYN5IGFlSKdRf +# hDv8Qb1cjW/wq3yQMBQBkV1g7CO48FoHlOl45b7dzXvn0b8LsYj2+gYfqzbJqacZ +# FOCrSVKIq5rlJAFKYra81Lzuryl3hpeXsREPc80w6gBZuwtq3ML/Z0YN7/rQQTs2 +# tsGyS4Ti76HltquYmkkQEfan1uk0RU91wujLFd7KZ3urFVvjqsqH9zSpxp7pCKT7 +# Sh6wf0zmG4SBX5DVQ0sHERamwpv6dqdDuadT3j9hnmsktM8uozim4Zzz0KI4DN1p +# IJE2x0YOHgYqr91aJMwULeVv3gGpcMUx6d08hSS6RDA7ne+UhH226yoyJsaYcQ== +# SIG # End signature block diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 new file mode 100644 index 0000000..5d9ffc6 --- /dev/null +++ b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 @@ -0,0 +1,229 @@ +@{ +GUID="56D66100-99A0-4FFC-A12D-EEE9A6718AEF" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +FunctionsToExport = @() +CmdletsToExport="Start-Transcript", "Stop-Transcript" +AliasesToExport = @() +NestedModules="Microsoft.PowerShell.ConsoleHost.dll" +HelpInfoURI = 'https://aka.ms/powershell72-help' +} + +# SIG # Begin signature block +# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCCAN6qOMSgIZSKy +# niFjiV1FZGi6ofshkAXyBqiHSReb1aCCDYEwggX/MIID56ADAgECAhMzAAACUosz +# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I +# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O +# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA +# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o +# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 +# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 +# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp +# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 +# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u +# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 +# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti +# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z +# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf +# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK +# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW +# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F +# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgkynSeA0x +# XjLakAqmd0XMmOd0Xz2RQ1n1Heu6kO1y5N0wQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQBp+M1foZUndpZVBWaBgxj5ssitpnOInfqiMoO3MG1s +# H2bxWJO09yPVWWu1/hkCjpRID00eSBj71TcZ/C1ZkQimhy2bxMM7YjngYf1A20r7 +# Luw3ZbAOPs92h91TG0a1L2PJa7rjJy57BgwnHFTgNrWkCR7VXElf2LnjCbONyJPy +# rVNLQaGGM78KKhd6Tp2LDd+R8sT19o2lD5bBrVubPim3XifI6hn4f66a1no72w3S +# 9ol7radXalJgKkxKzQnAVHPiOB+GAL/J457mswnvP+eRD/kUlEPsFRCVEMKejOdo +# 69jQhGOZJH0CuLU1HlhzU6X/poT4dnIJ9d+aCMX0cfE6oYIXGTCCFxUGCisGAQQB +# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME +# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIJb96bqFa1hrFgpYPU2ayB0LEBtlTfOe8EwuWTs9 +# L81TAgZhlV4jeFAYEzIwMjExMjA4MjEwNDEzLjY4NVowBIACAfSggdikgdUwgdIx +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p +# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh +# bGVzIFRTUyBFU046OEQ0MS00QkY3LUIzQjcxJTAjBgNVBAMTHE1pY3Jvc29mdCBU +# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYguzcaBQeG8 +# KgABAAABiDANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg +# MjAxMDAeFw0yMTEwMjgxOTI3NDBaFw0yMzAxMjYxOTI3NDBaMIHSMQswCQYDVQQG +# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG +# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg +# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg +# RVNOOjhENDEtNEJGNy1CM0I3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt +# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAmucQCAQm +# kcXHyDrV4S88VeJg2XGqNKcWpsrapRKFWchhjLsf/M9XN9bgznLN48BXPAtOlwoe +# dB2kN4bZdPP3KdRNbYq1tNFUh8UnmjCCr+CjLlrigHcmS0R+rsN2gBMXlLEZh2W/ +# COuD9VOLsb2P2jDp433V4rUAAUW82M7rg81d3OcctO+1XW1h3EtbQtS6QEkw6DYI +# uvfX7Aw8jXHZnsMugP8ZA1otprpTNUh/zRWC7CJyBzymQIDSCdWhVfD4shxe+Rs6 +# 1axf27bTg5H/V/SkNd9hzM6Nq/y2OjDKrLtuN9hS53569uhTNQeAhAVDfeHpEzlM +# vtXOyX6MTme3jnHdHPj6GLT9AMRIrAf96hPYOiPEBvHtrg6MpiI3+l6NlbSOs16/ +# FTeljT1+sdsWGtFTZvea9pAqV1aB795aDkmZ6sRm5jtdnVazfoWrHd3vDeh35WV0 +# 8vW4TlOfEcV2+KbairPxaFkJ4+tlsJ+MfsVOiTr/ZnDgaMaHnzzogelI3AofDU9I +# TbMkTtTxrLPygTbRdtbptrnLzBn2jzR4TJfkQo+hzWuaMu5OtMZiKV2I5MO0m1mK +# uUAgoq+442Lw8CQuj9EC2F8nTbJb2NcUDg+74dgJis/P8Ba/OrlxW+Trgc6TPGxC +# OtT739UqeslvWD6rNQ6UEO9f7vWDkhd2vtsCAwEAAaOCATYwggEyMB0GA1UdDgQW +# BBRkebVQxKO7zru9+o27GjPljMlKSjAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl +# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j +# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx +# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh +# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG +# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQBAEFrb+1gIJsv/GKLS2zavm2ek +# 177mk4yu6BuS6ViIuL0e20YN2ddXeiUhEdhk3FRto/GD93k5SIyNJ6X+p8uQMOxI +# 23YOSdyEzLJwh7+ftu0If8y3x6AJ0S1d12OZ7fsYqljHUeccneS9DWqipHk8uM8m +# 2ZbBhRnUN8M4iqg4roJGmZKZ9Fc8Z7ZHJgM97i7fIyA9hJH017z25WrDJlxapD5d +# mMyNyzzfAVqaByemCoBn4VkRCGNISx0xRlcb93W6ENhJF1NBjMl3cKVEHW4d8Y0N +# ZhpdXDteLk9HgbJyeCI2fN9GBrCS1B1ak+194PGiZKL8+gtK7NorAoAMQvFkYgrH +# rWCYfjV6PouC3N+A6wOBrckVOHT9PUIDK5ADCH4ZraQideS9LD/imKHM3I4iazPk +# ocHcFHB9yo5d9lMJZ+pnAAWglQQjMWhUqnE/llA+EqjbO0lAxlmUtVioVUswhT3p +# K6DjFRXM/LUxwTttufz1zBjELkRIZ8uCy1YkMxfBFwEos/QFIlDaFSvUn4IiWZA3 +# VLfAEjy51iJwK2jSIHw+1bjCI+FBHcCTRH2pP3+h5DlQ5AZ/dvcfNrATP1wwz25I +# r8KgKObHRCIYH4VI2VrmOboSHFG79JbHdkPVSjfLxTuTsoh5FzoU1t5urG0rwulo +# ZZFZxTkrxfyTkhvmjDCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw +# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n +# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y +# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv +# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg +# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO +# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 +# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 +# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL +# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 +# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj +# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE +# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 +# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 +# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB +# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE +# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG +# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 +# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV +# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV +# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo +# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m +# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j +# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv +# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN +# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 +# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 +# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX +# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew +# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 +# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd +# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr +# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh +# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n +# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ +# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw +# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI +# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv +# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh +# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046OEQ0MS00QkY3 +# LUIzQjcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB +# ATAHBgUrDgMCGgMVAOE8isx8IBeVPSweD805l5Qdeg5CoIGDMIGApH4wfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tIMCIY +# DzIwMjExMjA5MDM1MTM2WhgPMjAyMTEyMTAwMzUxMzZaMHcwPQYKKwYBBAGEWQoE +# ATEvMC0wCgIFAOVbi0gCAQAwCgIBAAICIScCAf8wBwIBAAICEdowCgIFAOVc3MgC +# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK +# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQBeVbaPZ5ldfNGhiFwP5ALaZGmV +# 4LkTqmcDT5yUk6p3tceYyxhPwMQqshcKt1fSrFqX5J8uNBeTWEpB5D/YyrXGHu/K +# a4Wj/8+nv32LXimt561Ygktjq90QX/Vha0BnifzfBTf/k64ZmtV6FMmvNI9MjNm3 +# QmHj495BbEuSWI20HzGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w +# IFBDQSAyMDEwAhMzAAABiC7NxoFB4bwqAAEAAAGIMA0GCWCGSAFlAwQCAQUAoIIB +# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIB5r +# VcRB53ajDn0amN283eZmOuFxfZ1ddPxQGZnO2OCZMIH6BgsqhkiG9w0BCRACLzGB +# 6jCB5zCB5DCBvQQgZune7awGN0aEgvjP7JyO3NKl7hstX8ChhrKmXtJJQKUwgZgw +# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE +# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD +# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYguzcaBQeG8 +# KgABAAABiDAiBCDnGsQwLYuvrNs0JZQ8D1YCe56drKP5aPf/ndr94faZkzANBgkq +# hkiG9w0BAQsFAASCAgBi8EWq1+2L+qQJjtUAiYvFYQS2GX/DAratlOcGOSYqL81P +# DXuByUFsrXsBKqXmeuAfWiNeLWOpiGvy10qNldd/AsVdVrba72n8rzGLQ1od91L4 +# CljkSRtcq/LmvjdWPqa+ySqda1OpsD80ZOFstCnTysY9S6SDqvWgZYr+UtRJsng4 +# jp8cUCQBAcjQ1N/dHGUAs/Tvfr5kHdDGynKKMGdDEUKtM2jjznIIWnxPzZoyXEi4 +# 8ePyJ/mTh3grNa3oOSGxuC+8ejye9Bc4JPSYYzhzJw+M0LAgBLQxj/HdYiuGIK7w +# TOUrqctErkPgosq1NdUAqQZakDXVpouiB+FTez3hiR2QAY1uR5lHvGD9zJValYMH +# OQEzjO5Bh+2cauVdMp012ULRJBIcVVrjUcSihcyD6EbUlyzu0VQFNFANkbFpqsf6 +# gS9p4j//r8AfQv8xwyy2N0Ql5caRRf5Vlfjp8c2ikMMvY19A53qBKs+aE093B+4Z +# 72wg2wnorYKun9fGpnfs+JufmnDf64O8a9pXV+XM9lVmgmWb0ScKAxn+N9dZrwD7 +# DbjlvSnLEUciHzyEO9wQ8/gu3L6E2Ugho+AbIDStmNhSIQiMDJblWZk5aLc8SGPr +# tts+mmDoB+lun57BwYPZKhgmnekQ9j9tCZaDKWa/ocKNByI+2+YBrNev3M37rQ== +# SIG # End signature block diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 new file mode 100644 index 0000000..5d2f511 --- /dev/null +++ b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 @@ -0,0 +1,289 @@ +@{ +GUID="EEFCB906-B326-4E99-9F54-8B4BB6EF3C6D" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +NestedModules="Microsoft.PowerShell.Commands.Management.dll" +HelpInfoURI = 'https://aka.ms/powershell72-help' +FunctionsToExport = @() +AliasesToExport = @("gcb", "gin", "gtz", "scb", "stz") +CmdletsToExport=@("Add-Content", + "Clear-Content", + "Get-Clipboard", + "Set-Clipboard", + "Clear-ItemProperty", + "Join-Path", + "Convert-Path", + "Copy-ItemProperty", + "Get-ChildItem", + "Get-Content", + "Get-ItemProperty", + "Get-ItemPropertyValue", + "Move-ItemProperty", + "Get-Location", + "Set-Location", + "Push-Location", + "Pop-Location", + "New-PSDrive", + "Remove-PSDrive", + "Get-PSDrive", + "Get-Item", + "New-Item", + "Set-Item", + "Remove-Item", + "Move-Item", + "Rename-Item", + "Copy-Item", + "Clear-Item", + "Invoke-Item", + "Get-PSProvider", + "New-ItemProperty", + "Split-Path", + "Test-Path", + "Test-Connection", + "Get-Process", + "Stop-Process", + "Wait-Process", + "Debug-Process", + "Start-Process", + "Remove-ItemProperty", + "Rename-ItemProperty", + "Resolve-Path", + "Get-Service", + "Stop-Service", + "Start-Service", + "Suspend-Service", + "Resume-Service", + "Restart-Service", + "Set-Service", + "New-Service", + "Remove-Service", + "Set-Content", + "Set-ItemProperty", + "Restart-Computer", + "Stop-Computer", + "Rename-Computer", + "Get-ComputerInfo", + "Get-TimeZone", + "Set-TimeZone", + "Get-HotFix", + "Clear-RecycleBin") +} + +# SIG # Begin signature block +# MIInuAYJKoZIhvcNAQcCoIInqTCCJ6UCAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCAOkUHfBYP8n8JI +# rFMR/Pi6BPlAC/b/pz0LBmd3yrLJC6CCDYEwggX/MIID56ADAgECAhMzAAACUosz +# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I +# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O +# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA +# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o +# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 +# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 +# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp +# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 +# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u +# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 +# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti +# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z +# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf +# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK +# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW +# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F +# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjTCCGYkCAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgbwKAFcUU +# n/a8C1e7lODkKydexiPQBTRqAUaY8lpIXxYwQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQAS8cDlYOVWF3oFPi1M2yWWdC1wbCMgPa2utU2WgHpJ +# FdgkgR5zgZhKx2APsR5uSgSfvs9YfPYm8+NRMvxAYm4e/Bf1JgTP9gsgqxQ/xXB+ +# NqOASjMjv7v+wTLPMa/i//jTTxjqcmHebx0tVR6f0Fpr9BU7PxW996xh2vKdxVnV +# YXxHwAmhJ1TxUaZC0hVRtriJrBfAsuQ2g/aCn5wZ6YXKVJ63IBZ+jnivf80fnSYc +# t+Zl4LqAiaSvpQ7GgPo/RggihGdWk+AuZCcY9SOJYAypK3Hvu4KHy4+5GEW3+9LI +# uQ3+9k1MG+Xng2uR0sDenzNJN89weif/W6AwmTwRl69ToYIXFzCCFxMGCisGAQQB +# gjcDAwExghcDMIIW/wYJKoZIhvcNAQcCoIIW8DCCFuwCAQMxDzANBglghkgBZQME +# AgEFADCCAVcGCyqGSIb3DQEJEAEEoIIBRgSCAUIwggE+AgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIGUlM1IvDbHn/VrMmR6UJYC2nOP4lY0xhCVtPuKI +# CRBSAgZhlV4jeGYYETIwMjExMjA4MjEwNDE0LjdaMASAAgH0oIHYpIHVMIHSMQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNy +# b3NvZnQgSXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxl +# cyBUU1MgRVNOOjhENDEtNEJGNy1CM0I3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGlt +# ZS1TdGFtcCBTZXJ2aWNloIIRaDCCBxQwggT8oAMCAQICEzMAAAGILs3GgUHhvCoA +# AQAAAYgwDQYJKoZIhvcNAQELBQAwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldh +# c2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBD +# b3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIw +# MTAwHhcNMjExMDI4MTkyNzQwWhcNMjMwMTI2MTkyNzQwWjCB0jELMAkGA1UEBhMC +# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV +# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEtMCsGA1UECxMkTWljcm9zb2Z0IEly +# ZWxhbmQgT3BlcmF0aW9ucyBMaW1pdGVkMSYwJAYDVQQLEx1UaGFsZXMgVFNTIEVT +# Tjo4RDQxLTRCRjctQjNCNzElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAg +# U2VydmljZTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAJrnEAgEJpHF +# x8g61eEvPFXiYNlxqjSnFqbK2qUShVnIYYy7H/zPVzfW4M5yzePAVzwLTpcKHnQd +# pDeG2XTz9ynUTW2KtbTRVIfFJ5owgq/goy5a4oB3JktEfq7DdoATF5SxGYdlvwjr +# g/VTi7G9j9ow6eN91eK1AAFFvNjO64PNXdznHLTvtV1tYdxLW0LUukBJMOg2CLr3 +# 1+wMPI1x2Z7DLoD/GQNaLaa6UzVIf80Vguwicgc8pkCA0gnVoVXw+LIcXvkbOtWs +# X9u204OR/1f0pDXfYczOjav8tjowyqy7bjfYUud+evboUzUHgIQFQ33h6RM5TL7V +# zsl+jE5nt45x3Rz4+hi0/QDESKwH/eoT2DojxAbx7a4OjKYiN/pejZW0jrNevxU3 +# pY09frHbFhrRU2b3mvaQKldWge/eWg5JmerEZuY7XZ1Ws36Fqx3d7w3od+VldPL1 +# uE5TnxHFdvim2oqz8WhZCePrZbCfjH7FTok6/2Zw4GjGh5886IHpSNwKHw1PSE2z +# JE7U8ayz8oE20XbW6ba5y8wZ9o80eEyX5EKPoc1rmjLuTrTGYildiOTDtJtZirlA +# IKKvuONi8PAkLo/RAthfJ02yW9jXFA4Pu+HYCYrPz/AWvzq5cVvk64HOkzxsQjrU +# +9/VKnrJb1g+qzUOlBDvX+71g5IXdr7bAgMBAAGjggE2MIIBMjAdBgNVHQ4EFgQU +# ZHm1UMSju867vfqNuxoz5YzJSkowHwYDVR0jBBgwFoAUn6cVXQBeYl2D9OXSZacb +# UzUZ6XIwXwYDVR0fBFgwVjBUoFKgUIZOaHR0cDovL3d3dy5taWNyb3NvZnQuY29t +# L3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwVGltZS1TdGFtcCUyMFBDQSUyMDIwMTAo +# MSkuY3JsMGwGCCsGAQUFBwEBBGAwXjBcBggrBgEFBQcwAoZQaHR0cDovL3d3dy5t +# aWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9NaWNyb3NvZnQlMjBUaW1lLVN0YW1w +# JTIwUENBJTIwMjAxMCgxKS5jcnQwDAYDVR0TAQH/BAIwADATBgNVHSUEDDAKBggr +# BgEFBQcDCDANBgkqhkiG9w0BAQsFAAOCAgEAQBBa2/tYCCbL/xii0ts2r5tnpNe+ +# 5pOMrugbkulYiLi9HttGDdnXV3olIRHYZNxUbaPxg/d5OUiMjSel/qfLkDDsSNt2 +# DknchMyycIe/n7btCH/Mt8egCdEtXddjme37GKpYx1HnHJ3kvQ1qoqR5PLjPJtmW +# wYUZ1DfDOIqoOK6CRpmSmfRXPGe2RyYDPe4u3yMgPYSR9Ne89uVqwyZcWqQ+XZjM +# jcs83wFamgcnpgqAZ+FZEQhjSEsdMUZXG/d1uhDYSRdTQYzJd3ClRB1uHfGNDWYa +# XVw7Xi5PR4GycngiNnzfRgawktQdWpPtfeDxomSi/PoLSuzaKwKADELxZGIKx61g +# mH41ej6LgtzfgOsDga3JFTh0/T1CAyuQAwh+Ga2kInXkvSw/4pihzNyOImsz5KHB +# 3BRwfcqOXfZTCWfqZwAFoJUEIzFoVKpxP5ZQPhKo2ztJQMZZlLVYqFVLMIU96Sug +# 4xUVzPy1McE7bbn89cwYxC5ESGfLgstWJDMXwRcBKLP0BSJQ2hUr1J+CIlmQN1S3 +# wBI8udYicCto0iB8PtW4wiPhQR3Ak0R9qT9/oeQ5UOQGf3b3HzawEz9cMM9uSK/C +# oCjmx0QiGB+FSNla5jm6EhxRu/SWx3ZD1Uo3y8U7k7KIeRc6FNbebqxtK8LpaGWR +# WcU5K8X8k5Ib5owwggdxMIIFWaADAgECAhMzAAAAFcXna54Cm0mZAAAAAAAVMA0G +# CSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3Rv +# bjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0 +# aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3Jp +# dHkgMjAxMDAeFw0yMTA5MzAxODIyMjVaFw0zMDA5MzAxODMyMjVaMHwxCzAJBgNV +# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w +# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m +# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC +# CgKCAgEA5OGmTOe0ciELeaLL1yR5vQ7VgtP97pwHB9KpbE51yMo1V/YBf2xK4OK9 +# uT4XYDP/XE/HZveVU3Fa4n5KWv64NmeFRiMMtY0Tz3cywBAY6GB9alKDRLemjkZr +# BxTzxXb1hlDcwUTIcVxRMTegCjhuje3XD9gmU3w5YQJ6xKr9cmmvHaus9ja+NSZk +# 2pg7uhp7M62AW36MEBydUv626GIl3GoPz130/o5Tz9bshVZN7928jaTjkY+yOSxR +# nOlwaQ3KNi1wjjHINSi947SHJMPgyY9+tVSP3PoFVZhtaDuaRr3tpK56KTesy+uD +# RedGbsoy1cCGMFxPLOJiss254o2I5JasAUq7vnGpF1tnYN74kpEeHT39IM9zfUGa +# RnXNxF803RKJ1v2lIH1+/NmeRd+2ci/bfV+AutuqfjbsNkz2K26oElHovwUDo9Fz +# pk03dJQcNIIP8BDyt0cY7afomXw/TNuvXsLz1dhzPUNOwTM5TI4CvEJoLhDqhFFG +# 4tG9ahhaYQFzymeiXtcodgLiMxhy16cg8ML6EgrXY28MyTZki1ugpoMhXV8wdJGU +# lNi5UPkLiWHzNgY1GIRH29wb0f2y1BzFa/ZcUlFdEtsluq9QBXpsxREdcu+N+VLE +# hReTwDwV2xo3xwgVGD94q0W29R6HXtqPnhZyacaue7e3PmriLq0CAwEAAaOCAd0w +# ggHZMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFCqnUv5kxJq+ +# gpE8RjUpzxD/LwTuMB0GA1UdDgQWBBSfpxVdAF5iXYP05dJlpxtTNRnpcjBcBgNV +# HSAEVTBTMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wEwYDVR0l +# BAwwCgYIKwYBBQUHAwgwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P +# BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU1fZWy4/oolxiaNE9 +# lJBb186aGMQwVgYDVR0fBE8wTTBLoEmgR4ZFaHR0cDovL2NybC5taWNyb3NvZnQu +# Y29tL3BraS9jcmwvcHJvZHVjdHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3Js +# MFoGCCsGAQUFBwEBBE4wTDBKBggrBgEFBQcwAoY+aHR0cDovL3d3dy5taWNyb3Nv +# ZnQuY29tL3BraS9jZXJ0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5jcnQwDQYJ +# KoZIhvcNAQELBQADggIBAJ1VffwqreEsH2cBMSRb4Z5yS/ypb+pcFLY+TkdkeLEG +# k5c9MTO1OdfCcTY/2mRsfNB1OW27DzHkwo/7bNGhlBgi7ulmZzpTTd2YurYeeNg2 +# LpypglYAA7AFvonoaeC6Ce5732pvvinLbtg/SHUB2RjebYIM9W0jVOR4U3UkV7nd +# n/OOPcbzaN9l9qRWqveVtihVJ9AkvUCgvxm2EhIRXT0n4ECWOKz3+SmJw7wXsFSF +# QrP8DJ6LGYnn8AtqgcKBGUIZUnWKNsIdw2FzLixre24/LAl4FOmRsqlb30mjdAy8 +# 7JGA0j3mSj5mO0+7hvoyGtmW9I/2kQH2zsZ0/fZMcm8Qq3UwxTSwethQ/gpY3UA8 +# x1RtnWN0SCyxTkctwRQEcb9k+SS+c23Kjgm9swFXSVRk2XPXfx5bRAGOWhmRaw2f +# pCjcZxkoJLo4S5pu+yFUa2pFEUep8beuyOiJXk+d0tBMdrVXVAmxaQFEfnyhYWxz +# /gq77EFmPWn9y8FBSX5+k77L+DvktxW/tM4+pTFRhLy/AsGConsXHRWJjXD+57XQ +# KBqJC4822rpM+Zv/Cuk0+CQ1ZyvgDbjmjJnW4SLq8CdCPSWU5nR0W2rRnj7tfqAx +# M328y+l7vzhwRNGQ8cirOoo6CGJ/2XBjU02N7oJtpQUQwXEGahC0HVUzWLOhcGby +# oYIC1zCCAkACAQEwggEAoYHYpIHVMIHSMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQgSXJlbGFuZCBPcGVyYXRp +# b25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNOOjhENDEtNEJGNy1C +# M0I3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNloiMKAQEw +# BwYFKw4DAhoDFQDhPIrMfCAXlT0sHg/NOZeUHXoOQqCBgzCBgKR+MHwxCzAJBgNV +# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w +# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m +# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBBQUAAgUA5VuLSDAiGA8y +# MDIxMTIwOTAzNTEzNloYDzIwMjExMjEwMDM1MTM2WjB3MD0GCisGAQQBhFkKBAEx +# LzAtMAoCBQDlW4tIAgEAMAoCAQACAiEnAgH/MAcCAQACAhHaMAoCBQDlXNzIAgEA +# MDYGCisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEAAgMHoSChCjAI +# AgEAAgMBhqAwDQYJKoZIhvcNAQEFBQADgYEAXlW2j2eZXXzRoYhcD+QC2mRpleC5 +# E6pnA0+clJOqd7XHmMsYT8DEKrIXCrdX0qxal+SfLjQXk1hKQeQ/2Mq1xh7vymuF +# o//Pp799i14preetWIJLY6vdEF/1YWtAZ4n83wU3/5OuGZrVehTJrzSPTIzZt0Jh +# 4+PeQWxLkliNtB8xggQNMIIECQIBATCBkzB8MQswCQYDVQQGEwJVUzETMBEGA1UE +# CBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9z +# b2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQ +# Q0EgMjAxMAITMwAAAYguzcaBQeG8KgABAAABiDANBglghkgBZQMEAgEFAKCCAUow +# GgYJKoZIhvcNAQkDMQ0GCyqGSIb3DQEJEAEEMC8GCSqGSIb3DQEJBDEiBCAAZlzS +# rT4vVB7wRIbsGvay4ACd2gPSgT3yS7r8RrU5XTCB+gYLKoZIhvcNAQkQAi8xgeow +# gecwgeQwgb0EIGbp3u2sBjdGhIL4z+ycjtzSpe4bLV/AoYaypl7SSUClMIGYMIGA +# pH4wfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcT +# B1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UE +# AxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTACEzMAAAGILs3GgUHhvCoA +# AQAAAYgwIgQg5xrEMC2Lr6zbNCWUPA9WAnuenayj+Wj3/53a/eH2mZMwDQYJKoZI +# hvcNAQELBQAEggIAOr4i66ksCOJ3Rw8xoMzAdJVQl257tTcsAl9f6cACnWS8wb5g +# W+fRBFGeoxzjBgn34Rn0NPmfz5+vx9D314QAmjWt//l6S8hmldXyUlrixC6aOGik +# +CRaSnhf0CY2o3vBSYsYV3gJx0PSnDq6/T2B+S9TY90hvl+NgkzCNBnyLEDPgDXB +# e9XQi88hUWqZxpjaTmAI26+fr9z7AMrtnA4hxEzDbh6VGDhXKZ4F//b3E6Xj6ppB +# AJBmkEH42AnDBuFGEr2iLkKbU25t0ZuD7whLQ7CaQ8yVOppTuG4kqNbsUmIPzxtI +# wlznjxAV7nN+BrIuNmraWiBmszVsqSm1FhcZBBL3jj98szffT9zmcRKwPKlO8J88 +# mHFY0io9zXsE8Cv87ezrCIDVhbIm3gHj8dMr8tiWmo9ejacYgEZSGNBAwdku6O+G +# PZ1WsWBQ1MNLRtye9FWMqGog7yqeb/iHtJH3hH7MFLgXMVHuKjI7rcIGlWKOyTbA +# Cllth+6In3BRDC/VUiSKD6SfVYyEjKdLM3dURYi/NzUJ3tapoE4DUBYt2xZlDEGO +# j/L2KpzIlyi5MhU3YZwTkAZwSNqmPKZ+f5w6j0cOhilqTOYMmVB5OycslZv6ODcW +# pcGpnK6b2QNfFMEvtGrIvflWQC95c9hwlJ2O3Fuh5Hroza3f7PgYUmrxctU= +# SIG # End signature block diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 new file mode 100644 index 0000000..b3dd852 --- /dev/null +++ b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 @@ -0,0 +1,229 @@ +@{ +GUID="A94C8C7E-9810-47C0-B8AF-65089C13A35A" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +FunctionsToExport = @() +CmdletsToExport="Get-Acl", "Set-Acl", "Get-PfxCertificate", "Get-Credential", "Get-ExecutionPolicy", "Set-ExecutionPolicy", "Get-AuthenticodeSignature", "Set-AuthenticodeSignature", "ConvertFrom-SecureString", "ConvertTo-SecureString", "Get-CmsMessage", "Unprotect-CmsMessage", "Protect-CmsMessage" , "New-FileCatalog" , "Test-FileCatalog" +AliasesToExport = @() +NestedModules="Microsoft.PowerShell.Security.dll" +HelpInfoURI = 'https://aka.ms/powershell72-help' +} + +# SIG # Begin signature block +# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCD++xTkW7oivoiQ +# gqU/R85f/MwSI1hVEeaegSriXP6+BqCCDYEwggX/MIID56ADAgECAhMzAAACUosz +# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I +# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O +# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA +# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o +# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 +# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 +# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp +# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 +# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u +# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 +# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti +# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z +# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf +# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK +# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW +# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F +# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgWHV5GUzu +# +l9zI1GEYPanTVvtHVRaoSkM2bZBhM+rt9YwQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQByeqL4g0Ci96GXfmQN8rvCAtpT2N0neMZ9mozeBeyF +# 5hYxQhatRKLDNrOJei542+AM9l8AmsmKtJvtE8wJUkVGZqxBSiMwv7nV1uMQgVhK +# crEIUsmJO+EStsx+gA3VyfugAElJEJtTInobbDPofwO4DS8xUBpW/OLaq3XVjRga +# JOh7s7RMx+7Gysq96jaguaW2H2llklxhsKZwf3Mdi+/5BhF8tIevEqPuk4ly1oXh +# qY4/BD0pFNygoTWMp6ecxNQM2EE1N1j3y30h36Gsk5aDMeUFrRNtFFWFF1HbrbH3 +# thOhL/rqSQkbxAR2CNSGQtzrNuLF+1/xJEHXgBNGyEWioYIXGTCCFxUGCisGAQQB +# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME +# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIC9rz69tGAbCMg2r367oWNBEt5XvxdFCe04Dw8cQ +# hWtJAgZhlV5AOHEYEzIwMjExMjA4MjEwNDE0Ljc5MVowBIACAfSggdikgdUwgdIx +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p +# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh +# bGVzIFRTUyBFU046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBU +# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYm0v4YwhBxL +# jwABAAABiTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg +# MjAxMDAeFw0yMTEwMjgxOTI3NDFaFw0yMzAxMjYxOTI3NDFaMIHSMQswCQYDVQQG +# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG +# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg +# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg +# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt +# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQZXxZFm +# a6plmuOyvNpV8xONOwcYolZG/BjyZWGSk5JOGaLyrKId5VxVHWHlsmJE4Svnzsdp +# sKmVx8otONveIUFvSceEZp8VXmu5m1fu8L7c+3lwXcibjccqtEvtQslokQVx0r+L +# 54abrNDarwFG73IaRidIS1i9c+unJ8oYyhDRLrCysFAVxyQhPNZkWK7Z8/VGukaK +# LAWHXCh/+R53h42gFL+9/mAALxzCXXuofi8f/XKCm7xNwVc1hONCCz6oq94AufzV +# NkkIW4brUQgYpCcJm9U0XNmQvtropYDn9UtY8YQ0NKenXPtdgLHdQ8Nnv3igErKL +# rWI0a5n5jjdKfwk+8mvakqdZmlOseeOS1XspQNJAK1uZllAITcnQZOcO5ofjOQ33 +# ujWckAXdz+/x3o7l4AU/TSOMzGZMwhUdtVwC3dSbItpSVFgnjM2COEJ9zgCadvOi +# rGDLN471jZI2jClkjsJTdgPk343TQA4JFvds/unZq0uLr+niZ3X44OBx2x+gVlln +# 2c4UbZXNueA4yS1TJGbbJFIILAmTUA9Auj5eISGTbNiyWx79HnCOTar39QEKozm4 +# LnTmDXy0/KI/H/nYZGKuTHfckP28wQS06rD+fDS5xLwcRMCW92DkHXmtbhGyRilB +# OL5LxZelQfxt54wl4WUC0AdAEolPekODwO8CAwEAAaOCATYwggEyMB0GA1UdDgQW +# BBSXbx+zR1p4IIAeguA6rHKkrfl7UDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl +# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j +# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx +# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh +# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG +# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQCOtLdpWUI4KwfLLrfaKrLB92Dq +# bAspGWM41TaO4Jl+sHxPo522uu3GKQCjmkRWreHtlfyy9kOk7LWax3k3ke8Gtfet +# fbh7qH0LeV2XOWg39BOnHf6mTcZq7FYSZZch1JDQjc98+Odlow+oWih0Dbt4CV/e +# 19ZcE+1n1zzWkskUEd0f5jPIUis33p+vkY8szduAtCcIcPFUhI8Hb5alPUAPMjGz +# wKb7NIKbnf8j8cP18As5IveckF0oh1cw63RY/vPK62LDYdpi7WnG2ObvngfWVKtw +# iwTI4jHj2cO9q37HDe/PPl216gSpUZh0ap24mKmMDfcKp1N4mEdsxz4oseOrPYeF +# sHHWJFJ6Aivvqn70KTeJpp5r+DxSqbeSy0mxIUOq/lAaUxgNSQVUX26t8r+fciko +# fKv23WHrtRV3t7rVTsB9YzrRaiikmz68K5HWdt9MqULxPQPo+ppZ0LRqkOae466+ +# UKRY0JxWtdrMc5vHlHZfnqjawj/RsM2S6Q6fa9T9CnY1Nz7DYBG3yZJyCPFsrgU0 +# 5s9ljqfsSptpFdUh9R4ce+L71SWDLM2x/1MFLLHAMbXsEp8KloEGtaDULnxtfS2t +# YhfuKGqRXoEfDPAMnIdTvQPh3GHQ4SjkkBARHL0MY75alhGTKHWjC2aLVOo8obKI +# Bk8hfnFDUf/EyVw4uTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw +# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n +# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y +# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv +# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg +# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO +# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 +# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 +# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL +# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 +# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj +# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE +# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 +# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 +# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB +# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE +# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG +# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 +# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV +# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV +# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo +# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m +# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j +# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv +# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN +# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 +# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 +# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX +# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew +# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 +# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd +# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr +# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh +# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n +# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ +# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw +# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI +# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv +# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh +# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00Qjgw +# LTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB +# ATAHBgUrDgMCGgMVACGlCa3ketyeuey7bJNpWkMuiCcQoIGDMIGApH4wfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tYMCIY +# DzIwMjExMjA5MDM1MTUyWhgPMjAyMTEyMTAwMzUxNTJaMHcwPQYKKwYBBAGEWQoE +# ATEvMC0wCgIFAOVbi1gCAQAwCgIBAAICHvwCAf8wBwIBAAICETcwCgIFAOVc3NgC +# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK +# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQCbF/Q1IJzqUwQBkXn+GjUxZzVN +# O+9p1fpL7W8dEy9/m1L7dl968KiYqfO5rekvXeSUDTFYrkS/r0w8p2ZZ7d0TMtJt +# TrKmc85aRmxtSvCNAS2stE2sS2Y5np5+/02w3DDn3Nni6vvF8nsuiIlbiyHrGQrC +# 9eis1rpLSNvXisSYoDGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w +# IFBDQSAyMDEwAhMzAAABibS/hjCEHEuPAAEAAAGJMA0GCWCGSAFlAwQCAQUAoIIB +# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIM9O +# ao85t+tQMGnb/NodpJQMwx5JXiYYilGmLk9FSvn+MIH6BgsqhkiG9w0BCRACLzGB +# 6jCB5zCB5DCBvQQgZndHMdxQV1VsbpWHOTHqWEycvcRJm7cY69l/UmT8j0UwgZgw +# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE +# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD +# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYm0v4YwhBxL +# jwABAAABiTAiBCCErc3WAJDL+6+RTcx4qvTV2Dv0bP6a0jmZjnUp3u9sbzANBgkq +# hkiG9w0BAQsFAASCAgCzngLNnPmqawyfurGD6pabQJgWV4nP5zle9pu9tx4c1pTi +# SKAeREqAeOs5Bcg46nHpP+Flb+4BQ68zc2JUv1p1P7OlmpKshGEd1Sgpj0izHI8E +# JW8lmMXuRudxbw/761rpDKViWtWQ1lzxhyDeqJw1tiGIAcbX7P26zcoC+jp19GlY +# DaXcIJDZM/u5UUKDtKNSBIvTX+UDfuAEAwmH37GcuHTnvm1txdDZF2DNEn9Jzj7y +# TvHglap7FeMIvo/Um4cLq8xdSJxOYbGGQ5qCdc6vIGXC8HebpR3bIPxldyKDPdpd +# LdvDD0k+rnDHmMsmgQuihIG8rDiadJ/7YtexaDNm4aYRa8PD5SabeUwi94eYZ4a7 +# 25ZkBy6FQAY13i0RgSRicx2Ryowd0Hg0DWSAfHSJc5CnL7qWNTOhwvX7wEUGbe/0 +# 1GZR+ZYiJRO83/lQAEurvVJuEZ3dKTpeJB4FOP6oIc76pL3GvW9XINxo49WiIbzl +# YEToH4oTa5F5vUCvF2Wa5tDlpa60LFSJDP1VyWCYPP+sflKLkYvG3PmXSYYbCprL +# yS0rypa9ACBp7Q2rZTa1s3j7jtNa3Fa5RZ9gAulFkUVVZ+F0Pm7aUvnRAf54+Ri6 +# aoF9G+flQpzZn8nYCRFfiqcQ9wKPA6lZBGEqzGBLAZqzsmmrSgcwVjdN6ZwqYg== +# SIG # End signature block diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 new file mode 100644 index 0000000..927c504 --- /dev/null +++ b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 @@ -0,0 +1,248 @@ +@{ +GUID = "1DA87E53-152B-403E-98DC-74D7B4D63D59" +Author = "PowerShell" +CompanyName = "Microsoft Corporation" +Copyright = "Copyright (c) Microsoft Corporation." +ModuleVersion = "7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion = "3.0" +CmdletsToExport = @( + 'Export-Alias', 'Get-Alias', 'Import-Alias', 'New-Alias', 'Remove-Alias', 'Set-Alias', 'Export-Clixml', 'Import-Clixml', + 'Measure-Command', 'Trace-Command', 'ConvertFrom-Csv', 'ConvertTo-Csv', 'Export-Csv', 'Import-Csv', 'Get-Culture', + 'Format-Custom', 'Get-Date', 'Set-Date', 'Write-Debug', 'Wait-Debugger', 'Register-EngineEvent', 'Write-Error', + 'Get-Event', 'New-Event', 'Remove-Event', 'Unregister-Event', 'Wait-Event', 'Get-EventSubscriber', 'Invoke-Expression', + 'Out-File', 'Unblock-File', 'Get-FileHash', 'Export-FormatData', 'Get-FormatData', 'Update-FormatData', 'New-Guid', + 'Format-Hex', 'Get-Host', 'Read-Host', 'Write-Host', 'ConvertTo-Html', 'Write-Information', 'ConvertFrom-Json', + 'ConvertTo-Json', 'Test-Json', 'Format-List', 'Import-LocalizedData', 'Send-MailMessage', 'ConvertFrom-Markdown', + 'Show-Markdown', 'Get-MarkdownOption', 'Set-MarkdownOption', 'Add-Member', 'Get-Member', 'Compare-Object', 'Group-Object', + 'Measure-Object', 'New-Object', 'Select-Object', 'Sort-Object', 'Tee-Object', 'Register-ObjectEvent', 'Write-Output', + 'Import-PowerShellDataFile', 'Write-Progress', 'Disable-PSBreakpoint', 'Enable-PSBreakpoint', 'Get-PSBreakpoint', + 'Remove-PSBreakpoint', 'Set-PSBreakpoint', 'Get-PSCallStack', 'Export-PSSession', 'Import-PSSession', 'Get-Random', + 'Invoke-RestMethod', 'Debug-Runspace', 'Get-Runspace', 'Disable-RunspaceDebug', 'Enable-RunspaceDebug', + 'Get-RunspaceDebug', 'ConvertFrom-SddlString', 'Start-Sleep', 'Join-String', 'Out-String', 'Select-String', + 'ConvertFrom-StringData', 'Format-Table', 'New-TemporaryFile', 'New-TimeSpan', 'Get-TraceSource', 'Set-TraceSource', + 'Add-Type', 'Get-TypeData', 'Remove-TypeData', 'Update-TypeData', 'Get-UICulture', 'Get-Unique', 'Get-Uptime', + 'Clear-Variable', 'Get-Variable', 'New-Variable', 'Remove-Variable', 'Set-Variable', 'Get-Verb', 'Write-Verbose', + 'Write-Warning', 'Invoke-WebRequest', 'Format-Wide', 'ConvertTo-Xml', 'Select-Xml', 'Get-Error', 'Update-List', + 'Out-GridView', 'Show-Command', 'Out-Printer' +) +FunctionsToExport = @() +AliasesToExport = @('fhx') +NestedModules = @("Microsoft.PowerShell.Commands.Utility.dll") +HelpInfoURI = 'https://aka.ms/powershell72-help' +} + +# SIG # Begin signature block +# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCBA95ukw/cTrslZ +# 8GEROXuMEYH1RJd2ZOe5U1EPFSWVsaCCDYEwggX/MIID56ADAgECAhMzAAACUosz +# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I +# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O +# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA +# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o +# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 +# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 +# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp +# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 +# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u +# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 +# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti +# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z +# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf +# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK +# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW +# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F +# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgqoEvsipU +# dEXkK33kvZSyP9Cx3IROdWp1ndiqGNS27hEwQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQBHzboagxcQ8L50vNYxDsscrvzcGeLtxdwkaQTW10v2 +# aTPJXDVIFjRwioUbqfGvtBDaq9QFgLBcV3qb5zGL0K33nlBa4+dK0AgYlbbkpnSp +# l9l3tTHoSRiKtFdmpIpsRQPXGZ5c6iGkicQNtX/D2c6SBQ++qayvldFZcU16y/4C +# IUzeFA8TYMYRJnGQRC7BG1xqAWztt+WIUGlO5kQOnuNYczbq/zvBrT5nBRwhqcQQ +# YzJRwkNf2F+G88rnBESxNxegRusbUX+v3bwsa6uxxLpSeqSDD3JasgCzS1eaTBYn +# NXGeHxHdweiG14ABsGjSbxT+wtB6eeNj0ymmsYJdm7ApoYIXGTCCFxUGCisGAQQB +# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME +# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIIEUntqZM075d/Xv5VtLazUG/C8XTr8E5AIBTLPG +# 2f+4AgZhlV5AOGMYEzIwMjExMjA4MjEwNDE0LjMzOFowBIACAfSggdikgdUwgdIx +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p +# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh +# bGVzIFRTUyBFU046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBU +# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYm0v4YwhBxL +# jwABAAABiTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg +# MjAxMDAeFw0yMTEwMjgxOTI3NDFaFw0yMzAxMjYxOTI3NDFaMIHSMQswCQYDVQQG +# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG +# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg +# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg +# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt +# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQZXxZFm +# a6plmuOyvNpV8xONOwcYolZG/BjyZWGSk5JOGaLyrKId5VxVHWHlsmJE4Svnzsdp +# sKmVx8otONveIUFvSceEZp8VXmu5m1fu8L7c+3lwXcibjccqtEvtQslokQVx0r+L +# 54abrNDarwFG73IaRidIS1i9c+unJ8oYyhDRLrCysFAVxyQhPNZkWK7Z8/VGukaK +# LAWHXCh/+R53h42gFL+9/mAALxzCXXuofi8f/XKCm7xNwVc1hONCCz6oq94AufzV +# NkkIW4brUQgYpCcJm9U0XNmQvtropYDn9UtY8YQ0NKenXPtdgLHdQ8Nnv3igErKL +# rWI0a5n5jjdKfwk+8mvakqdZmlOseeOS1XspQNJAK1uZllAITcnQZOcO5ofjOQ33 +# ujWckAXdz+/x3o7l4AU/TSOMzGZMwhUdtVwC3dSbItpSVFgnjM2COEJ9zgCadvOi +# rGDLN471jZI2jClkjsJTdgPk343TQA4JFvds/unZq0uLr+niZ3X44OBx2x+gVlln +# 2c4UbZXNueA4yS1TJGbbJFIILAmTUA9Auj5eISGTbNiyWx79HnCOTar39QEKozm4 +# LnTmDXy0/KI/H/nYZGKuTHfckP28wQS06rD+fDS5xLwcRMCW92DkHXmtbhGyRilB +# OL5LxZelQfxt54wl4WUC0AdAEolPekODwO8CAwEAAaOCATYwggEyMB0GA1UdDgQW +# BBSXbx+zR1p4IIAeguA6rHKkrfl7UDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl +# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j +# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx +# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh +# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG +# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQCOtLdpWUI4KwfLLrfaKrLB92Dq +# bAspGWM41TaO4Jl+sHxPo522uu3GKQCjmkRWreHtlfyy9kOk7LWax3k3ke8Gtfet +# fbh7qH0LeV2XOWg39BOnHf6mTcZq7FYSZZch1JDQjc98+Odlow+oWih0Dbt4CV/e +# 19ZcE+1n1zzWkskUEd0f5jPIUis33p+vkY8szduAtCcIcPFUhI8Hb5alPUAPMjGz +# wKb7NIKbnf8j8cP18As5IveckF0oh1cw63RY/vPK62LDYdpi7WnG2ObvngfWVKtw +# iwTI4jHj2cO9q37HDe/PPl216gSpUZh0ap24mKmMDfcKp1N4mEdsxz4oseOrPYeF +# sHHWJFJ6Aivvqn70KTeJpp5r+DxSqbeSy0mxIUOq/lAaUxgNSQVUX26t8r+fciko +# fKv23WHrtRV3t7rVTsB9YzrRaiikmz68K5HWdt9MqULxPQPo+ppZ0LRqkOae466+ +# UKRY0JxWtdrMc5vHlHZfnqjawj/RsM2S6Q6fa9T9CnY1Nz7DYBG3yZJyCPFsrgU0 +# 5s9ljqfsSptpFdUh9R4ce+L71SWDLM2x/1MFLLHAMbXsEp8KloEGtaDULnxtfS2t +# YhfuKGqRXoEfDPAMnIdTvQPh3GHQ4SjkkBARHL0MY75alhGTKHWjC2aLVOo8obKI +# Bk8hfnFDUf/EyVw4uTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw +# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n +# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y +# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv +# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg +# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO +# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 +# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 +# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL +# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 +# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj +# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE +# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 +# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 +# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB +# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE +# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG +# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 +# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV +# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV +# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo +# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m +# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j +# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv +# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN +# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 +# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 +# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX +# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew +# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 +# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd +# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr +# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh +# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n +# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ +# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw +# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI +# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv +# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh +# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00Qjgw +# LTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB +# ATAHBgUrDgMCGgMVACGlCa3ketyeuey7bJNpWkMuiCcQoIGDMIGApH4wfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tYMCIY +# DzIwMjExMjA5MDM1MTUyWhgPMjAyMTEyMTAwMzUxNTJaMHcwPQYKKwYBBAGEWQoE +# ATEvMC0wCgIFAOVbi1gCAQAwCgIBAAICHvwCAf8wBwIBAAICETcwCgIFAOVc3NgC +# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK +# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQCbF/Q1IJzqUwQBkXn+GjUxZzVN +# O+9p1fpL7W8dEy9/m1L7dl968KiYqfO5rekvXeSUDTFYrkS/r0w8p2ZZ7d0TMtJt +# TrKmc85aRmxtSvCNAS2stE2sS2Y5np5+/02w3DDn3Nni6vvF8nsuiIlbiyHrGQrC +# 9eis1rpLSNvXisSYoDGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w +# IFBDQSAyMDEwAhMzAAABibS/hjCEHEuPAAEAAAGJMA0GCWCGSAFlAwQCAQUAoIIB +# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEINjr +# jaYjHvF5zcuiSPmsJnfGwWcQHYP/2CYeqIoTLbM/MIH6BgsqhkiG9w0BCRACLzGB +# 6jCB5zCB5DCBvQQgZndHMdxQV1VsbpWHOTHqWEycvcRJm7cY69l/UmT8j0UwgZgw +# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE +# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD +# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYm0v4YwhBxL +# jwABAAABiTAiBCCErc3WAJDL+6+RTcx4qvTV2Dv0bP6a0jmZjnUp3u9sbzANBgkq +# hkiG9w0BAQsFAASCAgBlISYxvNqg3TVBqRooVDAWRo+EMXUl4mBMwOvnI755iHjz +# ksXBl+FBaJdTbgfrrbkqVuTFgjnA7/1hzx8FuYRnz7aS7yWbUamn2DKeVHfcmL4w +# luTTDqklOtM/LNUOi2iRHQHG2+bi8OvJIavShvbjjv9telA3MY+ONzP+2t7H2ESf +# 7Sht+eH7Il5Wc9p2QB1o2iMaRK+TZoE1petI8ZxSJn0F6rFdBGIOI1mhNaZTZGuk +# UVAe9v6kd5k9BQZ1mfLCVf+A86Ul66fvrwAtETiuFMWYQhbnRWRLElWVUA/3zIS4 +# MVVyPlFjINt2m980WlIgHkt+K+cSbEtIUZ4Scpt/Tf9K0Kd2PEV+2z5n7xbwDPhy +# uczGyZm+0/NH6HDWrr74wX7+UJQzHGU7cP6yIDk/MJF5+E6ahKx6XfJYB2TK28qi +# K0g2HqkFhgS6zvnoNZNpWd28UKH9TLZIyWY9I7jKEMxP6jLzPugPYsL8pxvJLsAI +# /vn5Go+lLdNHUykJgB2ChUKsm3x1aUrSpGiW8UJ5xUiJ5RB1nFfUv0AWHcouYl92 +# FJhWIn3qaZExP6R7NijbAMyoYChcDgPrOGseESmfGZuVFbhE7gMai1VIRCLnmBoK +# Der+JOgsWW/eHU9nN5uuyP6uqtP01F5eayK++qjH+B9xQAJNq79RVXVvyaNZlw== +# SIG # End signature block diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1 b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1 new file mode 100644 index 0000000..a370f4c --- /dev/null +++ b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1 @@ -0,0 +1,230 @@ +@{ +GUID="766204A6-330E-4263-A7AB-46C87AFC366C" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +FunctionsToExport = @() +CmdletsToExport="Disable-WSManCredSSP", "Enable-WSManCredSSP", "Get-WSManCredSSP", "Set-WSManQuickConfig", "Test-WSMan", "Invoke-WSManAction", "Connect-WSMan", "Disconnect-WSMan", "Get-WSManInstance", "Set-WSManInstance", "Remove-WSManInstance", "New-WSManInstance", "New-WSManSessionOption" +AliasesToExport = @() +NestedModules="Microsoft.WSMan.Management.dll" +FormatsToProcess="WSMan.format.ps1xml" +HelpInfoURI = 'https://aka.ms/powershell72-help' +} + +# SIG # Begin signature block +# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCB+Ujs/uIRQu9NJ +# wrRJEY/iIf48rrMaCNk+CtkIzIqDVqCCDYEwggX/MIID56ADAgECAhMzAAACUosz +# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I +# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O +# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA +# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o +# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 +# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 +# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp +# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 +# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u +# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 +# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti +# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z +# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf +# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK +# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW +# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F +# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgypxuMQwq +# 1eGPEmRm52ViV1FEshB3MTFlVOkKoUKOQmgwQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQBwQLkeEMe+dK/nBzeh5yKFRrxpey/F+58vzZS97hfh +# rOZPhi6B29T/8kJqtTW8EVhdy+XNARi5JYKvFt6cO1TFJlb9H6ncq7TAYPV6ue/R +# 1CmnXltjWiRYZAibhN3Y7Yq+pnqIskQb8LI499I2Sg8JLuvRXBYqUb6F4wZ/vgH2 +# Vz/dHRgonqNkI94s5mOFXG0TX3/JzQD+xj3NWFNeOUCLsQQ0k7EA2pcF9odFgyNS +# QY0KGk3Bu+KcQUxmPdbgtIoM1ebLvINLR3mpD6xeWuusLS2NXX/7x3otBPyC17R2 +# hjh5a4lKYQH16inEdSg6jGkMXymnKOPRAmXZnFI9FET1oYIXGTCCFxUGCisGAQQB +# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME +# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIGqYa00kDq7cefzR97imqg4FhBGef4q3IvGpky5C +# NPnvAgZhlV5AOG4YEzIwMjExMjA4MjEwNDE0LjYwN1owBIACAfSggdikgdUwgdIx +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p +# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh +# bGVzIFRTUyBFU046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBU +# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYm0v4YwhBxL +# jwABAAABiTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg +# MjAxMDAeFw0yMTEwMjgxOTI3NDFaFw0yMzAxMjYxOTI3NDFaMIHSMQswCQYDVQQG +# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG +# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg +# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg +# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt +# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQZXxZFm +# a6plmuOyvNpV8xONOwcYolZG/BjyZWGSk5JOGaLyrKId5VxVHWHlsmJE4Svnzsdp +# sKmVx8otONveIUFvSceEZp8VXmu5m1fu8L7c+3lwXcibjccqtEvtQslokQVx0r+L +# 54abrNDarwFG73IaRidIS1i9c+unJ8oYyhDRLrCysFAVxyQhPNZkWK7Z8/VGukaK +# LAWHXCh/+R53h42gFL+9/mAALxzCXXuofi8f/XKCm7xNwVc1hONCCz6oq94AufzV +# NkkIW4brUQgYpCcJm9U0XNmQvtropYDn9UtY8YQ0NKenXPtdgLHdQ8Nnv3igErKL +# rWI0a5n5jjdKfwk+8mvakqdZmlOseeOS1XspQNJAK1uZllAITcnQZOcO5ofjOQ33 +# ujWckAXdz+/x3o7l4AU/TSOMzGZMwhUdtVwC3dSbItpSVFgnjM2COEJ9zgCadvOi +# rGDLN471jZI2jClkjsJTdgPk343TQA4JFvds/unZq0uLr+niZ3X44OBx2x+gVlln +# 2c4UbZXNueA4yS1TJGbbJFIILAmTUA9Auj5eISGTbNiyWx79HnCOTar39QEKozm4 +# LnTmDXy0/KI/H/nYZGKuTHfckP28wQS06rD+fDS5xLwcRMCW92DkHXmtbhGyRilB +# OL5LxZelQfxt54wl4WUC0AdAEolPekODwO8CAwEAAaOCATYwggEyMB0GA1UdDgQW +# BBSXbx+zR1p4IIAeguA6rHKkrfl7UDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl +# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j +# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx +# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh +# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG +# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQCOtLdpWUI4KwfLLrfaKrLB92Dq +# bAspGWM41TaO4Jl+sHxPo522uu3GKQCjmkRWreHtlfyy9kOk7LWax3k3ke8Gtfet +# fbh7qH0LeV2XOWg39BOnHf6mTcZq7FYSZZch1JDQjc98+Odlow+oWih0Dbt4CV/e +# 19ZcE+1n1zzWkskUEd0f5jPIUis33p+vkY8szduAtCcIcPFUhI8Hb5alPUAPMjGz +# wKb7NIKbnf8j8cP18As5IveckF0oh1cw63RY/vPK62LDYdpi7WnG2ObvngfWVKtw +# iwTI4jHj2cO9q37HDe/PPl216gSpUZh0ap24mKmMDfcKp1N4mEdsxz4oseOrPYeF +# sHHWJFJ6Aivvqn70KTeJpp5r+DxSqbeSy0mxIUOq/lAaUxgNSQVUX26t8r+fciko +# fKv23WHrtRV3t7rVTsB9YzrRaiikmz68K5HWdt9MqULxPQPo+ppZ0LRqkOae466+ +# UKRY0JxWtdrMc5vHlHZfnqjawj/RsM2S6Q6fa9T9CnY1Nz7DYBG3yZJyCPFsrgU0 +# 5s9ljqfsSptpFdUh9R4ce+L71SWDLM2x/1MFLLHAMbXsEp8KloEGtaDULnxtfS2t +# YhfuKGqRXoEfDPAMnIdTvQPh3GHQ4SjkkBARHL0MY75alhGTKHWjC2aLVOo8obKI +# Bk8hfnFDUf/EyVw4uTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw +# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n +# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y +# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv +# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg +# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO +# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 +# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 +# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL +# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 +# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj +# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE +# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 +# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 +# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB +# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE +# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG +# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 +# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV +# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV +# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo +# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m +# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j +# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv +# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN +# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 +# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 +# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX +# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew +# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 +# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd +# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr +# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh +# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n +# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ +# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw +# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI +# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv +# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh +# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00Qjgw +# LTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB +# ATAHBgUrDgMCGgMVACGlCa3ketyeuey7bJNpWkMuiCcQoIGDMIGApH4wfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tYMCIY +# DzIwMjExMjA5MDM1MTUyWhgPMjAyMTEyMTAwMzUxNTJaMHcwPQYKKwYBBAGEWQoE +# ATEvMC0wCgIFAOVbi1gCAQAwCgIBAAICHvwCAf8wBwIBAAICETcwCgIFAOVc3NgC +# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK +# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQCbF/Q1IJzqUwQBkXn+GjUxZzVN +# O+9p1fpL7W8dEy9/m1L7dl968KiYqfO5rekvXeSUDTFYrkS/r0w8p2ZZ7d0TMtJt +# TrKmc85aRmxtSvCNAS2stE2sS2Y5np5+/02w3DDn3Nni6vvF8nsuiIlbiyHrGQrC +# 9eis1rpLSNvXisSYoDGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w +# IFBDQSAyMDEwAhMzAAABibS/hjCEHEuPAAEAAAGJMA0GCWCGSAFlAwQCAQUAoIIB +# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIN1F +# wmeehZy4wMNXqLnULVbk4oVsB3cWo9ryHOQxmYoPMIH6BgsqhkiG9w0BCRACLzGB +# 6jCB5zCB5DCBvQQgZndHMdxQV1VsbpWHOTHqWEycvcRJm7cY69l/UmT8j0UwgZgw +# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE +# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD +# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYm0v4YwhBxL +# jwABAAABiTAiBCCErc3WAJDL+6+RTcx4qvTV2Dv0bP6a0jmZjnUp3u9sbzANBgkq +# hkiG9w0BAQsFAASCAgAWjRg7KzoR7Kd4cPnoMh490c1gOoabocbdzphBISFn24S4 +# Nomokt8QSkLypqSgMe0FQyCku8urnNIhX6CA1FObkCe+DFM9FFaOHNY3Lqv4oVGW +# O2nCjMXPxj8FMZM7UyZB11zPMhPHaleWP0UQPuqEf/d6V8vbh23OyZ9RfYUKft+m +# zKsR+gnqKtrmAuqLSrwoo/6JvgchTRqV+ODeDc1l3JfbhQW+6hFryB3RSAau+Msg +# n/QwOqIYCYJl/t7kV/Ze7WF97Kc294zbuRT4LTMccfms19oeACHoZpU2H7JWSEZn +# MTMnaEVlM+9ylAgC4wxiEsXlJCI5K167HTpkfR3/9/4hJo+5Pmacd0HQjpP6zDqw +# a8sveaOAmaI0eRC6ByG00sBwPmbRTRvDA4Dc2b3bKqINgkZpM7/NFmclkho4jvF0 +# XJ4jk/Ul2rvaQtTrWY0ZCITR79XpLpRZMukTFTybSZrE+bERy3eK/KNee4Wbt6wz +# 86sci4DvgqPc1nBsX0Y5iWhiPA2I9rXH36iH7ZI7D/I4+0qEWLxfsLNTUthwb8Zg +# 1ukHkIyEk14gOar+Exf4MRZ8slf1518X2zoCj6ZeYfXB8pRz/+N7w8rEtbKCjX+U +# dyI16Oy8vNwWWZRdoG6e2rMmvDDSTz34db1DymXU+a92+q/qcwFAkl1dPVTn5Q== +# SIG # End signature block diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml new file mode 100644 index 0000000..8907c23 --- /dev/null +++ b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml @@ -0,0 +1,451 @@ + + + + + + + System.Xml.XmlElement#http://schemas.dmtf.org/wbem/wsman/identity/1/wsmanidentity.xsd#IdentifyResponse + + System.Xml.XmlElement#http://schemas.dmtf.org/wbem/wsman/identity/1/wsmanidentity.xsd#IdentifyResponse + + + + + + + wsmid + + + ProtocolVersion + + + ProductVendor + + + ProductVersion + + + + + + + + Microsoft.WSMan.Management.WSManConfigElement + + Microsoft.WSMan.Management.WSManConfigElement + + + PSParentPath + + + + + + + 15 + + + + 30 + + + + + + + TypeNameOfElement + + + Name + + + + + + + + Microsoft.WSMan.Management.WSManConfigContainerElement + + Microsoft.WSMan.Management.WSManConfigContainerElement + + + PSParentPath + + + + + + + 15 + + + + 35 + + + + + + + + + + TypeNameOfElement + + + Keys + + + Name + + + + + + + + Microsoft.WSMan.Management.WSManConfigLeafElement + + Microsoft.WSMan.Management.WSManConfigLeafElement + + + PSParentPath + + + + + + + 15 + + + + 30 + + + + 15 + + + + + + + + + + TypeNameOfElement + + + Name + + + SourceOfValue + + + Value + + + + + + + + Microsoft.WSMan.Management.WSManConfigLeafElement#InitParams + + Microsoft.WSMan.Management.WSManConfigLeafElement#InitParams + + + PSParentPath + + + + + + + 30 + + + + 20 + + + + + + + Name + + + Value + + + + + + + + Microsoft.WSMan.Management.WSManConfigContainerElement#ComputerLevel + + Microsoft.WSMan.Management.WSManConfigContainerElement#ComputerLevel + + + PSParentPath + + + + + + + 45 + + + + 20 + + + + + + + Name + + + TypeNameOfElement + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psd1 b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psd1 new file mode 100644 index 0000000..626dc3a --- /dev/null +++ b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psd1 @@ -0,0 +1,207 @@ +@{ + GUID="c61d6278-02a3-4618-ae37-a524d40a7f44 " + Author="PowerShell" + CompanyName="Microsoft Corporation" + Copyright="Copyright (c) Microsoft Corporation." + ModuleVersion="7.0.0.0" + CompatiblePSEditions = @("Core") + PowerShellVersion="3.0" + ModuleToProcess="PSDiagnostics.psm1" + FunctionsToExport="Disable-PSTrace","Disable-PSWSManCombinedTrace","Disable-WSManTrace","Enable-PSTrace","Enable-PSWSManCombinedTrace","Enable-WSManTrace","Get-LogProperties","Set-LogProperties","Start-Trace","Stop-Trace" + CmdletsToExport = @() + AliasesToExport = @() + HelpInfoUri="https://aka.ms/powershell72-help" +} + +# SIG # Begin signature block +# MIIjkQYJKoZIhvcNAQcCoIIjgjCCI34CAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCD/dfsIexbywzf4 +# vgDANLKxbLCeK+0wW4ZnFQP22V0sXqCCDYEwggX/MIID56ADAgECAhMzAAACUosz +# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I +# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O +# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA +# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o +# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 +# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 +# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp +# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 +# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u +# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 +# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti +# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z +# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf +# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK +# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW +# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F +# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIVZjCCFWICAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgoT0Qfn6u +# IFQn6DGWcQzw34/4HzFrnEYbuu3YQlqVoaQwQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQCt/xkRVxP7BXqiUQi+IuzI0bokgJJBF15CLUb5UcOl +# ojrCl4Rx34i0hAAoWt5uOvUG37LQEGnKm5DEgRwG5d+R8SHjAZxk83VzPAg9c7S/ +# GLe8AdcLJ4L5rjGb5YReU+eIPGNvrcZu8JYN2dlBO1nY6axLwonRTpQj43J7wrWd +# InSCbV8CnUfK4/lgftJ5P7SCNLe7Enjv8dQOahg3B4BMReQxHm/SZWgSGb8t++wI +# ZWCw6sRh+XjE63P3VzhAp8Z8KOR3TSCE4Bt5tfy8xDbmePlVrK3GKoVVq4RkVn96 +# 4TRCHvs3RZTQm57yJ2NplI10zIqZz2geZRns5nVGDHcYoYIS8DCCEuwGCisGAQQB +# gjcDAwExghLcMIIS2AYJKoZIhvcNAQcCoIISyTCCEsUCAQMxDzANBglghkgBZQME +# AgEFADCCAVQGCyqGSIb3DQEJEAEEoIIBQwSCAT8wggE7AgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIG5NKJe+omftR+S4BYKgAMTO7Tl6rem9xPJkoE7D +# yZYZAgZhk97zjjgYEjIwMjExMjA4MjEwNDE0Ljg2WjAEgAIB9KCB1KSB0TCBzjEL +# MAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1v +# bmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEpMCcGA1UECxMgTWlj +# cm9zb2Z0IE9wZXJhdGlvbnMgUHVlcnRvIFJpY28xJjAkBgNVBAsTHVRoYWxlcyBU +# U1MgRVNOOjMyQkQtRTNENS0zQjFEMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1T +# dGFtcCBTZXJ2aWNloIIORDCCBPUwggPdoAMCAQICEzMAAAFi0P4C8wHlzUkAAAAA +# AWIwDQYJKoZIhvcNAQELBQAwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hp +# bmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jw +# b3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAw +# HhcNMjEwMTE0MTkwMjIyWhcNMjIwNDExMTkwMjIyWjCBzjELMAkGA1UEBhMCVVMx +# EzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoT +# FU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEpMCcGA1UECxMgTWljcm9zb2Z0IE9wZXJh +# dGlvbnMgUHVlcnRvIFJpY28xJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNOOjMyQkQt +# RTNENS0zQjFEMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNl +# MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA74ah1Pa5wvcyvYNCy/YQ +# s1tK8rIGlh1Qq1QFaJmYVXLXykb+m5yCStzmL227wJjsalZX8JA2YcbaZV5Icwm9 +# vAJz8AC/sk/dsUK3pmDvkhtVI04YDV6otuZCILpQB9Ipcs3d0e1Dl2KKFvdibOk0 +# /0rRxU9l+/Yxeb5lVTRERLxzI+Rd6Xv5QQYT6Sp2IE0N1vzIFd3yyO773T5XifNg +# L5lZbtIUnYUVmUBKlVoemO/54aiFeVBpIG+YzhDTF7cuHNAzxWIbP1wt4VIqAV9J +# juqLMvvBSD56pi8NTKM9fxrERAeaTS2HbfBYfmnRZ27Czjeo0ijQ5DSZGi0ErvWf +# KQIDAQABo4IBGzCCARcwHQYDVR0OBBYEFMvEShFgSkO3OnzgHlaVk3aQ/iprMB8G +# A1UdIwQYMBaAFNVjOlyKMZDzQ3t8RhvFM2hahW1VMFYGA1UdHwRPME0wS6BJoEeG +# RWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Rp +# bVN0YVBDQV8yMDEwLTA3LTAxLmNybDBaBggrBgEFBQcBAQROMEwwSgYIKwYBBQUH +# MAKGPmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljVGltU3Rh +# UENBXzIwMTAtMDctMDEuY3J0MAwGA1UdEwEB/wQCMAAwEwYDVR0lBAwwCgYIKwYB +# BQUHAwgwDQYJKoZIhvcNAQELBQADggEBAC1BrcOhdhtb9xcAJtxVIUZ7iALwZewX +# FIdPcmDAVT810k5xuRwVNW9Onq+WZO8ebqwiOSdEEHReLU0FOo/DbS7q79PsKdz/ +# PSBPqZ/1ysjRVH0L5HUK2N7NgpkR1lnt+41BaOzJ+00OFDL5GqeqvK3RWh7MtqWF +# 6KKcfNkP/hjiFlg9/S7xNK/Vl8q10HB5YbdBTQun8j1Jsih6YMb3tFQsxw++ra5+ +# FSnc4yJhAYvVaqTKRKepEmwzYhwDiXh2ag80/p0uDkOvs1WhgogwidpBVmNLAMxm +# FavK9+LNfRKvPIuCQw+EsxWR8vFBBJDfs14WTsXVF94CQ1YCHqYI5EEwggZxMIIE +# WaADAgECAgphCYEqAAAAAAACMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJV +# UzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UE +# ChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9v +# dCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgMjAxMDAeFw0xMDA3MDEyMTM2NTVaFw0y +# NTA3MDEyMTQ2NTVaMHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9u +# MRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRp +# b24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwMIIBIjAN +# BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqR0NvHcRijog7PwTl/X6f2mUa3RU +# ENWlCgCChfvtfGhLLF/Fw+Vhwna3PmYrW/AVUycEMR9BGxqVHc4JE458YTBZsTBE +# D/FgiIRUQwzXTbg4CLNC3ZOs1nMwVyaCo0UN0Or1R4HNvyRgMlhgRvJYR4YyhB50 +# YWeRX4FUsc+TTJLBxKZd0WETbijGGvmGgLvfYfxGwScdJGcSchohiq9LZIlQYrFd +# /XcfPfBXday9ikJNQFHRD5wGPmd/9WbAA5ZEfu/QS/1u5ZrKsajyeioKMfDaTgaR +# togINeh4HLDpmc085y9Euqf03GS9pAHBIAmTeM38vMDJRF1eFpwBBU8iTQIDAQAB +# o4IB5jCCAeIwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFNVjOlyKMZDzQ3t8 +# RhvFM2hahW1VMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB +# hjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNX2VsuP6KJcYmjRPZSQW9fO +# mhjEMFYGA1UdHwRPME0wS6BJoEeGRWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w +# a2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNybDBaBggr +# BgEFBQcBAQROMEwwSgYIKwYBBQUHMAKGPmh0dHA6Ly93d3cubWljcm9zb2Z0LmNv +# bS9wa2kvY2VydHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3J0MIGgBgNVHSAB +# Af8EgZUwgZIwgY8GCSsGAQQBgjcuAzCBgTA9BggrBgEFBQcCARYxaHR0cDovL3d3 +# dy5taWNyb3NvZnQuY29tL1BLSS9kb2NzL0NQUy9kZWZhdWx0Lmh0bTBABggrBgEF +# BQcCAjA0HjIgHQBMAGUAZwBhAGwAXwBQAG8AbABpAGMAeQBfAFMAdABhAHQAZQBt +# AGUAbgB0AC4gHTANBgkqhkiG9w0BAQsFAAOCAgEAB+aIUQ3ixuCYP4FxAz2do6Eh +# b7Prpsz1Mb7PBeKp/vpXbRkws8LFZslq3/Xn8Hi9x6ieJeP5vO1rVFcIK1GCRBL7 +# uVOMzPRgEop2zEBAQZvcXBf/XPleFzWYJFZLdO9CEMivv3/Gf/I3fVo/HPKZeUqR +# UgCvOA8X9S95gWXZqbVr5MfO9sp6AG9LMEQkIjzP7QOllo9ZKby2/QThcJ8ySif9 +# Va8v/rbljjO7Yl+a21dA6fHOmWaQjP9qYn/dxUoLkSbiOewZSnFjnXshbcOco6I8 +# +n99lmqQeKZt0uGc+R38ONiU9MalCpaGpL2eGq4EQoO4tYCbIjggtSXlZOz39L9+ +# Y1klD3ouOVd2onGqBooPiRa6YacRy5rYDkeagMXQzafQ732D8OE7cQnfXXSYIghh +# 2rBQHm+98eEA3+cxB6STOvdlR3jo+KhIq/fecn5ha293qYHLpwmsObvsxsvYgrRy +# zR30uIUBHoD7G4kqVDmyW9rIDVWZeodzOwjmmC3qjeAzLhIp9cAvVCch98isTtoo +# uLGp25ayp0Kiyc8ZQU3ghvkqmqMRZjDTu3QyS99je/WZii8bxyGvWbWu3EQ8l1Bx +# 16HSxVXjad5XwdHeMMD9zOZN+w2/XU/pnR4ZOC+8z1gFLu8NoFA12u8JJxzVs341 +# Hgi62jbb01+P3nSISRKhggLSMIICOwIBATCB/KGB1KSB0TCBzjELMAkGA1UEBhMC +# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV +# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEpMCcGA1UECxMgTWljcm9zb2Z0IE9w +# ZXJhdGlvbnMgUHVlcnRvIFJpY28xJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNOOjMy +# QkQtRTNENS0zQjFEMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2 +# aWNloiMKAQEwBwYFKw4DAhoDFQCas/oKGtvPRrHuznufk+indULyDKCBgzCBgKR+ +# MHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMT +# HU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBBQUAAgUA +# 5Vtd4DAiGA8yMDIxMTIwODIwMzc1MloYDzIwMjExMjA5MjAzNzUyWjB3MD0GCisG +# AQQBhFkKBAExLzAtMAoCBQDlW13gAgEAMAoCAQACAiXlAgH/MAcCAQACAhIPMAoC +# BQDlXK9gAgEAMDYGCisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEA +# AgMHoSChCjAIAgEAAgMBhqAwDQYJKoZIhvcNAQEFBQADgYEAM2SMFWUY36bc2OtE +# Rp28goB1/JaCRplwIWPeW6MSG1c3i2g4X2GIc4vvRrc834fuuJ+Qm07NFeRHQA61 +# lJAHbTlZBMdkDILSVP+20NGOy6B3k5K1WMfGN0Et9EQJpvfEJaB2F4d+LCCNd/MM +# dXEvG2iFxgW3C4TCWZENGlxsa5ExggMNMIIDCQIBATCBkzB8MQswCQYDVQQGEwJV +# UzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UE +# ChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGlt +# ZS1TdGFtcCBQQ0EgMjAxMAITMwAAAWLQ/gLzAeXNSQAAAAABYjANBglghkgBZQME +# AgEFAKCCAUowGgYJKoZIhvcNAQkDMQ0GCyqGSIb3DQEJEAEEMC8GCSqGSIb3DQEJ +# BDEiBCB66+Xkbn3ewO+BRQNGeKLsT3CZTxRw6oyH+Hqt0XKBjzCB+gYLKoZIhvcN +# AQkQAi8xgeowgecwgeQwgb0EIIqqGJX7PA0OulTsNEHsyLnvGLoYE1iwaOBmqrap +# UwoyMIGYMIGApH4wfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24x +# EDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlv +# bjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTACEzMAAAFi +# 0P4C8wHlzUkAAAAAAWIwIgQgPmj2PBaeW66dmUvg/M3GbG9dSU9ROIZo6V1zy7iW +# 604wDQYJKoZIhvcNAQELBQAEggEA6MvaPUzarjssGW9T9f6ohr8y3PWDaJKtB/jB +# siPN63Ektk0b2P1aJLd+FV3f3m4dq25TfYZEIliZtog2M9YOce/24reMnhBbyWwO +# tVGurL4kJQ2+z3qsASFQvZxc4O2NVFQDyyued5Y4+imuQGM3u4TOo5DSTCsvqw89 +# P5J99wB5W9hifpU65qjBROE+LNY6aMF0bIGeDbqb0m9cPe8JE2gZN+SMQQ9kzTUm +# eLAuoyvdm6wGrsx8/xgC2XFHA47DLev3lgUfx6FczxiRna/aI6Y8oqY+Z/R5Vd/L +# vZwZYPSInN7G2gVwJV9/VzLkLQ5hjDJrDMAyZ1smJnQAdnVlLg== +# SIG # End signature block diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psm1 b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psm1 new file mode 100644 index 0000000..f4c16f0 --- /dev/null +++ b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psm1 @@ -0,0 +1,663 @@ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. + +<# + PowerShell Diagnostics Module + This module contains a set of wrapper scripts that + enable a user to use ETW tracing in Windows + PowerShell. + #> + +$script:Logman="$env:windir\system32\logman.exe" +$script:wsmanlogfile = "$env:windir\system32\wsmtraces.log" +$script:wsmprovfile = "$env:windir\system32\wsmtraceproviders.txt" +$script:wsmsession = "wsmlog" +$script:pssession = "PSTrace" +$script:psprovidername="Microsoft-Windows-PowerShell" +$script:wsmprovidername = "Microsoft-Windows-WinRM" +$script:oplog = "/Operational" +$script:analyticlog="/Analytic" +$script:debuglog="/Debug" +$script:wevtutil="$env:windir\system32\wevtutil.exe" +$script:slparam = "sl" +$script:glparam = "gl" + +function Start-Trace +{ + Param( + [Parameter(Mandatory=$true, + Position=0)] + [string] + $SessionName, + [Parameter(Position=1)] + [ValidateNotNullOrEmpty()] + [string] + $OutputFilePath, + [Parameter(Position=2)] + [ValidateNotNullOrEmpty()] + [string] + $ProviderFilePath, + [Parameter()] + [Switch] + $ETS, + [Parameter()] + [ValidateSet("bin", "bincirc", "csv", "tsv", "sql")] + $Format, + [Parameter()] + [int] + $MinBuffers=0, + [Parameter()] + [int] + $MaxBuffers=256, + [Parameter()] + [int] + $BufferSizeInKB = 0, + [Parameter()] + [int] + $MaxLogFileSizeInMB=0 + ) + + Process + { + $executestring = " start $SessionName" + + if ($ETS) + { + $executestring += " -ets" + } + + if ($null -ne $OutputFilePath) + { + $executestring += " -o ""$OutputFilePath""" + } + + if ($null -ne $ProviderFilePath) + { + $executestring += " -pf ""$ProviderFilePath""" + } + + if ($null -ne $Format) + { + $executestring += " -f $Format" + } + + if ($MinBuffers -ne 0 -or $MaxBuffers -ne 256) + { + $executestring += " -nb $MinBuffers $MaxBuffers" + } + + if ($BufferSizeInKB -ne 0) + { + $executestring += " -bs $BufferSizeInKB" + } + + if ($MaxLogFileSizeInMB -ne 0) + { + $executestring += " -max $MaxLogFileSizeInMB" + } + + & $script:Logman $executestring.Split(" ") + } +} + +function Stop-Trace +{ + param( + [Parameter(Mandatory=$true, + Position=0)] + $SessionName, + [Parameter()] + [switch] + $ETS + ) + + Process + { + if ($ETS) + { + & $script:Logman update $SessionName -ets + & $script:Logman stop $SessionName -ets + } + else + { + & $script:Logman update $SessionName + & $script:Logman stop $SessionName + } + } +} + +function Enable-WSManTrace +{ + + # winrm + "{04c6e16d-b99f-4a3a-9b3e-b8325bbc781e} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii + + # winrsmgr + "{c0a36be8-a515-4cfa-b2b6-2676366efff7} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append + + # WinrsExe + "{f1cab2c0-8beb-4fa2-90e1-8f17e0acdd5d} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append + + # WinrsCmd + "{03992646-3dfe-4477-80e3-85936ace7abb} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append + + # IPMIPrv + "{651d672b-e11f-41b7-add3-c2f6a4023672} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append + + #IpmiDrv + "{D5C6A3E9-FA9C-434e-9653-165B4FC869E4} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append + + # WSManProvHost + "{6e1b64d7-d3be-4651-90fb-3583af89d7f1} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append + + # Event Forwarding + "{6FCDF39A-EF67-483D-A661-76D715C6B008} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append + + Start-Trace -SessionName $script:wsmsession -ETS -OutputFilePath $script:wsmanlogfile -Format bincirc -MinBuffers 16 -MaxBuffers 256 -BufferSizeInKB 64 -MaxLogFileSizeInMB 256 -ProviderFilePath $script:wsmprovfile +} + +function Disable-WSManTrace +{ + Stop-Trace $script:wsmsession -ETS +} + +function Enable-PSWSManCombinedTrace +{ + param ( + [switch] $DoNotOverwriteExistingTrace + ) + + $provfile = [io.path]::GetTempFilename() + + $traceFileName = [string][Guid]::NewGuid() + if ($DoNotOverwriteExistingTrace) { + $fileName = [string][guid]::newguid() + $logfile = $PSHOME + "\\Traces\\PSTrace_$fileName.etl" + } else { + $logfile = $PSHOME + "\\Traces\\PSTrace.etl" + } + + "Microsoft-Windows-PowerShell 0 5" | Out-File $provfile -Encoding ascii + "Microsoft-Windows-WinRM 0 5" | Out-File $provfile -Encoding ascii -Append + + if (!(Test-Path $PSHOME\Traces)) + { + New-Item -ItemType Directory -Force $PSHOME\Traces | Out-Null + } + + if (Test-Path $logfile) + { + Remove-Item -Force $logfile | Out-Null + } + + Start-Trace -SessionName $script:pssession -OutputFilePath $logfile -ProviderFilePath $provfile -ETS + + Remove-Item $provfile -Force -ea 0 +} + +function Disable-PSWSManCombinedTrace +{ + Stop-Trace -SessionName $script:pssession -ETS +} + +function Set-LogProperties +{ + param( + [Parameter(Mandatory=$true, Position=0, ValueFromPipeline=$true)] + [Microsoft.PowerShell.Diagnostics.LogDetails] + $LogDetails, + [switch] $Force + ) + + Process + { + if ($LogDetails.AutoBackup -and !$LogDetails.Retention) + { + throw (New-Object System.InvalidOperationException) + } + + $enabled = $LogDetails.Enabled.ToString() + $retention = $LogDetails.Retention.ToString() + $autobackup = $LogDetails.AutoBackup.ToString() + $maxLogSize = $LogDetails.MaxLogSize.ToString() + $osVersion = [Version] (Get-CimInstance Win32_OperatingSystem).Version + + if (($LogDetails.Type -eq "Analytic") -or ($LogDetails.Type -eq "Debug")) + { + if ($LogDetails.Enabled) + { + if($osVersion -lt 6.3.7600) + { + & $script:wevtutil $script:slparam $LogDetails.Name -e:$Enabled + } + else + { + & $script:wevtutil /q:$Force $script:slparam $LogDetails.Name -e:$Enabled + } + } + else + { + if($osVersion -lt 6.3.7600) + { + & $script:wevtutil $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ms:$MaxLogSize + } + else + { + & $script:wevtutil /q:$Force $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ms:$MaxLogSize + } + } + } + else + { + if($osVersion -lt 6.3.7600) + { + & $script:wevtutil $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ab:$AutoBackup -ms:$MaxLogSize + } + else + { + & $script:wevtutil /q:$Force $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ab:$AutoBackup -ms:$MaxLogSize + } + } + } +} + +function ConvertTo-Bool([string]$value) +{ + if ($value -ieq "true") + { + return $true + } + else + { + return $false + } +} + +function Get-LogProperties +{ + param( + [Parameter(Mandatory=$true, ValueFromPipeline=$true, Position=0)] $Name + ) + + Process + { + $details = & $script:wevtutil $script:glparam $Name + $indexes = @(1,2,8,9,10) + $value = @() + foreach($index in $indexes) + { + $value += @(($details[$index].SubString($details[$index].IndexOf(":")+1)).Trim()) + } + + $enabled = ConvertTo-Bool $value[0] + $retention = ConvertTo-Bool $value[2] + $autobackup = ConvertTo-Bool $value[3] + + New-Object Microsoft.PowerShell.Diagnostics.LogDetails $Name, $enabled, $value[1], $retention, $autobackup, $value[4] + } +} + +function Enable-PSTrace +{ + param( + [switch] $Force, + [switch] $AnalyticOnly + ) + + $Properties = Get-LogProperties ($script:psprovidername + $script:analyticlog) + + if (!$Properties.Enabled) { + $Properties.Enabled = $true + if ($Force) { + Set-LogProperties $Properties -Force + } else { + Set-LogProperties $Properties + } + } + + if (!$AnalyticOnly) { + $Properties = Get-LogProperties ($script:psprovidername + $script:debuglog) + if (!$Properties.Enabled) { + $Properties.Enabled = $true + if ($Force) { + Set-LogProperties $Properties -Force + } else { + Set-LogProperties $Properties + } + } + } +} + +function Disable-PSTrace +{ + param( + [switch] $AnalyticOnly + ) + $Properties = Get-LogProperties ($script:psprovidername + $script:analyticlog) + if ($Properties.Enabled) { + $Properties.Enabled = $false + Set-LogProperties $Properties + } + + if (!$AnalyticOnly) { + $Properties = Get-LogProperties ($script:psprovidername + $script:debuglog) + if ($Properties.Enabled) { + $Properties.Enabled = $false + Set-LogProperties $Properties + } + } +} +Add-Type @" +using System; + +namespace Microsoft.PowerShell.Diagnostics +{ + public class LogDetails + { + public string Name + { + get + { + return name; + } + } + private string name; + + public bool Enabled + { + get + { + return enabled; + } + set + { + enabled = value; + } + } + private bool enabled; + + public string Type + { + get + { + return type; + } + } + private string type; + + public bool Retention + { + get + { + return retention; + } + set + { + retention = value; + } + } + private bool retention; + + public bool AutoBackup + { + get + { + return autoBackup; + } + set + { + autoBackup = value; + } + } + private bool autoBackup; + + public int MaxLogSize + { + get + { + return maxLogSize; + } + set + { + maxLogSize = value; + } + } + private int maxLogSize; + + public LogDetails(string name, bool enabled, string type, bool retention, bool autoBackup, int maxLogSize) + { + this.name = name; + this.enabled = enabled; + this.type = type; + this.retention = retention; + this.autoBackup = autoBackup; + this.maxLogSize = maxLogSize; + } + } +} +"@ + +if (Get-Command logman.exe -Type Application -ErrorAction SilentlyContinue) +{ + Export-ModuleMember Disable-PSTrace, Disable-PSWSManCombinedTrace, Disable-WSManTrace, Enable-PSTrace, Enable-PSWSManCombinedTrace, Enable-WSManTrace, Get-LogProperties, Set-LogProperties, Start-Trace, Stop-Trace +} +else +{ + # Currently we only support these cmdlets as logman.exe is not available on systems like Nano and IoT + Export-ModuleMember Disable-PSTrace, Enable-PSTrace, Get-LogProperties, Set-LogProperties +} + +# SIG # Begin signature block +# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCBzuFp8c8UN6ilP +# /hSmUPDtAUbo8uWTs6wUbaR/ZpM1B6CCDYEwggX/MIID56ADAgECAhMzAAACUosz +# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I +# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O +# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA +# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o +# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 +# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 +# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp +# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 +# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u +# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 +# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti +# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z +# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf +# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK +# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW +# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F +# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgSB3jjVY/ +# WMZ8WHFGDewy2JQLkkMsgxe7OQ9hGxl1POAwQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQDECdQe+dGfTQ9+1MUoap76UXkZqRUtWJtHANEX9QRF +# zu/zYxq/dvy7faWSumOPbC+fRwu+83u+3CYadkq+B7I6NDeWqTacnJnPk+uV78yi +# UnGjJx9i8cu6fUBS7HhFg1+VS5IZsor64K33Etj9NPBvVxW/AdbcA1Vm1/HCcnfC +# ZVVP8SUsEQsnksf1sgEix5zjYP5yoRrc7zZ31CsfFUseccW0GbjWVellm+JVYQR8 +# PyRw/UvU9wBEGmoG05yKQHMtIQzbgamTF+mFpvvLdNamUk2kTBtPw8esiUQSQSKT +# 893Bw7LCuWiqo8pwi1U45lsh2/5GrxKGyLwQY3vXep01oYIXGTCCFxUGCisGAQQB +# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME +# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIEeWczI88EUPcg8HePXnLkMZtTRhTovyeZypUyUE +# AkF4AgZhlV5AOFwYEzIwMjExMjA4MjEwNDE0LjA2NVowBIACAfSggdikgdUwgdIx +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p +# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh +# bGVzIFRTUyBFU046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBU +# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYm0v4YwhBxL +# jwABAAABiTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg +# MjAxMDAeFw0yMTEwMjgxOTI3NDFaFw0yMzAxMjYxOTI3NDFaMIHSMQswCQYDVQQG +# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG +# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg +# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg +# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt +# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQZXxZFm +# a6plmuOyvNpV8xONOwcYolZG/BjyZWGSk5JOGaLyrKId5VxVHWHlsmJE4Svnzsdp +# sKmVx8otONveIUFvSceEZp8VXmu5m1fu8L7c+3lwXcibjccqtEvtQslokQVx0r+L +# 54abrNDarwFG73IaRidIS1i9c+unJ8oYyhDRLrCysFAVxyQhPNZkWK7Z8/VGukaK +# LAWHXCh/+R53h42gFL+9/mAALxzCXXuofi8f/XKCm7xNwVc1hONCCz6oq94AufzV +# NkkIW4brUQgYpCcJm9U0XNmQvtropYDn9UtY8YQ0NKenXPtdgLHdQ8Nnv3igErKL +# rWI0a5n5jjdKfwk+8mvakqdZmlOseeOS1XspQNJAK1uZllAITcnQZOcO5ofjOQ33 +# ujWckAXdz+/x3o7l4AU/TSOMzGZMwhUdtVwC3dSbItpSVFgnjM2COEJ9zgCadvOi +# rGDLN471jZI2jClkjsJTdgPk343TQA4JFvds/unZq0uLr+niZ3X44OBx2x+gVlln +# 2c4UbZXNueA4yS1TJGbbJFIILAmTUA9Auj5eISGTbNiyWx79HnCOTar39QEKozm4 +# LnTmDXy0/KI/H/nYZGKuTHfckP28wQS06rD+fDS5xLwcRMCW92DkHXmtbhGyRilB +# OL5LxZelQfxt54wl4WUC0AdAEolPekODwO8CAwEAAaOCATYwggEyMB0GA1UdDgQW +# BBSXbx+zR1p4IIAeguA6rHKkrfl7UDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl +# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j +# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx +# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh +# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG +# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQCOtLdpWUI4KwfLLrfaKrLB92Dq +# bAspGWM41TaO4Jl+sHxPo522uu3GKQCjmkRWreHtlfyy9kOk7LWax3k3ke8Gtfet +# fbh7qH0LeV2XOWg39BOnHf6mTcZq7FYSZZch1JDQjc98+Odlow+oWih0Dbt4CV/e +# 19ZcE+1n1zzWkskUEd0f5jPIUis33p+vkY8szduAtCcIcPFUhI8Hb5alPUAPMjGz +# wKb7NIKbnf8j8cP18As5IveckF0oh1cw63RY/vPK62LDYdpi7WnG2ObvngfWVKtw +# iwTI4jHj2cO9q37HDe/PPl216gSpUZh0ap24mKmMDfcKp1N4mEdsxz4oseOrPYeF +# sHHWJFJ6Aivvqn70KTeJpp5r+DxSqbeSy0mxIUOq/lAaUxgNSQVUX26t8r+fciko +# fKv23WHrtRV3t7rVTsB9YzrRaiikmz68K5HWdt9MqULxPQPo+ppZ0LRqkOae466+ +# UKRY0JxWtdrMc5vHlHZfnqjawj/RsM2S6Q6fa9T9CnY1Nz7DYBG3yZJyCPFsrgU0 +# 5s9ljqfsSptpFdUh9R4ce+L71SWDLM2x/1MFLLHAMbXsEp8KloEGtaDULnxtfS2t +# YhfuKGqRXoEfDPAMnIdTvQPh3GHQ4SjkkBARHL0MY75alhGTKHWjC2aLVOo8obKI +# Bk8hfnFDUf/EyVw4uTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw +# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n +# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y +# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv +# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg +# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO +# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 +# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 +# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL +# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 +# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj +# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE +# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 +# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 +# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB +# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE +# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG +# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 +# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV +# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV +# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo +# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m +# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j +# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv +# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN +# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 +# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 +# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX +# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew +# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 +# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd +# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr +# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh +# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n +# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ +# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw +# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI +# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv +# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh +# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00Qjgw +# LTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB +# ATAHBgUrDgMCGgMVACGlCa3ketyeuey7bJNpWkMuiCcQoIGDMIGApH4wfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tYMCIY +# DzIwMjExMjA5MDM1MTUyWhgPMjAyMTEyMTAwMzUxNTJaMHcwPQYKKwYBBAGEWQoE +# ATEvMC0wCgIFAOVbi1gCAQAwCgIBAAICHvwCAf8wBwIBAAICETcwCgIFAOVc3NgC +# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK +# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQCbF/Q1IJzqUwQBkXn+GjUxZzVN +# O+9p1fpL7W8dEy9/m1L7dl968KiYqfO5rekvXeSUDTFYrkS/r0w8p2ZZ7d0TMtJt +# TrKmc85aRmxtSvCNAS2stE2sS2Y5np5+/02w3DDn3Nni6vvF8nsuiIlbiyHrGQrC +# 9eis1rpLSNvXisSYoDGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w +# IFBDQSAyMDEwAhMzAAABibS/hjCEHEuPAAEAAAGJMA0GCWCGSAFlAwQCAQUAoIIB +# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIE9C +# YLePpB7z2n25zIz6S9czmnMvqhq9zWDUWGRetdy3MIH6BgsqhkiG9w0BCRACLzGB +# 6jCB5zCB5DCBvQQgZndHMdxQV1VsbpWHOTHqWEycvcRJm7cY69l/UmT8j0UwgZgw +# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE +# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD +# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYm0v4YwhBxL +# jwABAAABiTAiBCCErc3WAJDL+6+RTcx4qvTV2Dv0bP6a0jmZjnUp3u9sbzANBgkq +# hkiG9w0BAQsFAASCAgCLuF4LX6ghAt1uercf24wmzMJ22FHRyklnWLILmQXDOSwZ +# bLzptb/gXN2KtDnQU3xF02SLNfmPvFCYkU7l9pYTmDQ18Pm6GtnwLMke8xbMlWsl +# 2gZCMMI3Q40kidzeZ3yYggxf5a+YP0JI3rcgZuRDnEeJ69oUqVvD/sWPTuWqKV7V +# 2jb5gnLURKrzDKPYf1trvb7M2oRkxXToLOEtbsHI2O46WJCbGrYlERk6Sp8+nmPD +# oQ7Lz8Vq5xXn3L8z3QqDI0UCdxxd32JBQbzMZ21xI+JgljiGXv3TSrtz+0M88mLM +# m+Kf7LHqDN3v6xfGI+AWD5KPfxzLekMmtTIlkeA93MolkgeFfkx5BpqbWLrbd63S +# RzhF88sZt47hwzoDfn4DMzFOrtbJqbdVWcVtIgY07AmWUSvpNtXgljty4kzg1rHV +# v2m6ezcnQa0D9a8WQJSd+gRfD6BEmDBOyGL7w49Tcgp2vZiWWdnHrWeRXMp+N4Fs +# 4IbQ51teHXISCvqZoVaz8/jEvWPftKkwcXuM89+S7hN4NMq0zpON1lizLV/FPP7p +# bpAQuaBgSY2f0Hfyko8JAH/KJFpmuzjTTcUAwvru2dsCdakB4kd6k6JHpu+XjWez +# M4lfX7MZegJiXfCQ8QBIKwg80WLwjJjjHrvTap+yPG9goxm6Nzh+UftgAcz+Qw== +# SIG # End signature block diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.Odbc.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.Odbc.dll new file mode 100644 index 0000000..cc9c1da Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.Odbc.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.OleDb.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.OleDb.dll new file mode 100644 index 0000000..95d3e71 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.OleDb.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll new file mode 100644 index 0000000..bc23526 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..03b44f1 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll new file mode 100644 index 0000000..235a22f Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll new file mode 100644 index 0000000..58eacf8 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..7f910de Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.dll new file mode 100644 index 0000000..650007c Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll new file mode 100644 index 0000000..7c9e87b Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.IO.Ports.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.IO.Ports.dll new file mode 100644 index 0000000..b678ac4 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.IO.Ports.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.Automation.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.Automation.dll new file mode 100644 index 0000000..0c2333e Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.Automation.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.dll new file mode 100644 index 0000000..3e409fa Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll new file mode 100644 index 0000000..2b6fda4 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll new file mode 100644 index 0000000..bdca76d Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll new file mode 100644 index 0000000..10c0dd8 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..332dbfa Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll new file mode 100644 index 0000000..8a6feee Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Speech.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Speech.dll new file mode 100644 index 0000000..b551f9c Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Speech.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Threading.AccessControl.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Threading.AccessControl.dll new file mode 100644 index 0000000..8109eae Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Threading.AccessControl.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..69f0d1b Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll new file mode 100644 index 0000000..d92be8f Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..c70b1d3 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..6d14e76 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll new file mode 100644 index 0000000..2e5c7ea Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x64/native/mi.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x64/native/mi.dll new file mode 100644 index 0000000..f169cbe Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x64/native/mi.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x64/native/miutils.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x64/native/miutils.dll new file mode 100644 index 0000000..f9c9d3f Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x64/native/miutils.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..e1819d5 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..13d9f3b Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll new file mode 100644 index 0000000..434e1f4 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x86/native/mi.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x86/native/mi.dll new file mode 100644 index 0000000..cfa3846 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x86/native/mi.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x86/native/miutils.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x86/native/miutils.dll new file mode 100644 index 0000000..6a6fdd1 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win10-x86/native/miutils.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..c70b1d3 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..6d14e76 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll new file mode 100644 index 0000000..90fc1b2 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x64/native/mi.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x64/native/mi.dll new file mode 100644 index 0000000..75de9d2 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x64/native/mi.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x64/native/miutils.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x64/native/miutils.dll new file mode 100644 index 0000000..d6d3465 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x64/native/miutils.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..e1819d5 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..13d9f3b Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll new file mode 100644 index 0000000..7a2fe92 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x86/native/mi.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x86/native/mi.dll new file mode 100644 index 0000000..f0f556f Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x86/native/mi.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x86/native/miutils.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x86/native/miutils.dll new file mode 100644 index 0000000..19dbafc Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win7-x86/native/miutils.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..c70b1d3 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..6d14e76 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x64/native/mi.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x64/native/mi.dll new file mode 100644 index 0000000..34043ba Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x64/native/mi.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x64/native/miutils.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x64/native/miutils.dll new file mode 100644 index 0000000..0579e97 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x64/native/miutils.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..e1819d5 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..13d9f3b Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x86/native/mi.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x86/native/mi.dll new file mode 100644 index 0000000..f303e1e Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x86/native/mi.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x86/native/miutils.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x86/native/miutils.dll new file mode 100644 index 0000000..d305891 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win8-x86/native/miutils.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..c70b1d3 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..6d14e76 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll new file mode 100644 index 0000000..8af4889 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x64/native/mi.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x64/native/mi.dll new file mode 100644 index 0000000..46dedce Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x64/native/mi.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x64/native/miutils.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x64/native/miutils.dll new file mode 100644 index 0000000..3c8ebbd Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x64/native/miutils.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..e1819d5 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..13d9f3b Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll new file mode 100644 index 0000000..9dcbfd1 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x86/native/mi.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x86/native/mi.dll new file mode 100644 index 0000000..087163a Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x86/native/mi.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x86/native/miutils.dll b/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x86/native/miutils.dll new file mode 100644 index 0000000..21ad782 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/runtimes/win81-x86/native/miutils.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..56f6a16 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..81ce1fc Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/tr/System.Private.ServiceModel.resources.dll b/linguard/Cli/bin/Debug/net6.0/tr/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..4a0bd6f Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/tr/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/tr/System.Web.Services.Description.resources.dll b/linguard/Cli/bin/Debug/net6.0/tr/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..7917190 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/tr/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..ffe2682 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..d17ccb3 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/zh-Hans/System.Private.ServiceModel.resources.dll b/linguard/Cli/bin/Debug/net6.0/zh-Hans/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..8e8fe2e Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/zh-Hans/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/zh-Hans/System.Web.Services.Description.resources.dll b/linguard/Cli/bin/Debug/net6.0/zh-Hans/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..903dca8 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/zh-Hans/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Cli/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..2efe878 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/linguard/Cli/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..62c7b50 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/zh-Hant/System.Private.ServiceModel.resources.dll b/linguard/Cli/bin/Debug/net6.0/zh-Hant/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..2001bc8 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/zh-Hant/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Cli/bin/Debug/net6.0/zh-Hant/System.Web.Services.Description.resources.dll b/linguard/Cli/bin/Debug/net6.0/zh-Hant/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..6bf5a85 Binary files /dev/null and b/linguard/Cli/bin/Debug/net6.0/zh-Hant/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Cli/obj/Cli.csproj.nuget.dgspec.json b/linguard/Cli/obj/Cli.csproj.nuget.dgspec.json new file mode 100644 index 0000000..6488d2c --- /dev/null +++ b/linguard/Cli/obj/Cli.csproj.nuget.dgspec.json @@ -0,0 +1,222 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj": {} + }, + "projects": { + "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj": { + "version": "2.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj", + "projectName": "Linguard.Cli", + "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj", + "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", + "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj": { + "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "CommandLineParser": { + "target": "Package", + "version": "[2.8.0, )" + }, + "FluentValidation": { + "target": "Package", + "version": "[10.3.6, )" + }, + "Typin": { + "target": "Package", + "version": "[3.1.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj": { + "version": "2.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj", + "projectName": "Linguard.Core", + "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj", + "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", + "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj": { + "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "Bogus": { + "target": "Package", + "version": "[34.0.1, )" + }, + "ByteSize": { + "target": "Package", + "version": "[2.1.1, )" + }, + "FluentValidation": { + "target": "Package", + "version": "[10.3.6, )" + }, + "IPNetwork2": { + "target": "Package", + "version": "[2.5.386, )" + }, + "Microsoft.PowerShell.SDK": { + "target": "Package", + "version": "[7.2.1, )" + }, + "System.Management.Automation": { + "target": "Package", + "version": "[7.2.1, )" + }, + "YamlDotNet": { + "target": "Package", + "version": "[11.2.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj": { + "version": "2.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj", + "projectName": "Linguard.Log", + "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj", + "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", + "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "NLog": { + "target": "Package", + "version": "[4.7.13, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/linguard/Cli/obj/Cli.csproj.nuget.g.props b/linguard/Cli/obj/Cli.csproj.nuget.g.props new file mode 100644 index 0000000..4890622 --- /dev/null +++ b/linguard/Cli/obj/Cli.csproj.nuget.g.props @@ -0,0 +1,18 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\theyu\.nuget\packages\ + PackageReference + 6.0.0 + + + + + + C:\Users\theyu\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.2 + + \ No newline at end of file diff --git a/linguard/Cli/obj/Cli.csproj.nuget.g.targets b/linguard/Cli/obj/Cli.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/linguard/Cli/obj/Cli.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/linguard/Cli/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/linguard/Cli/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/linguard/Cli/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/linguard/Cli/obj/Debug/net6.0/Cli.AssemblyInfo.cs b/linguard/Cli/obj/Debug/net6.0/Cli.AssemblyInfo.cs new file mode 100644 index 0000000..73b0f17 --- /dev/null +++ b/linguard/Cli/obj/Debug/net6.0/Cli.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("José Antonio Mazón San Bartolomé")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("2.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("2.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Linguard")] +[assembly: System.Reflection.AssemblyTitleAttribute("Linguard.Cli")] +[assembly: System.Reflection.AssemblyVersionAttribute("2.0.0.0")] + +// Generado por la clase WriteCodeFragment de MSBuild. + diff --git a/linguard/Cli/obj/Debug/net6.0/Cli.AssemblyInfoInputs.cache b/linguard/Cli/obj/Debug/net6.0/Cli.AssemblyInfoInputs.cache new file mode 100644 index 0000000..ecd13b4 --- /dev/null +++ b/linguard/Cli/obj/Debug/net6.0/Cli.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +e93bb398f884ef112e0e0a3ad277cd22a7383632 diff --git a/linguard/Cli/obj/Debug/net6.0/Cli.GeneratedMSBuildEditorConfig.editorconfig b/linguard/Cli/obj/Debug/net6.0/Cli.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7f1e5c9 --- /dev/null +++ b/linguard/Cli/obj/Debug/net6.0/Cli.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Linguard.Cli +build_property.ProjectDir = C:\Users\theyu\repos\linguard\Linguard\Cli\ diff --git a/linguard/Cli/obj/Debug/net6.0/Cli.GlobalUsings.g.cs b/linguard/Cli/obj/Debug/net6.0/Cli.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/linguard/Cli/obj/Debug/net6.0/Cli.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/linguard/Cli/obj/Debug/net6.0/Cli.Program.g.cs b/linguard/Cli/obj/Debug/net6.0/Cli.Program.g.cs new file mode 100644 index 0000000..b49441c Binary files /dev/null and b/linguard/Cli/obj/Debug/net6.0/Cli.Program.g.cs differ diff --git a/linguard/Cli/obj/Debug/net6.0/Cli.assets.cache b/linguard/Cli/obj/Debug/net6.0/Cli.assets.cache new file mode 100644 index 0000000..ab63974 Binary files /dev/null and b/linguard/Cli/obj/Debug/net6.0/Cli.assets.cache differ diff --git a/linguard/Cli/obj/Debug/net6.0/Cli.csproj.AssemblyReference.cache b/linguard/Cli/obj/Debug/net6.0/Cli.csproj.AssemblyReference.cache new file mode 100644 index 0000000..d6c0809 Binary files /dev/null and b/linguard/Cli/obj/Debug/net6.0/Cli.csproj.AssemblyReference.cache differ diff --git a/linguard/Cli/obj/Debug/net6.0/Cli.csproj.CopyComplete b/linguard/Cli/obj/Debug/net6.0/Cli.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/linguard/Cli/obj/Debug/net6.0/Cli.csproj.CoreCompileInputs.cache b/linguard/Cli/obj/Debug/net6.0/Cli.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..223e8d0 --- /dev/null +++ b/linguard/Cli/obj/Debug/net6.0/Cli.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +a44eea4834973ae1dc05baaafab7ae35712a94bb diff --git a/linguard/Cli/obj/Debug/net6.0/Cli.csproj.FileListAbsolute.txt b/linguard/Cli/obj/Debug/net6.0/Cli.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..8966702 --- /dev/null +++ b/linguard/Cli/obj/Debug/net6.0/Cli.csproj.FileListAbsolute.txt @@ -0,0 +1,875 @@ +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\Microsoft.CSharp.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\Microsoft.VisualBasic.Core.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\Microsoft.VisualBasic.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\Microsoft.Win32.Primitives.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\Microsoft.Win32.Registry.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.AppContext.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Buffers.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Collections.Concurrent.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Collections.Immutable.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Collections.NonGeneric.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Collections.Specialized.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Collections.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.ComponentModel.Annotations.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.ComponentModel.DataAnnotations.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.ComponentModel.EventBasedAsync.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.ComponentModel.Primitives.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.ComponentModel.TypeConverter.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.ComponentModel.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Configuration.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Console.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Core.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Data.Common.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Data.DataSetExtensions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Data.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.Contracts.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.Debug.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.DiagnosticSource.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.FileVersionInfo.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.Process.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.StackTrace.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.TextWriterTraceListener.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.Tools.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.TraceSource.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.Tracing.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Drawing.Primitives.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Drawing.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Dynamic.Runtime.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Formats.Asn1.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Globalization.Calendars.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Globalization.Extensions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Globalization.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.Compression.Brotli.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.Compression.FileSystem.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.Compression.ZipFile.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.Compression.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.FileSystem.AccessControl.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.FileSystem.DriveInfo.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.FileSystem.Primitives.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.FileSystem.Watcher.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.FileSystem.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.IsolatedStorage.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.MemoryMappedFiles.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.Pipes.AccessControl.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.Pipes.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.UnmanagedMemoryStream.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Linq.Expressions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Linq.Parallel.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Linq.Queryable.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Linq.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Memory.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.Http.Json.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.Http.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.HttpListener.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.Mail.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.NameResolution.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.NetworkInformation.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.Ping.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.Primitives.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.Requests.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.Security.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.ServicePoint.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.Sockets.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.WebClient.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.WebHeaderCollection.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.WebProxy.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.WebSockets.Client.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.WebSockets.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Numerics.Vectors.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Numerics.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.ObjectModel.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.DispatchProxy.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.Emit.ILGeneration.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.Emit.Lightweight.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.Emit.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.Extensions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.Metadata.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.Primitives.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.TypeExtensions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Resources.Reader.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Resources.ResourceManager.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Resources.Writer.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.CompilerServices.Unsafe.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.CompilerServices.VisualC.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Extensions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Handles.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.InteropServices.RuntimeInformation.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.InteropServices.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Intrinsics.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Loader.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Numerics.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Serialization.Formatters.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Serialization.Json.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Serialization.Primitives.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Serialization.Xml.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Serialization.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.AccessControl.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Claims.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Cryptography.Algorithms.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Cryptography.Cng.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Cryptography.Csp.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Cryptography.Encoding.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Cryptography.OpenSsl.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Cryptography.Primitives.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Cryptography.X509Certificates.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Principal.Windows.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Principal.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.SecureString.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.ServiceModel.Web.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.ServiceProcess.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Text.Encoding.CodePages.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Text.Encoding.Extensions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Text.Encoding.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Text.Encodings.Web.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Text.Json.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Text.RegularExpressions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.Channels.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.Overlapped.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.Tasks.Dataflow.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.Tasks.Extensions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.Tasks.Parallel.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.Tasks.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.Thread.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.ThreadPool.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.Timer.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Transactions.Local.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Transactions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.ValueTuple.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Web.HttpUtility.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Web.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Windows.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.Linq.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.ReaderWriter.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.Serialization.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.XDocument.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.XPath.XDocument.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.XPath.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.XmlDocument.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.XmlSerializer.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\System.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\WindowsBase.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\mscorlib.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\netstandard.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\CimCmdlets\CimCmdlets.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Diagnostics.format.ps1xml +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Event.format.ps1xml +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\GetEvent.types.ps1xml +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Microsoft.PowerShell.Diagnostics.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\Microsoft.WSMan.Management.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\WSMan.format.ps1xml +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psm1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Linguard.Cli.exe +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Linguard.Cli.deps.json +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Linguard.Cli.runtimeconfig.json +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Linguard.Cli.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ref\Linguard.Cli.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Linguard.Cli.pdb +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Net.IPNetwork.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Markdig.Signed.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Microsoft.ApplicationInsights.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Microsoft.Bcl.AsyncInterfaces.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Microsoft.CodeAnalysis.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Microsoft.CodeAnalysis.CSharp.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Microsoft.Extensions.ObjectPool.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Microsoft.PowerShell.MarkdownRender.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Microsoft.Win32.Registry.AccessControl.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Microsoft.Win32.SystemEvents.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Namotion.Reflection.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Newtonsoft.Json.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\NJsonSchema.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.CodeDom.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.ComponentModel.Composition.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.ComponentModel.Composition.Registration.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Configuration.ConfigurationManager.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Data.OleDb.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Data.SqlClient.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Diagnostics.EventLog.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Diagnostics.PerformanceCounter.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.DirectoryServices.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.DirectoryServices.AccountManagement.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.DirectoryServices.Protocols.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Drawing.Common.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.IO.Packaging.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.IO.Ports.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Management.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Net.Http.WinHttpHandler.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Private.ServiceModel.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Reflection.Context.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Runtime.Caching.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Security.Cryptography.Pkcs.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Security.Cryptography.ProtectedData.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Security.Cryptography.Xml.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Security.Permissions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.ServiceModel.Duplex.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.ServiceModel.Http.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.ServiceModel.NetTcp.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.ServiceModel.Primitives.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.ServiceModel.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.ServiceModel.Security.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.ServiceModel.Syndication.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.ServiceProcess.ServiceController.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Speech.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Threading.AccessControl.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Web.Services.Description.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\System.Windows.Extensions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\YamlDotNet.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\cs\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\de\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\es\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\fr\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\it\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ja\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ko\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\pl\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\pt-BR\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ru\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\tr\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\cs\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\de\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\es\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\fr\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\it\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ja\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ko\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\pl\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\pt-BR\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ru\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\tr\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\zh-Hans\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\zh-Hant\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\cs\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\de\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\es\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\fr\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\it\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ja\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ko\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\pl\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\pt-BR\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\ru\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\tr\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\zh-Hans\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\zh-Hant\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Management.Infrastructure.CimCmdlets.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm\native\mi.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm\native\miutils.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm64\native\mi.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm64\native\miutils.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x64\native\mi.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x64\native\miutils.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x86\native\mi.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x86\native\miutils.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x64\native\mi.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x64\native\miutils.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x86\native\mi.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x86\native\miutils.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win8-x64\native\mi.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win8-x64\native\miutils.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win8-x86\native\mi.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win8-x86\native\miutils.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x64\native\mi.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x64\native\miutils.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x86\native\mi.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x86\native\miutils.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Diagnostics.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.CoreCLR.Eventing.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-arm\native\libpsl-native.so +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-arm64\native\libpsl-native.so +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-musl-x64\native\libpsl-native.so +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-x64\native\libmi.so +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-x64\native\libpsl-native.so +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-x64\native\libpsrpclient.so +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\osx\native\libmi.dylib +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\osx\native\libpsl-native.dylib +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\osx\native\libpsrpclient.dylib +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm\native\PowerShell.Core.Instrumentation.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm\native\pwrshplugin.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm64\native\PowerShell.Core.Instrumentation.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm64\native\pwrshplugin.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-x64\native\PowerShell.Core.Instrumentation.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-x64\native\pwrshplugin.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-x86\native\PowerShell.Core.Instrumentation.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-x86\native\pwrshplugin.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.SDK.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.SDK.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Security.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Security.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Win32.Registry.AccessControl.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.WSMan.Management.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.WSMan.Runtime.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-arm\native\libSystem.IO.Ports.Native.so +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-arm64\native\libSystem.IO.Ports.Native.so +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-x64\native\libSystem.IO.Ports.Native.so +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\osx-arm64\native\libSystem.IO.Ports.Native.dylib +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\osx-x64\native\libSystem.IO.Ports.Native.dylib +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm64\native\sni.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-x64\native\sni.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win-x86\native\sni.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\freebsd\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\illumos\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\ios\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\linux\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\osx\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\solaris\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\tvos\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Data.OleDb.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.Messages.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.PerformanceCounter.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.AccountManagement.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\linux\lib\net6.0\System.DirectoryServices.Protocols.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\osx\lib\net6.0\System.DirectoryServices.Protocols.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.Protocols.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.IO.Ports.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.IO.Ports.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Management.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.Management.Automation.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Management.Automation.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Net.Http.WinHttpHandler.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Runtime.Caching.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Security.Cryptography.Pkcs.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.ServiceProcess.ServiceController.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Speech.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Threading.AccessControl.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Linguard.Core.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Linguard.Log.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Linguard.Core.pdb +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Linguard.Log.pdb +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\obj\Debug\net6.0\Cli.csproj.AssemblyReference.cache +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\obj\Debug\net6.0\Cli.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\obj\Debug\net6.0\Cli.AssemblyInfoInputs.cache +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\obj\Debug\net6.0\Cli.AssemblyInfo.cs +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\obj\Debug\net6.0\Cli.csproj.CoreCompileInputs.cache +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\obj\Debug\net6.0\Cli.csproj.CopyComplete +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\obj\Debug\net6.0\Linguard.Cli.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\obj\Debug\net6.0\ref\Linguard.Cli.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\obj\Debug\net6.0\Linguard.Cli.pdb +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\obj\Debug\net6.0\Cli.genruntimeconfig.cache +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\NLog.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\NLog.config +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\CommandLine.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Microsoft.Extensions.DependencyInjection.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Microsoft.Extensions.Logging.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Microsoft.Extensions.Logging.Abstractions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Microsoft.Extensions.Logging.Debug.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Microsoft.Extensions.Options.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Microsoft.Extensions.Primitives.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Typin.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Typin.Core.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\Bogus.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Cli\bin\Debug\net6.0\FluentValidation.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\Microsoft.CSharp.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\Microsoft.VisualBasic.Core.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\Microsoft.VisualBasic.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\Microsoft.Win32.Primitives.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\Microsoft.Win32.Registry.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.AppContext.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Buffers.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Collections.Concurrent.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Collections.Immutable.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Collections.NonGeneric.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Collections.Specialized.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Collections.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.ComponentModel.Annotations.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.ComponentModel.DataAnnotations.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.ComponentModel.EventBasedAsync.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.ComponentModel.Primitives.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.ComponentModel.TypeConverter.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.ComponentModel.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Configuration.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Console.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Core.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Data.Common.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Data.DataSetExtensions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Data.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.Contracts.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.Debug.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.DiagnosticSource.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.FileVersionInfo.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.Process.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.StackTrace.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.TextWriterTraceListener.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.Tools.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.TraceSource.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Diagnostics.Tracing.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Drawing.Primitives.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Drawing.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Dynamic.Runtime.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Formats.Asn1.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Globalization.Calendars.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Globalization.Extensions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Globalization.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.Compression.Brotli.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.Compression.FileSystem.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.Compression.ZipFile.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.Compression.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.FileSystem.AccessControl.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.FileSystem.DriveInfo.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.FileSystem.Primitives.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.FileSystem.Watcher.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.FileSystem.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.IsolatedStorage.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.MemoryMappedFiles.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.Pipes.AccessControl.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.Pipes.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.UnmanagedMemoryStream.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.IO.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Linq.Expressions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Linq.Parallel.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Linq.Queryable.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Linq.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Memory.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.Http.Json.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.Http.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.HttpListener.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.Mail.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.NameResolution.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.NetworkInformation.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.Ping.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.Primitives.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.Requests.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.Security.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.ServicePoint.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.Sockets.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.WebClient.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.WebHeaderCollection.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.WebProxy.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.WebSockets.Client.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.WebSockets.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Net.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Numerics.Vectors.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Numerics.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.ObjectModel.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.DispatchProxy.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.Emit.ILGeneration.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.Emit.Lightweight.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.Emit.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.Extensions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.Metadata.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.Primitives.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.TypeExtensions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Reflection.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Resources.Reader.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Resources.ResourceManager.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Resources.Writer.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.CompilerServices.Unsafe.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.CompilerServices.VisualC.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Extensions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Handles.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.InteropServices.RuntimeInformation.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.InteropServices.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Intrinsics.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Loader.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Numerics.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Serialization.Formatters.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Serialization.Json.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Serialization.Primitives.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Serialization.Xml.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.Serialization.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Runtime.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.AccessControl.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Claims.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Cryptography.Algorithms.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Cryptography.Cng.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Cryptography.Csp.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Cryptography.Encoding.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Cryptography.OpenSsl.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Cryptography.Primitives.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Cryptography.X509Certificates.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Principal.Windows.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.Principal.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.SecureString.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Security.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.ServiceModel.Web.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.ServiceProcess.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Text.Encoding.CodePages.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Text.Encoding.Extensions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Text.Encoding.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Text.Encodings.Web.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Text.Json.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Text.RegularExpressions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.Channels.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.Overlapped.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.Tasks.Dataflow.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.Tasks.Extensions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.Tasks.Parallel.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.Tasks.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.Thread.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.ThreadPool.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.Timer.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Threading.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Transactions.Local.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Transactions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.ValueTuple.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Web.HttpUtility.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Web.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Windows.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.Linq.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.ReaderWriter.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.Serialization.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.XDocument.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.XPath.XDocument.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.XPath.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.XmlDocument.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.XmlSerializer.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.Xml.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\System.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\WindowsBase.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\mscorlib.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\netstandard.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\CimCmdlets\CimCmdlets.psd1 +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Diagnostics.format.ps1xml +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Event.format.ps1xml +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\GetEvent.types.ps1xml +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Microsoft.PowerShell.Diagnostics.psd1 +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\Microsoft.WSMan.Management.psd1 +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\WSMan.format.ps1xml +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psd1 +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psm1 +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\NLog.config +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Linguard.Cli.exe +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Linguard.Cli.deps.json +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Linguard.Cli.runtimeconfig.json +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Linguard.Cli.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ref\Linguard.Cli.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Linguard.Cli.pdb +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Bogus.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\CommandLine.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\FluentValidation.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Net.IPNetwork.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Markdig.Signed.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Microsoft.ApplicationInsights.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Microsoft.Bcl.AsyncInterfaces.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Microsoft.CodeAnalysis.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Microsoft.CodeAnalysis.CSharp.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Microsoft.Extensions.DependencyInjection.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Microsoft.Extensions.Logging.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Microsoft.Extensions.Logging.Abstractions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Microsoft.Extensions.Logging.Debug.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Microsoft.Extensions.ObjectPool.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Microsoft.Extensions.Options.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Microsoft.Extensions.Primitives.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Microsoft.PowerShell.MarkdownRender.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Microsoft.Win32.Registry.AccessControl.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Microsoft.Win32.SystemEvents.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Namotion.Reflection.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Newtonsoft.Json.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\NJsonSchema.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\NLog.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.CodeDom.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.ComponentModel.Composition.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.ComponentModel.Composition.Registration.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Configuration.ConfigurationManager.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Data.OleDb.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Data.SqlClient.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Diagnostics.EventLog.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Diagnostics.PerformanceCounter.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.DirectoryServices.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.DirectoryServices.AccountManagement.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.DirectoryServices.Protocols.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Drawing.Common.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.IO.Packaging.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.IO.Ports.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Management.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Net.Http.WinHttpHandler.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Private.ServiceModel.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Reflection.Context.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Runtime.Caching.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Security.Cryptography.Pkcs.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Security.Cryptography.ProtectedData.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Security.Cryptography.Xml.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Security.Permissions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.ServiceModel.Duplex.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.ServiceModel.Http.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.ServiceModel.NetTcp.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.ServiceModel.Primitives.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.ServiceModel.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.ServiceModel.Security.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.ServiceModel.Syndication.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.ServiceProcess.ServiceController.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Speech.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Threading.AccessControl.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Web.Services.Description.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\System.Windows.Extensions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Typin.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Typin.Core.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\YamlDotNet.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\cs\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\de\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\es\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\fr\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\it\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ja\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ko\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\pl\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\pt-BR\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ru\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\tr\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\cs\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\de\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\es\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\fr\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\it\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ja\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ko\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\pl\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\pt-BR\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ru\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\tr\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\zh-Hans\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\zh-Hant\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\cs\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\de\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\es\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\fr\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\it\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ja\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ko\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\pl\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\pt-BR\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ru\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\tr\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\zh-Hans\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\zh-Hant\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Management.Infrastructure.CimCmdlets.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm\native\mi.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm\native\miutils.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm64\native\mi.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm64\native\miutils.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x64\native\mi.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x64\native\miutils.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x86\native\mi.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win10-x86\native\miutils.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x64\native\mi.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x64\native\miutils.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x86\native\mi.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win7-x86\native\miutils.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win8-x64\native\mi.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win8-x64\native\miutils.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win8-x86\native\mi.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win8-x86\native\miutils.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x64\native\mi.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x64\native\miutils.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x86\native\mi.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win81-x86\native\miutils.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Diagnostics.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.CoreCLR.Eventing.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-arm\native\libpsl-native.so +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-arm64\native\libpsl-native.so +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-musl-x64\native\libpsl-native.so +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-x64\native\libmi.so +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-x64\native\libpsl-native.so +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-x64\native\libpsrpclient.so +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\osx\native\libmi.dylib +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\osx\native\libpsl-native.dylib +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\osx\native\libpsrpclient.dylib +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm\native\PowerShell.Core.Instrumentation.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm\native\pwrshplugin.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm64\native\PowerShell.Core.Instrumentation.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm64\native\pwrshplugin.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-x64\native\PowerShell.Core.Instrumentation.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-x64\native\pwrshplugin.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-x86\native\PowerShell.Core.Instrumentation.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-x86\native\pwrshplugin.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.SDK.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.SDK.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Security.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Security.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Win32.Registry.AccessControl.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.WSMan.Management.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.WSMan.Runtime.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-arm\native\libSystem.IO.Ports.Native.so +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-arm64\native\libSystem.IO.Ports.Native.so +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\linux-x64\native\libSystem.IO.Ports.Native.so +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\osx-arm64\native\libSystem.IO.Ports.Native.dylib +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\osx-x64\native\libSystem.IO.Ports.Native.dylib +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-arm64\native\sni.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-x64\native\sni.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win-x86\native\sni.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\freebsd\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\illumos\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\ios\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\linux\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\osx\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\solaris\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\tvos\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Data.OleDb.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.Messages.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.PerformanceCounter.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.AccountManagement.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\linux\lib\net6.0\System.DirectoryServices.Protocols.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\osx\lib\net6.0\System.DirectoryServices.Protocols.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.Protocols.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.IO.Ports.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.IO.Ports.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Management.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.Management.Automation.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Management.Automation.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Net.Http.WinHttpHandler.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Runtime.Caching.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Security.Cryptography.Pkcs.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.ServiceProcess.ServiceController.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Speech.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Threading.AccessControl.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Linguard.Core.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Linguard.Log.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Linguard.Core.pdb +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\Linguard.Log.pdb +C:\Users\theyu\repos\linguard\Linguard\Cli\obj\Debug\net6.0\Cli.csproj.AssemblyReference.cache +C:\Users\theyu\repos\linguard\Linguard\Cli\obj\Debug\net6.0\Cli.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\theyu\repos\linguard\Linguard\Cli\obj\Debug\net6.0\Cli.AssemblyInfoInputs.cache +C:\Users\theyu\repos\linguard\Linguard\Cli\obj\Debug\net6.0\Cli.AssemblyInfo.cs +C:\Users\theyu\repos\linguard\Linguard\Cli\obj\Debug\net6.0\Cli.csproj.CoreCompileInputs.cache +C:\Users\theyu\repos\linguard\Linguard\Cli\obj\Debug\net6.0\Cli.csproj.CopyComplete +C:\Users\theyu\repos\linguard\Linguard\Cli\obj\Debug\net6.0\Linguard.Cli.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\obj\Debug\net6.0\ref\Linguard.Cli.dll +C:\Users\theyu\repos\linguard\Linguard\Cli\obj\Debug\net6.0\Linguard.Cli.pdb +C:\Users\theyu\repos\linguard\Linguard\Cli\obj\Debug\net6.0\Cli.genruntimeconfig.cache +C:\Users\theyu\repos\linguard\Linguard\Cli\bin\Debug\net6.0\ByteSize.dll diff --git a/linguard/Cli/obj/Debug/net6.0/Cli.genruntimeconfig.cache b/linguard/Cli/obj/Debug/net6.0/Cli.genruntimeconfig.cache new file mode 100644 index 0000000..eefb2c8 --- /dev/null +++ b/linguard/Cli/obj/Debug/net6.0/Cli.genruntimeconfig.cache @@ -0,0 +1 @@ +9e28c7f9e4075fd91a539e70a8fee676020fd65a diff --git a/linguard/Cli/obj/Debug/net6.0/Linguard.Cli.dll b/linguard/Cli/obj/Debug/net6.0/Linguard.Cli.dll new file mode 100644 index 0000000..5de6843 Binary files /dev/null and b/linguard/Cli/obj/Debug/net6.0/Linguard.Cli.dll differ diff --git a/linguard/Cli/obj/Debug/net6.0/Linguard.Cli.pdb b/linguard/Cli/obj/Debug/net6.0/Linguard.Cli.pdb new file mode 100644 index 0000000..4a718f4 Binary files /dev/null and b/linguard/Cli/obj/Debug/net6.0/Linguard.Cli.pdb differ diff --git a/linguard/Cli/obj/Debug/net6.0/apphost.exe b/linguard/Cli/obj/Debug/net6.0/apphost.exe new file mode 100644 index 0000000..e8c7022 Binary files /dev/null and b/linguard/Cli/obj/Debug/net6.0/apphost.exe differ diff --git a/linguard/Cli/obj/Debug/net6.0/ref/Linguard.Cli.dll b/linguard/Cli/obj/Debug/net6.0/ref/Linguard.Cli.dll new file mode 100644 index 0000000..7069384 Binary files /dev/null and b/linguard/Cli/obj/Debug/net6.0/ref/Linguard.Cli.dll differ diff --git a/linguard/Cli/obj/project.assets.json b/linguard/Cli/obj/project.assets.json new file mode 100644 index 0000000..26edb55 --- /dev/null +++ b/linguard/Cli/obj/project.assets.json @@ -0,0 +1,7321 @@ +{ + "version": 3, + "targets": { + "net6.0": { + "Bogus/34.0.1": { + "type": "package", + "compile": { + "lib/net6.0/Bogus.dll": {} + }, + "runtime": { + "lib/net6.0/Bogus.dll": {} + } + }, + "ByteSize/2.1.1": { + "type": "package", + "compile": { + "lib/net5.0/ByteSize.dll": {} + }, + "runtime": { + "lib/net5.0/ByteSize.dll": {} + } + }, + "CommandLineParser/2.8.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/CommandLine.dll": {} + }, + "runtime": { + "lib/netstandard2.0/CommandLine.dll": {} + } + }, + "FluentValidation/10.3.6": { + "type": "package", + "compile": { + "lib/net6.0/FluentValidation.dll": {} + }, + "runtime": { + "lib/net6.0/FluentValidation.dll": {} + } + }, + "IPNetwork2/2.5.386": { + "type": "package", + "compile": { + "lib/net5.0/System.Net.IPNetwork.dll": {} + }, + "runtime": { + "lib/net5.0/System.Net.IPNetwork.dll": {} + } + }, + "Markdig.Signed/0.22.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Markdig.Signed.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Markdig.Signed.dll": {} + } + }, + "Microsoft.ApplicationInsights/2.18.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.DiagnosticSource": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {} + } + }, + "Microsoft.Bcl.AsyncInterfaces/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": { + "type": "package", + "build": { + "build/_._": {} + } + }, + "Microsoft.CodeAnalysis.Common/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.2", + "System.Collections.Immutable": "5.0.0", + "System.Memory": "4.5.4", + "System.Reflection.Metadata": "5.0.0", + "System.Runtime.CompilerServices.Unsafe": "5.0.0", + "System.Text.Encoding.CodePages": "4.5.1", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {} + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[4.0.1]" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CSharp/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Logging/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Extensions.Logging.Debug/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Logging": "6.0.0", + "Microsoft.Extensions.Logging.Abstractions": "6.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll": {} + } + }, + "Microsoft.Extensions.ObjectPool/5.0.10": { + "type": "package", + "compile": { + "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": {} + }, + "runtime": { + "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": {} + } + }, + "Microsoft.Extensions.Options/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", + "Microsoft.Extensions.Primitives": "6.0.0" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Management.Infrastructure/2.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0", + "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0" + }, + "compile": { + "ref/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {}, + "ref/netstandard1.6/Microsoft.Management.Infrastructure.dll": {} + }, + "runtime": { + "lib/netstandard1.6/_._": {} + } + }, + "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { + "type": "package", + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { + "type": "package", + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win-arm" + }, + "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win-arm" + }, + "runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm/native/mi.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm/native/miutils.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win-arm64" + }, + "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/mi.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/miutils.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win10-x64" + }, + "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win10-x64" + }, + "runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win10-x64" + }, + "runtimes/win10-x64/native/mi.dll": { + "assetType": "native", + "rid": "win10-x64" + }, + "runtimes/win10-x64/native/miutils.dll": { + "assetType": "native", + "rid": "win10-x64" + }, + "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win10-x86" + }, + "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win10-x86" + }, + "runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win10-x86" + }, + "runtimes/win10-x86/native/mi.dll": { + "assetType": "native", + "rid": "win10-x86" + }, + "runtimes/win10-x86/native/miutils.dll": { + "assetType": "native", + "rid": "win10-x86" + }, + "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win7-x64" + }, + "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/mi.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/miutils.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win7-x86" + }, + "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win7-x86" + }, + "runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win7-x86" + }, + "runtimes/win7-x86/native/mi.dll": { + "assetType": "native", + "rid": "win7-x86" + }, + "runtimes/win7-x86/native/miutils.dll": { + "assetType": "native", + "rid": "win7-x86" + }, + "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win8-x64" + }, + "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/mi.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/miutils.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win8-x86" + }, + "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win8-x86" + }, + "runtimes/win8-x86/native/mi.dll": { + "assetType": "native", + "rid": "win8-x86" + }, + "runtimes/win8-x86/native/miutils.dll": { + "assetType": "native", + "rid": "win8-x86" + }, + "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win81-x64" + }, + "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win81-x64" + }, + "runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win81-x64" + }, + "runtimes/win81-x64/native/mi.dll": { + "assetType": "native", + "rid": "win81-x64" + }, + "runtimes/win81-x64/native/miutils.dll": { + "assetType": "native", + "rid": "win81-x64" + }, + "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win81-x86" + }, + "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win81-x86" + }, + "runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win81-x86" + }, + "runtimes/win81-x86/native/mi.dll": { + "assetType": "native", + "rid": "win81-x86" + }, + "runtimes/win81-x86/native/miutils.dll": { + "assetType": "native", + "rid": "win81-x86" + } + } + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "type": "package" + }, + "Microsoft.PowerShell.Commands.Diagnostics/7.2.1": { + "type": "package", + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.PowerShell.Commands.Management/7.2.1": { + "type": "package", + "dependencies": { + "Microsoft.PowerShell.Security": "7.2.1", + "System.ServiceProcess.ServiceController": "6.0.0" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.PowerShell.Commands.Utility/7.2.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "4.0.1", + "Microsoft.PowerShell.MarkdownRender": "7.2.0", + "NJsonSchema": "10.5.2", + "System.Drawing.Common": "6.0.0", + "System.Management.Automation": "7.2.1", + "System.Threading.AccessControl": "6.0.0" + }, + "compile": { + "ref/net6.0/Microsoft.PowerShell.Commands.Utility.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.PowerShell.ConsoleHost/7.2.1": { + "type": "package", + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "compile": { + "ref/net6.0/Microsoft.PowerShell.ConsoleHost.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.EventLog": "6.0.0" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.PowerShell.MarkdownRender/7.2.0": { + "type": "package", + "dependencies": { + "Markdig.Signed": "0.22.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll": {} + } + }, + "Microsoft.PowerShell.Native/7.2.0": { + "type": "package", + "runtimeTargets": { + "runtimes/linux-arm/native/libpsl-native.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libpsl-native.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-musl-x64/native/libpsl-native.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libmi.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/linux-x64/native/libpsl-native.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/linux-x64/native/libpsrpclient.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/osx/native/libmi.dylib": { + "assetType": "native", + "rid": "osx" + }, + "runtimes/osx/native/libpsl-native.dylib": { + "assetType": "native", + "rid": "osx" + }, + "runtimes/osx/native/libpsrpclient.dylib": { + "assetType": "native", + "rid": "osx" + }, + "runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm/native/pwrshplugin.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/pwrshplugin.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x64/native/pwrshplugin.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll": { + "assetType": "native", + "rid": "win-x86" + }, + "runtimes/win-x86/native/pwrshplugin.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Microsoft.PowerShell.SDK/7.2.1": { + "type": "package", + "dependencies": { + "Microsoft.Management.Infrastructure.CimCmdlets": "7.2.1", + "Microsoft.NETCore.Windows.ApiSets": "1.0.1", + "Microsoft.PowerShell.Commands.Diagnostics": "7.2.1", + "Microsoft.PowerShell.Commands.Management": "7.2.1", + "Microsoft.PowerShell.Commands.Utility": "7.2.1", + "Microsoft.PowerShell.ConsoleHost": "7.2.1", + "Microsoft.PowerShell.Security": "7.2.1", + "Microsoft.WSMan.Management": "7.2.1", + "Microsoft.Windows.Compatibility": "6.0.0", + "System.Data.SqlClient": "4.8.3", + "System.IO.Packaging": "6.0.0", + "System.Management.Automation": "7.2.1", + "System.Net.Http.WinHttpHandler": "6.0.0", + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Duplex": "4.9.0", + "System.ServiceModel.Http": "4.9.0", + "System.ServiceModel.NetTcp": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0", + "System.ServiceModel.Security": "4.9.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "compile": { + "ref/net6.0/Microsoft.PowerShell.Commands.Utility.dll": {}, + "ref/net6.0/Microsoft.PowerShell.ConsoleHost.dll": {}, + "ref/net6.0/System.Management.Automation.dll": {} + }, + "contentFiles": { + "contentFiles/any/any/_._": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": false + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.PowerShell.Security/7.2.1": { + "type": "package", + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.Registry.AccessControl/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Windows.Compatibility/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry.AccessControl": "6.0.0", + "Microsoft.Win32.SystemEvents": "6.0.0", + "System.CodeDom": "6.0.0", + "System.ComponentModel.Composition": "6.0.0", + "System.ComponentModel.Composition.Registration": "6.0.0", + "System.Configuration.ConfigurationManager": "6.0.0", + "System.Data.Odbc": "6.0.0", + "System.Data.OleDb": "6.0.0", + "System.Data.SqlClient": "4.8.3", + "System.Diagnostics.EventLog": "6.0.0", + "System.Diagnostics.PerformanceCounter": "6.0.0", + "System.DirectoryServices": "6.0.0", + "System.DirectoryServices.AccountManagement": "6.0.0", + "System.DirectoryServices.Protocols": "6.0.0", + "System.Drawing.Common": "6.0.0", + "System.IO.Packaging": "6.0.0", + "System.IO.Ports": "6.0.0", + "System.Management": "6.0.0", + "System.Reflection.Context": "6.0.0", + "System.Runtime.Caching": "6.0.0", + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.0", + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Cryptography.Xml": "6.0.0", + "System.Security.Permissions": "6.0.0", + "System.ServiceModel.Duplex": "4.9.0", + "System.ServiceModel.Http": "4.9.0", + "System.ServiceModel.NetTcp": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0", + "System.ServiceModel.Security": "4.9.0", + "System.ServiceModel.Syndication": "6.0.0", + "System.ServiceProcess.ServiceController": "6.0.0", + "System.Speech": "6.0.0", + "System.Text.Encoding.CodePages": "6.0.0", + "System.Threading.AccessControl": "6.0.0", + "System.Web.Services.Description": "4.9.0" + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.WSMan.Management/7.2.1": { + "type": "package", + "dependencies": { + "Microsoft.WSMan.Runtime": "7.2.1", + "System.Management.Automation": "7.2.1", + "System.ServiceProcess.ServiceController": "6.0.0" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.WSMan.Runtime/7.2.1": { + "type": "package", + "compile": { + "ref/net6.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Namotion.Reflection/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.3.0" + }, + "compile": { + "lib/netstandard2.0/Namotion.Reflection.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Namotion.Reflection.dll": {} + } + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "NJsonSchema/10.5.2": { + "type": "package", + "dependencies": { + "Namotion.Reflection": "2.0.3", + "Newtonsoft.Json": "9.0.1" + }, + "compile": { + "lib/netstandard2.0/NJsonSchema.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NJsonSchema.dll": {} + } + }, + "NLog/4.7.13": { + "type": "package", + "compile": { + "lib/netstandard2.0/NLog.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NLog.dll": {} + } + }, + "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "runtimeTargets": { + "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so": { + "assetType": "native", + "rid": "linux-arm" + } + } + }, + "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "runtimeTargets": { + "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so": { + "assetType": "native", + "rid": "linux-arm64" + } + } + }, + "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "runtimeTargets": { + "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so": { + "assetType": "native", + "rid": "linux-x64" + } + } + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "type": "package", + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "dependencies": { + "runtime.linux-arm.runtime.native.System.IO.Ports": "6.0.0", + "runtime.linux-arm64.runtime.native.System.IO.Ports": "6.0.0", + "runtime.linux-x64.runtime.native.System.IO.Ports": "6.0.0", + "runtime.osx-arm64.runtime.native.System.IO.Ports": "6.0.0", + "runtime.osx-x64.runtime.native.System.IO.Ports": "6.0.0" + } + }, + "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib": { + "assetType": "native", + "rid": "osx-arm64" + } + } + }, + "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib": { + "assetType": "native", + "rid": "osx-x64" + } + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "assetType": "native", + "rid": "win-arm64" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "assetType": "native", + "rid": "win-x64" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "System.CodeDom/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.CodeDom.dll": {} + }, + "runtime": { + "lib/net6.0/System.CodeDom.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.Collections.Immutable/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Collections.Immutable.dll": {} + } + }, + "System.ComponentModel.Composition/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.ComponentModel.Composition.dll": {} + }, + "runtime": { + "lib/net6.0/System.ComponentModel.Composition.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.ComponentModel.Composition.Registration/6.0.0": { + "type": "package", + "dependencies": { + "System.ComponentModel.Composition": "6.0.0", + "System.Reflection.Context": "6.0.0" + }, + "compile": { + "lib/net6.0/System.ComponentModel.Composition.Registration.dll": {} + }, + "runtime": { + "lib/net6.0/System.ComponentModel.Composition.Registration.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Configuration.ConfigurationManager/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": {} + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Data.Odbc/6.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encoding.CodePages": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Data.Odbc.dll": {} + }, + "runtime": { + "lib/net6.0/System.Data.Odbc.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "freebsd" + }, + "runtimes/illumos/lib/net6.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "illumos" + }, + "runtimes/ios/lib/net6.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "ios" + }, + "runtimes/linux/lib/net6.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "linux" + }, + "runtimes/osx/lib/net6.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/solaris/lib/net6.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "solaris" + }, + "runtimes/tvos/lib/net6.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "tvos" + }, + "runtimes/win/lib/net6.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Data.OleDb/6.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0", + "System.Diagnostics.PerformanceCounter": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Data.OleDb.dll": {} + }, + "runtime": { + "lib/net6.0/System.Data.OleDb.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Data.OleDb.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Data.SqlClient/4.8.3": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "runtime.native.System.Data.SqlClient.sni": "4.7.0" + }, + "compile": { + "ref/netcoreapp2.1/System.Data.SqlClient.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Diagnostics.EventLog/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Diagnostics.EventLog.dll": {} + }, + "runtime": { + "lib/net6.0/System.Diagnostics.EventLog.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll": { + "assetType": "runtime", + "rid": "win" + }, + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.PerformanceCounter/6.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": {} + }, + "runtime": { + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.DirectoryServices.dll": {} + }, + "runtime": { + "lib/net6.0/System.DirectoryServices.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.DirectoryServices.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices.AccountManagement/6.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0", + "System.DirectoryServices": "6.0.0", + "System.DirectoryServices.Protocols": "6.0.0", + "System.Security.AccessControl": "6.0.0" + }, + "compile": { + "lib/net6.0/System.DirectoryServices.AccountManagement.dll": {} + }, + "runtime": { + "lib/net6.0/System.DirectoryServices.AccountManagement.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices.Protocols/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.DirectoryServices.Protocols.dll": {} + }, + "runtime": { + "lib/net6.0/System.DirectoryServices.Protocols.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "linux" + }, + "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Drawing.Common.dll": {} + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Formats.Asn1/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Formats.Asn1.dll": {} + }, + "runtime": { + "lib/net6.0/System.Formats.Asn1.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + } + }, + "System.IO.Packaging/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.IO.Packaging.dll": {} + }, + "runtime": { + "lib/net6.0/System.IO.Packaging.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.IO.Ports/6.0.0": { + "type": "package", + "dependencies": { + "runtime.native.System.IO.Ports": "6.0.0" + }, + "compile": { + "lib/net6.0/System.IO.Ports.dll": {} + }, + "runtime": { + "lib/net6.0/System.IO.Ports.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.IO.Ports.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/System.IO.Ports.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Management/6.0.0": { + "type": "package", + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Management.dll": {} + }, + "runtime": { + "lib/net6.0/System.Management.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Management.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Management.Automation/7.2.1": { + "type": "package", + "dependencies": { + "Microsoft.ApplicationInsights": "2.18.0", + "Microsoft.Management.Infrastructure": "2.0.0", + "Microsoft.PowerShell.CoreCLR.Eventing": "7.2.1", + "Microsoft.PowerShell.Native": "7.2.0", + "Microsoft.Win32.Registry.AccessControl": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "System.Configuration.ConfigurationManager": "6.0.0", + "System.DirectoryServices": "6.0.0", + "System.Management": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.0", + "System.Security.Permissions": "6.0.0", + "System.Text.Encoding.CodePages": "6.0.0" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Management.Automation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/System.Management.Automation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Memory/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Net.Http.WinHttpHandler/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Net.Http.WinHttpHandler.dll": {} + }, + "runtime": { + "lib/net6.0/System.Net.Http.WinHttpHandler.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Private.ServiceModel/4.9.0": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "5.0.0", + "Microsoft.Extensions.ObjectPool": "5.0.10", + "System.Numerics.Vectors": "4.5.0", + "System.Reflection.DispatchProxy": "4.7.1", + "System.Security.Cryptography.Xml": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Private.ServiceModel.dll": {} + }, + "resource": { + "lib/netstandard2.0/cs/System.Private.ServiceModel.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/System.Private.ServiceModel.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/System.Private.ServiceModel.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/System.Private.ServiceModel.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/System.Private.ServiceModel.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/System.Private.ServiceModel.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/System.Private.ServiceModel.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/System.Private.ServiceModel.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/System.Private.ServiceModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/System.Private.ServiceModel.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/System.Private.ServiceModel.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/System.Private.ServiceModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/System.Private.ServiceModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + } + }, + "System.Reflection.Context/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Reflection.Context.dll": {} + }, + "runtime": { + "lib/net6.0/System.Reflection.Context.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Reflection.DispatchProxy/4.7.1": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Reflection.DispatchProxy.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/System.Reflection.DispatchProxy.dll": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + } + }, + "System.Reflection.Metadata/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + } + }, + "System.Runtime.Caching/6.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/net6.0/System.Runtime.Caching.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/_._": {} + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/_._": {} + } + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "lib/net6.0/System.Security.AccessControl.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Pkcs/6.0.0": { + "type": "package", + "dependencies": { + "System.Formats.Asn1": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Security.Cryptography.Pkcs.dll": {} + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Pkcs.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {} + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Xml/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": {} + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.ServiceModel.Duplex/4.9.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "compile": { + "ref/net6.0/System.ServiceModel.Duplex.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Duplex.dll": {} + } + }, + "System.ServiceModel.Http/4.9.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "compile": { + "ref/net6.0/System.ServiceModel.Http.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Http.dll": {} + } + }, + "System.ServiceModel.NetTcp/4.9.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "compile": { + "ref/net6.0/System.ServiceModel.NetTcp.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.NetTcp.dll": {} + } + }, + "System.ServiceModel.Primitives/4.9.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.9.0" + }, + "compile": { + "ref/net6.0/System.ServiceModel.Primitives.dll": {}, + "ref/net6.0/System.ServiceModel.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Primitives.dll": {}, + "lib/net6.0/System.ServiceModel.dll": {} + } + }, + "System.ServiceModel.Security/4.9.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "compile": { + "ref/net6.0/System.ServiceModel.Security.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Security.dll": {} + } + }, + "System.ServiceModel.Syndication/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.ServiceModel.Syndication.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Syndication.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.ServiceProcess.ServiceController/6.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.EventLog": "6.0.0" + }, + "compile": { + "lib/net6.0/System.ServiceProcess.ServiceController.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceProcess.ServiceController.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Speech/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Speech.dll": {} + }, + "runtime": { + "lib/net6.0/System.Speech.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Speech.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.CodePages/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/net6.0/System.Text.Encoding.CodePages.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/net6.0/System.Text.Encodings.Web.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.AccessControl/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Threading.AccessControl.dll": {} + }, + "runtime": { + "lib/net6.0/System.Threading.AccessControl.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Threading.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Web.Services.Description/4.9.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Web.Services.Description.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Web.Services.Description.dll": {} + }, + "resource": { + "lib/netstandard2.0/cs/System.Web.Services.Description.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/System.Web.Services.Description.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/System.Web.Services.Description.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/System.Web.Services.Description.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/System.Web.Services.Description.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/System.Web.Services.Description.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/System.Web.Services.Description.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/System.Web.Services.Description.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/System.Web.Services.Description.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/System.Web.Services.Description.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/System.Web.Services.Description.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/System.Web.Services.Description.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/System.Web.Services.Description.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Windows.Extensions.dll": {} + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Typin/3.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0", + "Microsoft.Extensions.Logging.Debug": "6.0.0", + "Microsoft.Extensions.Options": "6.0.0", + "Typin.Core": "3.1.0" + }, + "compile": { + "lib/net6.0/Typin.dll": {} + }, + "runtime": { + "lib/net6.0/Typin.dll": {} + } + }, + "Typin.Core/3.1.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "6.0.0" + }, + "compile": { + "lib/net6.0/Typin.Core.dll": {} + }, + "runtime": { + "lib/net6.0/Typin.Core.dll": {} + } + }, + "YamlDotNet/11.2.1": { + "type": "package", + "compile": { + "lib/netstandard2.1/YamlDotNet.dll": {} + }, + "runtime": { + "lib/netstandard2.1/YamlDotNet.dll": {} + } + }, + "Linguard.Core/2.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "Bogus": "34.0.1", + "ByteSize": "2.1.1", + "FluentValidation": "10.3.6", + "IPNetwork2": "2.5.386", + "Linguard.Log": "2.0.0", + "Microsoft.PowerShell.SDK": "7.2.1", + "System.Management.Automation": "7.2.1", + "YamlDotNet": "11.2.1" + }, + "compile": { + "bin/placeholder/Linguard.Core.dll": {} + }, + "runtime": { + "bin/placeholder/Linguard.Core.dll": {} + } + }, + "Linguard.Log/2.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "NLog": "4.7.13" + }, + "compile": { + "bin/placeholder/Linguard.Log.dll": {} + }, + "runtime": { + "bin/placeholder/Linguard.Log.dll": {} + } + } + } + }, + "libraries": { + "Bogus/34.0.1": { + "sha512": "49iq7QrD0wb7V4/FcK8p3dWdJxNUbojaqK9L6KRvdikIuRjt38EsNp7QXICcYdbYw01K8BHUdxlnTNn/YX3qDA==", + "type": "package", + "path": "bogus/34.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "bogus.34.0.1.nupkg.sha512", + "bogus.nuspec", + "lib/net40/Bogus.dll", + "lib/net40/Bogus.xml", + "lib/net6.0/Bogus.dll", + "lib/net6.0/Bogus.xml", + "lib/netstandard1.3/Bogus.dll", + "lib/netstandard1.3/Bogus.xml", + "lib/netstandard2.0/Bogus.dll", + "lib/netstandard2.0/Bogus.xml" + ] + }, + "ByteSize/2.1.1": { + "sha512": "D+Y3NpbHrW21vZwwegeWf/8iAg2Mr0s7n1su8Ysho+O9dctJ5/EkWUi19QVxc6+nZl080gGTXBP/Nz0twSI3dA==", + "type": "package", + "path": "bytesize/2.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "bytesize.2.1.1.nupkg.sha512", + "bytesize.nuspec", + "lib/net45/ByteSize.dll", + "lib/net45/ByteSize.xml", + "lib/net5.0/ByteSize.dll", + "lib/net5.0/ByteSize.xml", + "lib/netstandard1.0/ByteSize.dll", + "lib/netstandard1.0/ByteSize.xml", + "lib/netstandard2.0/ByteSize.dll", + "lib/netstandard2.0/ByteSize.xml", + "lib/netstandard2.1/ByteSize.dll", + "lib/netstandard2.1/ByteSize.xml" + ] + }, + "CommandLineParser/2.8.0": { + "sha512": "eco2HlKQBY4Joz9odHigzGpVzv6pjsXnY5lziioMveQxr+i2Z7xYcIOMeZTgYiqnMtMAbXMXsVhrNfWO5vJS8Q==", + "type": "package", + "path": "commandlineparser/2.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CommandLine20.png", + "License.md", + "README.md", + "commandlineparser.2.8.0.nupkg.sha512", + "commandlineparser.nuspec", + "lib/net40/CommandLine.dll", + "lib/net40/CommandLine.xml", + "lib/net45/CommandLine.dll", + "lib/net45/CommandLine.xml", + "lib/net461/CommandLine.dll", + "lib/net461/CommandLine.xml", + "lib/netstandard2.0/CommandLine.dll", + "lib/netstandard2.0/CommandLine.xml" + ] + }, + "FluentValidation/10.3.6": { + "sha512": "iMd370ZDx6ydm8t7bIFdRbSKX0e42lpvCtifUSbTSXOk5iKjmgl7HU0PXBhIWQAyIRi3gCwfMI9luj8H6K+byw==", + "type": "package", + "path": "fluentvalidation/10.3.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "fluent-validation-icon.png", + "fluentvalidation.10.3.6.nupkg.sha512", + "fluentvalidation.nuspec", + "lib/net5.0/FluentValidation.dll", + "lib/net5.0/FluentValidation.xml", + "lib/net6.0/FluentValidation.dll", + "lib/net6.0/FluentValidation.xml", + "lib/netstandard2.0/FluentValidation.dll", + "lib/netstandard2.0/FluentValidation.xml", + "lib/netstandard2.1/FluentValidation.dll", + "lib/netstandard2.1/FluentValidation.xml" + ] + }, + "IPNetwork2/2.5.386": { + "sha512": "6ihnNm82vyJsUYYfR2BRTziY/mQ5UGLsQZuhdSYPeTlbQLhBW/4BC9hBz3h5bFDn8PkVw9dP0cpv9brIBmk4Fw==", + "type": "package", + "path": "ipnetwork2/2.5.386", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "ipnetwork2.2.5.386.nupkg.sha512", + "ipnetwork2.nuspec", + "lib/net40/System.Net.IPNetwork.dll", + "lib/net40/System.Net.IPNetwork.xml", + "lib/net45/System.Net.IPNetwork.dll", + "lib/net45/System.Net.IPNetwork.xml", + "lib/net46/System.Net.IPNetwork.dll", + "lib/net46/System.Net.IPNetwork.xml", + "lib/net47/System.Net.IPNetwork.dll", + "lib/net47/System.Net.IPNetwork.xml", + "lib/net48/System.Net.IPNetwork.dll", + "lib/net48/System.Net.IPNetwork.xml", + "lib/net5.0/System.Net.IPNetwork.dll", + "lib/net5.0/System.Net.IPNetwork.xml", + "lib/netcoreapp3.1/System.Net.IPNetwork.dll", + "lib/netcoreapp3.1/System.Net.IPNetwork.xml", + "lib/netstandard1.6/System.Net.IPNetwork.dll", + "lib/netstandard1.6/System.Net.IPNetwork.xml", + "lib/netstandard2.0/System.Net.IPNetwork.dll", + "lib/netstandard2.0/System.Net.IPNetwork.xml", + "lib/netstandard2.1/System.Net.IPNetwork.dll", + "lib/netstandard2.1/System.Net.IPNetwork.xml" + ] + }, + "Markdig.Signed/0.22.0": { + "sha512": "7x3FqS3wk8DXyQLuflD47tBs6+ly6k4VtoDCzlDWfy7XHVsBIi7eGYEM15sPAcwSCQjOksNWE8U5r2v0Sk5FzQ==", + "type": "package", + "path": "markdig.signed/0.22.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/Markdig.Signed.dll", + "lib/net452/Markdig.Signed.xml", + "lib/netcoreapp2.1/Markdig.Signed.dll", + "lib/netcoreapp2.1/Markdig.Signed.xml", + "lib/netcoreapp3.1/Markdig.Signed.dll", + "lib/netcoreapp3.1/Markdig.Signed.xml", + "lib/netstandard2.0/Markdig.Signed.dll", + "lib/netstandard2.0/Markdig.Signed.xml", + "lib/netstandard2.1/Markdig.Signed.dll", + "lib/netstandard2.1/Markdig.Signed.xml", + "markdig.signed.0.22.0.nupkg.sha512", + "markdig.signed.nuspec" + ] + }, + "Microsoft.ApplicationInsights/2.18.0": { + "sha512": "milJB3VOCoC4EWmpE/Co9cOJ7SV6Ji6VqV4Rf5UlqL9QCg+rAX1y+3Y+j1Gu/j4IExYiPq7SEKqkP2BFnEu6Vw==", + "type": "package", + "path": "microsoft.applicationinsights/2.18.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net452/Microsoft.ApplicationInsights.dll", + "lib/net452/Microsoft.ApplicationInsights.pdb", + "lib/net452/Microsoft.ApplicationInsights.xml", + "lib/net46/Microsoft.ApplicationInsights.dll", + "lib/net46/Microsoft.ApplicationInsights.pdb", + "lib/net46/Microsoft.ApplicationInsights.xml", + "lib/netstandard2.0/Microsoft.ApplicationInsights.dll", + "lib/netstandard2.0/Microsoft.ApplicationInsights.pdb", + "lib/netstandard2.0/Microsoft.ApplicationInsights.xml", + "microsoft.applicationinsights.2.18.0.nupkg.sha512", + "microsoft.applicationinsights.nuspec" + ] + }, + "Microsoft.Bcl.AsyncInterfaces/5.0.0": { + "sha512": "W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ==", + "type": "package", + "path": "microsoft.bcl.asyncinterfaces/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", + "microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": { + "sha512": "7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==", + "type": "package", + "path": "microsoft.codeanalysis.analyzers/3.3.2", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "EULA.rtf", + "ThirdPartyNotices.rtf", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "build/Microsoft.CodeAnalysis.Analyzers.props", + "build/Microsoft.CodeAnalysis.Analyzers.targets", + "build/config/AnalysisLevel_2_9_8_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_2_9_8_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_2_9_8_Default.editorconfig", + "build/config/AnalysisLevel_3_3_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_3_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_3_Default.editorconfig", + "build/config/AnalysisLevel_3_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_Default.editorconfig", + "documentation/Analyzer Configuration.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.sarif", + "editorconfig/AllRulesDefault/.editorconfig", + "editorconfig/AllRulesDisabled/.editorconfig", + "editorconfig/AllRulesEnabled/.editorconfig", + "editorconfig/CorrectnessRulesDefault/.editorconfig", + "editorconfig/CorrectnessRulesEnabled/.editorconfig", + "editorconfig/DataflowRulesDefault/.editorconfig", + "editorconfig/DataflowRulesEnabled/.editorconfig", + "editorconfig/LibraryRulesDefault/.editorconfig", + "editorconfig/LibraryRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig", + "editorconfig/PortedFromFxCopRulesDefault/.editorconfig", + "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig", + "microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512", + "microsoft.codeanalysis.analyzers.nuspec", + "rulesets/AllRulesDefault.ruleset", + "rulesets/AllRulesDisabled.ruleset", + "rulesets/AllRulesEnabled.ruleset", + "rulesets/CorrectnessRulesDefault.ruleset", + "rulesets/CorrectnessRulesEnabled.ruleset", + "rulesets/DataflowRulesDefault.ruleset", + "rulesets/DataflowRulesEnabled.ruleset", + "rulesets/LibraryRulesDefault.ruleset", + "rulesets/LibraryRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset", + "rulesets/PortedFromFxCopRulesDefault.ruleset", + "rulesets/PortedFromFxCopRulesEnabled.ruleset", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/4.0.1": { + "sha512": "SMREwaVD5SzatlWhh9aahQAtSWdb63NcE//f+bQzgHSECU6xtDtaxk0kwV+asdFfr6HtW38UeO6jvqdfzudg3w==", + "type": "package", + "path": "microsoft.codeanalysis.common/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml", + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "microsoft.codeanalysis.common.4.0.1.nupkg.sha512", + "microsoft.codeanalysis.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/4.0.1": { + "sha512": "Q9RxxydPpUElj/x1/qykDTUGsRoKbJG8H5XUSeMGmMu54fBiuX1xyanom9caa1oQfh5JIW1BgLxobSaWs4WyHQ==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "microsoft.codeanalysis.csharp.4.0.1.nupkg.sha512", + "microsoft.codeanalysis.csharp.nuspec" + ] + }, + "Microsoft.CSharp/4.3.0": { + "sha512": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==", + "type": "package", + "path": "microsoft.csharp/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.3.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.Extensions.DependencyInjection/6.0.0": { + "sha512": "k6PWQMuoBDGGHOQTtyois2u4AwyVcIwL2LaSLlTZQm2CYcJ1pxbt6jfAnpWmzENA/wfrYRI/X9DTLoUkE4AsLw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.DependencyInjection.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging/6.0.0": { + "sha512": "eIbyj40QDg1NDz0HBW0S5f3wrLVnKWnDJ/JtZ+yJDFnDj90VoPuoPmFkeaXrtu+0cKm5GRAwoDf+dBWXK0TUdg==", + "type": "package", + "path": "microsoft.extensions.logging/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.dll", + "lib/net461/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/6.0.0": { + "sha512": "/HggWBbTwy8TgebGSX5DBZ24ndhzi93sHUBDvP1IxbZD7FDokYzdAr6+vbWGjw2XAfR2EJ1sfKUotpjHnFWPxA==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "build/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Debug/6.0.0": { + "sha512": "M9g/JixseSZATJE9tcMn9uzoD4+DbSglivFqVx8YkRJ7VVPmnvCEbOZ0AAaxsL1EKyI4cz07DXOOJExxNsUOHw==", + "type": "package", + "path": "microsoft.extensions.logging.debug/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Logging.Debug.dll", + "lib/net461/Microsoft.Extensions.Logging.Debug.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml", + "microsoft.extensions.logging.debug.6.0.0.nupkg.sha512", + "microsoft.extensions.logging.debug.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.ObjectPool/5.0.10": { + "sha512": "pp9tbGqIhdEXL6Q1yJl+zevAJSq4BsxqhS1GXzBvEsEz9DDNu9GLNzgUy2xyFc4YjB4m4Ff2YEWTnvQvVYdkvQ==", + "type": "package", + "path": "microsoft.extensions.objectpool/5.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.ObjectPool.dll", + "lib/net461/Microsoft.Extensions.ObjectPool.xml", + "lib/net5.0/Microsoft.Extensions.ObjectPool.dll", + "lib/net5.0/Microsoft.Extensions.ObjectPool.xml", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml", + "microsoft.extensions.objectpool.5.0.10.nupkg.sha512", + "microsoft.extensions.objectpool.nuspec" + ] + }, + "Microsoft.Extensions.Options/6.0.0": { + "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", + "type": "package", + "path": "microsoft.extensions.options/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.Options.dll", + "lib/net461/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.6.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", + "type": "package", + "path": "microsoft.extensions.primitives/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Extensions.Primitives.dll", + "lib/net461/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll", + "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Management.Infrastructure/2.0.0": { + "sha512": "IaKZRNBBv3sdrmBWd+aqwHq8cVHk/3WgWFAN/dt40MRY9rbtHiDfTTmaEN0tGTmQqGCGDo/ncntA8MvFMvcsRw==", + "type": "package", + "path": "microsoft.management.infrastructure/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard1.6/_._", + "microsoft.management.infrastructure.2.0.0.nupkg.sha512", + "microsoft.management.infrastructure.nuspec", + "ref/net451/Microsoft.Management.Infrastructure.Native.dll", + "ref/net451/Microsoft.Management.Infrastructure.dll", + "ref/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "ref/netstandard1.6/Microsoft.Management.Infrastructure.dll" + ] + }, + "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { + "sha512": "xe1x237SCyrjpmW1mP1T69/OOc/gtU66P8wVC+b4/u7Hz7fIO6B8P5yVQQfb79rAe1GocruIpQlX4KXTFQf09w==", + "type": "package", + "path": "microsoft.management.infrastructure.cimcmdlets/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.management.infrastructure.cimcmdlets.7.2.1.nupkg.sha512", + "microsoft.management.infrastructure.cimcmdlets.nuspec", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll" + ] + }, + "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { + "sha512": "p0lslMX5bdWLxO2P7ao+rjAMOB0LEwPYpzvdCQ2OEYgX2NxFpQ8ILvqPGnYlTAb53rT8gu5DyIol1HboHFYfxQ==", + "type": "package", + "path": "microsoft.management.infrastructure.runtime.unix/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512", + "microsoft.management.infrastructure.runtime.unix.nuspec", + "runtimes/unix/lib/net451/_._", + "runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll" + ] + }, + "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { + "sha512": "vjBWQeDOjgernkrOdbEgn7M70SF7hof7ORdKPSlL06Uc15+oYdth5dZju9KsgUoti/cwnkZTiwtDx/lRtay0sA==", + "type": "package", + "path": "microsoft.management.infrastructure.runtime.win/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512", + "microsoft.management.infrastructure.runtime.win.nuspec", + "runtimes/win-arm/lib/net451/_._", + "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win-arm/native/mi.dll", + "runtimes/win-arm/native/miutils.dll", + "runtimes/win-arm64/lib/net451/_._", + "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win-arm64/native/mi.dll", + "runtimes/win-arm64/native/miutils.dll", + "runtimes/win10-x64/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win10-x64/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win10-x64/native/mi.dll", + "runtimes/win10-x64/native/miutils.dll", + "runtimes/win10-x86/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win10-x86/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win10-x86/native/mi.dll", + "runtimes/win10-x86/native/miutils.dll", + "runtimes/win7-x64/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win7-x64/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win7-x64/native/mi.dll", + "runtimes/win7-x64/native/miutils.dll", + "runtimes/win7-x86/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win7-x86/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win7-x86/native/mi.dll", + "runtimes/win7-x86/native/miutils.dll", + "runtimes/win8-x64/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win8-x64/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win8-x64/native/mi.dll", + "runtimes/win8-x64/native/miutils.dll", + "runtimes/win8-x86/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win8-x86/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win8-x86/native/mi.dll", + "runtimes/win8-x86/native/miutils.dll", + "runtimes/win81-x64/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win81-x64/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win81-x64/native/mi.dll", + "runtimes/win81-x64/native/miutils.dll", + "runtimes/win81-x86/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win81-x86/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win81-x86/native/mi.dll", + "runtimes/win81-x86/native/miutils.dll" + ] + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "type": "package", + "path": "microsoft.netcore.platforms/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "sha512": "SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==", + "type": "package", + "path": "microsoft.netcore.windows.apisets/1.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512", + "microsoft.netcore.windows.apisets.nuspec", + "runtime.json" + ] + }, + "Microsoft.PowerShell.Commands.Diagnostics/7.2.1": { + "sha512": "Bgw4Egv7cnYUTWAy6koxg+0+/8K6rqUdlAiAxuJby9FeDPZQFfqCHQqlyP9JDa6lvbtmeBx1btFDx6Kh8bxdwQ==", + "type": "package", + "path": "microsoft.powershell.commands.diagnostics/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.powershell.commands.diagnostics.7.2.1.nupkg.sha512", + "microsoft.powershell.commands.diagnostics.nuspec", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll" + ] + }, + "Microsoft.PowerShell.Commands.Management/7.2.1": { + "sha512": "YAMrGDF2QTg6Gwz07+m1+BnmcYsPyywfY4J8nOpImfXZLLNhD7zQQP0orNHu9WPPV3/+E33qUyPj5J3ugCMk6A==", + "type": "package", + "path": "microsoft.powershell.commands.management/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.powershell.commands.management.7.2.1.nupkg.sha512", + "microsoft.powershell.commands.management.nuspec", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll", + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll" + ] + }, + "Microsoft.PowerShell.Commands.Utility/7.2.1": { + "sha512": "PU15IxUJd7nSacTstlxqJoEeGlI+BH6cUKTppkkIIxEj7EfwC5nD1qTL41xye63BFeZmOFeqAhMI6LtJUd875g==", + "type": "package", + "path": "microsoft.powershell.commands.utility/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.powershell.commands.utility.7.2.1.nupkg.sha512", + "microsoft.powershell.commands.utility.nuspec", + "ref/net6.0/Microsoft.PowerShell.Commands.Utility.dll", + "ref/net6.0/Microsoft.PowerShell.Commands.Utility.xml", + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll", + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll" + ] + }, + "Microsoft.PowerShell.ConsoleHost/7.2.1": { + "sha512": "uAPSsTmkOa7na1+OAPF87yBRwD1Ka/qXThoyrlvP9ihzMWfHM52k3MuKVEGi04VP3Wdi7U4Rzkr3svxDDmkHgA==", + "type": "package", + "path": "microsoft.powershell.consolehost/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.powershell.consolehost.7.2.1.nupkg.sha512", + "microsoft.powershell.consolehost.nuspec", + "ref/net6.0/Microsoft.PowerShell.ConsoleHost.dll", + "ref/net6.0/Microsoft.PowerShell.ConsoleHost.xml", + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll", + "runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll" + ] + }, + "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { + "sha512": "fUz7InjavqKtslkQN828nWbZLnmmJRL9rn4b3e/XXdx0BcN+65x/pSgMnehwDVGIoqUPUMXN54eDo4HRVcLA5g==", + "type": "package", + "path": "microsoft.powershell.coreclr.eventing/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.powershell.coreclr.eventing.7.2.1.nupkg.sha512", + "microsoft.powershell.coreclr.eventing.nuspec", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll" + ] + }, + "Microsoft.PowerShell.MarkdownRender/7.2.0": { + "sha512": "1vqDtdX9RCGsMWCbzp0CIxZW3slWgq8mYHDfUlUKzmkV57fMAn4m0Gy2OtsqopZzrOiVJci+QCWx5FB7BVpMlw==", + "type": "package", + "path": "microsoft.powershell.markdownrender/7.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll", + "microsoft.powershell.markdownrender.7.2.0.nupkg.sha512", + "microsoft.powershell.markdownrender.nuspec" + ] + }, + "Microsoft.PowerShell.Native/7.2.0": { + "sha512": "TauOu3bYr4DRh9HpH3+fgaL+y2GY47KLsgU6qX1NDLqHshdEaCCjiF0N5sDEgCEhSb38FwWhpdFTIQvoOcYCXQ==", + "type": "package", + "path": "microsoft.powershell.native/7.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "PSRP_version.txt", + "Powershell_black_64.png", + "microsoft.powershell.native.7.2.0.nupkg.sha512", + "microsoft.powershell.native.nuspec", + "runtimes/linux-arm/native/libpsl-native.so", + "runtimes/linux-arm64/native/libpsl-native.so", + "runtimes/linux-musl-x64/native/libpsl-native.so", + "runtimes/linux-x64/native/libmi.so", + "runtimes/linux-x64/native/libpsl-native.so", + "runtimes/linux-x64/native/libpsrpclient.so", + "runtimes/osx/native/libmi.dylib", + "runtimes/osx/native/libpsl-native.dylib", + "runtimes/osx/native/libpsrpclient.dylib", + "runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll", + "runtimes/win-arm/native/pwrshplugin.dll", + "runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll", + "runtimes/win-arm64/native/pwrshplugin.dll", + "runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll", + "runtimes/win-x64/native/pwrshplugin.dll", + "runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll", + "runtimes/win-x86/native/pwrshplugin.dll" + ] + }, + "Microsoft.PowerShell.SDK/7.2.1": { + "sha512": "UufIcywqI/22p0oqC5qg+yDoW39U2JAQyaHxy2Tr/h0hdWuFimtmhxp/FDXTxszgOdobtjcrCkSzqcoNmu/vQQ==", + "type": "package", + "path": "microsoft.powershell.sdk/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "contentFiles/any/any/ref/Microsoft.CSharp.dll", + "contentFiles/any/any/ref/Microsoft.VisualBasic.Core.dll", + "contentFiles/any/any/ref/Microsoft.VisualBasic.dll", + "contentFiles/any/any/ref/Microsoft.Win32.Primitives.dll", + "contentFiles/any/any/ref/Microsoft.Win32.Registry.dll", + "contentFiles/any/any/ref/System.AppContext.dll", + "contentFiles/any/any/ref/System.Buffers.dll", + "contentFiles/any/any/ref/System.Collections.Concurrent.dll", + "contentFiles/any/any/ref/System.Collections.Immutable.dll", + "contentFiles/any/any/ref/System.Collections.NonGeneric.dll", + "contentFiles/any/any/ref/System.Collections.Specialized.dll", + "contentFiles/any/any/ref/System.Collections.dll", + "contentFiles/any/any/ref/System.ComponentModel.Annotations.dll", + "contentFiles/any/any/ref/System.ComponentModel.DataAnnotations.dll", + "contentFiles/any/any/ref/System.ComponentModel.EventBasedAsync.dll", + "contentFiles/any/any/ref/System.ComponentModel.Primitives.dll", + "contentFiles/any/any/ref/System.ComponentModel.TypeConverter.dll", + "contentFiles/any/any/ref/System.ComponentModel.dll", + "contentFiles/any/any/ref/System.Configuration.dll", + "contentFiles/any/any/ref/System.Console.dll", + "contentFiles/any/any/ref/System.Core.dll", + "contentFiles/any/any/ref/System.Data.Common.dll", + "contentFiles/any/any/ref/System.Data.DataSetExtensions.dll", + "contentFiles/any/any/ref/System.Data.dll", + "contentFiles/any/any/ref/System.Diagnostics.Contracts.dll", + "contentFiles/any/any/ref/System.Diagnostics.Debug.dll", + "contentFiles/any/any/ref/System.Diagnostics.DiagnosticSource.dll", + "contentFiles/any/any/ref/System.Diagnostics.FileVersionInfo.dll", + "contentFiles/any/any/ref/System.Diagnostics.Process.dll", + "contentFiles/any/any/ref/System.Diagnostics.StackTrace.dll", + "contentFiles/any/any/ref/System.Diagnostics.TextWriterTraceListener.dll", + "contentFiles/any/any/ref/System.Diagnostics.Tools.dll", + "contentFiles/any/any/ref/System.Diagnostics.TraceSource.dll", + "contentFiles/any/any/ref/System.Diagnostics.Tracing.dll", + "contentFiles/any/any/ref/System.Drawing.Primitives.dll", + "contentFiles/any/any/ref/System.Drawing.dll", + "contentFiles/any/any/ref/System.Dynamic.Runtime.dll", + "contentFiles/any/any/ref/System.Formats.Asn1.dll", + "contentFiles/any/any/ref/System.Globalization.Calendars.dll", + "contentFiles/any/any/ref/System.Globalization.Extensions.dll", + "contentFiles/any/any/ref/System.Globalization.dll", + "contentFiles/any/any/ref/System.IO.Compression.Brotli.dll", + "contentFiles/any/any/ref/System.IO.Compression.FileSystem.dll", + "contentFiles/any/any/ref/System.IO.Compression.ZipFile.dll", + "contentFiles/any/any/ref/System.IO.Compression.dll", + "contentFiles/any/any/ref/System.IO.FileSystem.AccessControl.dll", + "contentFiles/any/any/ref/System.IO.FileSystem.DriveInfo.dll", + "contentFiles/any/any/ref/System.IO.FileSystem.Primitives.dll", + "contentFiles/any/any/ref/System.IO.FileSystem.Watcher.dll", + "contentFiles/any/any/ref/System.IO.FileSystem.dll", + "contentFiles/any/any/ref/System.IO.IsolatedStorage.dll", + "contentFiles/any/any/ref/System.IO.MemoryMappedFiles.dll", + "contentFiles/any/any/ref/System.IO.Pipes.AccessControl.dll", + "contentFiles/any/any/ref/System.IO.Pipes.dll", + "contentFiles/any/any/ref/System.IO.UnmanagedMemoryStream.dll", + "contentFiles/any/any/ref/System.IO.dll", + "contentFiles/any/any/ref/System.Linq.Expressions.dll", + "contentFiles/any/any/ref/System.Linq.Parallel.dll", + "contentFiles/any/any/ref/System.Linq.Queryable.dll", + "contentFiles/any/any/ref/System.Linq.dll", + "contentFiles/any/any/ref/System.Memory.dll", + "contentFiles/any/any/ref/System.Net.Http.Json.dll", + "contentFiles/any/any/ref/System.Net.Http.dll", + "contentFiles/any/any/ref/System.Net.HttpListener.dll", + "contentFiles/any/any/ref/System.Net.Mail.dll", + "contentFiles/any/any/ref/System.Net.NameResolution.dll", + "contentFiles/any/any/ref/System.Net.NetworkInformation.dll", + "contentFiles/any/any/ref/System.Net.Ping.dll", + "contentFiles/any/any/ref/System.Net.Primitives.dll", + "contentFiles/any/any/ref/System.Net.Requests.dll", + "contentFiles/any/any/ref/System.Net.Security.dll", + "contentFiles/any/any/ref/System.Net.ServicePoint.dll", + "contentFiles/any/any/ref/System.Net.Sockets.dll", + "contentFiles/any/any/ref/System.Net.WebClient.dll", + "contentFiles/any/any/ref/System.Net.WebHeaderCollection.dll", + "contentFiles/any/any/ref/System.Net.WebProxy.dll", + "contentFiles/any/any/ref/System.Net.WebSockets.Client.dll", + "contentFiles/any/any/ref/System.Net.WebSockets.dll", + "contentFiles/any/any/ref/System.Net.dll", + "contentFiles/any/any/ref/System.Numerics.Vectors.dll", + "contentFiles/any/any/ref/System.Numerics.dll", + "contentFiles/any/any/ref/System.ObjectModel.dll", + "contentFiles/any/any/ref/System.Reflection.DispatchProxy.dll", + "contentFiles/any/any/ref/System.Reflection.Emit.ILGeneration.dll", + "contentFiles/any/any/ref/System.Reflection.Emit.Lightweight.dll", + "contentFiles/any/any/ref/System.Reflection.Emit.dll", + "contentFiles/any/any/ref/System.Reflection.Extensions.dll", + "contentFiles/any/any/ref/System.Reflection.Metadata.dll", + "contentFiles/any/any/ref/System.Reflection.Primitives.dll", + "contentFiles/any/any/ref/System.Reflection.TypeExtensions.dll", + "contentFiles/any/any/ref/System.Reflection.dll", + "contentFiles/any/any/ref/System.Resources.Reader.dll", + "contentFiles/any/any/ref/System.Resources.ResourceManager.dll", + "contentFiles/any/any/ref/System.Resources.Writer.dll", + "contentFiles/any/any/ref/System.Runtime.CompilerServices.Unsafe.dll", + "contentFiles/any/any/ref/System.Runtime.CompilerServices.VisualC.dll", + "contentFiles/any/any/ref/System.Runtime.Extensions.dll", + "contentFiles/any/any/ref/System.Runtime.Handles.dll", + "contentFiles/any/any/ref/System.Runtime.InteropServices.RuntimeInformation.dll", + "contentFiles/any/any/ref/System.Runtime.InteropServices.dll", + "contentFiles/any/any/ref/System.Runtime.Intrinsics.dll", + "contentFiles/any/any/ref/System.Runtime.Loader.dll", + "contentFiles/any/any/ref/System.Runtime.Numerics.dll", + "contentFiles/any/any/ref/System.Runtime.Serialization.Formatters.dll", + "contentFiles/any/any/ref/System.Runtime.Serialization.Json.dll", + "contentFiles/any/any/ref/System.Runtime.Serialization.Primitives.dll", + "contentFiles/any/any/ref/System.Runtime.Serialization.Xml.dll", + "contentFiles/any/any/ref/System.Runtime.Serialization.dll", + "contentFiles/any/any/ref/System.Runtime.dll", + "contentFiles/any/any/ref/System.Security.AccessControl.dll", + "contentFiles/any/any/ref/System.Security.Claims.dll", + "contentFiles/any/any/ref/System.Security.Cryptography.Algorithms.dll", + "contentFiles/any/any/ref/System.Security.Cryptography.Cng.dll", + "contentFiles/any/any/ref/System.Security.Cryptography.Csp.dll", + "contentFiles/any/any/ref/System.Security.Cryptography.Encoding.dll", + "contentFiles/any/any/ref/System.Security.Cryptography.OpenSsl.dll", + "contentFiles/any/any/ref/System.Security.Cryptography.Primitives.dll", + "contentFiles/any/any/ref/System.Security.Cryptography.X509Certificates.dll", + "contentFiles/any/any/ref/System.Security.Principal.Windows.dll", + "contentFiles/any/any/ref/System.Security.Principal.dll", + "contentFiles/any/any/ref/System.Security.SecureString.dll", + "contentFiles/any/any/ref/System.Security.dll", + "contentFiles/any/any/ref/System.ServiceModel.Web.dll", + "contentFiles/any/any/ref/System.ServiceProcess.dll", + "contentFiles/any/any/ref/System.Text.Encoding.CodePages.dll", + "contentFiles/any/any/ref/System.Text.Encoding.Extensions.dll", + "contentFiles/any/any/ref/System.Text.Encoding.dll", + "contentFiles/any/any/ref/System.Text.Encodings.Web.dll", + "contentFiles/any/any/ref/System.Text.Json.dll", + "contentFiles/any/any/ref/System.Text.RegularExpressions.dll", + "contentFiles/any/any/ref/System.Threading.Channels.dll", + "contentFiles/any/any/ref/System.Threading.Overlapped.dll", + "contentFiles/any/any/ref/System.Threading.Tasks.Dataflow.dll", + "contentFiles/any/any/ref/System.Threading.Tasks.Extensions.dll", + "contentFiles/any/any/ref/System.Threading.Tasks.Parallel.dll", + "contentFiles/any/any/ref/System.Threading.Tasks.dll", + "contentFiles/any/any/ref/System.Threading.Thread.dll", + "contentFiles/any/any/ref/System.Threading.ThreadPool.dll", + "contentFiles/any/any/ref/System.Threading.Timer.dll", + "contentFiles/any/any/ref/System.Threading.dll", + "contentFiles/any/any/ref/System.Transactions.Local.dll", + "contentFiles/any/any/ref/System.Transactions.dll", + "contentFiles/any/any/ref/System.ValueTuple.dll", + "contentFiles/any/any/ref/System.Web.HttpUtility.dll", + "contentFiles/any/any/ref/System.Web.dll", + "contentFiles/any/any/ref/System.Windows.dll", + "contentFiles/any/any/ref/System.Xml.Linq.dll", + "contentFiles/any/any/ref/System.Xml.ReaderWriter.dll", + "contentFiles/any/any/ref/System.Xml.Serialization.dll", + "contentFiles/any/any/ref/System.Xml.XDocument.dll", + "contentFiles/any/any/ref/System.Xml.XPath.XDocument.dll", + "contentFiles/any/any/ref/System.Xml.XPath.dll", + "contentFiles/any/any/ref/System.Xml.XmlDocument.dll", + "contentFiles/any/any/ref/System.Xml.XmlSerializer.dll", + "contentFiles/any/any/ref/System.Xml.dll", + "contentFiles/any/any/ref/System.dll", + "contentFiles/any/any/ref/WindowsBase.dll", + "contentFiles/any/any/ref/mscorlib.dll", + "contentFiles/any/any/ref/netstandard.dll", + "contentFiles/any/any/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1", + "contentFiles/any/any/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1", + "contentFiles/any/any/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1", + "contentFiles/any/any/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/CimCmdlets/CimCmdlets.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psm1", + "microsoft.powershell.sdk.7.2.1.nupkg.sha512", + "microsoft.powershell.sdk.nuspec", + "ref/net6.0/Microsoft.PowerShell.Commands.Utility.dll", + "ref/net6.0/Microsoft.PowerShell.Commands.Utility.xml", + "ref/net6.0/Microsoft.PowerShell.ConsoleHost.dll", + "ref/net6.0/Microsoft.PowerShell.ConsoleHost.xml", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll", + "runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll" + ] + }, + "Microsoft.PowerShell.Security/7.2.1": { + "sha512": "GV3RuuOmXHAaEjeBcyixdzUIAQvHW6xgoWwafzTe97DbhI+N1sg4fa/FQ9pd8lqG+kkWxGwTy1VgudXX6rhUkg==", + "type": "package", + "path": "microsoft.powershell.security/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.powershell.security.7.2.1.nupkg.sha512", + "microsoft.powershell.security.nuspec", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll", + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll" + ] + }, + "Microsoft.Win32.Registry/4.7.0": { + "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "type": "package", + "path": "microsoft.win32.registry/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.4.7.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/net472/Microsoft.Win32.Registry.dll", + "ref/net472/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.Registry.AccessControl/6.0.0": { + "sha512": "UoE+eeuBKL+GFHxHV3FjHlY5K8Wr/IR7Ee/a2oDNqFodF1iMqyt5hIs0U9Z217AbWrHrNle4750kD03hv1IMZw==", + "type": "package", + "path": "microsoft.win32.registry.accesscontrol/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.Registry.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Win32.Registry.AccessControl.dll", + "lib/net461/Microsoft.Win32.Registry.AccessControl.xml", + "lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll", + "lib/net6.0/Microsoft.Win32.Registry.AccessControl.xml", + "lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.xml", + "microsoft.win32.registry.accesscontrol.6.0.0.nupkg.sha512", + "microsoft.win32.registry.accesscontrol.nuspec", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.AccessControl.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.AccessControl.xml", + "runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.xml", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "type": "package", + "path": "microsoft.win32.systemevents/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Windows.Compatibility/6.0.0": { + "sha512": "9esuK5JqnjkDgO9/AHesyJSG0aKwpfLVzTw6nIGYhqE91VLxZyv3HKulNoPVy/NOuyAaf1kE4FKtdZDzdd/SLw==", + "type": "package", + "path": "microsoft.windows.compatibility/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Windows.Compatibility.targets", + "buildTransitive/netcoreapp3.1/_._", + "microsoft.windows.compatibility.6.0.0.nupkg.sha512", + "microsoft.windows.compatibility.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.WSMan.Management/7.2.1": { + "sha512": "vMOJMof4eLql180G4PmTurN8h8+VmPaf1l/Tqq+GI7HYyNv140iY3/Z18MiZA4dRG14qghLNo5JxtTolY7b4og==", + "type": "package", + "path": "microsoft.wsman.management/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.wsman.management.7.2.1.nupkg.sha512", + "microsoft.wsman.management.nuspec", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll" + ] + }, + "Microsoft.WSMan.Runtime/7.2.1": { + "sha512": "v14vzUXIg7opXoQI8Eb82dvsRwBNylZ44lvyXOBSRCiVfvMhyTqE8bpPWbwwmQ5JZRnG/dP5/aOYuu9l163fyQ==", + "type": "package", + "path": "microsoft.wsman.runtime/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.wsman.runtime.7.2.1.nupkg.sha512", + "microsoft.wsman.runtime.nuspec", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll" + ] + }, + "Namotion.Reflection/2.0.3": { + "sha512": "tZCe/UrSBAMW8A4TjD/SlpRHaWjnHlSWdyRuOXhf3yrE0OX+4fXg0uzj7mwFDclXznfCGRAZbP+akPt4G/mclw==", + "type": "package", + "path": "namotion.reflection/2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net40/Namotion.Reflection.dll", + "lib/net40/Namotion.Reflection.xml", + "lib/net45/Namotion.Reflection.dll", + "lib/net45/Namotion.Reflection.xml", + "lib/netstandard1.0/Namotion.Reflection.dll", + "lib/netstandard1.0/Namotion.Reflection.xml", + "lib/netstandard2.0/Namotion.Reflection.dll", + "lib/netstandard2.0/Namotion.Reflection.xml", + "namotion.reflection.2.0.3.nupkg.sha512", + "namotion.reflection.nuspec" + ] + }, + "Newtonsoft.Json/13.0.1": { + "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "type": "package", + "path": "newtonsoft.json/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "NJsonSchema/10.5.2": { + "sha512": "Vr2CbySuXh74TQFU0rGJYZOS492xOE64cPXdB7a0cfXJb/N45Bf4v7sd4LOla0jNhgc5V/B61Ko3qecriL195w==", + "type": "package", + "path": "njsonschema/10.5.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "NuGetIcon.png", + "lib/net40/NJsonSchema.dll", + "lib/net40/NJsonSchema.xml", + "lib/net45/NJsonSchema.dll", + "lib/net45/NJsonSchema.xml", + "lib/netstandard1.0/NJsonSchema.dll", + "lib/netstandard1.0/NJsonSchema.xml", + "lib/netstandard2.0/NJsonSchema.dll", + "lib/netstandard2.0/NJsonSchema.xml", + "njsonschema.10.5.2.nupkg.sha512", + "njsonschema.nuspec" + ] + }, + "NLog/4.7.13": { + "sha512": "AvoGpCuq36B+0wY313XA6gC+YeMvk24rqF8P+HS9fInBGOjCzPjpXp2ln9ATZjPOJtXgHfc8zNmTjyswFGLxvg==", + "type": "package", + "path": "nlog/4.7.13", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/monoandroid44/NLog.dll", + "lib/monoandroid44/NLog.xml", + "lib/net35/NLog.dll", + "lib/net35/NLog.xml", + "lib/net40-client/NLog.dll", + "lib/net40-client/NLog.xml", + "lib/net45/NLog.dll", + "lib/net45/NLog.xml", + "lib/netstandard1.3/NLog.dll", + "lib/netstandard1.3/NLog.xml", + "lib/netstandard1.5/NLog.dll", + "lib/netstandard1.5/NLog.xml", + "lib/netstandard2.0/NLog.dll", + "lib/netstandard2.0/NLog.xml", + "lib/sl4/NLog.dll", + "lib/sl4/NLog.xml", + "lib/sl5/NLog.dll", + "lib/sl5/NLog.xml", + "lib/wp8/NLog.dll", + "lib/wp8/NLog.xml", + "lib/xamarinios10/NLog.dll", + "lib/xamarinios10/NLog.xml", + "nlog.4.7.13.nupkg.sha512", + "nlog.nuspec" + ] + }, + "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { + "sha512": "75q52H7CSpgIoIDwXb9o833EvBZIXJ0mdPhz1E6jSisEXUBlSCPalC29cj3EXsjpuDwr0dj1LRXZepIQH/oL4Q==", + "type": "package", + "path": "runtime.linux-arm.runtime.native.system.io.ports/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.linux-arm.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "runtime.linux-arm.runtime.native.system.io.ports.nuspec", + "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so", + "useSharedDesignerContext.txt" + ] + }, + "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": { + "sha512": "xn2bMThmXr3CsvOYmS8ex2Yz1xo+kcnhVg2iVhS9PlmqjZPAkrEo/I40wjrBZH/tU4kvH0s1AE8opAvQ3KIS8g==", + "type": "package", + "path": "runtime.linux-arm64.runtime.native.system.io.ports/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.linux-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "runtime.linux-arm64.runtime.native.system.io.ports.nuspec", + "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so", + "useSharedDesignerContext.txt" + ] + }, + "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": { + "sha512": "16nbNXwv0sC+gLGIuecri0skjuh6R1maIJggsaNP7MQBcbVcEfWFUOkEnsnvoLEjy0XerfibuRptfQ8AmdIcWA==", + "type": "package", + "path": "runtime.linux-x64.runtime.native.system.io.ports/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.linux-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "runtime.linux-x64.runtime.native.system.io.ports.nuspec", + "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so", + "useSharedDesignerContext.txt" + ] + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "sha512": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", + "type": "package", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", + "runtime.native.system.data.sqlclient.sni.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.native.System.IO.Ports/6.0.0": { + "sha512": "KaaXlpOcuZjMdmyF5wzzx3b+PRKIzt6A5Ax9dKenPDQbVJAFpev+casD0BIig1pBcbs3zx7CqWemzUJKAeHdSQ==", + "type": "package", + "path": "runtime.native.system.io.ports/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "runtime.native.system.io.ports.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": { + "sha512": "fXG12NodG1QrCdoaeSQ1gVnk/koi4WYY4jZtarMkZeQMyReBm1nZlSRoPnUjLr2ZR36TiMjpcGnQfxymieUe7w==", + "type": "package", + "path": "runtime.osx-arm64.runtime.native.system.io.ports/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.osx-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "runtime.osx-arm64.runtime.native.system.io.ports.nuspec", + "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib", + "useSharedDesignerContext.txt" + ] + }, + "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { + "sha512": "/As+zPY49+dSUXkh+fTUbyPhqrdGN//evLxo4Vue88pfh1BHZgF7q4kMblTkxYvwR6Vi03zSYxysSFktO8/SDQ==", + "type": "package", + "path": "runtime.osx-x64.runtime.native.system.io.ports/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.osx-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "runtime.osx-x64.runtime.native.system.io.ports.nuspec", + "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib", + "useSharedDesignerContext.txt" + ] + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "type": "package", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-arm64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "type": "package", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "type": "package", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x86/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.CodeDom/6.0.0": { + "sha512": "CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "type": "package", + "path": "system.codedom/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.CodeDom.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.CodeDom.dll", + "lib/net461/System.CodeDom.xml", + "lib/net6.0/System.CodeDom.dll", + "lib/net6.0/System.CodeDom.xml", + "lib/netstandard2.0/System.CodeDom.dll", + "lib/netstandard2.0/System.CodeDom.xml", + "system.codedom.6.0.0.nupkg.sha512", + "system.codedom.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Immutable/5.0.0": { + "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", + "type": "package", + "path": "system.collections.immutable/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Collections.Immutable.dll", + "lib/net461/System.Collections.Immutable.xml", + "lib/netstandard1.0/System.Collections.Immutable.dll", + "lib/netstandard1.0/System.Collections.Immutable.xml", + "lib/netstandard1.3/System.Collections.Immutable.dll", + "lib/netstandard1.3/System.Collections.Immutable.xml", + "lib/netstandard2.0/System.Collections.Immutable.dll", + "lib/netstandard2.0/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "system.collections.immutable.5.0.0.nupkg.sha512", + "system.collections.immutable.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ComponentModel.Composition/6.0.0": { + "sha512": "60Qv+F7oxomOjJeTDA5Z4iCyFbQ0B/2Mi5HT+13pxxq0lVnu2ipbWMzFB+RWKr3wWKA8BSncXr9PH/fECwMX5Q==", + "type": "package", + "path": "system.componentmodel.composition/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.ComponentModel.Composition.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.ComponentModel.Composition.dll", + "lib/net6.0/System.ComponentModel.Composition.xml", + "lib/netcoreapp3.1/System.ComponentModel.Composition.dll", + "lib/netcoreapp3.1/System.ComponentModel.Composition.xml", + "lib/netstandard2.0/System.ComponentModel.Composition.dll", + "lib/netstandard2.0/System.ComponentModel.Composition.xml", + "system.componentmodel.composition.6.0.0.nupkg.sha512", + "system.componentmodel.composition.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.ComponentModel.Composition.Registration/6.0.0": { + "sha512": "+i3RLlOgTsf15VeADBPpzPyRiXq71aLSuzdHeNtmq9f6BwpF3OWhB76p0WDUNCa3Z+SLD4dJbBM9yAep7kQCGA==", + "type": "package", + "path": "system.componentmodel.composition.registration/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.ComponentModel.Composition.Registration.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.ComponentModel.Composition.Registration.dll", + "lib/net6.0/System.ComponentModel.Composition.Registration.xml", + "lib/netstandard2.1/System.ComponentModel.Composition.Registration.dll", + "lib/netstandard2.1/System.ComponentModel.Composition.Registration.xml", + "system.componentmodel.composition.registration.6.0.0.nupkg.sha512", + "system.componentmodel.composition.registration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Configuration.ConfigurationManager/6.0.0": { + "sha512": "7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", + "type": "package", + "path": "system.configuration.configurationmanager/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/net461/System.Configuration.ConfigurationManager.xml", + "lib/net6.0/System.Configuration.ConfigurationManager.dll", + "lib/net6.0/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll", + "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.6.0.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Data.Odbc/6.0.0": { + "sha512": "pnZjwe0Qwr1Rnp7NExd5zz4YwXJrYuAbWNKjEQpTzCEg6f/L5DYJS7w3hG3vgSj1t/r79UL390YzXIklf1VuQQ==", + "type": "package", + "path": "system.data.odbc/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Data.Odbc.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Data.Odbc.dll", + "lib/net461/System.Data.Odbc.xml", + "lib/net6.0/System.Data.Odbc.dll", + "lib/net6.0/System.Data.Odbc.xml", + "lib/netcoreapp3.1/System.Data.Odbc.dll", + "lib/netcoreapp3.1/System.Data.Odbc.xml", + "lib/netstandard2.0/System.Data.Odbc.dll", + "lib/netstandard2.0/System.Data.Odbc.xml", + "runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll", + "runtimes/freebsd/lib/net6.0/System.Data.Odbc.xml", + "runtimes/freebsd/lib/netcoreapp3.1/System.Data.Odbc.dll", + "runtimes/freebsd/lib/netcoreapp3.1/System.Data.Odbc.xml", + "runtimes/illumos/lib/net6.0/System.Data.Odbc.dll", + "runtimes/illumos/lib/net6.0/System.Data.Odbc.xml", + "runtimes/ios/lib/net6.0/System.Data.Odbc.dll", + "runtimes/ios/lib/net6.0/System.Data.Odbc.xml", + "runtimes/linux/lib/net6.0/System.Data.Odbc.dll", + "runtimes/linux/lib/net6.0/System.Data.Odbc.xml", + "runtimes/linux/lib/netcoreapp3.1/System.Data.Odbc.dll", + "runtimes/linux/lib/netcoreapp3.1/System.Data.Odbc.xml", + "runtimes/osx/lib/net6.0/System.Data.Odbc.dll", + "runtimes/osx/lib/net6.0/System.Data.Odbc.xml", + "runtimes/osx/lib/netcoreapp3.1/System.Data.Odbc.dll", + "runtimes/osx/lib/netcoreapp3.1/System.Data.Odbc.xml", + "runtimes/solaris/lib/net6.0/System.Data.Odbc.dll", + "runtimes/solaris/lib/net6.0/System.Data.Odbc.xml", + "runtimes/tvos/lib/net6.0/System.Data.Odbc.dll", + "runtimes/tvos/lib/net6.0/System.Data.Odbc.xml", + "runtimes/win/lib/net461/System.Data.Odbc.dll", + "runtimes/win/lib/net461/System.Data.Odbc.xml", + "runtimes/win/lib/net6.0/System.Data.Odbc.dll", + "runtimes/win/lib/net6.0/System.Data.Odbc.xml", + "runtimes/win/lib/netcoreapp3.1/System.Data.Odbc.dll", + "runtimes/win/lib/netcoreapp3.1/System.Data.Odbc.xml", + "system.data.odbc.6.0.0.nupkg.sha512", + "system.data.odbc.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Data.OleDb/6.0.0": { + "sha512": "LQ8PjTIF1LtrrlGiyiTVjAkQtTWKm9GSNnygIlWjhN9y88s7xhy6DUNDDkmQQ9f6ex7mA4k0Tl97lz/CklaiLg==", + "type": "package", + "path": "system.data.oledb/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Data.OleDb.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Data.OleDb.dll", + "lib/net461/System.Data.OleDb.xml", + "lib/net6.0/System.Data.OleDb.dll", + "lib/net6.0/System.Data.OleDb.xml", + "lib/netstandard2.0/System.Data.OleDb.dll", + "lib/netstandard2.0/System.Data.OleDb.xml", + "runtimes/win/lib/net461/System.Data.OleDb.dll", + "runtimes/win/lib/net461/System.Data.OleDb.xml", + "runtimes/win/lib/net6.0/System.Data.OleDb.dll", + "runtimes/win/lib/net6.0/System.Data.OleDb.xml", + "runtimes/win/lib/netstandard2.0/System.Data.OleDb.dll", + "runtimes/win/lib/netstandard2.0/System.Data.OleDb.xml", + "system.data.oledb.6.0.0.nupkg.sha512", + "system.data.oledb.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Data.SqlClient/4.8.3": { + "sha512": "yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==", + "type": "package", + "path": "system.data.sqlclient/4.8.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/System.Data.SqlClient.dll", + "lib/net46/System.Data.SqlClient.dll", + "lib/net461/System.Data.SqlClient.dll", + "lib/net461/System.Data.SqlClient.xml", + "lib/netcoreapp2.1/System.Data.SqlClient.dll", + "lib/netcoreapp2.1/System.Data.SqlClient.xml", + "lib/netstandard1.2/System.Data.SqlClient.dll", + "lib/netstandard1.2/System.Data.SqlClient.xml", + "lib/netstandard1.3/System.Data.SqlClient.dll", + "lib/netstandard1.3/System.Data.SqlClient.xml", + "lib/netstandard2.0/System.Data.SqlClient.dll", + "lib/netstandard2.0/System.Data.SqlClient.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/System.Data.SqlClient.dll", + "ref/net46/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.xml", + "ref/netcoreapp2.1/System.Data.SqlClient.dll", + "ref/netcoreapp2.1/System.Data.SqlClient.xml", + "ref/netstandard1.2/System.Data.SqlClient.dll", + "ref/netstandard1.2/System.Data.SqlClient.xml", + "ref/netstandard1.2/de/System.Data.SqlClient.xml", + "ref/netstandard1.2/es/System.Data.SqlClient.xml", + "ref/netstandard1.2/fr/System.Data.SqlClient.xml", + "ref/netstandard1.2/it/System.Data.SqlClient.xml", + "ref/netstandard1.2/ja/System.Data.SqlClient.xml", + "ref/netstandard1.2/ko/System.Data.SqlClient.xml", + "ref/netstandard1.2/ru/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard1.3/System.Data.SqlClient.dll", + "ref/netstandard1.3/System.Data.SqlClient.xml", + "ref/netstandard1.3/de/System.Data.SqlClient.xml", + "ref/netstandard1.3/es/System.Data.SqlClient.xml", + "ref/netstandard1.3/fr/System.Data.SqlClient.xml", + "ref/netstandard1.3/it/System.Data.SqlClient.xml", + "ref/netstandard1.3/ja/System.Data.SqlClient.xml", + "ref/netstandard1.3/ko/System.Data.SqlClient.xml", + "ref/netstandard1.3/ru/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard2.0/System.Data.SqlClient.dll", + "ref/netstandard2.0/System.Data.SqlClient.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.xml", + "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml", + "runtimes/win/lib/net451/System.Data.SqlClient.dll", + "runtimes/win/lib/net46/System.Data.SqlClient.dll", + "runtimes/win/lib/net461/System.Data.SqlClient.dll", + "runtimes/win/lib/net461/System.Data.SqlClient.xml", + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll", + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml", + "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml", + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll", + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml", + "system.data.sqlclient.4.8.3.nupkg.sha512", + "system.data.sqlclient.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "sha512": "frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.DiagnosticSource.dll", + "lib/net461/System.Diagnostics.DiagnosticSource.xml", + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.EventLog/6.0.0": { + "sha512": "lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "type": "package", + "path": "system.diagnostics.eventlog/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.EventLog.dll", + "lib/net461/System.Diagnostics.EventLog.xml", + "lib/net6.0/System.Diagnostics.EventLog.dll", + "lib/net6.0/System.Diagnostics.EventLog.xml", + "lib/netcoreapp3.1/System.Diagnostics.EventLog.dll", + "lib/netcoreapp3.1/System.Diagnostics.EventLog.xml", + "lib/netstandard2.0/System.Diagnostics.EventLog.dll", + "lib/netstandard2.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.6.0.0.nupkg.sha512", + "system.diagnostics.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.PerformanceCounter/6.0.0": { + "sha512": "gbeE5tNp/oB7O8kTTLh3wPPJCxpNOphXPTWVs1BsYuFOYapFijWuh0LYw1qnDo4gwDUYPXOmpTIhvtxisGsYOQ==", + "type": "package", + "path": "system.diagnostics.performancecounter/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.PerformanceCounter.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.PerformanceCounter.dll", + "lib/net461/System.Diagnostics.PerformanceCounter.xml", + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll", + "lib/net6.0/System.Diagnostics.PerformanceCounter.xml", + "lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.dll", + "lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.xml", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.xml", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.dll", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.xml", + "system.diagnostics.performancecounter.6.0.0.nupkg.sha512", + "system.diagnostics.performancecounter.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.DirectoryServices/6.0.0": { + "sha512": "kp/Op0nxDVGlElDKh8TsXO0GKXftQgAB6sJk0wUetZK1Rr0Pbd86Tn7AllLLlROFZa4BTl/LVHakljtGELFzCg==", + "type": "package", + "path": "system.directoryservices/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.DirectoryServices.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.DirectoryServices.dll", + "lib/net6.0/System.DirectoryServices.xml", + "lib/netcoreapp3.1/System.DirectoryServices.dll", + "lib/netcoreapp3.1/System.DirectoryServices.xml", + "lib/netstandard2.0/System.DirectoryServices.dll", + "lib/netstandard2.0/System.DirectoryServices.xml", + "runtimes/win/lib/net6.0/System.DirectoryServices.dll", + "runtimes/win/lib/net6.0/System.DirectoryServices.xml", + "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.dll", + "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.xml", + "system.directoryservices.6.0.0.nupkg.sha512", + "system.directoryservices.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.DirectoryServices.AccountManagement/6.0.0": { + "sha512": "2iKkY6VC4WX6H13N8WhH2SRUfWCwg2KZR5w9JIS9cw9N8cZhT7VXxHX0L6OX6Po419aSu2LWrJE9tu6b+cUnPA==", + "type": "package", + "path": "system.directoryservices.accountmanagement/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.DirectoryServices.AccountManagement.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.DirectoryServices.AccountManagement.dll", + "lib/net6.0/System.DirectoryServices.AccountManagement.xml", + "lib/netcoreapp3.1/System.DirectoryServices.AccountManagement.dll", + "lib/netcoreapp3.1/System.DirectoryServices.AccountManagement.xml", + "lib/netstandard2.0/System.DirectoryServices.AccountManagement.dll", + "lib/netstandard2.0/System.DirectoryServices.AccountManagement.xml", + "runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll", + "runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.xml", + "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.AccountManagement.dll", + "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.AccountManagement.xml", + "system.directoryservices.accountmanagement.6.0.0.nupkg.sha512", + "system.directoryservices.accountmanagement.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.DirectoryServices.Protocols/6.0.0": { + "sha512": "++WKU7HQPo/FJdhywWw+q2lLjcVAGVw5XLH9kRCV+4DvkhVAcHCksh0ezIqwNROmaU9LMJN0d/LAdeWXu3pi6Q==", + "type": "package", + "path": "system.directoryservices.protocols/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.DirectoryServices.Protocols.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.DirectoryServices.Protocols.dll", + "lib/net6.0/System.DirectoryServices.Protocols.xml", + "lib/netcoreapp3.1/System.DirectoryServices.Protocols.dll", + "lib/netcoreapp3.1/System.DirectoryServices.Protocols.xml", + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll", + "lib/netstandard2.0/System.DirectoryServices.Protocols.xml", + "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll", + "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.xml", + "runtimes/linux/lib/netcoreapp3.1/System.DirectoryServices.Protocols.dll", + "runtimes/linux/lib/netcoreapp3.1/System.DirectoryServices.Protocols.xml", + "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll", + "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.xml", + "runtimes/osx/lib/netcoreapp3.1/System.DirectoryServices.Protocols.dll", + "runtimes/osx/lib/netcoreapp3.1/System.DirectoryServices.Protocols.xml", + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll", + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.xml", + "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.Protocols.dll", + "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.Protocols.xml", + "system.directoryservices.protocols.6.0.0.nupkg.sha512", + "system.directoryservices.protocols.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Drawing.Common/6.0.0": { + "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "type": "package", + "path": "system.drawing.common/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/net461/System.Drawing.Common.xml", + "lib/net6.0/System.Drawing.Common.dll", + "lib/net6.0/System.Drawing.Common.xml", + "lib/netcoreapp3.1/System.Drawing.Common.dll", + "lib/netcoreapp3.1/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll", + "runtimes/unix/lib/net6.0/System.Drawing.Common.xml", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml", + "runtimes/win/lib/net6.0/System.Drawing.Common.dll", + "runtimes/win/lib/net6.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml", + "system.drawing.common.6.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Dynamic.Runtime/4.3.0": { + "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", + "type": "package", + "path": "system.dynamic.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/netstandard1.3/System.Dynamic.Runtime.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/System.Dynamic.Runtime.dll", + "ref/netstandard1.0/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/System.Dynamic.Runtime.dll", + "ref/netstandard1.3/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", + "system.dynamic.runtime.4.3.0.nupkg.sha512", + "system.dynamic.runtime.nuspec" + ] + }, + "System.Formats.Asn1/6.0.0": { + "sha512": "T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA==", + "type": "package", + "path": "system.formats.asn1/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Formats.Asn1.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Formats.Asn1.dll", + "lib/net461/System.Formats.Asn1.xml", + "lib/net6.0/System.Formats.Asn1.dll", + "lib/net6.0/System.Formats.Asn1.xml", + "lib/netstandard2.0/System.Formats.Asn1.dll", + "lib/netstandard2.0/System.Formats.Asn1.xml", + "system.formats.asn1.6.0.0.nupkg.sha512", + "system.formats.asn1.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.Packaging/6.0.0": { + "sha512": "C7OkTRIjqIjAKu6ef/fuj8ynCZTPcTYZnvHaq48bniACgXXJogmEoIc56YCDNTc14xhsbLmgpS3KP+evbsUa2g==", + "type": "package", + "path": "system.io.packaging/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.IO.Packaging.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.IO.Packaging.dll", + "lib/net461/System.IO.Packaging.xml", + "lib/net6.0/System.IO.Packaging.dll", + "lib/net6.0/System.IO.Packaging.xml", + "lib/netstandard2.0/System.IO.Packaging.dll", + "lib/netstandard2.0/System.IO.Packaging.xml", + "system.io.packaging.6.0.0.nupkg.sha512", + "system.io.packaging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.IO.Ports/6.0.0": { + "sha512": "dRyGI7fUESar5ZLIpiBOaaNLW7YyOBGftjj5Of+xcduC/Rjl7RjhEnWDvvNBmHuF3d0tdXoqdVI/yrVA8f00XA==", + "type": "package", + "path": "system.io.ports/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.IO.Ports.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.IO.Ports.dll", + "lib/net461/System.IO.Ports.xml", + "lib/net6.0/System.IO.Ports.dll", + "lib/net6.0/System.IO.Ports.xml", + "lib/netstandard2.0/System.IO.Ports.dll", + "lib/netstandard2.0/System.IO.Ports.xml", + "runtimes/unix/lib/net6.0/System.IO.Ports.dll", + "runtimes/unix/lib/net6.0/System.IO.Ports.xml", + "runtimes/unix/lib/netstandard2.0/System.IO.Ports.dll", + "runtimes/unix/lib/netstandard2.0/System.IO.Ports.xml", + "runtimes/win/lib/net461/System.IO.Ports.dll", + "runtimes/win/lib/net461/System.IO.Ports.xml", + "runtimes/win/lib/net6.0/System.IO.Ports.dll", + "runtimes/win/lib/net6.0/System.IO.Ports.xml", + "runtimes/win/lib/netstandard2.0/System.IO.Ports.dll", + "runtimes/win/lib/netstandard2.0/System.IO.Ports.xml", + "system.io.ports.6.0.0.nupkg.sha512", + "system.io.ports.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Expressions/4.3.0": { + "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "type": "package", + "path": "system.linq.expressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.3.0.nupkg.sha512", + "system.linq.expressions.nuspec" + ] + }, + "System.Management/6.0.0": { + "sha512": "sHsESYMmPDhQuOC66h6AEOs/XowzKsbT9srMbX71TCXP58hkpn1BqBjdmKj1+DCA/WlBETX1K5WjQHwmV0Txrg==", + "type": "package", + "path": "system.management/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Management.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.Management.dll", + "lib/net6.0/System.Management.xml", + "lib/netcoreapp3.1/System.Management.dll", + "lib/netcoreapp3.1/System.Management.xml", + "lib/netstandard2.0/System.Management.dll", + "lib/netstandard2.0/System.Management.xml", + "runtimes/win/lib/net6.0/System.Management.dll", + "runtimes/win/lib/net6.0/System.Management.xml", + "runtimes/win/lib/netcoreapp3.1/System.Management.dll", + "runtimes/win/lib/netcoreapp3.1/System.Management.xml", + "system.management.6.0.0.nupkg.sha512", + "system.management.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Management.Automation/7.2.1": { + "sha512": "YlTE+q14vQ1YU//A5+/Jwl5+L5r6uOVIWuB4D/T9r80AaCeUAZMMvTKjgvIr9lwkovwQflVL+1JfBAi9f0q0KA==", + "type": "package", + "path": "system.management.automation/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/unix/lib/net6.0/System.Management.Automation.dll", + "runtimes/win/lib/net6.0/System.Management.Automation.dll", + "system.management.automation.7.2.1.nupkg.sha512", + "system.management.automation.nuspec" + ] + }, + "System.Memory/4.5.4": { + "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "type": "package", + "path": "system.memory/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/System.Memory.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.4.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Http.WinHttpHandler/6.0.0": { + "sha512": "jubNN9jH4NzVrvEf4fGwESLBsfH8whWNbHMhgM6IwA8UCt6+/M19bbOHc21JhigvC2HQKCl8HKGZMcBtIpzqIg==", + "type": "package", + "path": "system.net.http.winhttphandler/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Net.Http.WinHttpHandler.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Net.Http.WinHttpHandler.dll", + "lib/net461/System.Net.Http.WinHttpHandler.xml", + "lib/net6.0/System.Net.Http.WinHttpHandler.dll", + "lib/net6.0/System.Net.Http.WinHttpHandler.xml", + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll", + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.xml", + "lib/netstandard2.1/System.Net.Http.WinHttpHandler.dll", + "lib/netstandard2.1/System.Net.Http.WinHttpHandler.xml", + "runtimes/win/lib/net461/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/net461/System.Net.Http.WinHttpHandler.xml", + "runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.xml", + "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.xml", + "runtimes/win/lib/netstandard2.1/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/netstandard2.1/System.Net.Http.WinHttpHandler.xml", + "system.net.http.winhttphandler.6.0.0.nupkg.sha512", + "system.net.http.winhttphandler.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Numerics.Vectors/4.5.0": { + "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "type": "package", + "path": "system.numerics.vectors/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Numerics.Vectors.dll", + "lib/net46/System.Numerics.Vectors.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.Numerics.Vectors.dll", + "lib/netstandard1.0/System.Numerics.Vectors.xml", + "lib/netstandard2.0/System.Numerics.Vectors.dll", + "lib/netstandard2.0/System.Numerics.Vectors.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.Numerics.Vectors.dll", + "ref/net45/System.Numerics.Vectors.xml", + "ref/net46/System.Numerics.Vectors.dll", + "ref/net46/System.Numerics.Vectors.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/System.Numerics.Vectors.dll", + "ref/netstandard1.0/System.Numerics.Vectors.xml", + "ref/netstandard2.0/System.Numerics.Vectors.dll", + "ref/netstandard2.0/System.Numerics.Vectors.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.numerics.vectors.4.5.0.nupkg.sha512", + "system.numerics.vectors.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ObjectModel/4.3.0": { + "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "type": "package", + "path": "system.objectmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.3.0.nupkg.sha512", + "system.objectmodel.nuspec" + ] + }, + "System.Private.ServiceModel/4.9.0": { + "sha512": "d3RjkrtpjUQ63PzFmm/SZ4aOXeJNP+8YW5QeP0lCJy8iX4xlHdlNLWTF9sRn9SmrFTK757kQXT9Op/R4l858uw==", + "type": "package", + "path": "system.private.servicemodel/4.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard2.0/System.Private.ServiceModel.dll", + "lib/netstandard2.0/System.Private.ServiceModel.pdb", + "lib/netstandard2.0/cs/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/de/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/es/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/fr/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/it/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/ja/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/ko/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/pl/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/pt-BR/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/ru/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/tr/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/zh-Hans/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/zh-Hant/System.Private.ServiceModel.resources.dll", + "ref/netstandard2.0/_._", + "system.private.servicemodel.4.9.0.nupkg.sha512", + "system.private.servicemodel.nuspec" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Context/6.0.0": { + "sha512": "Vi+Gb41oyOYie7uLSsjRmfRg3bryUg5DssJvj3gDUl0D8z6ipSm6/yi/XNx2rcS5iVMvHcwRUHjcx7ixv0K3/w==", + "type": "package", + "path": "system.reflection.context/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Reflection.Context.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.Reflection.Context.dll", + "lib/net6.0/System.Reflection.Context.xml", + "lib/netstandard2.0/System.Reflection.Context.dll", + "lib/netstandard2.0/System.Reflection.Context.xml", + "lib/netstandard2.1/System.Reflection.Context.dll", + "lib/netstandard2.1/System.Reflection.Context.xml", + "system.reflection.context.6.0.0.nupkg.sha512", + "system.reflection.context.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Reflection.DispatchProxy/4.7.1": { + "sha512": "C1sMLwIG6ILQ2bmOT4gh62V6oJlyF4BlHcVMrOoor49p0Ji2tA8QAoqyMcIhAdH6OHKJ8m7BU+r4LK2CUEOKqw==", + "type": "package", + "path": "system.reflection.dispatchproxy/4.7.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Reflection.DispatchProxy.dll", + "lib/net461/System.Reflection.DispatchProxy.xml", + "lib/netcoreapp2.0/System.Reflection.DispatchProxy.dll", + "lib/netcoreapp2.0/System.Reflection.DispatchProxy.xml", + "lib/netstandard1.3/System.Reflection.DispatchProxy.dll", + "lib/netstandard2.0/System.Reflection.DispatchProxy.dll", + "lib/netstandard2.0/System.Reflection.DispatchProxy.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Reflection.DispatchProxy.dll", + "ref/net461/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/System.Reflection.DispatchProxy.dll", + "ref/netstandard1.3/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/de/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/es/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/fr/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/it/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ja/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ko/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ru/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.DispatchProxy.xml", + "ref/netstandard2.0/System.Reflection.DispatchProxy.dll", + "ref/netstandard2.0/System.Reflection.DispatchProxy.xml", + "ref/uap10.0.16299/System.Reflection.DispatchProxy.dll", + "ref/uap10.0.16299/System.Reflection.DispatchProxy.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll", + "runtimes/win-aot/lib/uap10.0.16299/System.Reflection.DispatchProxy.dll", + "runtimes/win/lib/uap10.0.16299/System.Reflection.DispatchProxy.dll", + "system.reflection.dispatchproxy.4.7.1.nupkg.sha512", + "system.reflection.dispatchproxy.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Emit/4.3.0": { + "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.3.0": { + "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "type": "package", + "path": "system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.3.0.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Metadata/5.0.0": { + "sha512": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==", + "type": "package", + "path": "system.reflection.metadata/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Reflection.Metadata.dll", + "lib/net461/System.Reflection.Metadata.xml", + "lib/netstandard1.1/System.Reflection.Metadata.dll", + "lib/netstandard1.1/System.Reflection.Metadata.xml", + "lib/netstandard2.0/System.Reflection.Metadata.dll", + "lib/netstandard2.0/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.5.0.0.nupkg.sha512", + "system.reflection.metadata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.3.0": { + "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "type": "package", + "path": "system.reflection.typeextensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net462/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net462/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.3.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Caching/6.0.0": { + "sha512": "E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==", + "type": "package", + "path": "system.runtime.caching/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.Caching.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/_._", + "lib/net6.0/System.Runtime.Caching.dll", + "lib/net6.0/System.Runtime.Caching.xml", + "lib/netcoreapp3.1/System.Runtime.Caching.dll", + "lib/netcoreapp3.1/System.Runtime.Caching.xml", + "lib/netstandard2.0/System.Runtime.Caching.dll", + "lib/netstandard2.0/System.Runtime.Caching.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net461/_._", + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll", + "runtimes/win/lib/net6.0/System.Runtime.Caching.xml", + "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.dll", + "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.xml", + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll", + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml", + "system.runtime.caching.6.0.0.nupkg.sha512", + "system.runtime.caching.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Security.AccessControl/6.0.0": { + "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "type": "package", + "path": "system.security.accesscontrol/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/net6.0/System.Security.AccessControl.dll", + "lib/net6.0/System.Security.AccessControl.xml", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll", + "runtimes/win/lib/net6.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml", + "system.security.accesscontrol.6.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.Pkcs/6.0.0": { + "sha512": "elM3x+xSRhzQysiqo85SbidJJ2YbZlnvmh+53TuSZHsD7dNuuEWser+9EFtY+rYupBwkq2avc6ZCO3/6qACgmg==", + "type": "package", + "path": "system.security.cryptography.pkcs/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Cryptography.Pkcs.dll", + "lib/net461/System.Security.Cryptography.Pkcs.xml", + "lib/net6.0/System.Security.Cryptography.Pkcs.dll", + "lib/net6.0/System.Security.Cryptography.Pkcs.xml", + "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll", + "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml", + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml", + "system.security.cryptography.pkcs.6.0.0.nupkg.sha512", + "system.security.cryptography.pkcs.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "type": "package", + "path": "system.security.cryptography.protecteddata/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.xml", + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.Xml/6.0.0": { + "sha512": "puJ4UCh9JVRwOCyCIcq71JY6Axr8Sp8E2GjTIU1Fj8hm4+oX6NEoyGFGa/+pBG8SrVxbQPSj7hvtaREyTHHsmw==", + "type": "package", + "path": "system.security.cryptography.xml/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Xml.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Cryptography.Xml.dll", + "lib/net461/System.Security.Cryptography.Xml.xml", + "lib/net6.0/System.Security.Cryptography.Xml.dll", + "lib/net6.0/System.Security.Cryptography.Xml.xml", + "lib/netstandard2.0/System.Security.Cryptography.Xml.dll", + "lib/netstandard2.0/System.Security.Cryptography.Xml.xml", + "runtimes/win/lib/net461/System.Security.Cryptography.Xml.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Xml.xml", + "system.security.cryptography.xml.6.0.0.nupkg.sha512", + "system.security.cryptography.xml.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Permissions/6.0.0": { + "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "type": "package", + "path": "system.security.permissions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/net5.0/System.Security.Permissions.dll", + "lib/net5.0/System.Security.Permissions.xml", + "lib/net6.0/System.Security.Permissions.dll", + "lib/net6.0/System.Security.Permissions.xml", + "lib/netcoreapp3.1/System.Security.Permissions.dll", + "lib/netcoreapp3.1/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "runtimes/win/lib/net461/System.Security.Permissions.dll", + "runtimes/win/lib/net461/System.Security.Permissions.xml", + "system.security.permissions.6.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Principal.Windows/5.0.0": { + "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "type": "package", + "path": "system.security.principal.windows/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.5.0.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ServiceModel.Duplex/4.9.0": { + "sha512": "Yb8MFiJxBBtm2JnfS/5SxYzm2HqkEmHu5xeaVIHXy83sNpty9wc30JifH2xgda821D6nr1UctbwbdZqN4LBUKQ==", + "type": "package", + "path": "system.servicemodel.duplex/4.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ServiceModel.Duplex.dll", + "lib/net461/System.ServiceModel.Duplex.pdb", + "lib/net6.0/System.ServiceModel.Duplex.dll", + "lib/net6.0/System.ServiceModel.Duplex.pdb", + "lib/netcore50/System.ServiceModel.Duplex.dll", + "lib/netstandard1.3/System.ServiceModel.Duplex.dll", + "lib/netstandard2.0/System.ServiceModel.Duplex.dll", + "lib/netstandard2.0/System.ServiceModel.Duplex.pdb", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ServiceModel.Duplex.dll", + "ref/net6.0/System.ServiceModel.Duplex.dll", + "ref/netcore50/System.ServiceModel.Duplex.dll", + "ref/netstandard1.1/System.ServiceModel.Duplex.dll", + "ref/netstandard2.0/System.ServiceModel.Duplex.dll", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.servicemodel.duplex.4.9.0.nupkg.sha512", + "system.servicemodel.duplex.nuspec" + ] + }, + "System.ServiceModel.Http/4.9.0": { + "sha512": "Z+s3RkLNzJ31fDXAjqXdXp67FqsNG4V3Md3r7FOrzMkHmg61gY8faEfTFPBLxU9tax1HPWt6IHVAquXBKySJaw==", + "type": "package", + "path": "system.servicemodel.http/4.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.ServiceModel.Http.dll", + "lib/net461/System.ServiceModel.Http.dll", + "lib/net461/System.ServiceModel.Http.pdb", + "lib/net6.0/System.ServiceModel.Http.dll", + "lib/net6.0/System.ServiceModel.Http.pdb", + "lib/netcore50/System.ServiceModel.Http.dll", + "lib/netstandard1.3/System.ServiceModel.Http.dll", + "lib/netstandard2.0/System.ServiceModel.Http.dll", + "lib/netstandard2.0/System.ServiceModel.Http.pdb", + "lib/portable-net45+win8+wp8/_._", + "lib/win8/_._", + "lib/wp8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.ServiceModel.Http.dll", + "ref/net461/System.ServiceModel.Http.dll", + "ref/net6.0/System.ServiceModel.Http.dll", + "ref/netcore50/System.ServiceModel.Http.dll", + "ref/netstandard1.0/System.ServiceModel.Http.dll", + "ref/netstandard1.1/System.ServiceModel.Http.dll", + "ref/netstandard1.3/System.ServiceModel.Http.dll", + "ref/netstandard2.0/System.ServiceModel.Http.dll", + "ref/portable-net45+win8+wp8/_._", + "ref/win8/_._", + "ref/wp8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.servicemodel.http.4.9.0.nupkg.sha512", + "system.servicemodel.http.nuspec" + ] + }, + "System.ServiceModel.NetTcp/4.9.0": { + "sha512": "nXgnnkrZERUF/KwmoLwZPkc7fqgiq94DXkmUZBvDNh/LdZquDvjy2NbhJLElpApOa5x8zEoQoBZyJ2PqNC39qg==", + "type": "package", + "path": "system.servicemodel.nettcp/4.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.ServiceModel.NetTcp.dll", + "lib/net461/System.ServiceModel.NetTcp.dll", + "lib/net461/System.ServiceModel.NetTcp.pdb", + "lib/net6.0/System.ServiceModel.NetTcp.dll", + "lib/net6.0/System.ServiceModel.NetTcp.pdb", + "lib/netcore50/System.ServiceModel.NetTcp.dll", + "lib/netstandard1.3/System.ServiceModel.NetTcp.dll", + "lib/netstandard2.0/System.ServiceModel.NetTcp.dll", + "lib/netstandard2.0/System.ServiceModel.NetTcp.pdb", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.ServiceModel.NetTcp.dll", + "ref/net461/System.ServiceModel.NetTcp.dll", + "ref/net6.0/System.ServiceModel.NetTcp.dll", + "ref/netcore50/System.ServiceModel.NetTcp.dll", + "ref/netstandard1.1/System.ServiceModel.NetTcp.dll", + "ref/netstandard1.3/System.ServiceModel.NetTcp.dll", + "ref/netstandard2.0/System.ServiceModel.NetTcp.dll", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.servicemodel.nettcp.4.9.0.nupkg.sha512", + "system.servicemodel.nettcp.nuspec" + ] + }, + "System.ServiceModel.Primitives/4.9.0": { + "sha512": "LTFPVdS8Nf76xg/wRZkDa+2Q+GnjTOmwkTlwuoetwX37mAfYnGkf7p8ydhpDwVmomNljpUOhUUGxfjQyd5YcOg==", + "type": "package", + "path": "system.servicemodel.primitives/4.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.ServiceModel.Primitives.dll", + "lib/net461/System.ServiceModel.Primitives.dll", + "lib/net461/System.ServiceModel.Primitives.pdb", + "lib/net6.0/System.ServiceModel.Primitives.dll", + "lib/net6.0/System.ServiceModel.Primitives.pdb", + "lib/net6.0/System.ServiceModel.dll", + "lib/netcore50/System.ServiceModel.Primitives.dll", + "lib/netcoreapp2.1/System.ServiceModel.Primitives.dll", + "lib/netcoreapp2.1/System.ServiceModel.Primitives.pdb", + "lib/netcoreapp2.1/System.ServiceModel.dll", + "lib/netstandard1.3/System.ServiceModel.Primitives.dll", + "lib/netstandard2.0/System.ServiceModel.Primitives.dll", + "lib/netstandard2.0/System.ServiceModel.Primitives.pdb", + "lib/netstandard2.0/System.ServiceModel.dll", + "lib/portable-net45+win8+wp8/_._", + "lib/win8/_._", + "lib/wp8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.ServiceModel.Primitives.dll", + "ref/net461/System.ServiceModel.Primitives.dll", + "ref/net6.0/System.ServiceModel.Primitives.dll", + "ref/net6.0/System.ServiceModel.dll", + "ref/netcore50/System.ServiceModel.Primitives.dll", + "ref/netcoreapp2.1/System.ServiceModel.Primitives.dll", + "ref/netcoreapp2.1/System.ServiceModel.dll", + "ref/netstandard1.0/System.ServiceModel.Primitives.dll", + "ref/netstandard1.1/System.ServiceModel.Primitives.dll", + "ref/netstandard1.3/System.ServiceModel.Primitives.dll", + "ref/netstandard2.0/System.ServiceModel.Primitives.dll", + "ref/netstandard2.0/System.ServiceModel.dll", + "ref/portable-net45+win8+wp8/_._", + "ref/win8/_._", + "ref/wp8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.servicemodel.primitives.4.9.0.nupkg.sha512", + "system.servicemodel.primitives.nuspec" + ] + }, + "System.ServiceModel.Security/4.9.0": { + "sha512": "iurpbSmPgotHps94VQ6acvL6hU2gjiuBmQI7PwLLN76jsbSpUcahT0PglccKIAwoMujATk/LWtAapBHpwCFn2g==", + "type": "package", + "path": "system.servicemodel.security/4.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ServiceModel.Security.dll", + "lib/net461/System.ServiceModel.Security.pdb", + "lib/net6.0/System.ServiceModel.Security.dll", + "lib/net6.0/System.ServiceModel.Security.pdb", + "lib/netcore50/System.ServiceModel.Security.dll", + "lib/netstandard1.3/System.ServiceModel.Security.dll", + "lib/netstandard2.0/System.ServiceModel.Security.dll", + "lib/netstandard2.0/System.ServiceModel.Security.pdb", + "lib/portable-net45+win8+wp8/_._", + "lib/win8/_._", + "lib/wp8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ServiceModel.Security.dll", + "ref/net6.0/System.ServiceModel.Security.dll", + "ref/netcore50/System.ServiceModel.Security.dll", + "ref/netstandard1.0/System.ServiceModel.Security.dll", + "ref/netstandard1.1/System.ServiceModel.Security.dll", + "ref/netstandard2.0/System.ServiceModel.Security.dll", + "ref/portable-net45+win8+wp8/_._", + "ref/win8/_._", + "ref/wp8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.servicemodel.security.4.9.0.nupkg.sha512", + "system.servicemodel.security.nuspec" + ] + }, + "System.ServiceModel.Syndication/6.0.0": { + "sha512": "cp1mMNG87iJtE0oHXFtfWT6cfski2JNo5iU0siTPi/uN2k1CIJI6FE4jr4v3got2dzt7wBq17fSy44btun9GiA==", + "type": "package", + "path": "system.servicemodel.syndication/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.ServiceModel.Syndication.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.ServiceModel.Syndication.dll", + "lib/net461/System.ServiceModel.Syndication.xml", + "lib/net6.0/System.ServiceModel.Syndication.dll", + "lib/net6.0/System.ServiceModel.Syndication.xml", + "lib/netcoreapp3.1/System.ServiceModel.Syndication.dll", + "lib/netcoreapp3.1/System.ServiceModel.Syndication.xml", + "lib/netstandard2.0/System.ServiceModel.Syndication.dll", + "lib/netstandard2.0/System.ServiceModel.Syndication.xml", + "system.servicemodel.syndication.6.0.0.nupkg.sha512", + "system.servicemodel.syndication.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.ServiceProcess.ServiceController/6.0.0": { + "sha512": "qMBvG8ZFbkXoe0Z5/D7FAAadfPkH2v7vSuh2xsLf3U6jNoejpIdeV18A0htiASsLK1CCAc/p59kaLXlt2yB1gw==", + "type": "package", + "path": "system.serviceprocess.servicecontroller/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.ServiceProcess.ServiceController.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.ServiceProcess.ServiceController.dll", + "lib/net461/System.ServiceProcess.ServiceController.xml", + "lib/net6.0/System.ServiceProcess.ServiceController.dll", + "lib/net6.0/System.ServiceProcess.ServiceController.xml", + "lib/netcoreapp3.1/System.ServiceProcess.ServiceController.dll", + "lib/netcoreapp3.1/System.ServiceProcess.ServiceController.xml", + "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll", + "lib/netstandard2.0/System.ServiceProcess.ServiceController.xml", + "runtimes/win/lib/net461/System.ServiceProcess.ServiceController.dll", + "runtimes/win/lib/net461/System.ServiceProcess.ServiceController.xml", + "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll", + "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.xml", + "runtimes/win/lib/netcoreapp3.1/System.ServiceProcess.ServiceController.dll", + "runtimes/win/lib/netcoreapp3.1/System.ServiceProcess.ServiceController.xml", + "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.dll", + "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.xml", + "system.serviceprocess.servicecontroller.6.0.0.nupkg.sha512", + "system.serviceprocess.servicecontroller.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Speech/6.0.0": { + "sha512": "GQovERMrNP0Vbtgk8LzH4PlFS6lqHgsL9WkUmv8Kkxa0m0vNakitytpHZlfJ9WR7n9WKLXh68nn2kyL9mflnLg==", + "type": "package", + "path": "system.speech/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Speech.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.Speech.dll", + "lib/net6.0/System.Speech.xml", + "lib/netcoreapp3.1/System.Speech.dll", + "lib/netcoreapp3.1/System.Speech.xml", + "lib/netstandard2.0/System.Speech.dll", + "lib/netstandard2.0/System.Speech.xml", + "runtimes/win/lib/net6.0/System.Speech.dll", + "runtimes/win/lib/net6.0/System.Speech.xml", + "runtimes/win/lib/netcoreapp3.1/System.Speech.dll", + "runtimes/win/lib/netcoreapp3.1/System.Speech.xml", + "system.speech.6.0.0.nupkg.sha512", + "system.speech.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.CodePages/6.0.0": { + "sha512": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", + "type": "package", + "path": "system.text.encoding.codepages/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.xml", + "lib/net6.0/System.Text.Encoding.CodePages.dll", + "lib/net6.0/System.Text.Encoding.CodePages.xml", + "lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll", + "lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "system.text.encoding.codepages.6.0.0.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Encodings.Web/6.0.0": { + "sha512": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "type": "package", + "path": "system.text.encodings.web/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Text.Encodings.Web.dll", + "lib/net461/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/netcoreapp3.1/System.Text.Encodings.Web.dll", + "lib/netcoreapp3.1/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.6.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.AccessControl/6.0.0": { + "sha512": "2258mqWesMch/xCpcnjJBgJP33yhpZLGLbEOm01qwq0efG4b+NG8c9sxYOWNxmDQ82swXrnQRl1Yp2wC1NrfZA==", + "type": "package", + "path": "system.threading.accesscontrol/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Threading.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Threading.AccessControl.dll", + "lib/net461/System.Threading.AccessControl.xml", + "lib/net6.0/System.Threading.AccessControl.dll", + "lib/net6.0/System.Threading.AccessControl.xml", + "lib/netstandard2.0/System.Threading.AccessControl.dll", + "lib/netstandard2.0/System.Threading.AccessControl.xml", + "runtimes/win/lib/net461/System.Threading.AccessControl.dll", + "runtimes/win/lib/net461/System.Threading.AccessControl.xml", + "runtimes/win/lib/net6.0/System.Threading.AccessControl.dll", + "runtimes/win/lib/net6.0/System.Threading.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/System.Threading.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.Threading.AccessControl.xml", + "system.threading.accesscontrol.6.0.0.nupkg.sha512", + "system.threading.accesscontrol.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Threading.Tasks.Extensions.dll", + "lib/net461/System.Threading.Tasks.Extensions.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netcoreapp2.1/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Web.Services.Description/4.9.0": { + "sha512": "d20B3upsWddwSG5xF3eQLs0cAV3tXDsBNqP4kh02ylfgZwqfpf4f/9KiZVIGIoxULt2cKqxWs+U4AdNAJ7L8cQ==", + "type": "package", + "path": "system.web.services.description/4.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Web.Services.Description.dll", + "lib/net461/System.Web.Services.Description.pdb", + "lib/netstandard2.0/System.Web.Services.Description.dll", + "lib/netstandard2.0/System.Web.Services.Description.pdb", + "lib/netstandard2.0/cs/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/de/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/es/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/fr/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/it/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/ja/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/ko/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/pl/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/pt-BR/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/ru/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/tr/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/zh-Hans/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/zh-Hant/System.Web.Services.Description.resources.dll", + "system.web.services.description.4.9.0.nupkg.sha512", + "system.web.services.description.nuspec" + ] + }, + "System.Windows.Extensions/6.0.0": { + "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "type": "package", + "path": "system.windows.extensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/System.Windows.Extensions.dll", + "lib/net6.0/System.Windows.Extensions.xml", + "lib/netcoreapp3.1/System.Windows.Extensions.dll", + "lib/netcoreapp3.1/System.Windows.Extensions.xml", + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net6.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml", + "system.windows.extensions.6.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Typin/3.1.0": { + "sha512": "BV/TvL7a2c8FHBFc3YiWEzQua2NitFY5JnE30zJxo2nQrHeZuJYruZ7H+sT+/cnBLjsDr/mUpYtIS1HRTJQ3xg==", + "type": "package", + "path": "typin/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Typin.dll", + "lib/net5.0/Typin.xml", + "lib/net6.0/Typin.dll", + "lib/net6.0/Typin.xml", + "lib/netstandard2.0/Typin.dll", + "lib/netstandard2.0/Typin.xml", + "lib/netstandard2.1/Typin.dll", + "lib/netstandard2.1/Typin.xml", + "typin-favicon-64px.png", + "typin.3.1.0.nupkg.sha512", + "typin.nuspec" + ] + }, + "Typin.Core/3.1.0": { + "sha512": "0M44paHjcQuVTMCyfySqklbfVcQ38GfFGBkeKz0E+zhXdV0wD9tI5GwZdjUPOGlqhOmP7CHh452JSgJK2hc57A==", + "type": "package", + "path": "typin.core/3.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Typin.Core.dll", + "lib/net5.0/Typin.Core.xml", + "lib/net6.0/Typin.Core.dll", + "lib/net6.0/Typin.Core.xml", + "lib/netstandard2.0/Typin.Core.dll", + "lib/netstandard2.0/Typin.Core.xml", + "lib/netstandard2.1/Typin.Core.dll", + "lib/netstandard2.1/Typin.Core.xml", + "typin-favicon-64px.png", + "typin.core.3.1.0.nupkg.sha512", + "typin.core.nuspec" + ] + }, + "YamlDotNet/11.2.1": { + "sha512": "tBt8K+korVfrjH9wyDEhiLKxbs8qoLCLIFwvYgkSUuMC9//w3z0cFQ8LQAI/5MCKq+BMil0cfRTRvPeE7eXhQw==", + "type": "package", + "path": "yamldotnet/11.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "images/yamldotnet.png", + "lib/net20/YamlDotNet.dll", + "lib/net20/YamlDotNet.xml", + "lib/net35-client/YamlDotNet.dll", + "lib/net35-client/YamlDotNet.xml", + "lib/net35/YamlDotNet.dll", + "lib/net35/YamlDotNet.xml", + "lib/net45/YamlDotNet.dll", + "lib/net45/YamlDotNet.xml", + "lib/netstandard1.3/YamlDotNet.dll", + "lib/netstandard1.3/YamlDotNet.xml", + "lib/netstandard2.1/YamlDotNet.dll", + "lib/netstandard2.1/YamlDotNet.xml", + "yamldotnet.11.2.1.nupkg.sha512", + "yamldotnet.nuspec" + ] + }, + "Linguard.Core/2.0.0": { + "type": "project", + "path": "../Core/Core.csproj", + "msbuildProject": "../Core/Core.csproj" + }, + "Linguard.Log/2.0.0": { + "type": "project", + "path": "../Log/Log.csproj", + "msbuildProject": "../Log/Log.csproj" + } + }, + "projectFileDependencyGroups": { + "net6.0": [ + "CommandLineParser >= 2.8.0", + "FluentValidation >= 10.3.6", + "Linguard.Core >= 2.0.0", + "Typin >= 3.1.0" + ] + }, + "packageFolders": { + "C:\\Users\\theyu\\.nuget\\packages\\": {} + }, + "project": { + "version": "2.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj", + "projectName": "Linguard.Cli", + "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj", + "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", + "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj": { + "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "CommandLineParser": { + "target": "Package", + "version": "[2.8.0, )" + }, + "FluentValidation": { + "target": "Package", + "version": "[10.3.6, )" + }, + "Typin": { + "target": "Package", + "version": "[3.1.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/linguard/Cli/obj/project.nuget.cache b/linguard/Cli/obj/project.nuget.cache new file mode 100644 index 0000000..72272f4 --- /dev/null +++ b/linguard/Cli/obj/project.nuget.cache @@ -0,0 +1,140 @@ +{ + "version": 2, + "dgSpecHash": "6Q6hWpTSKRSJhdMBo6q/LzszotKauKsgpAEPAuAUpaKaF78Ns0bcYV2iA5Ou6VGkPagvmwCdDTuIgQDpsrR42A==", + "success": true, + "projectFilePath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj", + "expectedPackageFiles": [ + "C:\\Users\\theyu\\.nuget\\packages\\bogus\\34.0.1\\bogus.34.0.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\bytesize\\2.1.1\\bytesize.2.1.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\commandlineparser\\2.8.0\\commandlineparser.2.8.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\fluentvalidation\\10.3.6\\fluentvalidation.10.3.6.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\ipnetwork2\\2.5.386\\ipnetwork2.2.5.386.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\markdig.signed\\0.22.0\\markdig.signed.0.22.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.applicationinsights\\2.18.0\\microsoft.applicationinsights.2.18.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\5.0.0\\microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.2\\microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.codeanalysis.common\\4.0.1\\microsoft.codeanalysis.common.4.0.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.0.1\\microsoft.codeanalysis.csharp.4.0.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.csharp\\4.3.0\\microsoft.csharp.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\6.0.0\\microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.logging\\6.0.0\\microsoft.extensions.logging.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.0\\microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.logging.debug\\6.0.0\\microsoft.extensions.logging.debug.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.objectpool\\5.0.10\\microsoft.extensions.objectpool.5.0.10.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.management.infrastructure\\2.0.0\\microsoft.management.infrastructure.2.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.management.infrastructure.cimcmdlets\\7.2.1\\microsoft.management.infrastructure.cimcmdlets.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.management.infrastructure.runtime.unix\\2.0.0\\microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.management.infrastructure.runtime.win\\2.0.0\\microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.netcore.windows.apisets\\1.0.1\\microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.commands.diagnostics\\7.2.1\\microsoft.powershell.commands.diagnostics.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.commands.management\\7.2.1\\microsoft.powershell.commands.management.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.commands.utility\\7.2.1\\microsoft.powershell.commands.utility.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.consolehost\\7.2.1\\microsoft.powershell.consolehost.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.coreclr.eventing\\7.2.1\\microsoft.powershell.coreclr.eventing.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.markdownrender\\7.2.0\\microsoft.powershell.markdownrender.7.2.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.native\\7.2.0\\microsoft.powershell.native.7.2.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.sdk\\7.2.1\\microsoft.powershell.sdk.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.security\\7.2.1\\microsoft.powershell.security.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.win32.registry.accesscontrol\\6.0.0\\microsoft.win32.registry.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.windows.compatibility\\6.0.0\\microsoft.windows.compatibility.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.wsman.management\\7.2.1\\microsoft.wsman.management.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.wsman.runtime\\7.2.1\\microsoft.wsman.runtime.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\namotion.reflection\\2.0.3\\namotion.reflection.2.0.3.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\njsonschema\\10.5.2\\njsonschema.10.5.2.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\nlog\\4.7.13\\nlog.4.7.13.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.linux-arm.runtime.native.system.io.ports\\6.0.0\\runtime.linux-arm.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.linux-arm64.runtime.native.system.io.ports\\6.0.0\\runtime.linux-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.linux-x64.runtime.native.system.io.ports\\6.0.0\\runtime.linux-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.native.system.io.ports\\6.0.0\\runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.osx-arm64.runtime.native.system.io.ports\\6.0.0\\runtime.osx-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.osx-x64.runtime.native.system.io.ports\\6.0.0\\runtime.osx-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.codedom\\6.0.0\\system.codedom.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.componentmodel.composition\\6.0.0\\system.componentmodel.composition.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.componentmodel.composition.registration\\6.0.0\\system.componentmodel.composition.registration.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.0\\system.configuration.configurationmanager.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.data.odbc\\6.0.0\\system.data.odbc.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.data.oledb\\6.0.0\\system.data.oledb.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.data.sqlclient\\4.8.3\\system.data.sqlclient.4.8.3.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.0\\system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.eventlog\\6.0.0\\system.diagnostics.eventlog.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.performancecounter\\6.0.0\\system.diagnostics.performancecounter.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.directoryservices\\6.0.0\\system.directoryservices.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.directoryservices.accountmanagement\\6.0.0\\system.directoryservices.accountmanagement.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.directoryservices.protocols\\6.0.0\\system.directoryservices.protocols.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.formats.asn1\\6.0.0\\system.formats.asn1.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.io.packaging\\6.0.0\\system.io.packaging.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.io.ports\\6.0.0\\system.io.ports.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.management\\6.0.0\\system.management.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.management.automation\\7.2.1\\system.management.automation.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.net.http.winhttphandler\\6.0.0\\system.net.http.winhttphandler.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.private.servicemodel\\4.9.0\\system.private.servicemodel.4.9.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.context\\6.0.0\\system.reflection.context.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.dispatchproxy\\4.7.1\\system.reflection.dispatchproxy.4.7.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.metadata\\5.0.0\\system.reflection.metadata.5.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.caching\\6.0.0\\system.runtime.caching.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.pkcs\\6.0.0\\system.security.cryptography.pkcs.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.xml\\6.0.0\\system.security.cryptography.xml.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.duplex\\4.9.0\\system.servicemodel.duplex.4.9.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.http\\4.9.0\\system.servicemodel.http.4.9.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.nettcp\\4.9.0\\system.servicemodel.nettcp.4.9.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.primitives\\4.9.0\\system.servicemodel.primitives.4.9.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.security\\4.9.0\\system.servicemodel.security.4.9.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.syndication\\6.0.0\\system.servicemodel.syndication.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.serviceprocess.servicecontroller\\6.0.0\\system.serviceprocess.servicecontroller.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.speech\\6.0.0\\system.speech.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.text.encoding.codepages\\6.0.0\\system.text.encoding.codepages.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.text.encodings.web\\6.0.0\\system.text.encodings.web.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.threading.accesscontrol\\6.0.0\\system.threading.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.web.services.description\\4.9.0\\system.web.services.description.4.9.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\typin\\3.1.0\\typin.3.1.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\typin.core\\3.1.0\\typin.core.3.1.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\yamldotnet\\11.2.1\\yamldotnet.11.2.1.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/linguard/Cli/obj/project.packagespec.json b/linguard/Cli/obj/project.packagespec.json new file mode 100644 index 0000000..c232dcc --- /dev/null +++ b/linguard/Cli/obj/project.packagespec.json @@ -0,0 +1 @@ +"restore":{"projectUniqueName":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj","projectName":"Linguard.Cli","projectPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\Cli.csproj","outputPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Cli\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net6.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net6.0":{"targetAlias":"net6.0","projectReferences":{"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj":{"projectPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net6.0":{"targetAlias":"net6.0","dependencies":{"CommandLineParser":{"target":"Package","version":"[2.8.0, )"},"FluentValidation":{"target":"Package","version":"[10.3.6, )"},"Typin":{"target":"Package","version":"[3.1.0, )"}},"imports":["net461","net462","net47","net471","net472","net48"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/linguard/Cli/obj/rider.project.restore.info b/linguard/Cli/obj/rider.project.restore.info new file mode 100644 index 0000000..d0aa958 --- /dev/null +++ b/linguard/Cli/obj/rider.project.restore.info @@ -0,0 +1 @@ +16455551442888369 \ No newline at end of file diff --git a/linguard/Core.Test/ClientShould.cs b/linguard/Core.Test/ClientShould.cs new file mode 100644 index 0000000..608976e --- /dev/null +++ b/linguard/Core.Test/ClientShould.cs @@ -0,0 +1,84 @@ +using System; +using Core.Test.Mocks; +using FluentAssertions; +using Linguard.Core; +using Linguard.Core.Managers; +using Linguard.Core.Models.Wireguard; +using Linguard.Core.OS; +using Linguard.Core.Services; +using Moq; +using Xunit; + +namespace Core.Test; + +public class ClientShould { + private static readonly Mock ConfigurationManagerMock = new DefaultConfigurationManager(); + private static IWireguardService WireguardService => new WireguardService(ConfigurationManagerMock.Object, new CommandRunner()); + [Fact] + public void CreateValidWireguardConfig() { + + #region Expected config + + const string expected = @"[Interface] +PrivateKey = f0c4e3be-11b6-4f80-8eb3-27f63e488253 +Address = 1.1.1.2/30, 7d1d:393:2abb:ffbf:58e5:9355:e7d3:4378/64 +DNS = 8.8.8.8 + +[Peer] +PublicKey = 0514b8fe-951f-4bf1-829c-0d327da6e949 +AllowedIPs = 1.1.2.0/24 +Endpoint = vpn.example.com +PersistentKeepalive = 25"; + + #endregion + + var peer = new Client { + Endpoint = new Uri("vpn.example.com", UriKind.RelativeOrAbsolute), + Name = "peer1", + Nat = true, + IPv4Address = IPAddressCidr.Parse("1.1.1.2/30"), + IPv6Address = IPAddressCidr.Parse("7d1d:393:2abb:ffbf:58e5:9355:e7d3:4378/64"), + PublicKey = "0514b8fe-951f-4bf1-829c-0d327da6e949", + PrivateKey = "f0c4e3be-11b6-4f80-8eb3-27f63e488253", + AllowedIPs = new[] { IPAddressCidr.Parse("1.1.2.0/24") }, + PrimaryDns = new Uri("8.8.8.8", UriKind.RelativeOrAbsolute) + }; + var output = WireguardService.GenerateWireguardConfiguration(peer); + output.Should().Be(expected); + } + + [Fact] + public void CreateAnotherValidWireguardConfig() { + + #region Expected config + + const string expected = @"[Interface] +PrivateKey = 558afbed-c606-4ad4-b70a-eb48af4004bd +Address = 1.1.1.2/30, 9f87:8784:c972:21f4:62b6:34a0:80e4:43df/64 +DNS = dns1.example.com, dns2.example.com + +[Peer] +PublicKey = 4a58a41a-8ed5-4c7d-b2b6-0b9652eec346 +AllowedIPs = 1.1.1.0/24, 9f87:8784:c972:21f4:62b6:34a0:80e4:43de/64 +Endpoint = vpn2.example.com"; + + #endregion + + var peer = new Client { + Endpoint = new Uri("vpn2.example.com", UriKind.RelativeOrAbsolute), + Name = "peer2", + IPv4Address = IPAddressCidr.Parse("1.1.1.2/30"), + IPv6Address = IPAddressCidr.Parse("9f87:8784:c972:21f4:62b6:34a0:80e4:43df/64"), + PublicKey = "4a58a41a-8ed5-4c7d-b2b6-0b9652eec346", + PrivateKey = "558afbed-c606-4ad4-b70a-eb48af4004bd", + AllowedIPs = new[] { + IPAddressCidr.Parse("1.1.1.0/24"), + IPAddressCidr.Parse("9f87:8784:c972:21f4:62b6:34a0:80e4:43de/64") + }, + PrimaryDns = new Uri("dns1.example.com", UriKind.RelativeOrAbsolute), + SecondaryDns = new Uri("dns2.example.com", UriKind.RelativeOrAbsolute), + }; + var output = WireguardService.GenerateWireguardConfiguration(peer); + output.Trim().Should().Be(expected.Trim()); + } +} \ No newline at end of file diff --git a/linguard/Core.Test/CommandRunnerShould.cs b/linguard/Core.Test/CommandRunnerShould.cs new file mode 100644 index 0000000..5be13f7 --- /dev/null +++ b/linguard/Core.Test/CommandRunnerShould.cs @@ -0,0 +1,31 @@ +using FluentAssertions; +using Linguard.Core.OS; +using Xunit; + +namespace Core.Test; + +public class CommandRunnerShould { + [Fact] + public void RunSingleCommand() { + var result = new CommandRunner().Run("gci"); + result.Success.Should().BeTrue(); + result.Stdout.Should().NotBeEmpty(); + result.Stderr.Should().BeEmpty(); + } + + [Fact] + public void RunPipedCommands() { + var result = new CommandRunner().Run("gci | sort -Property Name"); + result.Success.Should().BeTrue(); + result.Stdout.Should().NotBeEmpty(); + result.Stderr.Should().BeEmpty(); + } + + [Fact] + public void RunCommandsWithoutPiping() { + var result = new CommandRunner().Run("gci; get-process"); + result.Success.Should().BeTrue(); + result.Stdout.Should().NotBeEmpty(); + result.Stderr.Should().BeEmpty(); + } +} \ No newline at end of file diff --git a/linguard/Core.Test/Core.Test.csproj b/linguard/Core.Test/Core.Test.csproj new file mode 100644 index 0000000..d1a7588 --- /dev/null +++ b/linguard/Core.Test/Core.Test.csproj @@ -0,0 +1,31 @@ + + + + net6.0 + enable + + false + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + + + + + + diff --git a/linguard/Core.Test/DefaultClientGeneratorShould.cs b/linguard/Core.Test/DefaultClientGeneratorShould.cs new file mode 100644 index 0000000..70e9415 --- /dev/null +++ b/linguard/Core.Test/DefaultClientGeneratorShould.cs @@ -0,0 +1,32 @@ +using Core.Test.Mocks; +using FluentAssertions; +using FluentValidation; +using Linguard.Core.Managers; +using Linguard.Core.Models.Wireguard; +using Linguard.Core.Models.Wireguard.Validators; +using Linguard.Core.Services; +using Moq; +using Xunit; + +namespace Core.Test; + +public class DefaultClientGeneratorShould { + + private static readonly Mock ConfigurationManagerMock = new DefaultConfigurationManager(); + private static readonly Mock WireguardServiceMock = new(); + private static IInterfaceGenerator InterfaceGenerator => + new DefaultInterfaceGenerator(ConfigurationManagerMock.Object, WireguardServiceMock.Object); + private static IClientGenerator ClientGenerator => + new DefaultClientGenerator(WireguardServiceMock.Object); + private static AbstractValidator Validator => new ClientValidator(ConfigurationManagerMock.Object); + + [Fact] + public void AlwaysGenerateValidClients() { + var iface = InterfaceGenerator.Generate(); + for (var i = 0; i < 100; i++) { + var client = ClientGenerator.Generate(iface); + var result = Validator.Validate(client); + result.IsValid.Should().BeTrue(); + } + } +} \ No newline at end of file diff --git a/linguard/Core.Test/DefaultInterfaceGeneratorShould.cs b/linguard/Core.Test/DefaultInterfaceGeneratorShould.cs new file mode 100644 index 0000000..2dc6aba --- /dev/null +++ b/linguard/Core.Test/DefaultInterfaceGeneratorShould.cs @@ -0,0 +1,29 @@ +using Core.Test.Mocks; +using FluentAssertions; +using FluentValidation; +using Linguard.Core.Managers; +using Linguard.Core.Models.Wireguard; +using Linguard.Core.Models.Wireguard.Validators; +using Linguard.Core.Services; +using Moq; +using Xunit; + +namespace Core.Test; + +public class DefaultInterfaceGeneratorShould { + + private static readonly Mock ConfigurationManagerMock = new DefaultConfigurationManager(); + private static readonly Mock WireguardServiceMock = new(); + private static IInterfaceGenerator Generator => + new DefaultInterfaceGenerator(ConfigurationManagerMock.Object, WireguardServiceMock.Object); + private static AbstractValidator Validator => new InterfaceValidator(ConfigurationManagerMock.Object); + + [Fact] + public void AlwaysGenerateValidInterfaces() { + for (var i = 0; i < 100; i++) { + var iface = Generator.Generate(); + var result = Validator.Validate(iface); + result.IsValid.Should().BeTrue(); + } + } +} \ No newline at end of file diff --git a/linguard/Core.Test/InterfaceShould.cs b/linguard/Core.Test/InterfaceShould.cs new file mode 100644 index 0000000..1ab3d85 --- /dev/null +++ b/linguard/Core.Test/InterfaceShould.cs @@ -0,0 +1,92 @@ +using System; +using System.Linq; +using System.Net.NetworkInformation; +using Core.Test.Mocks; +using FluentAssertions; +using Linguard.Core; +using Linguard.Core.Managers; +using Xunit; +using Linguard.Core.Models.Wireguard; +using Linguard.Core.OS; +using Linguard.Core.Services; +using Moq; + +namespace Core.Test; + +public class InterfaceShould { + private static readonly Mock ConfigurationManagerMock = new DefaultConfigurationManager(); + private static IWireguardService WireguardService => new WireguardService(ConfigurationManagerMock.Object, new CommandRunner()); + + [Fact] + public void CreateValidWireguardConfiguration() { + + #region Expected configuration + const string expected = @"[Interface] +PrivateKey = 16116afc-3068-4ff5-88e0-0662ef57641a +Address = 1.1.1.1/24, 47cc:ec62:b8b4:d4c0:9c90:4c5c:1df5:a13f/64 +ListenPort = 1337 +PostUp = /usr/sbin/iptables -I FORWARD -i wg0 -j ACCEPT +PostUp = /usr/sbin/iptables -I FORWARD -o wg0 -j ACCEPT +PostUp = /usr/sbin/iptables -t nat -I POSTROUTING -o eth0 -j MASQUERADE +PostDown = /usr/sbin/iptables -D FORWARD -i wg0 -j ACCEPT +PostDown = /usr/sbin/iptables -D FORWARD -o wg0 -j ACCEPT +PostDown = /usr/sbin/iptables -t nat -D POSTROUTING -o eth0 -j MASQUERADE + +[Peer] +PublicKey = 0514b8fe-951f-4bf1-829c-0d327da6e949 +AllowedIPs = 1.1.1.2/32, 7d1d:393:2abb:ffbf:58e5:9355:e7d3:4378/128 +[Peer] +PublicKey = 4a58a41a-8ed5-4c7d-b2b6-0b9652eec346 +AllowedIPs = 1.1.1.2/32, 9f87:8784:c972:21f4:62b6:34a0:80e4:43df/128 +"; + + #endregion + + var iface = new Interface { + Name = "wg0", + Port = 1337, + IPv4Address = IPAddressCidr.Parse("1.1.1.1/24"), + IPv6Address = IPAddressCidr.Parse("47cc:ec62:b8b4:d4c0:9c90:4c5c:1df5:a13f/64"), + PublicKey = "c892a52a-1fad-4564-af83-641744cd4dc3", + PrivateKey = "16116afc-3068-4ff5-88e0-0662ef57641a", + OnUp = new [] { + "/usr/sbin/iptables -I FORWARD -i wg0 -j ACCEPT", + "/usr/sbin/iptables -I FORWARD -o wg0 -j ACCEPT", + "/usr/sbin/iptables -t nat -I POSTROUTING -o eth0 -j MASQUERADE" + }, + OnDown = new [] { + "/usr/sbin/iptables -D FORWARD -i wg0 -j ACCEPT", + "/usr/sbin/iptables -D FORWARD -o wg0 -j ACCEPT", + "/usr/sbin/iptables -t nat -D POSTROUTING -o eth0 -j MASQUERADE" + }, + Gateway = NetworkInterface.GetAllNetworkInterfaces().First(), + Clients = new[] { + new Client { + Endpoint = new Uri("vpn.example.com", UriKind.RelativeOrAbsolute), + Name = "peer1", + Nat = true, + IPv4Address = IPAddressCidr.Parse("1.1.1.2/30"), + IPv6Address = IPAddressCidr.Parse("7d1d:0393:2abb:ffbf:58e5:9355:e7d3:4378/64"), + PublicKey = "0514b8fe-951f-4bf1-829c-0d327da6e949", + PrivateKey = "f0c4e3be-11b6-4f80-8eb3-27f63e488253", + AllowedIPs = new[] { IPAddressCidr.Parse("1.1.2.0/24") }, + PrimaryDns = new Uri("8.8.8.8", UriKind.RelativeOrAbsolute) + }, + new Client { + Endpoint = new Uri("vpn2.example.com", UriKind.RelativeOrAbsolute), + Name = "peer2", + IPv4Address = IPAddressCidr.Parse("1.1.1.2/30"), + IPv6Address = IPAddressCidr.Parse("9f87:8784:c972:21f4:62b6:34a0:80e4:43df/64"), + PublicKey = "4a58a41a-8ed5-4c7d-b2b6-0b9652eec346", + PrivateKey = "558afbed-c606-4ad4-b70a-eb48af4004bd", + AllowedIPs = new[] { IPAddressCidr.Parse("1.1.1.0/24"), + IPAddressCidr.Parse("9f87:8784:c972:21f4:62b6:34a0:80e4:43de/64") }, + PrimaryDns = new Uri("dns1.example.com", UriKind.RelativeOrAbsolute), + SecondaryDns = new Uri("dns2.example.com", UriKind.RelativeOrAbsolute), + } + } + }; + var output = WireguardService.GenerateWireguardConfiguration(iface); + output.Trim().Should().Be(expected.Trim()); + } +} \ No newline at end of file diff --git a/linguard/Core.Test/Mocks/DefaultConfiguration.cs b/linguard/Core.Test/Mocks/DefaultConfiguration.cs new file mode 100644 index 0000000..43da9be --- /dev/null +++ b/linguard/Core.Test/Mocks/DefaultConfiguration.cs @@ -0,0 +1,21 @@ +using System.Collections.Generic; +using Linguard.Core.Configuration; +using Linguard.Core.Drivers.TrafficStorage; +using Linguard.Core.Models.Wireguard; +using Moq; + +namespace Core.Test.Mocks; + +public class DefaultConfiguration : Mock { + + public DefaultConfiguration() { + SetupProperty(c => c.Wireguard, new Mock(). + SetupProperty(c => c.Interfaces, new HashSet()) + .Object); + SetupProperty(c => c.Logging, new Mock().Object); + SetupProperty(c => c.Traffic, new Mock() + .SetupProperty(c => c.StorageDriver, new Mock().Object) + .Object); + SetupProperty(c => c.Web, new Mock().Object); + } +} \ No newline at end of file diff --git a/linguard/Core.Test/Mocks/DefaultConfigurationManager.cs b/linguard/Core.Test/Mocks/DefaultConfigurationManager.cs new file mode 100644 index 0000000..ecce47c --- /dev/null +++ b/linguard/Core.Test/Mocks/DefaultConfigurationManager.cs @@ -0,0 +1,12 @@ +using Linguard.Core.Configuration; +using Linguard.Core.Managers; +using Moq; + +namespace Core.Test.Mocks; + +public class DefaultConfigurationManager : Mock { + public DefaultConfigurationManager() { + SetupProperty(c => c.Configuration, new DefaultConfiguration().Object); + SetupProperty(c => c.WorkingDirectory, new Mock().Object); + } +} \ No newline at end of file diff --git a/linguard/Core.Test/WireguardDumpParserShould.cs b/linguard/Core.Test/WireguardDumpParserShould.cs new file mode 100644 index 0000000..08ed75b --- /dev/null +++ b/linguard/Core.Test/WireguardDumpParserShould.cs @@ -0,0 +1,95 @@ +using System.Collections.Generic; +using System.Linq; +using Core.Test.Mocks; +using FluentAssertions; +using Linguard.Core.Configuration; +using Linguard.Core.Managers; +using Linguard.Core.Models.Wireguard; +using Linguard.Core.Utils; +using Moq; +using Xunit; + +namespace Core.Test; + +public class WireguardDumpParserShould { + private static readonly Mock ConfigurationManagerMock = new DefaultConfigurationManager(); + private static IWireguardConfiguration Configuration => ConfigurationManagerMock.Object.Configuration.Wireguard; + + public WireguardDumpParserShould() { + var iface = new Interface { + Name = "wg1", + Clients = new List { + new() { + PublicKey = "fE/wdxzl0klVp/IR8UcaoGUMjqaWi3jAd7KzHKFS6Ds=" + }, + new() { + PublicKey = "jUd41n3XYa3yXBzyBvWqlLhYgRef5RiBD7jwo70U+Rw=" + } + } + }; + Configuration.Interfaces.Add(iface); + + } + + [Fact] + public void ExtractEmptyData() { + const string sampleData = + @"wg1 AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEE= /TOE4TKtAqVsePRVR+5AA43HkAK5DSntkOCO7nYq5xU= 13377 off +wg1 fE/wdxzl0klVp/IR8UcaoGUMjqaWi3jAd7KzHKFS6Ds= (none) (none) (none) 0 0 0 off +wg1 jUd41n3XYa3yXBzyBvWqlLhYgRef5RiBD7jwo70U+Rw= (none) (none) 10.7.1.0/24 0 0 0 off"; + + var data = WireguardDumpParser.GetTrafficData(sampleData, Configuration.Interfaces.First()); + data.Should().HaveCount(3); + var clients = data.Where(e => e.Peer is Client); + clients.Should().HaveCount(2); + var interfaces = data.Where(e => e.Peer is Interface); + interfaces.Should().HaveCount(1); + clients.Select(e => e.Peer).Should().BeEquivalentTo(Configuration.Interfaces.First().Clients); + clients.First().ReceivedData.Should().Be(default); + clients.First().SentData.Should().Be(default); + clients.Last().ReceivedData.Should().Be(default); + clients.Last().SentData.Should().Be(default); + interfaces.Single().Peer.Should().Be(Configuration.Interfaces.First()); + interfaces.Single().ReceivedData.Bytes.Should().Be(clients.Sum(e => e.ReceivedData.Bytes)); + interfaces.Single().SentData.Bytes.Should().Be(clients.Sum(e => e.SentData.Bytes)); + } + + [Fact] + public void ExtractDataFromSingleInterface() { + const string sampleData = + @"wg1 AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEE= /TOE4TKtAqVsePRVR+5AA43HkAK5DSntkOCO7nYq5xU= 51821 off +wg1 fE/wdxzl0klVp/IR8UcaoGUMjqaWi3jAd7KzHKFS6Ds= (none) 172.19.0.8:51822 10.0.0.2/32 1617235493 3481633 33460136 off +wg1 jUd41n3XYa3yXBzyBvWqlLhYgRef5RiBD7jwo70U+Rw= (none) 172.19.0.7:51823 10.0.0.3/32 1609974495 1403752 19462368 off"; + + var data = WireguardDumpParser.GetTrafficData(sampleData, Configuration.Interfaces.First()); + data.Should().HaveCount(3); + var clients = data.Where(e => e.Peer is Client); + clients.Should().HaveCount(2); + var interfaces = data.Where(e => e.Peer is Interface); + interfaces.Should().HaveCount(1); + clients.Select(e => e.Peer).Should().BeEquivalentTo(Configuration.Interfaces.First().Clients); + clients.First().ReceivedData.Bytes.Should().Be(3481633); + clients.First().SentData.Bytes.Should().Be(33460136); + clients.Last().ReceivedData.Bytes.Should().Be(1403752); + clients.Last().SentData.Bytes.Should().Be(19462368); + interfaces.Single().Peer.Should().Be(Configuration.Interfaces.First()); + interfaces.Single().ReceivedData.Bytes.Should().Be(clients.Sum(e => e.ReceivedData.Bytes)); + interfaces.Single().SentData.Bytes.Should().Be(clients.Sum(e => e.SentData.Bytes)); + } + + [Fact] + public void GetLastHandshakeForPeers() { + const string sampleData = + @"wg1 AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEE= /TOE4TKtAqVsePRVR+5AA43HkAK5DSntkOCO7nYq5xU= 51821 off +wg1 fE/wdxzl0klVp/IR8UcaoGUMjqaWi3jAd7KzHKFS6Ds= (none) 172.19.0.8:51822 10.0.0.2/32 1617235493 3481633 33460136 off +wg1 jUd41n3XYa3yXBzyBvWqlLhYgRef5RiBD7jwo70U+Rw= (none) 172.19.0.7:51823 10.0.0.3/32 1609974495 1403752 19462368 off"; + + WireguardDumpParser.GetLastHandshake(sampleData, new Client { + PublicKey = "fE/wdxzl0klVp/IR8UcaoGUMjqaWi3jAd7KzHKFS6Ds=" + }).Ticks.Should().Be(1617235493); + + WireguardDumpParser.GetLastHandshake(sampleData, new Client { + PublicKey = "jUd41n3XYa3yXBzyBvWqlLhYgRef5RiBD7jwo70U+Rw=" + }).Ticks.Should().Be(1609974495); + } +} \ No newline at end of file diff --git a/linguard/Core.Test/YamlConfigurationSerializerShould.cs b/linguard/Core.Test/YamlConfigurationSerializerShould.cs new file mode 100644 index 0000000..af7ccbf --- /dev/null +++ b/linguard/Core.Test/YamlConfigurationSerializerShould.cs @@ -0,0 +1,155 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Net.NetworkInformation; +using FluentAssertions; +using Linguard.Core; +using Linguard.Core.Configuration; +using Linguard.Core.Configuration.Serialization; +using Linguard.Core.Drivers.TrafficStorage; +using Linguard.Core.Models; +using Linguard.Core.Models.Wireguard; +using Linguard.Log; +using Xunit; + +namespace Core.Test; + +public class YamlConfigurationSerializerShould { + + #region Yaml string + + const string yaml = @"!Configuration +Wireguard: !Wireguard + Interfaces: + - Gateway: Ethernet + Port: 0 + Auto: false + Clients: + - AllowedIPs: + - 1.1.1.0/24 + - 1.1.2.0/24 + Nat: false + PrimaryDns: '' + SecondaryDns: '' + Endpoint: vpn.example.com + Id: 00000000-0000-0000-0000-000000000000 + PublicKey: + PrivateKey: + IPv4Address: 1.1.1.2/30 + IPv6Address: '' + Name: peer1 + Description: + - AllowedIPs: + - 1.1.1.0/24 + - 1.1.2.0/24 + Nat: false + PrimaryDns: '' + SecondaryDns: '' + Endpoint: 192.168.0.1 + Id: 00000000-0000-0000-0000-000000000000 + PublicKey: + PrivateKey: + IPv4Address: 1.1.1.3/30 + IPv6Address: '' + Name: peer2 + Description: + - AllowedIPs: [] + Nat: false + PrimaryDns: '' + SecondaryDns: '' + Endpoint: '' + Id: 00000000-0000-0000-0000-000000000000 + PublicKey: + PrivateKey: + IPv4Address: 1.1.1.4/30 + IPv6Address: '' + Name: peer3 + Description: + OnUp: [] + OnDown: [] + Id: 00000000-0000-0000-0000-000000000000 + PublicKey: + PrivateKey: + IPv4Address: 1.1.1.1/24 + IPv6Address: '' + Name: wg1 + Description: + IptablesBin: iptables + WireguardBin: wg + WireguardQuickBin: wg-quick +Logging: !Logging + Level: Debug + Overwrite: false +Web: !Web + LoginAttempts: 10 + SecretKey: '' + Style: Default +Traffic: !Traffic + Enabled: false + StorageDriver: !Json + TimestampFormat: aaa +"; + #endregion + + [Fact] + public void Deserialize() { + var serializer = new YamlConfigurationSerializer(); + var config = serializer.Deserialize(yaml); + config.Logging.Should().NotBeNull(); + config.Wireguard.Should().NotBeNull(); + config.Web.Should().NotBeNull(); + config.Traffic.Should().NotBeNull(); + } + + [Fact] + public void Serialize() { + var config = new Configuration { + Logging = new LoggingConfiguration { + Level = LogLevel.Debug, + Overwrite = false + }, + Traffic = new TrafficConfiguration { + Enabled = false, + StorageDriver = new JsonTrafficStorageDriver { + TimestampFormat = "aaa" + } + }, + Web = new WebConfiguration { + LoginAttempts = 10, + SecretKey = "", + Style = Style.Default + }, + Wireguard = new WireguardConfiguration { + Interfaces = new HashSet {new() { + Name = "wg1", + IPv4Address = IPAddressCidr.Parse("1.1.1.1/24"), + Gateway = NetworkInterface.GetAllNetworkInterfaces().First(), + Clients = new []{ + new Client { + Endpoint = new Uri("vpn.example.com", UriKind.RelativeOrAbsolute), + Name = "peer1", + IPv4Address = IPAddressCidr.Parse("1.1.1.2/30"), + AllowedIPs = new [] {IPAddressCidr.Parse("1.1.1.0/24"), IPAddressCidr.Parse("1.1.2.0/24")}, + }, + new Client { + Endpoint = new Uri("192.168.0.1", UriKind.RelativeOrAbsolute), + Name = "peer2", + IPv4Address = IPAddressCidr.Parse("1.1.1.3/30"), + AllowedIPs = new [] {IPAddressCidr.Parse("1.1.1.0/24"), IPAddressCidr.Parse("1.1.2.0/24")} + }, + new Client { + Name = "peer3", + IPv4Address = IPAddressCidr.Parse("1.1.1.4/30"), + } + } + }}, + IptablesBin = "iptables", + WireguardBin = "wg", + WireguardQuickBin = "wg-quick" + } + }; + var serializer = new YamlConfigurationSerializer(); + var output = serializer.Serialize(config); + output.Trim().Should().Be(yaml.Trim()); + } +} \ No newline at end of file diff --git a/linguard/Core.Test/bin/Debug/net6.0/Bogus.dll b/linguard/Core.Test/bin/Debug/net6.0/Bogus.dll new file mode 100644 index 0000000..84e6073 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/Bogus.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Castle.Core.dll b/linguard/Core.Test/bin/Debug/net6.0/Castle.Core.dll new file mode 100644 index 0000000..527172e Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/Castle.Core.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Core.Test.deps.json b/linguard/Core.Test/bin/Debug/net6.0/Core.Test.deps.json new file mode 100644 index 0000000..f65452c --- /dev/null +++ b/linguard/Core.Test/bin/Debug/net6.0/Core.Test.deps.json @@ -0,0 +1,4249 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "Core.Test/1.0.0": { + "dependencies": { + "FluentAssertions": "6.4.0", + "FluentValidation": "10.3.6", + "IPNetwork2": "2.5.386", + "Linguard.Core": "2.0.0", + "Microsoft.NET.Test.Sdk": "16.11.0", + "Moq": "4.16.1", + "coverlet.msbuild": "3.1.2", + "xunit": "2.4.1", + "xunit.runner.visualstudio": "2.4.3" + }, + "runtime": { + "Core.Test.dll": {} + } + }, + "Bogus/34.0.1": { + "runtime": { + "lib/net6.0/Bogus.dll": { + "assemblyVersion": "34.0.1.0", + "fileVersion": "34.0.1.0" + } + } + }, + "ByteSize/2.1.1": { + "runtime": { + "lib/net5.0/ByteSize.dll": { + "assemblyVersion": "2.1.1.0", + "fileVersion": "2.1.1.0" + } + } + }, + "Castle.Core/4.4.0": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Diagnostics.TraceSource": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard1.5/Castle.Core.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.4.0.0" + } + } + }, + "coverlet.msbuild/3.1.2": {}, + "FluentAssertions/6.4.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/FluentAssertions.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "FluentValidation/10.3.6": { + "runtime": { + "lib/net6.0/FluentValidation.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "10.3.6.0" + } + } + }, + "IPNetwork2/2.5.386": { + "runtime": { + "lib/net5.0/System.Net.IPNetwork.dll": { + "assemblyVersion": "2.5.386.0", + "fileVersion": "2.5.386.0" + } + } + }, + "Markdig.Signed/0.22.0": { + "runtime": { + "lib/netcoreapp3.1/Markdig.Signed.dll": { + "assemblyVersion": "0.22.0.0", + "fileVersion": "0.22.0.0" + } + } + }, + "Microsoft.ApplicationInsights/2.18.0": { + "dependencies": { + "System.Diagnostics.DiagnosticSource": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": { + "assemblyVersion": "2.18.0.315", + "fileVersion": "2.18.0.315" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/5.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": {}, + "Microsoft.CodeAnalysis.Common/4.0.1": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.2", + "System.Collections.Immutable": "5.0.0", + "System.Memory": "4.5.4", + "System.Reflection.Metadata": "5.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encoding.CodePages": "6.0.0", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.121.55815" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.0.1": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "4.0.1" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.0.121.55815" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeCoverage/16.11.0": { + "runtime": { + "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "16.1000.21.27002" + } + } + }, + "Microsoft.CSharp/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "Microsoft.Extensions.ObjectPool/5.0.10": { + "runtime": { + "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.1021.41022" + } + } + }, + "Microsoft.Management.Infrastructure/2.0.0": { + "dependencies": { + "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0", + "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0" + } + }, + "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { + "runtimeTargets": { + "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win-arm", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win-arm", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win-arm64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win-arm64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win10-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win10-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win10-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win10-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win7-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win7-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win7-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win7-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win8-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win8-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win8-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win8-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win81-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win81-x64", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "rid": "win81-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "rid": "win81-x86", + "assetType": "runtime", + "assemblyVersion": "1.0.0.0", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm/native/mi.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm/native/miutils.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm64/native/mi.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win-arm64/native/miutils.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win10-x64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x64/native/mi.dll": { + "rid": "win10-x64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x64/native/miutils.dll": { + "rid": "win10-x64", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win10-x86", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x86/native/mi.dll": { + "rid": "win10-x86", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win10-x86/native/miutils.dll": { + "rid": "win10-x86", + "assetType": "native", + "fileVersion": "10.0.18362.1" + }, + "runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win7-x64", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win7-x64/native/mi.dll": { + "rid": "win7-x64", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win7-x64/native/miutils.dll": { + "rid": "win7-x64", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win7-x86", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win7-x86/native/mi.dll": { + "rid": "win7-x86", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win7-x86/native/miutils.dll": { + "rid": "win7-x86", + "assetType": "native", + "fileVersion": "10.0.14394.1000" + }, + "runtimes/win8-x64/native/mi.dll": { + "rid": "win8-x64", + "assetType": "native", + "fileVersion": "6.2.9200.22812" + }, + "runtimes/win8-x64/native/miutils.dll": { + "rid": "win8-x64", + "assetType": "native", + "fileVersion": "6.2.9200.22812" + }, + "runtimes/win8-x86/native/mi.dll": { + "rid": "win8-x86", + "assetType": "native", + "fileVersion": "6.2.9200.22812" + }, + "runtimes/win8-x86/native/miutils.dll": { + "rid": "win8-x86", + "assetType": "native", + "fileVersion": "6.2.9200.22812" + }, + "runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win81-x64", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + }, + "runtimes/win81-x64/native/mi.dll": { + "rid": "win81-x64", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + }, + "runtimes/win81-x64/native/miutils.dll": { + "rid": "win81-x64", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + }, + "runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "rid": "win81-x86", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + }, + "runtimes/win81-x86/native/mi.dll": { + "rid": "win81-x86", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + }, + "runtimes/win81-x86/native/miutils.dll": { + "rid": "win81-x86", + "assetType": "native", + "fileVersion": "6.3.9600.16384" + } + } + }, + "Microsoft.NET.Test.Sdk/16.11.0": { + "dependencies": { + "Microsoft.CodeCoverage": "16.11.0", + "Microsoft.TestPlatform.TestHost": "16.11.0" + } + }, + "Microsoft.NETCore.Platforms/1.1.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": {}, + "Microsoft.PowerShell.Commands.Diagnostics/7.2.1": { + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.PowerShell.Commands.Management/7.2.1": { + "dependencies": { + "Microsoft.PowerShell.Security": "7.2.1", + "System.ServiceProcess.ServiceController": "6.0.0" + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.PowerShell.Commands.Utility/7.2.1": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "4.0.1", + "Microsoft.PowerShell.MarkdownRender": "7.2.0", + "NJsonSchema": "10.5.2", + "System.Drawing.Common": "6.0.0", + "System.Management.Automation": "7.2.1", + "System.Threading.AccessControl": "6.0.0" + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.PowerShell.ConsoleHost/7.2.1": { + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { + "dependencies": { + "System.Diagnostics.EventLog": "6.0.0" + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.PowerShell.MarkdownRender/7.2.0": { + "dependencies": { + "Markdig.Signed": "0.22.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll": { + "assemblyVersion": "7.2.0.0", + "fileVersion": "7.2.0.0" + } + } + }, + "Microsoft.PowerShell.Native/7.2.0": { + "runtimeTargets": { + "runtimes/linux-arm/native/libpsl-native.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libpsl-native.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libpsl-native.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libmi.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libpsl-native.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libpsrpclient.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx/native/libmi.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx/native/libpsl-native.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx/native/libpsrpclient.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-arm/native/pwrshplugin.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-arm64/native/pwrshplugin.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-x64/native/pwrshplugin.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + }, + "runtimes/win-x86/native/pwrshplugin.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "10.0.10011.16384" + } + } + }, + "Microsoft.PowerShell.SDK/7.2.1": { + "dependencies": { + "Microsoft.Management.Infrastructure.CimCmdlets": "7.2.1", + "Microsoft.NETCore.Windows.ApiSets": "1.0.1", + "Microsoft.PowerShell.Commands.Diagnostics": "7.2.1", + "Microsoft.PowerShell.Commands.Management": "7.2.1", + "Microsoft.PowerShell.Commands.Utility": "7.2.1", + "Microsoft.PowerShell.ConsoleHost": "7.2.1", + "Microsoft.PowerShell.Security": "7.2.1", + "Microsoft.WSMan.Management": "7.2.1", + "Microsoft.Windows.Compatibility": "6.0.0", + "System.Data.SqlClient": "4.8.3", + "System.IO.Packaging": "6.0.0", + "System.Management.Automation": "7.2.1", + "System.Net.Http.WinHttpHandler": "6.0.0", + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Duplex": "4.9.0", + "System.ServiceModel.Http": "4.9.0", + "System.ServiceModel.NetTcp": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0", + "System.ServiceModel.Security": "4.9.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.PowerShell.Security/7.2.1": { + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.TestPlatform.ObjectModel/16.11.0": { + "dependencies": { + "NuGet.Frameworks": "5.0.0", + "System.Reflection.Metadata": "5.0.0" + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + } + }, + "resources": { + "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.TestPlatform.TestHost/16.11.0": { + "dependencies": { + "Microsoft.TestPlatform.ObjectModel": "16.11.0", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + }, + "lib/netcoreapp2.1/testhost.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "15.0.0.0" + } + }, + "resources": { + "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "Microsoft.Win32.Registry.AccessControl/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Windows.Compatibility/6.0.0": { + "dependencies": { + "Microsoft.Win32.Registry.AccessControl": "6.0.0", + "Microsoft.Win32.SystemEvents": "6.0.0", + "System.CodeDom": "6.0.0", + "System.ComponentModel.Composition": "6.0.0", + "System.ComponentModel.Composition.Registration": "6.0.0", + "System.Configuration.ConfigurationManager": "6.0.0", + "System.Data.Odbc": "6.0.0", + "System.Data.OleDb": "6.0.0", + "System.Data.SqlClient": "4.8.3", + "System.Diagnostics.EventLog": "6.0.0", + "System.Diagnostics.PerformanceCounter": "6.0.0", + "System.DirectoryServices": "6.0.0", + "System.DirectoryServices.AccountManagement": "6.0.0", + "System.DirectoryServices.Protocols": "6.0.0", + "System.Drawing.Common": "6.0.0", + "System.IO.Packaging": "6.0.0", + "System.IO.Ports": "6.0.0", + "System.Management": "6.0.0", + "System.Reflection.Context": "6.0.0", + "System.Runtime.Caching": "6.0.0", + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.0", + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Cryptography.Xml": "6.0.0", + "System.Security.Permissions": "6.0.0", + "System.ServiceModel.Duplex": "4.9.0", + "System.ServiceModel.Http": "4.9.0", + "System.ServiceModel.NetTcp": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0", + "System.ServiceModel.Security": "4.9.0", + "System.ServiceModel.Syndication": "6.0.0", + "System.ServiceProcess.ServiceController": "6.0.0", + "System.Speech": "6.0.0", + "System.Text.Encoding.CodePages": "6.0.0", + "System.Threading.AccessControl": "6.0.0", + "System.Web.Services.Description": "4.9.0" + } + }, + "Microsoft.WSMan.Management/7.2.1": { + "dependencies": { + "Microsoft.WSMan.Runtime": "7.2.1", + "System.Management.Automation": "7.2.1", + "System.ServiceProcess.ServiceController": "6.0.0" + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Microsoft.WSMan.Runtime/7.2.1": { + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "Moq/4.16.1": { + "dependencies": { + "Castle.Core": "4.4.0", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/netstandard2.1/Moq.dll": { + "assemblyVersion": "4.16.0.0", + "fileVersion": "4.16.1.0" + } + } + }, + "Namotion.Reflection/2.0.3": { + "dependencies": { + "Microsoft.CSharp": "4.3.0" + }, + "runtime": { + "lib/netstandard2.0/Namotion.Reflection.dll": { + "assemblyVersion": "2.0.3.0", + "fileVersion": "2.0.3.0" + } + } + }, + "NETStandard.Library/1.6.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + } + }, + "NJsonSchema/10.5.2": { + "dependencies": { + "Namotion.Reflection": "2.0.3", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netstandard2.0/NJsonSchema.dll": { + "assemblyVersion": "10.5.2.0", + "fileVersion": "10.5.2.0" + } + } + }, + "NLog/4.7.13": { + "runtime": { + "lib/netstandard2.0/NLog.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.7.13.493" + } + } + }, + "NuGet.Frameworks/5.0.0": { + "runtime": { + "lib/netstandard2.0/NuGet.Frameworks.dll": { + "assemblyVersion": "5.0.0.6", + "fileVersion": "5.0.0.5923" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { + "runtimeTargets": { + "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": { + "runtimeTargets": { + "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": { + "runtimeTargets": { + "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.IO.Ports/6.0.0": { + "dependencies": { + "runtime.linux-arm.runtime.native.System.IO.Ports": "6.0.0", + "runtime.linux-arm64.runtime.native.System.IO.Ports": "6.0.0", + "runtime.linux-x64.runtime.native.System.IO.Ports": "6.0.0", + "runtime.osx-arm64.runtime.native.System.IO.Ports": "6.0.0", + "runtime.osx-x64.runtime.native.System.IO.Ports": "6.0.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": { + "runtimeTargets": { + "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib": { + "rid": "osx-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { + "runtimeTargets": { + "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "System.AppContext/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Buffers/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.CodeDom/6.0.0": { + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Collections.Immutable/5.0.0": {}, + "System.Collections.NonGeneric/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Collections.Specialized/4.3.0": { + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.ComponentModel/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.Composition/6.0.0": { + "runtime": { + "lib/net6.0/System.ComponentModel.Composition.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.ComponentModel.Composition.Registration/6.0.0": { + "dependencies": { + "System.ComponentModel.Composition": "6.0.0", + "System.Reflection.Context": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.ComponentModel.Composition.Registration.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Configuration.ConfigurationManager/6.0.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Console/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Data.Odbc/6.0.0": { + "dependencies": { + "System.Text.Encoding.CodePages": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Data.Odbc.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll": { + "rid": "freebsd", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/illumos/lib/net6.0/System.Data.Odbc.dll": { + "rid": "illumos", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/ios/lib/net6.0/System.Data.Odbc.dll": { + "rid": "ios", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/linux/lib/net6.0/System.Data.Odbc.dll": { + "rid": "linux", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/osx/lib/net6.0/System.Data.Odbc.dll": { + "rid": "osx", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/solaris/lib/net6.0/System.Data.Odbc.dll": { + "rid": "solaris", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/tvos/lib/net6.0/System.Data.Odbc.dll": { + "rid": "tvos", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.Data.Odbc.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Data.OleDb/6.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0", + "System.Diagnostics.PerformanceCounter": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Data.OleDb.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Data.OleDb.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Data.SqlClient/4.8.3": { + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Principal.Windows": "5.0.0", + "runtime.native.System.Data.SqlClient.sni": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assemblyVersion": "4.6.1.3", + "fileVersion": "4.700.21.41603" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.6.1.3", + "fileVersion": "4.700.21.41603" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.6.1.3", + "fileVersion": "4.700.21.41603" + } + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/5.0.0": {}, + "System.Diagnostics.EventLog/6.0.0": { + "runtime": { + "lib/net6.0/System.Diagnostics.EventLog.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "0.0.0.0" + }, + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Diagnostics.PerformanceCounter/6.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Diagnostics.Tools/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.TraceSource/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.DirectoryServices/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.DirectoryServices.AccountManagement/6.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0", + "System.DirectoryServices": "6.0.0", + "System.DirectoryServices.Protocols": "6.0.0", + "System.Security.AccessControl": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.DirectoryServices.AccountManagement.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.DirectoryServices.Protocols/6.0.0": { + "runtime": { + "lib/net6.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "rid": "linux", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "rid": "osx", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Drawing.Common/6.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Dynamic.Runtime/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Formats.Asn1/6.0.0": {}, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.IO.Packaging/6.0.0": { + "runtime": { + "lib/net6.0/System.IO.Packaging.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.IO.Ports/6.0.0": { + "dependencies": { + "runtime.native.System.IO.Ports": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.IO.Ports.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.IO.Ports.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + }, + "runtimes/win/lib/net6.0/System.IO.Ports.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Management/6.0.0": { + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Management.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Management.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Management.Automation/7.2.1": { + "dependencies": { + "Microsoft.ApplicationInsights": "2.18.0", + "Microsoft.Management.Infrastructure": "2.0.0", + "Microsoft.PowerShell.CoreCLR.Eventing": "7.2.1", + "Microsoft.PowerShell.Native": "7.2.0", + "Microsoft.Win32.Registry.AccessControl": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "System.Configuration.ConfigurationManager": "6.0.0", + "System.DirectoryServices": "6.0.0", + "System.Management": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.0", + "System.Security.Permissions": "6.0.0", + "System.Text.Encoding.CodePages": "6.0.0" + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Management.Automation.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + }, + "runtimes/win/lib/net6.0/System.Management.Automation.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.2.1.500", + "fileVersion": "7.2.1.500" + } + } + }, + "System.Memory/4.5.4": {}, + "System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "5.0.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Net.Http.WinHttpHandler/6.0.0": { + "runtime": { + "lib/net6.0/System.Net.Http.WinHttpHandler.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Net.Sockets/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Numerics.Vectors/4.5.0": {}, + "System.ObjectModel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Private.ServiceModel/4.9.0": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "5.0.0", + "Microsoft.Extensions.ObjectPool": "5.0.10", + "System.Numerics.Vectors": "4.5.0", + "System.Reflection.DispatchProxy": "4.7.1", + "System.Security.Cryptography.Xml": "6.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Private.ServiceModel.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + }, + "resources": { + "lib/netstandard2.0/cs/System.Private.ServiceModel.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/System.Private.ServiceModel.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/System.Private.ServiceModel.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/System.Private.ServiceModel.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/System.Private.ServiceModel.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/System.Private.ServiceModel.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/System.Private.ServiceModel.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/System.Private.ServiceModel.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/System.Private.ServiceModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/System.Private.ServiceModel.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/System.Private.ServiceModel.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/System.Private.ServiceModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/System.Private.ServiceModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Context/6.0.0": { + "runtime": { + "lib/net6.0/System.Reflection.Context.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Reflection.DispatchProxy/4.7.1": {}, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Metadata/5.0.0": {}, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/6.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Security.AccessControl/6.0.0": {}, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Pkcs/6.0.0": { + "dependencies": { + "System.Formats.Asn1": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Xml/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Permissions/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Security.Principal.Windows/5.0.0": {}, + "System.ServiceModel.Duplex/4.9.0": { + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Duplex.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + } + }, + "System.ServiceModel.Http/4.9.0": { + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Http.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + } + }, + "System.ServiceModel.NetTcp/4.9.0": { + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.NetTcp.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + } + }, + "System.ServiceModel.Primitives/4.9.0": { + "dependencies": { + "System.Private.ServiceModel": "4.9.0" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Primitives.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + }, + "lib/net6.0/System.ServiceModel.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.900.21.52002" + } + } + }, + "System.ServiceModel.Security/4.9.0": { + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Security.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + } + }, + "System.ServiceModel.Syndication/6.0.0": { + "runtime": { + "lib/net6.0/System.ServiceModel.Syndication.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.ServiceProcess.ServiceController/6.0.0": { + "dependencies": { + "System.Diagnostics.EventLog": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.ServiceProcess.ServiceController.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Speech/6.0.0": { + "runtime": { + "lib/net6.0/System.Speech.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Speech.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Encodings.Web/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.AccessControl/6.0.0": { + "dependencies": { + "System.Security.AccessControl": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Threading.AccessControl.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Threading.AccessControl.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.5.4": {}, + "System.Threading.Timer/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Web.Services.Description/4.9.0": { + "runtime": { + "lib/netstandard2.0/System.Web.Services.Description.dll": { + "assemblyVersion": "4.9.0.0", + "fileVersion": "4.900.21.52002" + } + }, + "resources": { + "lib/netstandard2.0/cs/System.Web.Services.Description.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/System.Web.Services.Description.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/System.Web.Services.Description.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/System.Web.Services.Description.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/System.Web.Services.Description.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/System.Web.Services.Description.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/System.Web.Services.Description.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/System.Web.Services.Description.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/System.Web.Services.Description.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/System.Web.Services.Description.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/System.Web.Services.Description.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/System.Web.Services.Description.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/System.Web.Services.Description.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Windows.Extensions/6.0.0": { + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.5.4" + } + }, + "System.Xml.XDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "System.Xml.XmlDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "xunit/2.4.1": { + "dependencies": { + "xunit.analyzers": "0.10.0", + "xunit.assert": "2.4.1", + "xunit.core": "2.4.1" + } + }, + "xunit.abstractions/2.0.3": { + "runtime": { + "lib/netstandard2.0/xunit.abstractions.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "xunit.analyzers/0.10.0": {}, + "xunit.assert/2.4.1": { + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.1/xunit.assert.dll": { + "assemblyVersion": "2.4.1.0", + "fileVersion": "2.4.1.0" + } + } + }, + "xunit.core/2.4.1": { + "dependencies": { + "xunit.extensibility.core": "2.4.1", + "xunit.extensibility.execution": "2.4.1" + } + }, + "xunit.extensibility.core/2.4.1": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": { + "assemblyVersion": "2.4.1.0", + "fileVersion": "2.4.1.0" + } + } + }, + "xunit.extensibility.execution/2.4.1": { + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "2.4.1" + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": { + "assemblyVersion": "2.4.1.0", + "fileVersion": "2.4.1.0" + } + } + }, + "xunit.runner.visualstudio/2.4.3": {}, + "YamlDotNet/11.2.1": { + "runtime": { + "lib/netstandard2.1/YamlDotNet.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.2.1.0" + } + } + }, + "Linguard.Core/2.0.0": { + "dependencies": { + "Bogus": "34.0.1", + "ByteSize": "2.1.1", + "FluentValidation": "10.3.6", + "IPNetwork2": "2.5.386", + "Linguard.Log": "2.0.0", + "Microsoft.PowerShell.SDK": "7.2.1", + "System.Management.Automation": "7.2.1", + "YamlDotNet": "11.2.1" + }, + "runtime": { + "Linguard.Core.dll": {} + } + }, + "Linguard.Log/2.0.0": { + "dependencies": { + "NLog": "4.7.13" + }, + "runtime": { + "Linguard.Log.dll": {} + } + } + } + }, + "libraries": { + "Core.Test/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Bogus/34.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-49iq7QrD0wb7V4/FcK8p3dWdJxNUbojaqK9L6KRvdikIuRjt38EsNp7QXICcYdbYw01K8BHUdxlnTNn/YX3qDA==", + "path": "bogus/34.0.1", + "hashPath": "bogus.34.0.1.nupkg.sha512" + }, + "ByteSize/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-D+Y3NpbHrW21vZwwegeWf/8iAg2Mr0s7n1su8Ysho+O9dctJ5/EkWUi19QVxc6+nZl080gGTXBP/Nz0twSI3dA==", + "path": "bytesize/2.1.1", + "hashPath": "bytesize.2.1.1.nupkg.sha512" + }, + "Castle.Core/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", + "path": "castle.core/4.4.0", + "hashPath": "castle.core.4.4.0.nupkg.sha512" + }, + "coverlet.msbuild/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QhM0fnDtmIMImY7oxyQ/kh1VYtRxPyRVeLwRUGuUvI6Xp83pSYG9gerK8WgJj4TzUl7ISziADUGtIWKhtlbkbQ==", + "path": "coverlet.msbuild/3.1.2", + "hashPath": "coverlet.msbuild.3.1.2.nupkg.sha512" + }, + "FluentAssertions/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KOJE1UD7ndxoZAdmOraiUFLdcdGTArGQW8WYN+vwrC3mdt2G/B7gmsMOozgXKiNSh3fpD/Xp/0mhonRh8vrZKw==", + "path": "fluentassertions/6.4.0", + "hashPath": "fluentassertions.6.4.0.nupkg.sha512" + }, + "FluentValidation/10.3.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iMd370ZDx6ydm8t7bIFdRbSKX0e42lpvCtifUSbTSXOk5iKjmgl7HU0PXBhIWQAyIRi3gCwfMI9luj8H6K+byw==", + "path": "fluentvalidation/10.3.6", + "hashPath": "fluentvalidation.10.3.6.nupkg.sha512" + }, + "IPNetwork2/2.5.386": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6ihnNm82vyJsUYYfR2BRTziY/mQ5UGLsQZuhdSYPeTlbQLhBW/4BC9hBz3h5bFDn8PkVw9dP0cpv9brIBmk4Fw==", + "path": "ipnetwork2/2.5.386", + "hashPath": "ipnetwork2.2.5.386.nupkg.sha512" + }, + "Markdig.Signed/0.22.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7x3FqS3wk8DXyQLuflD47tBs6+ly6k4VtoDCzlDWfy7XHVsBIi7eGYEM15sPAcwSCQjOksNWE8U5r2v0Sk5FzQ==", + "path": "markdig.signed/0.22.0", + "hashPath": "markdig.signed.0.22.0.nupkg.sha512" + }, + "Microsoft.ApplicationInsights/2.18.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-milJB3VOCoC4EWmpE/Co9cOJ7SV6Ji6VqV4Rf5UlqL9QCg+rAX1y+3Y+j1Gu/j4IExYiPq7SEKqkP2BFnEu6Vw==", + "path": "microsoft.applicationinsights/2.18.0", + "hashPath": "microsoft.applicationinsights.2.18.0.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ==", + "path": "microsoft.bcl.asyncinterfaces/5.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==", + "path": "microsoft.codeanalysis.analyzers/3.3.2", + "hashPath": "microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SMREwaVD5SzatlWhh9aahQAtSWdb63NcE//f+bQzgHSECU6xtDtaxk0kwV+asdFfr6HtW38UeO6jvqdfzudg3w==", + "path": "microsoft.codeanalysis.common/4.0.1", + "hashPath": "microsoft.codeanalysis.common.4.0.1.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q9RxxydPpUElj/x1/qykDTUGsRoKbJG8H5XUSeMGmMu54fBiuX1xyanom9caa1oQfh5JIW1BgLxobSaWs4WyHQ==", + "path": "microsoft.codeanalysis.csharp/4.0.1", + "hashPath": "microsoft.codeanalysis.csharp.4.0.1.nupkg.sha512" + }, + "Microsoft.CodeCoverage/16.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wf6lpAeCqP0KFfbDVtfL50lr7jY1gq0+0oSphyksfLOEygMDXqnaxHK5LPFtMEhYSEtgXdNyXNnEddOqQQUdlQ==", + "path": "microsoft.codecoverage/16.11.0", + "hashPath": "microsoft.codecoverage.16.11.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==", + "path": "microsoft.csharp/4.3.0", + "hashPath": "microsoft.csharp.4.3.0.nupkg.sha512" + }, + "Microsoft.Extensions.ObjectPool/5.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pp9tbGqIhdEXL6Q1yJl+zevAJSq4BsxqhS1GXzBvEsEz9DDNu9GLNzgUy2xyFc4YjB4m4Ff2YEWTnvQvVYdkvQ==", + "path": "microsoft.extensions.objectpool/5.0.10", + "hashPath": "microsoft.extensions.objectpool.5.0.10.nupkg.sha512" + }, + "Microsoft.Management.Infrastructure/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IaKZRNBBv3sdrmBWd+aqwHq8cVHk/3WgWFAN/dt40MRY9rbtHiDfTTmaEN0tGTmQqGCGDo/ncntA8MvFMvcsRw==", + "path": "microsoft.management.infrastructure/2.0.0", + "hashPath": "microsoft.management.infrastructure.2.0.0.nupkg.sha512" + }, + "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xe1x237SCyrjpmW1mP1T69/OOc/gtU66P8wVC+b4/u7Hz7fIO6B8P5yVQQfb79rAe1GocruIpQlX4KXTFQf09w==", + "path": "microsoft.management.infrastructure.cimcmdlets/7.2.1", + "hashPath": "microsoft.management.infrastructure.cimcmdlets.7.2.1.nupkg.sha512" + }, + "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-p0lslMX5bdWLxO2P7ao+rjAMOB0LEwPYpzvdCQ2OEYgX2NxFpQ8ILvqPGnYlTAb53rT8gu5DyIol1HboHFYfxQ==", + "path": "microsoft.management.infrastructure.runtime.unix/2.0.0", + "hashPath": "microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512" + }, + "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vjBWQeDOjgernkrOdbEgn7M70SF7hof7ORdKPSlL06Uc15+oYdth5dZju9KsgUoti/cwnkZTiwtDx/lRtay0sA==", + "path": "microsoft.management.infrastructure.runtime.win/2.0.0", + "hashPath": "microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512" + }, + "Microsoft.NET.Test.Sdk/16.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f4mbG1SUSkNWF5p7B3Y8ZxMsvKhxCmpZhdl+w6tMtLSUGE7Izi1syU6TkmKOvB2BV66pdbENConFAISOix4ohQ==", + "path": "microsoft.net.test.sdk/16.11.0", + "hashPath": "microsoft.net.test.sdk.16.11.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "path": "microsoft.netcore.platforms/1.1.0", + "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==", + "path": "microsoft.netcore.windows.apisets/1.0.1", + "hashPath": "microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512" + }, + "Microsoft.PowerShell.Commands.Diagnostics/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Bgw4Egv7cnYUTWAy6koxg+0+/8K6rqUdlAiAxuJby9FeDPZQFfqCHQqlyP9JDa6lvbtmeBx1btFDx6Kh8bxdwQ==", + "path": "microsoft.powershell.commands.diagnostics/7.2.1", + "hashPath": "microsoft.powershell.commands.diagnostics.7.2.1.nupkg.sha512" + }, + "Microsoft.PowerShell.Commands.Management/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YAMrGDF2QTg6Gwz07+m1+BnmcYsPyywfY4J8nOpImfXZLLNhD7zQQP0orNHu9WPPV3/+E33qUyPj5J3ugCMk6A==", + "path": "microsoft.powershell.commands.management/7.2.1", + "hashPath": "microsoft.powershell.commands.management.7.2.1.nupkg.sha512" + }, + "Microsoft.PowerShell.Commands.Utility/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PU15IxUJd7nSacTstlxqJoEeGlI+BH6cUKTppkkIIxEj7EfwC5nD1qTL41xye63BFeZmOFeqAhMI6LtJUd875g==", + "path": "microsoft.powershell.commands.utility/7.2.1", + "hashPath": "microsoft.powershell.commands.utility.7.2.1.nupkg.sha512" + }, + "Microsoft.PowerShell.ConsoleHost/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uAPSsTmkOa7na1+OAPF87yBRwD1Ka/qXThoyrlvP9ihzMWfHM52k3MuKVEGi04VP3Wdi7U4Rzkr3svxDDmkHgA==", + "path": "microsoft.powershell.consolehost/7.2.1", + "hashPath": "microsoft.powershell.consolehost.7.2.1.nupkg.sha512" + }, + "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fUz7InjavqKtslkQN828nWbZLnmmJRL9rn4b3e/XXdx0BcN+65x/pSgMnehwDVGIoqUPUMXN54eDo4HRVcLA5g==", + "path": "microsoft.powershell.coreclr.eventing/7.2.1", + "hashPath": "microsoft.powershell.coreclr.eventing.7.2.1.nupkg.sha512" + }, + "Microsoft.PowerShell.MarkdownRender/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1vqDtdX9RCGsMWCbzp0CIxZW3slWgq8mYHDfUlUKzmkV57fMAn4m0Gy2OtsqopZzrOiVJci+QCWx5FB7BVpMlw==", + "path": "microsoft.powershell.markdownrender/7.2.0", + "hashPath": "microsoft.powershell.markdownrender.7.2.0.nupkg.sha512" + }, + "Microsoft.PowerShell.Native/7.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TauOu3bYr4DRh9HpH3+fgaL+y2GY47KLsgU6qX1NDLqHshdEaCCjiF0N5sDEgCEhSb38FwWhpdFTIQvoOcYCXQ==", + "path": "microsoft.powershell.native/7.2.0", + "hashPath": "microsoft.powershell.native.7.2.0.nupkg.sha512" + }, + "Microsoft.PowerShell.SDK/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UufIcywqI/22p0oqC5qg+yDoW39U2JAQyaHxy2Tr/h0hdWuFimtmhxp/FDXTxszgOdobtjcrCkSzqcoNmu/vQQ==", + "path": "microsoft.powershell.sdk/7.2.1", + "hashPath": "microsoft.powershell.sdk.7.2.1.nupkg.sha512" + }, + "Microsoft.PowerShell.Security/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GV3RuuOmXHAaEjeBcyixdzUIAQvHW6xgoWwafzTe97DbhI+N1sg4fa/FQ9pd8lqG+kkWxGwTy1VgudXX6rhUkg==", + "path": "microsoft.powershell.security/7.2.1", + "hashPath": "microsoft.powershell.security.7.2.1.nupkg.sha512" + }, + "Microsoft.TestPlatform.ObjectModel/16.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EiknJx9N9Z30gs7R+HHhki7fA8EiiM3pwD1vkw3bFsBC8kdVq/O7mHf1hrg5aJp+ASO6BoOzQueD2ysfTOy/Bg==", + "path": "microsoft.testplatform.objectmodel/16.11.0", + "hashPath": "microsoft.testplatform.objectmodel.16.11.0.nupkg.sha512" + }, + "Microsoft.TestPlatform.TestHost/16.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/Q+R0EcCJE8JaYCk+bGReicw/xrB0HhecrYrUcLbn95BnAlaTJrZhoLkUhvtKTAVtqX/AIKWXYtutiU/Q6QUgg==", + "path": "microsoft.testplatform.testhost/16.11.0", + "hashPath": "microsoft.testplatform.testhost.16.11.0.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "path": "microsoft.win32.registry/4.7.0", + "hashPath": "microsoft.win32.registry.4.7.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry.AccessControl/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UoE+eeuBKL+GFHxHV3FjHlY5K8Wr/IR7Ee/a2oDNqFodF1iMqyt5hIs0U9Z217AbWrHrNle4750kD03hv1IMZw==", + "path": "microsoft.win32.registry.accesscontrol/6.0.0", + "hashPath": "microsoft.win32.registry.accesscontrol.6.0.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "path": "microsoft.win32.systemevents/6.0.0", + "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512" + }, + "Microsoft.Windows.Compatibility/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9esuK5JqnjkDgO9/AHesyJSG0aKwpfLVzTw6nIGYhqE91VLxZyv3HKulNoPVy/NOuyAaf1kE4FKtdZDzdd/SLw==", + "path": "microsoft.windows.compatibility/6.0.0", + "hashPath": "microsoft.windows.compatibility.6.0.0.nupkg.sha512" + }, + "Microsoft.WSMan.Management/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vMOJMof4eLql180G4PmTurN8h8+VmPaf1l/Tqq+GI7HYyNv140iY3/Z18MiZA4dRG14qghLNo5JxtTolY7b4og==", + "path": "microsoft.wsman.management/7.2.1", + "hashPath": "microsoft.wsman.management.7.2.1.nupkg.sha512" + }, + "Microsoft.WSMan.Runtime/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v14vzUXIg7opXoQI8Eb82dvsRwBNylZ44lvyXOBSRCiVfvMhyTqE8bpPWbwwmQ5JZRnG/dP5/aOYuu9l163fyQ==", + "path": "microsoft.wsman.runtime/7.2.1", + "hashPath": "microsoft.wsman.runtime.7.2.1.nupkg.sha512" + }, + "Moq/4.16.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bw3R9q8cVNhWXNpnvWb0OGP4HadS4zvClq+T1zf7AF+tLY1haZ2AvbHidQekf4PDv1T40c6brZeT/V0IBq7cEQ==", + "path": "moq/4.16.1", + "hashPath": "moq.4.16.1.nupkg.sha512" + }, + "Namotion.Reflection/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tZCe/UrSBAMW8A4TjD/SlpRHaWjnHlSWdyRuOXhf3yrE0OX+4fXg0uzj7mwFDclXznfCGRAZbP+akPt4G/mclw==", + "path": "namotion.reflection/2.0.3", + "hashPath": "namotion.reflection.2.0.3.nupkg.sha512" + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "path": "netstandard.library/1.6.1", + "hashPath": "netstandard.library.1.6.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + }, + "NJsonSchema/10.5.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vr2CbySuXh74TQFU0rGJYZOS492xOE64cPXdB7a0cfXJb/N45Bf4v7sd4LOla0jNhgc5V/B61Ko3qecriL195w==", + "path": "njsonschema/10.5.2", + "hashPath": "njsonschema.10.5.2.nupkg.sha512" + }, + "NLog/4.7.13": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AvoGpCuq36B+0wY313XA6gC+YeMvk24rqF8P+HS9fInBGOjCzPjpXp2ln9ATZjPOJtXgHfc8zNmTjyswFGLxvg==", + "path": "nlog/4.7.13", + "hashPath": "nlog.4.7.13.nupkg.sha512" + }, + "NuGet.Frameworks/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c5JVjuVAm4f7E9Vj+v09Z9s2ZsqFDjBpcsyS3M9xRo0bEdm/LVZSzLxxNvfvAwRiiE8nwe1h2G4OwiwlzFKXlA==", + "path": "nuget.frameworks/5.0.0", + "hashPath": "nuget.frameworks.5.0.0.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-75q52H7CSpgIoIDwXb9o833EvBZIXJ0mdPhz1E6jSisEXUBlSCPalC29cj3EXsjpuDwr0dj1LRXZepIQH/oL4Q==", + "path": "runtime.linux-arm.runtime.native.system.io.ports/6.0.0", + "hashPath": "runtime.linux-arm.runtime.native.system.io.ports.6.0.0.nupkg.sha512" + }, + "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xn2bMThmXr3CsvOYmS8ex2Yz1xo+kcnhVg2iVhS9PlmqjZPAkrEo/I40wjrBZH/tU4kvH0s1AE8opAvQ3KIS8g==", + "path": "runtime.linux-arm64.runtime.native.system.io.ports/6.0.0", + "hashPath": "runtime.linux-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" + }, + "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-16nbNXwv0sC+gLGIuecri0skjuh6R1maIJggsaNP7MQBcbVcEfWFUOkEnsnvoLEjy0XerfibuRptfQ8AmdIcWA==", + "path": "runtime.linux-x64.runtime.native.system.io.ports/6.0.0", + "hashPath": "runtime.linux-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", + "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512" + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "path": "runtime.native.system.io.compression/4.3.0", + "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" + }, + "runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KaaXlpOcuZjMdmyF5wzzx3b+PRKIzt6A5Ax9dKenPDQbVJAFpev+casD0BIig1pBcbs3zx7CqWemzUJKAeHdSQ==", + "path": "runtime.native.system.io.ports/6.0.0", + "hashPath": "runtime.native.system.io.ports.6.0.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fXG12NodG1QrCdoaeSQ1gVnk/koi4WYY4jZtarMkZeQMyReBm1nZlSRoPnUjLr2ZR36TiMjpcGnQfxymieUe7w==", + "path": "runtime.osx-arm64.runtime.native.system.io.ports/6.0.0", + "hashPath": "runtime.osx-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" + }, + "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/As+zPY49+dSUXkh+fTUbyPhqrdGN//evLxo4Vue88pfh1BHZgF7q4kMblTkxYvwR6Vi03zSYxysSFktO8/SDQ==", + "path": "runtime.osx-x64.runtime.native.system.io.ports/6.0.0", + "hashPath": "runtime.osx-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "System.AppContext/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "path": "system.appcontext/4.3.0", + "hashPath": "system.appcontext.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "path": "system.buffers/4.3.0", + "hashPath": "system.buffers.4.3.0.nupkg.sha512" + }, + "System.CodeDom/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "path": "system.codedom/6.0.0", + "hashPath": "system.codedom.6.0.0.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Collections.Immutable/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", + "path": "system.collections.immutable/5.0.0", + "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512" + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "path": "system.collections.nongeneric/4.3.0", + "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "path": "system.collections.specialized/4.3.0", + "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "path": "system.componentmodel/4.3.0", + "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.Composition/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-60Qv+F7oxomOjJeTDA5Z4iCyFbQ0B/2Mi5HT+13pxxq0lVnu2ipbWMzFB+RWKr3wWKA8BSncXr9PH/fECwMX5Q==", + "path": "system.componentmodel.composition/6.0.0", + "hashPath": "system.componentmodel.composition.6.0.0.nupkg.sha512" + }, + "System.ComponentModel.Composition.Registration/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+i3RLlOgTsf15VeADBPpzPyRiXq71aLSuzdHeNtmq9f6BwpF3OWhB76p0WDUNCa3Z+SLD4dJbBM9yAep7kQCGA==", + "path": "system.componentmodel.composition.registration/6.0.0", + "hashPath": "system.componentmodel.composition.registration.6.0.0.nupkg.sha512" + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "path": "system.componentmodel.primitives/4.3.0", + "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "path": "system.componentmodel.typeconverter/4.3.0", + "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", + "path": "system.configuration.configurationmanager/6.0.0", + "hashPath": "system.configuration.configurationmanager.6.0.0.nupkg.sha512" + }, + "System.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "path": "system.console/4.3.0", + "hashPath": "system.console.4.3.0.nupkg.sha512" + }, + "System.Data.Odbc/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pnZjwe0Qwr1Rnp7NExd5zz4YwXJrYuAbWNKjEQpTzCEg6f/L5DYJS7w3hG3vgSj1t/r79UL390YzXIklf1VuQQ==", + "path": "system.data.odbc/6.0.0", + "hashPath": "system.data.odbc.6.0.0.nupkg.sha512" + }, + "System.Data.OleDb/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LQ8PjTIF1LtrrlGiyiTVjAkQtTWKm9GSNnygIlWjhN9y88s7xhy6DUNDDkmQQ9f6ex7mA4k0Tl97lz/CklaiLg==", + "path": "system.data.oledb/6.0.0", + "hashPath": "system.data.oledb.6.0.0.nupkg.sha512" + }, + "System.Data.SqlClient/4.8.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==", + "path": "system.data.sqlclient/4.8.3", + "hashPath": "system.data.sqlclient.4.8.3.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==", + "path": "system.diagnostics.diagnosticsource/5.0.0", + "hashPath": "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512" + }, + "System.Diagnostics.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "path": "system.diagnostics.eventlog/6.0.0", + "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.PerformanceCounter/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gbeE5tNp/oB7O8kTTLh3wPPJCxpNOphXPTWVs1BsYuFOYapFijWuh0LYw1qnDo4gwDUYPXOmpTIhvtxisGsYOQ==", + "path": "system.diagnostics.performancecounter/6.0.0", + "hashPath": "system.diagnostics.performancecounter.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "path": "system.diagnostics.tools/4.3.0", + "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.TraceSource/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", + "path": "system.diagnostics.tracesource/4.3.0", + "hashPath": "system.diagnostics.tracesource.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.DirectoryServices/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kp/Op0nxDVGlElDKh8TsXO0GKXftQgAB6sJk0wUetZK1Rr0Pbd86Tn7AllLLlROFZa4BTl/LVHakljtGELFzCg==", + "path": "system.directoryservices/6.0.0", + "hashPath": "system.directoryservices.6.0.0.nupkg.sha512" + }, + "System.DirectoryServices.AccountManagement/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2iKkY6VC4WX6H13N8WhH2SRUfWCwg2KZR5w9JIS9cw9N8cZhT7VXxHX0L6OX6Po419aSu2LWrJE9tu6b+cUnPA==", + "path": "system.directoryservices.accountmanagement/6.0.0", + "hashPath": "system.directoryservices.accountmanagement.6.0.0.nupkg.sha512" + }, + "System.DirectoryServices.Protocols/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-++WKU7HQPo/FJdhywWw+q2lLjcVAGVw5XLH9kRCV+4DvkhVAcHCksh0ezIqwNROmaU9LMJN0d/LAdeWXu3pi6Q==", + "path": "system.directoryservices.protocols/6.0.0", + "hashPath": "system.directoryservices.protocols.6.0.0.nupkg.sha512" + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "path": "system.drawing.common/6.0.0", + "hashPath": "system.drawing.common.6.0.0.nupkg.sha512" + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", + "path": "system.dynamic.runtime/4.3.0", + "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" + }, + "System.Formats.Asn1/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA==", + "path": "system.formats.asn1/6.0.0", + "hashPath": "system.formats.asn1.6.0.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "path": "system.io.compression/4.3.0", + "hashPath": "system.io.compression.4.3.0.nupkg.sha512" + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "path": "system.io.compression.zipfile/4.3.0", + "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.IO.Packaging/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-C7OkTRIjqIjAKu6ef/fuj8ynCZTPcTYZnvHaq48bniACgXXJogmEoIc56YCDNTc14xhsbLmgpS3KP+evbsUa2g==", + "path": "system.io.packaging/6.0.0", + "hashPath": "system.io.packaging.6.0.0.nupkg.sha512" + }, + "System.IO.Ports/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dRyGI7fUESar5ZLIpiBOaaNLW7YyOBGftjj5Of+xcduC/Rjl7RjhEnWDvvNBmHuF3d0tdXoqdVI/yrVA8f00XA==", + "path": "system.io.ports/6.0.0", + "hashPath": "system.io.ports.6.0.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Management/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sHsESYMmPDhQuOC66h6AEOs/XowzKsbT9srMbX71TCXP58hkpn1BqBjdmKj1+DCA/WlBETX1K5WjQHwmV0Txrg==", + "path": "system.management/6.0.0", + "hashPath": "system.management.6.0.0.nupkg.sha512" + }, + "System.Management.Automation/7.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YlTE+q14vQ1YU//A5+/Jwl5+L5r6uOVIWuB4D/T9r80AaCeUAZMMvTKjgvIr9lwkovwQflVL+1JfBAi9f0q0KA==", + "path": "system.management.automation/7.2.1", + "hashPath": "system.management.automation.7.2.1.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "path": "system.net.http/4.3.0", + "hashPath": "system.net.http.4.3.0.nupkg.sha512" + }, + "System.Net.Http.WinHttpHandler/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jubNN9jH4NzVrvEf4fGwESLBsfH8whWNbHMhgM6IwA8UCt6+/M19bbOHc21JhigvC2HQKCl8HKGZMcBtIpzqIg==", + "path": "system.net.http.winhttphandler/6.0.0", + "hashPath": "system.net.http.winhttphandler.6.0.0.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "path": "system.net.sockets/4.3.0", + "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "path": "system.numerics.vectors/4.5.0", + "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Private.ServiceModel/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-d3RjkrtpjUQ63PzFmm/SZ4aOXeJNP+8YW5QeP0lCJy8iX4xlHdlNLWTF9sRn9SmrFTK757kQXT9Op/R4l858uw==", + "path": "system.private.servicemodel/4.9.0", + "hashPath": "system.private.servicemodel.4.9.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Context/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vi+Gb41oyOYie7uLSsjRmfRg3bryUg5DssJvj3gDUl0D8z6ipSm6/yi/XNx2rcS5iVMvHcwRUHjcx7ixv0K3/w==", + "path": "system.reflection.context/6.0.0", + "hashPath": "system.reflection.context.6.0.0.nupkg.sha512" + }, + "System.Reflection.DispatchProxy/4.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-C1sMLwIG6ILQ2bmOT4gh62V6oJlyF4BlHcVMrOoor49p0Ji2tA8QAoqyMcIhAdH6OHKJ8m7BU+r4LK2CUEOKqw==", + "path": "system.reflection.dispatchproxy/4.7.1", + "hashPath": "system.reflection.dispatchproxy.4.7.1.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Metadata/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==", + "path": "system.reflection.metadata/5.0.0", + "hashPath": "system.reflection.metadata.5.0.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==", + "path": "system.runtime.caching/6.0.0", + "hashPath": "system.runtime.caching.6.0.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "path": "system.security.accesscontrol/6.0.0", + "hashPath": "system.security.accesscontrol.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "path": "system.security.cryptography.cng/4.3.0", + "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Pkcs/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-elM3x+xSRhzQysiqo85SbidJJ2YbZlnvmh+53TuSZHsD7dNuuEWser+9EFtY+rYupBwkq2avc6ZCO3/6qACgmg==", + "path": "system.security.cryptography.pkcs/6.0.0", + "hashPath": "system.security.cryptography.pkcs.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "path": "system.security.cryptography.protecteddata/6.0.0", + "hashPath": "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Xml/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-puJ4UCh9JVRwOCyCIcq71JY6Axr8Sp8E2GjTIU1Fj8hm4+oX6NEoyGFGa/+pBG8SrVxbQPSj7hvtaREyTHHsmw==", + "path": "system.security.cryptography.xml/6.0.0", + "hashPath": "system.security.cryptography.xml.6.0.0.nupkg.sha512" + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "path": "system.security.permissions/6.0.0", + "hashPath": "system.security.permissions.6.0.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "path": "system.security.principal.windows/5.0.0", + "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" + }, + "System.ServiceModel.Duplex/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Yb8MFiJxBBtm2JnfS/5SxYzm2HqkEmHu5xeaVIHXy83sNpty9wc30JifH2xgda821D6nr1UctbwbdZqN4LBUKQ==", + "path": "system.servicemodel.duplex/4.9.0", + "hashPath": "system.servicemodel.duplex.4.9.0.nupkg.sha512" + }, + "System.ServiceModel.Http/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z+s3RkLNzJ31fDXAjqXdXp67FqsNG4V3Md3r7FOrzMkHmg61gY8faEfTFPBLxU9tax1HPWt6IHVAquXBKySJaw==", + "path": "system.servicemodel.http/4.9.0", + "hashPath": "system.servicemodel.http.4.9.0.nupkg.sha512" + }, + "System.ServiceModel.NetTcp/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nXgnnkrZERUF/KwmoLwZPkc7fqgiq94DXkmUZBvDNh/LdZquDvjy2NbhJLElpApOa5x8zEoQoBZyJ2PqNC39qg==", + "path": "system.servicemodel.nettcp/4.9.0", + "hashPath": "system.servicemodel.nettcp.4.9.0.nupkg.sha512" + }, + "System.ServiceModel.Primitives/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LTFPVdS8Nf76xg/wRZkDa+2Q+GnjTOmwkTlwuoetwX37mAfYnGkf7p8ydhpDwVmomNljpUOhUUGxfjQyd5YcOg==", + "path": "system.servicemodel.primitives/4.9.0", + "hashPath": "system.servicemodel.primitives.4.9.0.nupkg.sha512" + }, + "System.ServiceModel.Security/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iurpbSmPgotHps94VQ6acvL6hU2gjiuBmQI7PwLLN76jsbSpUcahT0PglccKIAwoMujATk/LWtAapBHpwCFn2g==", + "path": "system.servicemodel.security/4.9.0", + "hashPath": "system.servicemodel.security.4.9.0.nupkg.sha512" + }, + "System.ServiceModel.Syndication/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cp1mMNG87iJtE0oHXFtfWT6cfski2JNo5iU0siTPi/uN2k1CIJI6FE4jr4v3got2dzt7wBq17fSy44btun9GiA==", + "path": "system.servicemodel.syndication/6.0.0", + "hashPath": "system.servicemodel.syndication.6.0.0.nupkg.sha512" + }, + "System.ServiceProcess.ServiceController/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qMBvG8ZFbkXoe0Z5/D7FAAadfPkH2v7vSuh2xsLf3U6jNoejpIdeV18A0htiASsLK1CCAc/p59kaLXlt2yB1gw==", + "path": "system.serviceprocess.servicecontroller/6.0.0", + "hashPath": "system.serviceprocess.servicecontroller.6.0.0.nupkg.sha512" + }, + "System.Speech/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GQovERMrNP0Vbtgk8LzH4PlFS6lqHgsL9WkUmv8Kkxa0m0vNakitytpHZlfJ9WR7n9WKLXh68nn2kyL9mflnLg==", + "path": "system.speech/6.0.0", + "hashPath": "system.speech.6.0.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", + "path": "system.text.encoding.codepages/6.0.0", + "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "path": "system.text.encodings.web/6.0.0", + "hashPath": "system.text.encodings.web.6.0.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.AccessControl/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2258mqWesMch/xCpcnjJBgJP33yhpZLGLbEOm01qwq0efG4b+NG8c9sxYOWNxmDQ82swXrnQRl1Yp2wC1NrfZA==", + "path": "system.threading.accesscontrol/6.0.0", + "hashPath": "system.threading.accesscontrol.6.0.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "path": "system.threading.tasks.extensions/4.5.4", + "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "path": "system.threading.timer/4.3.0", + "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" + }, + "System.Web.Services.Description/4.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-d20B3upsWddwSG5xF3eQLs0cAV3tXDsBNqP4kh02ylfgZwqfpf4f/9KiZVIGIoxULt2cKqxWs+U4AdNAJ7L8cQ==", + "path": "system.web.services.description/4.9.0", + "hashPath": "system.web.services.description.4.9.0.nupkg.sha512" + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "path": "system.windows.extensions/6.0.0", + "hashPath": "system.windows.extensions.6.0.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "path": "system.xml.xdocument/4.3.0", + "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "path": "system.xml.xmldocument/4.3.0", + "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" + }, + "xunit/2.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XNR3Yz9QTtec16O0aKcO6+baVNpXmOnPUxDkCY97J+8krUYxPvXT1szYYEUdKk4sB8GOI2YbAjRIOm8ZnXRfzQ==", + "path": "xunit/2.4.1", + "hashPath": "xunit.2.4.1.nupkg.sha512" + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", + "path": "xunit.abstractions/2.0.3", + "hashPath": "xunit.abstractions.2.0.3.nupkg.sha512" + }, + "xunit.analyzers/0.10.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4/IDFCJfIeg6bix9apmUtIMwvOsiwqdEexeO/R2D4GReIGPLIRODTpId/l4LRSrAJk9lEO3Zx1H0Zx6uohJDNg==", + "path": "xunit.analyzers/0.10.0", + "hashPath": "xunit.analyzers.0.10.0.nupkg.sha512" + }, + "xunit.assert/2.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-O/Oe0BS5RmSsM+LQOb041TzuPo5MdH2Rov+qXGS37X+KFG1Hxz7kopYklM5+1Y+tRGeXrOx5+Xne1RuqLFQoyQ==", + "path": "xunit.assert/2.4.1", + "hashPath": "xunit.assert.2.4.1.nupkg.sha512" + }, + "xunit.core/2.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Zsj5OMU6JasNGERXZy8s72+pcheG6Q15atS5XpZXqAtULuyQiQ6XNnUsp1gyfC6WgqScqMvySiEHmHcOG6Eg0Q==", + "path": "xunit.core/2.4.1", + "hashPath": "xunit.core.2.4.1.nupkg.sha512" + }, + "xunit.extensibility.core/2.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yKZKm/8QNZnBnGZFD9SewkllHBiK0DThybQD/G4PiAmQjKtEZyHi6ET70QPU9KtSMJGRYS6Syk7EyR2EVDU4Kg==", + "path": "xunit.extensibility.core/2.4.1", + "hashPath": "xunit.extensibility.core.2.4.1.nupkg.sha512" + }, + "xunit.extensibility.execution/2.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7e/1jqBpcb7frLkB6XDrHCGXAbKN4Rtdb88epYxCSRQuZDRW8UtTfdTEVpdTl8s4T56e07hOBVd4G0OdCxIY2A==", + "path": "xunit.extensibility.execution/2.4.1", + "hashPath": "xunit.extensibility.execution.2.4.1.nupkg.sha512" + }, + "xunit.runner.visualstudio/2.4.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kZZSmOmKA8OBlAJaquPXnJJLM9RwQ27H7BMVqfMLUcTi9xHinWGJiWksa3D4NEtz0wZ/nxd2mogObvBgJKCRhQ==", + "path": "xunit.runner.visualstudio/2.4.3", + "hashPath": "xunit.runner.visualstudio.2.4.3.nupkg.sha512" + }, + "YamlDotNet/11.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tBt8K+korVfrjH9wyDEhiLKxbs8qoLCLIFwvYgkSUuMC9//w3z0cFQ8LQAI/5MCKq+BMil0cfRTRvPeE7eXhQw==", + "path": "yamldotnet/11.2.1", + "hashPath": "yamldotnet.11.2.1.nupkg.sha512" + }, + "Linguard.Core/2.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Linguard.Log/2.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/linguard/Core.Test/bin/Debug/net6.0/Core.Test.dll b/linguard/Core.Test/bin/Debug/net6.0/Core.Test.dll new file mode 100644 index 0000000..c03a86d Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/Core.Test.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Core.Test.pdb b/linguard/Core.Test/bin/Debug/net6.0/Core.Test.pdb new file mode 100644 index 0000000..bc7b96e Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/Core.Test.pdb differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Core.Test.runtimeconfig.json b/linguard/Core.Test/bin/Debug/net6.0/Core.Test.runtimeconfig.json new file mode 100644 index 0000000..4986d16 --- /dev/null +++ b/linguard/Core.Test/bin/Debug/net6.0/Core.Test.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + } + } +} \ No newline at end of file diff --git a/linguard/Core.Test/bin/Debug/net6.0/CoverletSourceRootsMapping b/linguard/Core.Test/bin/Debug/net6.0/CoverletSourceRootsMapping new file mode 100644 index 0000000..7783657 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/CoverletSourceRootsMapping differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/FluentAssertions.dll b/linguard/Core.Test/bin/Debug/net6.0/FluentAssertions.dll new file mode 100644 index 0000000..279f957 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/FluentAssertions.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/FluentValidation.dll b/linguard/Core.Test/bin/Debug/net6.0/FluentValidation.dll new file mode 100644 index 0000000..fd90d11 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/FluentValidation.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Linguard.Core.dll b/linguard/Core.Test/bin/Debug/net6.0/Linguard.Core.dll new file mode 100644 index 0000000..f622876 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/Linguard.Core.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Linguard.Core.pdb b/linguard/Core.Test/bin/Debug/net6.0/Linguard.Core.pdb new file mode 100644 index 0000000..5896cce Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/Linguard.Core.pdb differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Linguard.Log.dll b/linguard/Core.Test/bin/Debug/net6.0/Linguard.Log.dll new file mode 100644 index 0000000..561b728 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/Linguard.Log.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Linguard.Log.pdb b/linguard/Core.Test/bin/Debug/net6.0/Linguard.Log.pdb new file mode 100644 index 0000000..ef5cdfa Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/Linguard.Log.pdb differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Markdig.Signed.dll b/linguard/Core.Test/bin/Debug/net6.0/Markdig.Signed.dll new file mode 100644 index 0000000..722a399 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/Markdig.Signed.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.ApplicationInsights.dll b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.ApplicationInsights.dll new file mode 100644 index 0000000..8ef5eef Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.ApplicationInsights.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100644 index 0000000..be25bdb Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.dll b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.dll new file mode 100644 index 0000000..581191d Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.CodeAnalysis.CSharp.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.CodeAnalysis.dll b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.CodeAnalysis.dll new file mode 100644 index 0000000..c653dc8 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.CodeAnalysis.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.Extensions.ObjectPool.dll b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.Extensions.ObjectPool.dll new file mode 100644 index 0000000..730dead Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.Extensions.ObjectPool.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.PowerShell.MarkdownRender.dll b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.PowerShell.MarkdownRender.dll new file mode 100644 index 0000000..68f0076 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.PowerShell.MarkdownRender.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CommunicationUtilities.dll b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CommunicationUtilities.dll new file mode 100644 index 0000000..e4a1476 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CommunicationUtilities.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CoreUtilities.dll b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CoreUtilities.dll new file mode 100644 index 0000000..2a743a3 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CoreUtilities.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CrossPlatEngine.dll b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CrossPlatEngine.dll new file mode 100644 index 0000000..ae16ead Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.TestPlatform.CrossPlatEngine.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.TestPlatform.PlatformAbstractions.dll b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.TestPlatform.PlatformAbstractions.dll new file mode 100644 index 0000000..b2f76f6 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.TestPlatform.PlatformAbstractions.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.TestPlatform.Utilities.dll b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.TestPlatform.Utilities.dll new file mode 100644 index 0000000..bf36696 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.TestPlatform.Utilities.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll new file mode 100644 index 0000000..c4f2e09 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.Common.dll b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.Common.dll new file mode 100644 index 0000000..340df34 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.Common.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll new file mode 100644 index 0000000..240ff2a Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.Win32.Registry.AccessControl.dll b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.Win32.Registry.AccessControl.dll new file mode 100644 index 0000000..b598181 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.Win32.Registry.AccessControl.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..3ab5850 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Moq.dll b/linguard/Core.Test/bin/Debug/net6.0/Moq.dll new file mode 100644 index 0000000..5be05c4 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/Moq.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/NJsonSchema.dll b/linguard/Core.Test/bin/Debug/net6.0/NJsonSchema.dll new file mode 100644 index 0000000..0e6ee5b Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/NJsonSchema.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/NLog.dll b/linguard/Core.Test/bin/Debug/net6.0/NLog.dll new file mode 100644 index 0000000..4aa35e7 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/NLog.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Namotion.Reflection.dll b/linguard/Core.Test/bin/Debug/net6.0/Namotion.Reflection.dll new file mode 100644 index 0000000..39dbbfa Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/Namotion.Reflection.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/Newtonsoft.Json.dll b/linguard/Core.Test/bin/Debug/net6.0/Newtonsoft.Json.dll new file mode 100644 index 0000000..1ffeabe Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/Newtonsoft.Json.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/NuGet.Frameworks.dll b/linguard/Core.Test/bin/Debug/net6.0/NuGet.Frameworks.dll new file mode 100644 index 0000000..0a61a1c Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/NuGet.Frameworks.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.CodeDom.dll b/linguard/Core.Test/bin/Debug/net6.0/System.CodeDom.dll new file mode 100644 index 0000000..54c82b6 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.CodeDom.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.ComponentModel.Composition.Registration.dll b/linguard/Core.Test/bin/Debug/net6.0/System.ComponentModel.Composition.Registration.dll new file mode 100644 index 0000000..586e1af Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.ComponentModel.Composition.Registration.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.ComponentModel.Composition.dll b/linguard/Core.Test/bin/Debug/net6.0/System.ComponentModel.Composition.dll new file mode 100644 index 0000000..3e063b3 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.ComponentModel.Composition.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll new file mode 100644 index 0000000..d67c8a8 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Data.Odbc.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Data.Odbc.dll new file mode 100644 index 0000000..5101278 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.Data.Odbc.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Data.OleDb.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Data.OleDb.dll new file mode 100644 index 0000000..f7840cd Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.Data.OleDb.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Data.SqlClient.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Data.SqlClient.dll new file mode 100644 index 0000000..d03f8a1 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.Data.SqlClient.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Diagnostics.EventLog.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..8a65e71 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.Diagnostics.EventLog.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Diagnostics.PerformanceCounter.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Diagnostics.PerformanceCounter.dll new file mode 100644 index 0000000..e9092d7 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.Diagnostics.PerformanceCounter.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.DirectoryServices.AccountManagement.dll b/linguard/Core.Test/bin/Debug/net6.0/System.DirectoryServices.AccountManagement.dll new file mode 100644 index 0000000..77183e0 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.DirectoryServices.AccountManagement.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.DirectoryServices.Protocols.dll b/linguard/Core.Test/bin/Debug/net6.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..d62b127 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.DirectoryServices.Protocols.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.DirectoryServices.dll b/linguard/Core.Test/bin/Debug/net6.0/System.DirectoryServices.dll new file mode 100644 index 0000000..803611c Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.DirectoryServices.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Drawing.Common.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Drawing.Common.dll new file mode 100644 index 0000000..be6915e Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.Drawing.Common.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.IO.Packaging.dll b/linguard/Core.Test/bin/Debug/net6.0/System.IO.Packaging.dll new file mode 100644 index 0000000..007253e Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.IO.Packaging.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.IO.Ports.dll b/linguard/Core.Test/bin/Debug/net6.0/System.IO.Ports.dll new file mode 100644 index 0000000..e10e943 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.IO.Ports.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Management.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Management.dll new file mode 100644 index 0000000..fae6cf1 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.Management.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Net.Http.WinHttpHandler.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Net.Http.WinHttpHandler.dll new file mode 100644 index 0000000..2490b06 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.Net.Http.WinHttpHandler.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Net.IPNetwork.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Net.IPNetwork.dll new file mode 100644 index 0000000..9b94f0c Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.Net.IPNetwork.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Private.ServiceModel.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Private.ServiceModel.dll new file mode 100644 index 0000000..82e7a91 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.Private.ServiceModel.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Reflection.Context.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Reflection.Context.dll new file mode 100644 index 0000000..3faa973 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.Reflection.Context.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Runtime.Caching.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Runtime.Caching.dll new file mode 100644 index 0000000..14826eb Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.Runtime.Caching.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Security.Cryptography.Pkcs.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Security.Cryptography.Pkcs.dll new file mode 100644 index 0000000..c2bb12e Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.Security.Cryptography.Pkcs.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..1ba8770 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Security.Cryptography.Xml.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Security.Cryptography.Xml.dll new file mode 100644 index 0000000..96d460e Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.Security.Cryptography.Xml.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Security.Permissions.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Security.Permissions.dll new file mode 100644 index 0000000..39dd4df Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.Security.Permissions.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.Duplex.dll b/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.Duplex.dll new file mode 100644 index 0000000..7eeafd5 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.Duplex.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.Http.dll b/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.Http.dll new file mode 100644 index 0000000..79aab9d Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.Http.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.NetTcp.dll b/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.NetTcp.dll new file mode 100644 index 0000000..a59b27e Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.NetTcp.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.Primitives.dll b/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.Primitives.dll new file mode 100644 index 0000000..8c32245 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.Primitives.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.Security.dll b/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.Security.dll new file mode 100644 index 0000000..5f2fc73 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.Security.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.Syndication.dll b/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.Syndication.dll new file mode 100644 index 0000000..0dab5e1 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.Syndication.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.dll b/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.dll new file mode 100644 index 0000000..e7849b5 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.ServiceModel.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.ServiceProcess.ServiceController.dll b/linguard/Core.Test/bin/Debug/net6.0/System.ServiceProcess.ServiceController.dll new file mode 100644 index 0000000..3e5508c Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.ServiceProcess.ServiceController.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Speech.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Speech.dll new file mode 100644 index 0000000..9d14819 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.Speech.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Threading.AccessControl.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Threading.AccessControl.dll new file mode 100644 index 0000000..b6d69a4 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.Threading.AccessControl.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Web.Services.Description.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Web.Services.Description.dll new file mode 100644 index 0000000..c230b5c Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.Web.Services.Description.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/System.Windows.Extensions.dll b/linguard/Core.Test/bin/Debug/net6.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..c3e8844 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/System.Windows.Extensions.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/YamlDotNet.dll b/linguard/Core.Test/bin/Debug/net6.0/YamlDotNet.dll new file mode 100644 index 0000000..76b7999 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/YamlDotNet.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..d0282cc Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..fd3063e Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..5c1af97 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..e1c01df Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..ce740a9 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..574f796 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..7a1fec6 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/cs/System.Private.ServiceModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/cs/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..2cedcf5 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/cs/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/cs/System.Web.Services.Description.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/cs/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..efe25cb Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/cs/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..e079e05 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..54aa47d Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..3d6e0dc Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..0848125 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..2034f65 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..4d0c9fd Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..ed8bc45 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/de/System.Private.ServiceModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/de/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..3dc63b8 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/de/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/de/System.Web.Services.Description.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/de/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..1f9fae9 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/de/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..4afd9fa Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..2d6218e Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..c792e28 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..51485bf Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..a4d93b5 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..86cf825 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..fcba277 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/es/System.Private.ServiceModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/es/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..65078e9 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/es/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/es/System.Web.Services.Description.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/es/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..edfce43 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/es/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..93a31c1 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..a22b8d5 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..0b0764c Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..8708f22 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..8247ff9 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..c15b990 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..0668bcb Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/fr/System.Private.ServiceModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/fr/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..a2ad076 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/fr/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/fr/System.Web.Services.Description.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/fr/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..a9e94e0 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/fr/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..7f9325d Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..e71779f Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..defdb16 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..79e3b5e Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..2536a93 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..61df169 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..9a9115e Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/it/System.Private.ServiceModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/it/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..7bb0d14 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/it/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/it/System.Web.Services.Description.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/it/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..d8b5101 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/it/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..58a375d Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..8c8510d Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..e1aa3f0 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..da68de3 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..f4fab58 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..2e53ae8 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..09b1d90 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ja/System.Private.ServiceModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ja/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..c92e54a Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ja/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ja/System.Web.Services.Description.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ja/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..d166bd0 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ja/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..3b3f0ed Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..66458d5 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..0bf0154 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..5ef656b Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..3feea7f Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..1599d60 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..6b0b4e8 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ko/System.Private.ServiceModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ko/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..5f09fb1 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ko/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ko/System.Web.Services.Description.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ko/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..7acc280 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ko/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..0c6175e Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..82ff47c Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..32121f9 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..e5d2843 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..b9db57e Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..f82d92d Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..526583e Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pl/System.Private.ServiceModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pl/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..bcdbbbb Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/pl/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pl/System.Web.Services.Description.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pl/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..421c859 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/pl/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..2d2ccbe Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..b583d8e Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..217f281 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..d6385c8 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..0817f52 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..a468b89 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..a9f6887 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pt-BR/System.Private.ServiceModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pt-BR/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..6138c5d Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/pt-BR/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/pt-BR/System.Web.Services.Description.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/pt-BR/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..8d4c892 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/pt-BR/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/Core.Test.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/Core.Test.dll new file mode 100644 index 0000000..258ba6a Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/Core.Test.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/Microsoft.CSharp.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/Microsoft.CSharp.dll new file mode 100644 index 0000000..00529c3 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/Microsoft.CSharp.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/Microsoft.VisualBasic.Core.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/Microsoft.VisualBasic.Core.dll new file mode 100644 index 0000000..d37bdc6 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/Microsoft.VisualBasic.Core.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/Microsoft.VisualBasic.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/Microsoft.VisualBasic.dll new file mode 100644 index 0000000..eb198db Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/Microsoft.VisualBasic.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/Microsoft.Win32.Primitives.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/Microsoft.Win32.Primitives.dll new file mode 100644 index 0000000..e39072e Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/Microsoft.Win32.Primitives.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/Microsoft.Win32.Registry.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/Microsoft.Win32.Registry.dll new file mode 100644 index 0000000..0e4ca23 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/Microsoft.Win32.Registry.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.AppContext.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.AppContext.dll new file mode 100644 index 0000000..949e26a Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.AppContext.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Buffers.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Buffers.dll new file mode 100644 index 0000000..0ba2017 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Buffers.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Collections.Concurrent.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Collections.Concurrent.dll new file mode 100644 index 0000000..a34bdfd Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Collections.Concurrent.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Collections.Immutable.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Collections.Immutable.dll new file mode 100644 index 0000000..3559d71 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Collections.Immutable.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Collections.NonGeneric.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..0ff1e9e Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Collections.NonGeneric.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Collections.Specialized.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Collections.Specialized.dll new file mode 100644 index 0000000..9e63d8f Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Collections.Specialized.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Collections.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Collections.dll new file mode 100644 index 0000000..c563b3d Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Collections.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.Annotations.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.Annotations.dll new file mode 100644 index 0000000..e719616 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.Annotations.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.DataAnnotations.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 0000000..e92b9ec Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.DataAnnotations.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.EventBasedAsync.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 0000000..c13cab7 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.EventBasedAsync.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.Primitives.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.Primitives.dll new file mode 100644 index 0000000..2c8ac32 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.Primitives.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.TypeConverter.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.TypeConverter.dll new file mode 100644 index 0000000..8af874e Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.TypeConverter.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.dll new file mode 100644 index 0000000..dedec7c Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.ComponentModel.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Configuration.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Configuration.dll new file mode 100644 index 0000000..54fdf89 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Configuration.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Console.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Console.dll new file mode 100644 index 0000000..5934da2 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Console.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Core.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Core.dll new file mode 100644 index 0000000..b5abba6 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Core.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Data.Common.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Data.Common.dll new file mode 100644 index 0000000..fb6df46 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Data.Common.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Data.DataSetExtensions.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Data.DataSetExtensions.dll new file mode 100644 index 0000000..e5afb2e Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Data.DataSetExtensions.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Data.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Data.dll new file mode 100644 index 0000000..e54bdf1 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Data.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.Contracts.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.Contracts.dll new file mode 100644 index 0000000..b2a4266 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.Contracts.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.Debug.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.Debug.dll new file mode 100644 index 0000000..a0cd3f8 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.Debug.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.DiagnosticSource.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..39a6217 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.DiagnosticSource.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.FileVersionInfo.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 0000000..439c771 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.FileVersionInfo.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.Process.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.Process.dll new file mode 100644 index 0000000..2091f8c Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.Process.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.StackTrace.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..4b5a3d7 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.StackTrace.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.TextWriterTraceListener.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 0000000..1a5cbf2 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.Tools.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.Tools.dll new file mode 100644 index 0000000..335c9c1 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.Tools.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.TraceSource.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.TraceSource.dll new file mode 100644 index 0000000..749ba40 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.TraceSource.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.Tracing.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.Tracing.dll new file mode 100644 index 0000000..338074d Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Diagnostics.Tracing.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Drawing.Primitives.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Drawing.Primitives.dll new file mode 100644 index 0000000..8c0a332 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Drawing.Primitives.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Drawing.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Drawing.dll new file mode 100644 index 0000000..b226cf3 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Drawing.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Dynamic.Runtime.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Dynamic.Runtime.dll new file mode 100644 index 0000000..70edfa6 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Dynamic.Runtime.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Formats.Asn1.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Formats.Asn1.dll new file mode 100644 index 0000000..8625760 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Formats.Asn1.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Globalization.Calendars.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Globalization.Calendars.dll new file mode 100644 index 0000000..21a0037 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Globalization.Calendars.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Globalization.Extensions.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Globalization.Extensions.dll new file mode 100644 index 0000000..0dd96b7 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Globalization.Extensions.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Globalization.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Globalization.dll new file mode 100644 index 0000000..1c2e682 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Globalization.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Compression.Brotli.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Compression.Brotli.dll new file mode 100644 index 0000000..297977e Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Compression.Brotli.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Compression.FileSystem.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Compression.FileSystem.dll new file mode 100644 index 0000000..6586130 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Compression.FileSystem.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Compression.ZipFile.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Compression.ZipFile.dll new file mode 100644 index 0000000..6c9be3c Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Compression.ZipFile.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Compression.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Compression.dll new file mode 100644 index 0000000..832d832 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Compression.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.AccessControl.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.AccessControl.dll new file mode 100644 index 0000000..37f5c30 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.AccessControl.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.DriveInfo.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 0000000..3fafa94 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.DriveInfo.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.Primitives.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.Primitives.dll new file mode 100644 index 0000000..7e7c838 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.Primitives.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.Watcher.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.Watcher.dll new file mode 100644 index 0000000..413f9b4 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.Watcher.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.dll new file mode 100644 index 0000000..e2be89f Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.FileSystem.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.IsolatedStorage.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.IsolatedStorage.dll new file mode 100644 index 0000000..a17e9fc Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.IsolatedStorage.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.MemoryMappedFiles.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..2d4175d Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.MemoryMappedFiles.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Pipes.AccessControl.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Pipes.AccessControl.dll new file mode 100644 index 0000000..8627e1d Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Pipes.AccessControl.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Pipes.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Pipes.dll new file mode 100644 index 0000000..401b732 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.Pipes.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.UnmanagedMemoryStream.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 0000000..9c49c70 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.UnmanagedMemoryStream.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.dll new file mode 100644 index 0000000..02ce4e2 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.IO.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Linq.Expressions.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Linq.Expressions.dll new file mode 100644 index 0000000..65c06c3 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Linq.Expressions.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Linq.Parallel.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Linq.Parallel.dll new file mode 100644 index 0000000..02a5fa6 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Linq.Parallel.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Linq.Queryable.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Linq.Queryable.dll new file mode 100644 index 0000000..0eeb7c8 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Linq.Queryable.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Linq.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Linq.dll new file mode 100644 index 0000000..2a86c79 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Linq.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Memory.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Memory.dll new file mode 100644 index 0000000..388044d Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Memory.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Http.Json.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Http.Json.dll new file mode 100644 index 0000000..22997ef Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Http.Json.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Http.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Http.dll new file mode 100644 index 0000000..abaf3da Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Http.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.HttpListener.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.HttpListener.dll new file mode 100644 index 0000000..55c3152 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.HttpListener.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Mail.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Mail.dll new file mode 100644 index 0000000..8c06ec8 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Mail.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.NameResolution.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.NameResolution.dll new file mode 100644 index 0000000..98dd2d8 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.NameResolution.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.NetworkInformation.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.NetworkInformation.dll new file mode 100644 index 0000000..842064d Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.NetworkInformation.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Ping.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Ping.dll new file mode 100644 index 0000000..0d4d3a9 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Ping.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Primitives.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Primitives.dll new file mode 100644 index 0000000..d54f4bd Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Primitives.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Requests.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Requests.dll new file mode 100644 index 0000000..f314471 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Requests.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Security.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Security.dll new file mode 100644 index 0000000..4e348d7 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Security.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.ServicePoint.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.ServicePoint.dll new file mode 100644 index 0000000..6077da1 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.ServicePoint.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Sockets.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Sockets.dll new file mode 100644 index 0000000..1af0691 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.Sockets.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.WebClient.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.WebClient.dll new file mode 100644 index 0000000..6a4a572 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.WebClient.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.WebHeaderCollection.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.WebHeaderCollection.dll new file mode 100644 index 0000000..114289b Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.WebHeaderCollection.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.WebProxy.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.WebProxy.dll new file mode 100644 index 0000000..d65ea58 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.WebProxy.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.WebSockets.Client.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.WebSockets.Client.dll new file mode 100644 index 0000000..5717169 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.WebSockets.Client.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.WebSockets.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.WebSockets.dll new file mode 100644 index 0000000..5bfa921 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.WebSockets.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.dll new file mode 100644 index 0000000..62feba4 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Net.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Numerics.Vectors.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Numerics.Vectors.dll new file mode 100644 index 0000000..2c3a984 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Numerics.Vectors.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Numerics.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Numerics.dll new file mode 100644 index 0000000..5d186c8 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Numerics.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.ObjectModel.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.ObjectModel.dll new file mode 100644 index 0000000..f92cc11 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.ObjectModel.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.DispatchProxy.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.DispatchProxy.dll new file mode 100644 index 0000000..b888c4b Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.DispatchProxy.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.ILGeneration.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.ILGeneration.dll new file mode 100644 index 0000000..81911c6 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.ILGeneration.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.Lightweight.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.Lightweight.dll new file mode 100644 index 0000000..045952c Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.Lightweight.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.dll new file mode 100644 index 0000000..e579588 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Emit.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Extensions.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Extensions.dll new file mode 100644 index 0000000..7987d1d Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Extensions.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Metadata.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Metadata.dll new file mode 100644 index 0000000..50158de Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Metadata.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Primitives.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Primitives.dll new file mode 100644 index 0000000..d9210c0 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.Primitives.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.TypeExtensions.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.TypeExtensions.dll new file mode 100644 index 0000000..792c8c8 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.TypeExtensions.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.dll new file mode 100644 index 0000000..3021f73 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Reflection.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Resources.Reader.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Resources.Reader.dll new file mode 100644 index 0000000..e46173b Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Resources.Reader.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Resources.ResourceManager.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Resources.ResourceManager.dll new file mode 100644 index 0000000..fc44423 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Resources.ResourceManager.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Resources.Writer.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Resources.Writer.dll new file mode 100644 index 0000000..68980f9 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Resources.Writer.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.Unsafe.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 0000000..546930e Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.VisualC.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 0000000..277cb81 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Extensions.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Extensions.dll new file mode 100644 index 0000000..441841e Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Extensions.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Handles.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Handles.dll new file mode 100644 index 0000000..70e3278 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Handles.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 0000000..89f8d39 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.InteropServices.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.InteropServices.dll new file mode 100644 index 0000000..a39d097 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.InteropServices.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Intrinsics.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Intrinsics.dll new file mode 100644 index 0000000..c9fcd40 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Intrinsics.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Loader.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Loader.dll new file mode 100644 index 0000000..f109988 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Loader.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Numerics.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Numerics.dll new file mode 100644 index 0000000..89937d1 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Numerics.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Formatters.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 0000000..5438ce3 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Formatters.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Json.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Json.dll new file mode 100644 index 0000000..399a512 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Json.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Primitives.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 0000000..c402e8a Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Primitives.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Xml.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Xml.dll new file mode 100644 index 0000000..84fffc5 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.Xml.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.dll new file mode 100644 index 0000000..1c1891a Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.Serialization.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.dll new file mode 100644 index 0000000..921a08b Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Runtime.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.AccessControl.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.AccessControl.dll new file mode 100644 index 0000000..2c6f9f4 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.AccessControl.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Claims.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Claims.dll new file mode 100644 index 0000000..b6297f6 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Claims.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Algorithms.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 0000000..4b89540 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Algorithms.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Cng.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Cng.dll new file mode 100644 index 0000000..e76a578 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Cng.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Csp.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Csp.dll new file mode 100644 index 0000000..2ceae69 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Csp.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Encoding.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Encoding.dll new file mode 100644 index 0000000..a975809 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Encoding.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.OpenSsl.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.OpenSsl.dll new file mode 100644 index 0000000..df3a3a9 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.OpenSsl.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Primitives.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Primitives.dll new file mode 100644 index 0000000..21222a6 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.Primitives.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.X509Certificates.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 0000000..eee372d Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Cryptography.X509Certificates.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Principal.Windows.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Principal.Windows.dll new file mode 100644 index 0000000..9a3798b Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Principal.Windows.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Principal.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Principal.dll new file mode 100644 index 0000000..0dbfa46 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.Principal.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.SecureString.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.SecureString.dll new file mode 100644 index 0000000..7299b40 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.SecureString.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.dll new file mode 100644 index 0000000..b83e96a Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Security.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.ServiceModel.Web.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.ServiceModel.Web.dll new file mode 100644 index 0000000..a4d4e0f Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.ServiceModel.Web.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.ServiceProcess.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.ServiceProcess.dll new file mode 100644 index 0000000..86c09dc Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.ServiceProcess.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.Encoding.CodePages.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.Encoding.CodePages.dll new file mode 100644 index 0000000..5ce72b1 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.Encoding.CodePages.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.Encoding.Extensions.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.Encoding.Extensions.dll new file mode 100644 index 0000000..05e497a Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.Encoding.Extensions.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.Encoding.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.Encoding.dll new file mode 100644 index 0000000..46c5400 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.Encoding.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.Encodings.Web.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..f2b10eb Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.Encodings.Web.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.Json.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.Json.dll new file mode 100644 index 0000000..37851d2 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.Json.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.RegularExpressions.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..983cbbd Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Text.RegularExpressions.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Channels.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Channels.dll new file mode 100644 index 0000000..34ae646 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Channels.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Overlapped.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Overlapped.dll new file mode 100644 index 0000000..9092609 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Overlapped.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Dataflow.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Dataflow.dll new file mode 100644 index 0000000..0731d06 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Dataflow.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Extensions.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Extensions.dll new file mode 100644 index 0000000..e5840ae Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Extensions.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Parallel.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Parallel.dll new file mode 100644 index 0000000..5bec78b Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.Parallel.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.dll new file mode 100644 index 0000000..04704d0 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Tasks.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Thread.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Thread.dll new file mode 100644 index 0000000..de9a348 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Thread.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.ThreadPool.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.ThreadPool.dll new file mode 100644 index 0000000..efab9c3 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.ThreadPool.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Timer.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Timer.dll new file mode 100644 index 0000000..718a039 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.Timer.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.dll new file mode 100644 index 0000000..d697919 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Threading.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Transactions.Local.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Transactions.Local.dll new file mode 100644 index 0000000..03df1fb Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Transactions.Local.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Transactions.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Transactions.dll new file mode 100644 index 0000000..1bd2e0a Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Transactions.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.ValueTuple.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.ValueTuple.dll new file mode 100644 index 0000000..b6103f6 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.ValueTuple.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Web.HttpUtility.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Web.HttpUtility.dll new file mode 100644 index 0000000..c77ebab Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Web.HttpUtility.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Web.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Web.dll new file mode 100644 index 0000000..d04d5e3 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Web.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Windows.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Windows.dll new file mode 100644 index 0000000..9133038 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Windows.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.Linq.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.Linq.dll new file mode 100644 index 0000000..d8aa5cd Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.Linq.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.ReaderWriter.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..66f199d Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.ReaderWriter.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.Serialization.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.Serialization.dll new file mode 100644 index 0000000..92bc678 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.Serialization.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.XDocument.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.XDocument.dll new file mode 100644 index 0000000..5ba2260 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.XDocument.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.XPath.XDocument.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.XPath.XDocument.dll new file mode 100644 index 0000000..be27c4e Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.XPath.XDocument.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.XPath.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.XPath.dll new file mode 100644 index 0000000..22482d8 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.XPath.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.XmlDocument.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.XmlDocument.dll new file mode 100644 index 0000000..20d0fac Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.XmlDocument.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.XmlSerializer.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.XmlSerializer.dll new file mode 100644 index 0000000..0a1664c Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.XmlSerializer.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.dll new file mode 100644 index 0000000..f2b768e Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.Xml.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/System.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/System.dll new file mode 100644 index 0000000..9e8d0a4 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/System.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/WindowsBase.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/WindowsBase.dll new file mode 100644 index 0000000..1032969 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/WindowsBase.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/mscorlib.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/mscorlib.dll new file mode 100644 index 0000000..31e8f9b Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/mscorlib.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ref/netstandard.dll b/linguard/Core.Test/bin/Debug/net6.0/ref/netstandard.dll new file mode 100644 index 0000000..1452256 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ref/netstandard.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..08d18ad Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..0d0a62d Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..191d8b0 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..223ddc1 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..08d3cba Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..945add7 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..794e7f7 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ru/System.Private.ServiceModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ru/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..11f804c Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ru/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/ru/System.Web.Services.Description.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/ru/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..a43bf0d Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/ru/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll new file mode 100644 index 0000000..8e0d27d Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/illumos/lib/net6.0/System.Data.Odbc.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/illumos/lib/net6.0/System.Data.Odbc.dll new file mode 100644 index 0000000..86425c9 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/illumos/lib/net6.0/System.Data.Odbc.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/ios/lib/net6.0/System.Data.Odbc.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/ios/lib/net6.0/System.Data.Odbc.dll new file mode 100644 index 0000000..72945c5 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/ios/lib/net6.0/System.Data.Odbc.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-arm/native/libSystem.IO.Ports.Native.so b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-arm/native/libSystem.IO.Ports.Native.so new file mode 100644 index 0000000..78b5008 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-arm/native/libSystem.IO.Ports.Native.so differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-arm/native/libpsl-native.so b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-arm/native/libpsl-native.so new file mode 100644 index 0000000..eb7876d Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-arm/native/libpsl-native.so differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so new file mode 100644 index 0000000..dd85d2d Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-arm64/native/libpsl-native.so b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-arm64/native/libpsl-native.so new file mode 100644 index 0000000..ed4929b Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-arm64/native/libpsl-native.so differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-musl-x64/native/libpsl-native.so b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-musl-x64/native/libpsl-native.so new file mode 100644 index 0000000..222670d Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-musl-x64/native/libpsl-native.so differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libSystem.IO.Ports.Native.so b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libSystem.IO.Ports.Native.so new file mode 100644 index 0000000..9dbd44e Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libSystem.IO.Ports.Native.so differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libmi.so b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libmi.so new file mode 100644 index 0000000..e87da8d Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libmi.so differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libpsl-native.so b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libpsl-native.so new file mode 100644 index 0000000..c04a0e3 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libpsl-native.so differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libpsrpclient.so b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libpsrpclient.so new file mode 100644 index 0000000..029ac86 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux-x64/native/libpsrpclient.so differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.Data.Odbc.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.Data.Odbc.dll new file mode 100644 index 0000000..6e67ec3 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.Data.Odbc.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..75139e1 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib b/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib new file mode 100644 index 0000000..974ae77 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib b/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib new file mode 100644 index 0000000..96ba9bf Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.Data.Odbc.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.Data.Odbc.dll new file mode 100644 index 0000000..eef28b5 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.Data.Odbc.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..3a64667 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx/native/libmi.dylib b/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx/native/libmi.dylib new file mode 100644 index 0000000..71880e4 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx/native/libmi.dylib differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx/native/libpsl-native.dylib b/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx/native/libpsl-native.dylib new file mode 100644 index 0000000..f4df8f4 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx/native/libpsl-native.dylib differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx/native/libpsrpclient.dylib b/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx/native/libpsrpclient.dylib new file mode 100644 index 0000000..13680bf Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/osx/native/libpsrpclient.dylib differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/solaris/lib/net6.0/System.Data.Odbc.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/solaris/lib/net6.0/System.Data.Odbc.dll new file mode 100644 index 0000000..e283d99 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/solaris/lib/net6.0/System.Data.Odbc.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/tvos/lib/net6.0/System.Data.Odbc.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/tvos/lib/net6.0/System.Data.Odbc.dll new file mode 100644 index 0000000..9648360 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/tvos/lib/net6.0/System.Data.Odbc.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll new file mode 100644 index 0000000..93d7ef2 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll new file mode 100644 index 0000000..3258453 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll new file mode 100644 index 0000000..8cedac7 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll new file mode 100644 index 0000000..0ca804c Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll new file mode 100644 index 0000000..60f30e3 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 new file mode 100644 index 0000000..53e9bc5 --- /dev/null +++ b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 @@ -0,0 +1,14 @@ +@{ +GUID="56D66100-99A0-4FFC-A12D-EEE9A6718AEF" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +FunctionsToExport = @() +CmdletsToExport="Start-Transcript", "Stop-Transcript" +AliasesToExport = @() +NestedModules="Microsoft.PowerShell.ConsoleHost.dll" +HelpInfoURI = 'https://aka.ms/powershell72-help' +} diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 new file mode 100644 index 0000000..8d4d985 --- /dev/null +++ b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 @@ -0,0 +1,60 @@ +@{ +GUID="EEFCB906-B326-4E99-9F54-8B4BB6EF3C6D" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +NestedModules="Microsoft.PowerShell.Commands.Management.dll" +HelpInfoURI = 'https://aka.ms/powershell72-help' +FunctionsToExport = @() +AliasesToExport = @("gcb", "gtz", "scb") +CmdletsToExport=@("Add-Content", + "Clear-Content", + "Clear-ItemProperty", + "Join-Path", + "Convert-Path", + "Copy-ItemProperty", + "Get-ChildItem", + "Get-Clipboard", + "Set-Clipboard", + "Get-Content", + "Get-ItemProperty", + "Get-ItemPropertyValue", + "Move-ItemProperty", + "Get-Location", + "Set-Location", + "Push-Location", + "Pop-Location", + "New-PSDrive", + "Remove-PSDrive", + "Get-PSDrive", + "Get-Item", + "New-Item", + "Set-Item", + "Remove-Item", + "Move-Item", + "Rename-Item", + "Copy-Item", + "Clear-Item", + "Invoke-Item", + "Get-PSProvider", + "New-ItemProperty", + "Split-Path", + "Test-Path", + "Get-Process", + "Stop-Process", + "Wait-Process", + "Debug-Process", + "Start-Process", + "Test-Connection", + "Remove-ItemProperty", + "Rename-ItemProperty", + "Resolve-Path", + "Set-Content", + "Set-ItemProperty", + "Get-TimeZone", + "Stop-Computer", + "Restart-Computer") +} diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 new file mode 100644 index 0000000..9c9f978 --- /dev/null +++ b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 @@ -0,0 +1,14 @@ +@{ +GUID="A94C8C7E-9810-47C0-B8AF-65089C13A35A" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +FunctionsToExport = @() +CmdletsToExport="Get-Credential", "Get-ExecutionPolicy", "Set-ExecutionPolicy", "ConvertFrom-SecureString", "ConvertTo-SecureString", "Get-PfxCertificate" , "Protect-CmsMessage", "Unprotect-CmsMessage", "Get-CmsMessage" +AliasesToExport = @() +NestedModules="Microsoft.PowerShell.Security.dll" +HelpInfoURI = 'https://aka.ms/powershell72-help' +} diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 new file mode 100644 index 0000000..8efcaa0 --- /dev/null +++ b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 @@ -0,0 +1,34 @@ +@{ +GUID = "1DA87E53-152B-403E-98DC-74D7B4D63D59" +Author = "PowerShell" +CompanyName = "Microsoft Corporation" +Copyright = "Copyright (c) Microsoft Corporation." +ModuleVersion = "7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion = "3.0" +CmdletsToExport = @( + 'Export-Alias', 'Get-Alias', 'Import-Alias', 'New-Alias', 'Remove-Alias', 'Set-Alias', 'Export-Clixml', + 'Import-Clixml', 'Measure-Command', 'Trace-Command', 'ConvertFrom-Csv', 'ConvertTo-Csv', 'Export-Csv', + 'Import-Csv', 'Get-Culture', 'Format-Custom', 'Get-Date', 'Set-Date', 'Write-Debug', 'Wait-Debugger', + 'Register-EngineEvent', 'Write-Error', 'Get-Event', 'New-Event', 'Remove-Event', 'Unregister-Event', + 'Wait-Event', 'Get-EventSubscriber', 'Invoke-Expression', 'Out-File', 'Get-FileHash', 'Export-FormatData', + 'Get-FormatData', 'Update-FormatData', 'New-Guid', 'Format-Hex', 'Get-Host', 'Read-Host', 'Write-Host', + 'ConvertTo-Html', 'Write-Information', 'ConvertFrom-Json', 'ConvertTo-Json', 'Test-Json', 'Format-List', + 'Import-LocalizedData', 'Send-MailMessage', 'ConvertFrom-Markdown', 'Show-Markdown', 'Get-MarkdownOption', + 'Set-MarkdownOption', 'Add-Member', 'Get-Member', 'Compare-Object', 'Group-Object', 'Measure-Object', + 'New-Object', 'Select-Object', 'Sort-Object', 'Tee-Object', 'Register-ObjectEvent', 'Write-Output', + 'Import-PowerShellDataFile', 'Write-Progress', 'Disable-PSBreakpoint', 'Enable-PSBreakpoint', + 'Get-PSBreakpoint', 'Remove-PSBreakpoint', 'Set-PSBreakpoint', 'Get-PSCallStack', 'Export-PSSession', + 'Import-PSSession', 'Get-Random', 'Invoke-RestMethod', 'Debug-Runspace', 'Get-Runspace', + 'Disable-RunspaceDebug', 'Enable-RunspaceDebug', 'Get-RunspaceDebug', 'Start-Sleep', 'Join-String', + 'Out-String', 'Select-String', 'ConvertFrom-StringData', 'Format-Table', 'New-TemporaryFile', 'New-TimeSpan', + 'Get-TraceSource', 'Set-TraceSource', 'Add-Type', 'Get-TypeData', 'Remove-TypeData', 'Update-TypeData', + 'Get-UICulture', 'Get-Unique', 'Get-Uptime', 'Clear-Variable', 'Get-Variable', 'New-Variable', + 'Remove-Variable', 'Set-Variable', 'Get-Verb', 'Write-Verbose', 'Write-Warning', 'Invoke-WebRequest', + 'Format-Wide', 'ConvertTo-Xml', 'Select-Xml', 'Get-Error', 'Update-List', 'Unblock-File' +) +FunctionsToExport = @() +AliasesToExport = @('fhx') +NestedModules = @("Microsoft.PowerShell.Commands.Utility.dll") +HelpInfoURI = 'https://aka.ms/powershell72-help' +} diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll new file mode 100644 index 0000000..9e26473 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.IO.Ports.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.IO.Ports.dll new file mode 100644 index 0000000..8e7b399 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.IO.Ports.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Management.Automation.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Management.Automation.dll new file mode 100644 index 0000000..a5f1912 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/net6.0/System.Management.Automation.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll new file mode 100644 index 0000000..ad2a602 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..78105ed Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..2e7bf94 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..ac47598 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll new file mode 100644 index 0000000..56a149b Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll new file mode 100644 index 0000000..f60631c Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/native/mi.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/native/mi.dll new file mode 100644 index 0000000..7228cd0 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/native/mi.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/native/miutils.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/native/miutils.dll new file mode 100644 index 0000000..ab98cbf Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/native/miutils.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/native/pwrshplugin.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/native/pwrshplugin.dll new file mode 100644 index 0000000..0eec871 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm/native/pwrshplugin.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..50860ab Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..9dbe56e Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll new file mode 100644 index 0000000..a78573d Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll new file mode 100644 index 0000000..b148487 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/mi.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/mi.dll new file mode 100644 index 0000000..eb971a1 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/mi.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/miutils.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/miutils.dll new file mode 100644 index 0000000..0d3985d Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/miutils.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/pwrshplugin.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/pwrshplugin.dll new file mode 100644 index 0000000..f36ee7d Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/pwrshplugin.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/sni.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/sni.dll new file mode 100644 index 0000000..7b8f9d8 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-arm64/native/sni.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll new file mode 100644 index 0000000..9d148cf Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x64/native/pwrshplugin.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x64/native/pwrshplugin.dll new file mode 100644 index 0000000..74da742 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x64/native/pwrshplugin.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x64/native/sni.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x64/native/sni.dll new file mode 100644 index 0000000..c1a05a5 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x64/native/sni.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll new file mode 100644 index 0000000..79a3085 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x86/native/pwrshplugin.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x86/native/pwrshplugin.dll new file mode 100644 index 0000000..200bf77 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x86/native/pwrshplugin.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x86/native/sni.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x86/native/sni.dll new file mode 100644 index 0000000..5fc21ac Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win-x86/native/sni.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll new file mode 100644 index 0000000..c8ff3c8 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll new file mode 100644 index 0000000..997d268 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll new file mode 100644 index 0000000..1e4a567 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll new file mode 100644 index 0000000..3e7ffc4 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll new file mode 100644 index 0000000..3dfb631 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll new file mode 100644 index 0000000..fa3247a Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll new file mode 100644 index 0000000..b6dc868 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll new file mode 100644 index 0000000..8ed4dde Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll new file mode 100644 index 0000000..b6a87a7 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll new file mode 100644 index 0000000..9896fd3 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll new file mode 100644 index 0000000..18eb223 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..66af198 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/CimCmdlets/CimCmdlets.psd1 b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/CimCmdlets/CimCmdlets.psd1 new file mode 100644 index 0000000..9c74ac8 --- /dev/null +++ b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/CimCmdlets/CimCmdlets.psd1 @@ -0,0 +1,233 @@ +@{ +GUID="{Fb6cc51d-c096-4b38-b78d-0fed6277096a}" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +RootModule="Microsoft.Management.Infrastructure.CimCmdlets" +RequiredAssemblies="Microsoft.Management.Infrastructure.CimCmdlets.dll","Microsoft.Management.Infrastructure.Dll" +FunctionsToExport = @() +CmdletsToExport= "Get-CimAssociatedInstance", "Get-CimClass", "Get-CimInstance", "Get-CimSession", "Invoke-CimMethod", + "New-CimInstance","New-CimSession","New-CimSessionOption","Register-CimIndicationEvent","Remove-CimInstance", + "Remove-CimSession","Set-CimInstance", + "Export-BinaryMiLog","Import-BinaryMiLog" +AliasesToExport = "gcim","scim","ncim", "rcim","icim","gcai","rcie","ncms","rcms","gcms","ncso","gcls" +HelpInfoUri="https://aka.ms/powershell72-help" +} + +# SIG # Begin signature block +# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCDVr9wtf0/6ef8P +# 7Oewmh6e4caAvboErstvAWik/E+xjqCCDYEwggX/MIID56ADAgECAhMzAAACUosz +# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I +# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O +# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA +# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o +# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 +# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 +# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp +# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 +# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u +# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 +# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti +# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z +# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf +# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK +# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW +# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F +# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQggKe1Wa+d +# fYvru2vipTPxs79u032BOtU/CXLz68NBYs0wQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQB0Sx7LIYYO505eD5CAwvSG6wwrjjzKL/MSFiL9Nh0Q +# YDyFIX4UsB617gQ/OLzvBaXpzuGbkzdtbxGuknwe5pNeLgzdAPj8f3aMfNM7JnL0 +# Pu6HUmHuaD11aY9bOOoddRWRZDGoSMXaPXvTHGXo8lk672+n6e2SNB28QG1ASAt7 +# 20qZLgr0ujUBlUe4zyg5MxZseqjEGR3bsUSltPOu2F107jcNqj1YZ/HXJHCAniSd +# XdMRipCWeydTNPpPLCWVtcjTyxXnJoDbTEVtyOpFx/0YxCgazCDY0ae+QKzp7sNe +# qbnNd30/F9pJ2S3hu9z9RcpgxbYDIHchMVO970sQOyvNoYIXGTCCFxUGCisGAQQB +# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME +# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIAaCwImJ8DxZ2FNq1L4wuBej3xtvL6SPai8XFzEz +# uLyVAgZhlV4Kp6EYEzIwMjExMjA4MjEwNDEzLjk2M1owBIACAfSggdikgdUwgdIx +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p +# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh +# bGVzIFRTUyBFU046MkFENC00QjkyLUZBMDExJTAjBgNVBAMTHE1pY3Jvc29mdCBU +# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYZ45RmJ+CRL +# zAABAAABhjANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg +# MjAxMDAeFw0yMTEwMjgxOTI3MzlaFw0yMzAxMjYxOTI3MzlaMIHSMQswCQYDVQQG +# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG +# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg +# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg +# RVNOOjJBRDQtNEI5Mi1GQTAxMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt +# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwI3G2Wpv +# 6B4IjAfrgfJpndPOPYO1Yd8+vlfoIxMW3gdCDT+zIbafg14pOu0t0ekUQx60p7Pa +# dH4OjnqNIE1q6ldH9ntj1gIdl4Hq4rdEHTZ6JFdE24DSbVoqqR+R4Iw4w3GPbfc2 +# Q3kfyyFyj+DOhmCWw/FZiTVTlT4bdejyAW6r/Jn4fr3xLjbvhITatr36VyyzgQ0Y +# 4Wr73H3gUcLjYu0qiHutDDb6+p+yDBGmKFznOW8wVt7D+u2VEJoE6JlK0EpVLZus +# dSzhecuUwJXxb2uygAZXlsa/fHlwW9YnlBqMHJ+im9HuK5X4x8/5B5dkuIoX5lWG +# jFMbD2A6Lu/PmUB4hK0CF5G1YaUtBrME73DAKkypk7SEm3BlJXwY/GrVoXWYUGEH +# yfrkLkws0RoEMpoIEgebZNKqjRynRJgR4fPCKrEhwEiTTAc4DXGci4HHOm64EQ1g +# /SDHMFqIKVSxoUbkGbdKNKHhmahuIrAy4we9s7rZJskveZYZiDmtAtBt/gQojxbZ +# 1vO9C11SthkrmkkTMLQf9cDzlVEBeu6KmHX2Sze6ggne3I4cy/5IULnHZ3rM4ZpJ +# c0s2KpGLHaVrEQy4x/mAn4yaYfgeH3MEAWkVjy/qTDh6cDCF/gyz3TaQDtvFnAK7 +# 0LqtbEvBPdBpeCG/hk9l0laYzwiyyGY/HqMCAwEAAaOCATYwggEyMB0GA1UdDgQW +# BBQZtqNFA+9mdEu/h33UhHMN6whcLjAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl +# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j +# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx +# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh +# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG +# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQDD7mehJY3fTHKC4hj+wBWB8544 +# uaJiMMIHnhK9ONTM7VraTYzx0U/TcLJ6gxw1tRzM5uu8kswJNlHNp7RedsAiwviV +# QZV9AL8IbZRLJTwNehCwk+BVcY2gh3ZGZmx8uatPZrRueyhhTTD2PvFVLrfwh2li +# DG/dEPNIHTKj79DlEcPIWoOCUp7p0ORMwQ95kVaibpX89pvjhPl2Fm0CBO3pXXJg +# 0bydpQ5dDDTv/qb0+WYF/vNVEU/MoMEQqlUWWuXECTqx6TayJuLJ6uU7K5QyTkQ/ +# l24IhGjDzf5AEZOrINYzkWVyNfUOpIxnKsWTBN2ijpZ/Tun5qrmo9vNIDT0lobgn +# ulae17NaEO9oiEJJH1tQ353dhuRi+A00PR781iYlzF5JU1DrEfEyNx8CWgERi90L +# KsYghZBCDjQ3DiJjfUZLqONeHrJfcmhz5/bfm8+aAaUPpZFeP0g0Iond6XNk4YiY +# bWPFoofc0LwcqSALtuIAyz6f3d+UaZZsp41U4hCIoGj6hoDIuU839bo/mZ/AgESw +# GxIXs0gZU6A+2qIUe60QdA969wWSzucKOisng9HCSZLF1dqc3QUawr0C0U41784K +# o9vckAG3akwYuVGcs6hM/SqEhoe9jHwe4Xp81CrTB1l9+EIdukCbP0kyzx0WZzte +# eiDN5rdiiQR9mBJuljCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw +# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n +# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y +# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv +# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg +# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO +# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 +# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 +# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL +# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 +# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj +# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE +# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 +# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 +# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB +# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE +# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG +# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 +# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV +# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV +# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo +# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m +# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j +# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv +# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN +# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 +# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 +# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX +# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew +# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 +# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd +# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr +# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh +# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n +# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ +# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw +# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI +# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv +# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh +# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046MkFENC00Qjky +# LUZBMDExJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB +# ATAHBgUrDgMCGgMVAAGu2DRzWkKljmXySX1korHL4fMnoIGDMIGApH4wfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tXMCIY +# DzIwMjExMjA5MDM1MTUxWhgPMjAyMTEyMTAwMzUxNTFaMHcwPQYKKwYBBAGEWQoE +# ATEvMC0wCgIFAOVbi1cCAQAwCgIBAAICFmICAf8wBwIBAAICEh0wCgIFAOVc3NcC +# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK +# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQAcxjpqy9KLSwM37+FXLc0BH8vQ +# bi/JiOUtzx1U3w8DY7ed3asVEpLwGzUKiZ6rI29ZJuKH6YlwiWrAcHP9QgQnWNwg +# LXWMiZLEeOE63JCAWeL4odLTq1DKced93+APIOfcpQ1ap6X/BY4fKpscksm/q98S +# mmAs+7pjsbcUGpWLtzGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w +# IFBDQSAyMDEwAhMzAAABhnjlGYn4JEvMAAEAAAGGMA0GCWCGSAFlAwQCAQUAoIIB +# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEINEG +# q0+SCFYCT6sOQMZPpgnAOe4W2XF/PwFbVzs1WLMVMIH6BgsqhkiG9w0BCRACLzGB +# 6jCB5zCB5DCBvQQgGpmI4LIsCFTGiYyfRAR7m7Fa2guxVNIw17mcAiq8Qn4wgZgw +# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE +# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD +# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYZ45RmJ+CRL +# zAABAAABhjAiBCAUmIgeNWf4KXB+/obIOhBMrPwiJ83+1ebXflyLLm9rjjANBgkq +# hkiG9w0BAQsFAASCAgBXBmO2FJAq4az5Z1fXe3nTGflWCimqnMzUudZ0JD5Omi9t +# KDRFGDjYxgAo4r26b3zc73bN/7kkUkJwwdDc2RsABuzjHa04XSfIbry8JwBw7utB +# lwotvUH6Wa22GXu0POFqMEywdRl2x4XM04hgdUfZdWznuVRzZACn1NIfYhjmsL97 +# WMTYX7dx4OVEIFWriI/R5+8p0IXDgLe3AxdrTSedGeQFgsbEvLRkVmU0m3Qsb3Qb +# V+Ds1llgS06AFYlJzgcSbBdr/6gU7V1s3EcH2z4GjPCs2rYmVIZ6XCwkn0no2vc9 +# jEHbLtaBZ7VJ/r3Xvbj/GEYdUbGgVAIdpDFnBKsamV/Z2X9eZZSIxjTnBdh4fdkJ +# 29TRUahZywqEtJWP7LOvjlIHK3Ri9AxxkJrGDhIyvJeOGT6fzT/SvWeHkAoqeGpp +# lqXzs/p5d1rsqFAST8pTTWVXItcmO84qO3+1is32A9nh1ngDva7RGXdsh3+kkobP +# eZkn0HnUxV0OUYgINHsDiCeDhwfElDpvix6/F+1S3yApsfT10k09qOWKBAxq1P7p +# j2Iih/xwZUTOwsPHTvczh8yrOAwVQoWiHKgNKXE4GyZmNAV2oUH0goTkTjqCOw7z +# /7UFMEhbEHABlSIKOQU/1hXDY4d07sfBlWPHskx8A+Yq7rTeFVPcXSnUUcqjcg== +# SIG # End signature block diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml new file mode 100644 index 0000000..8887031 --- /dev/null +++ b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml @@ -0,0 +1,294 @@ + + + + + + + + Counter + + Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSampleSet + + + + + + 25 + left + + + + left + 100 + + + + + + + + Timestamp + + + Readings + + + + + + + + Counter + + Microsoft.PowerShell.Commands.GetCounter.CounterFileInfo + + + + + 30 + left + + + 30 + left + + + 30 + left + + + + + + + + OldestRecord + + + NewestRecord + + + SampleCount + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml new file mode 100644 index 0000000..3cb0478 --- /dev/null +++ b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml @@ -0,0 +1,336 @@ + + + + + Default + + System.Diagnostics.Eventing.Reader.EventLogRecord + + + ProviderName + + + + + + 25 + + + 8 + right + + + 16 + + + + + + + + + TimeCreated + + + Id + + + LevelDisplayName + + + Message + + + + + + + + + Default + + System.Diagnostics.Eventing.Reader.EventLogConfiguration + + + + + + + 9 + + + + 18 + right + + + + 11 + right + + + + + + + + LogMode + + + MaximumSizeInBytes + + + RecordCount + + + LogName + + + + + + + + Default + + System.Diagnostics.Eventing.Reader.ProviderMetadata + + + + + + + Name + + + LogLinks + + + Opcodes + + + Tasks + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml new file mode 100644 index 0000000..a365f67 --- /dev/null +++ b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml @@ -0,0 +1,354 @@ + + + + + + System.Diagnostics.Eventing.Reader.EventLogConfiguration + + + PSStandardMembers + + + DefaultDisplayPropertySet + + LogName + MaximumSizeInBytes + RecordCount + LogMode + + + + + + + + System.Diagnostics.Eventing.Reader.EventLogRecord + + + PSStandardMembers + + + DefaultDisplayPropertySet + + TimeCreated + ProviderName + Id + Message + + + + + + + + System.Diagnostics.Eventing.Reader.ProviderMetadata + + + ProviderName + Name + + + PSStandardMembers + + + DefaultDisplayPropertySet + + Name + LogLinks + + + + + + + + Microsoft.PowerShell.Commands.GetCounter.CounterSet + + + Counter + Paths + + + + + Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSample + + + PSStandardMembers + + + DefaultDisplayPropertySet + + Path + InstanceName + CookedValue + + + + + + + + Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSampleSet + + + PSStandardMembers + + + DefaultDisplayPropertySet + + Timestamp + Readings + + + + + + + + Microsoft.PowerShell.Commands.GetCounter.PerformanceCounterSampleSet + + + Readings + + $strPaths = "" + foreach ($ctr in $this.CounterSamples) + { + $strPaths += ($ctr.Path + " :" + "`n") + $strPaths += ($ctr.CookedValue.ToString() + "`n`n") + } + return $strPaths + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1 b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1 new file mode 100644 index 0000000..880d7aa --- /dev/null +++ b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1 @@ -0,0 +1,231 @@ +@{ +GUID="CA046F10-CA64-4740-8FF9-2565DBA61A4F" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +FunctionsToExport = @() +CmdletsToExport="Get-WinEvent", "New-WinEvent", "Get-Counter" +AliasesToExport = @() +NestedModules="Microsoft.PowerShell.Commands.Diagnostics.dll" +TypesToProcess="GetEvent.types.ps1xml" +FormatsToProcess="Event.format.ps1xml", "Diagnostics.format.ps1xml" +HelpInfoURI = 'https://aka.ms/powershell72-help' +} + +# SIG # Begin signature block +# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCDPn0/Kw53z57yO +# 1TekDBJE1OmAf8RR94VaWe+Hq0qiG6CCDYEwggX/MIID56ADAgECAhMzAAACUosz +# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I +# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O +# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA +# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o +# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 +# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 +# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp +# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 +# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u +# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 +# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti +# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z +# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf +# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK +# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW +# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F +# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgODWoe2T6 +# RL6c8rlTHF90KQETb+lXsgMFPg5sa5qcVO8wQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQArTuRkyGCIWatxzP2XmCe8MGk2psH1zX2CtsCxq8Ap +# llWPArMeb/LjOcajbM5kypCRRAbwRz6aDbnQHt8odHEoRZU7pTPP6Gi5YLzfXy5B +# 0ww61qNEDWQD3Js4U0r/D5Bvbm0ewiX+JmBEh1lhTJYzIp8iXuTH3qe9bhKKb++x +# iTOWvO8/HgtkFqax0G4FyoGpyhcxGzGI0hzjTE+8qabrKI0VtLQ4FlvNluxrfISs +# nx56dtXmf0jiOSCWuGbtKydeTR6wtK8b8RfXdSfUfI2TbFk+nuTk9OADnpMxw87X +# rpiALWuM8oSYj9xv4oUCw6fsjnuryMRoM59K86mOjXkEoYIXGTCCFxUGCisGAQQB +# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME +# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIBHzUJcs5FFt55Hx994HtkOYw1sXWAszphHUNgXU +# AU+vAgZhlV4Kp54YEzIwMjExMjA4MjEwNDEzLjc5NlowBIACAfSggdikgdUwgdIx +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p +# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh +# bGVzIFRTUyBFU046MkFENC00QjkyLUZBMDExJTAjBgNVBAMTHE1pY3Jvc29mdCBU +# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYZ45RmJ+CRL +# zAABAAABhjANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg +# MjAxMDAeFw0yMTEwMjgxOTI3MzlaFw0yMzAxMjYxOTI3MzlaMIHSMQswCQYDVQQG +# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG +# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg +# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg +# RVNOOjJBRDQtNEI5Mi1GQTAxMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt +# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAwI3G2Wpv +# 6B4IjAfrgfJpndPOPYO1Yd8+vlfoIxMW3gdCDT+zIbafg14pOu0t0ekUQx60p7Pa +# dH4OjnqNIE1q6ldH9ntj1gIdl4Hq4rdEHTZ6JFdE24DSbVoqqR+R4Iw4w3GPbfc2 +# Q3kfyyFyj+DOhmCWw/FZiTVTlT4bdejyAW6r/Jn4fr3xLjbvhITatr36VyyzgQ0Y +# 4Wr73H3gUcLjYu0qiHutDDb6+p+yDBGmKFznOW8wVt7D+u2VEJoE6JlK0EpVLZus +# dSzhecuUwJXxb2uygAZXlsa/fHlwW9YnlBqMHJ+im9HuK5X4x8/5B5dkuIoX5lWG +# jFMbD2A6Lu/PmUB4hK0CF5G1YaUtBrME73DAKkypk7SEm3BlJXwY/GrVoXWYUGEH +# yfrkLkws0RoEMpoIEgebZNKqjRynRJgR4fPCKrEhwEiTTAc4DXGci4HHOm64EQ1g +# /SDHMFqIKVSxoUbkGbdKNKHhmahuIrAy4we9s7rZJskveZYZiDmtAtBt/gQojxbZ +# 1vO9C11SthkrmkkTMLQf9cDzlVEBeu6KmHX2Sze6ggne3I4cy/5IULnHZ3rM4ZpJ +# c0s2KpGLHaVrEQy4x/mAn4yaYfgeH3MEAWkVjy/qTDh6cDCF/gyz3TaQDtvFnAK7 +# 0LqtbEvBPdBpeCG/hk9l0laYzwiyyGY/HqMCAwEAAaOCATYwggEyMB0GA1UdDgQW +# BBQZtqNFA+9mdEu/h33UhHMN6whcLjAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl +# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j +# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx +# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh +# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG +# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQDD7mehJY3fTHKC4hj+wBWB8544 +# uaJiMMIHnhK9ONTM7VraTYzx0U/TcLJ6gxw1tRzM5uu8kswJNlHNp7RedsAiwviV +# QZV9AL8IbZRLJTwNehCwk+BVcY2gh3ZGZmx8uatPZrRueyhhTTD2PvFVLrfwh2li +# DG/dEPNIHTKj79DlEcPIWoOCUp7p0ORMwQ95kVaibpX89pvjhPl2Fm0CBO3pXXJg +# 0bydpQ5dDDTv/qb0+WYF/vNVEU/MoMEQqlUWWuXECTqx6TayJuLJ6uU7K5QyTkQ/ +# l24IhGjDzf5AEZOrINYzkWVyNfUOpIxnKsWTBN2ijpZ/Tun5qrmo9vNIDT0lobgn +# ulae17NaEO9oiEJJH1tQ353dhuRi+A00PR781iYlzF5JU1DrEfEyNx8CWgERi90L +# KsYghZBCDjQ3DiJjfUZLqONeHrJfcmhz5/bfm8+aAaUPpZFeP0g0Iond6XNk4YiY +# bWPFoofc0LwcqSALtuIAyz6f3d+UaZZsp41U4hCIoGj6hoDIuU839bo/mZ/AgESw +# GxIXs0gZU6A+2qIUe60QdA969wWSzucKOisng9HCSZLF1dqc3QUawr0C0U41784K +# o9vckAG3akwYuVGcs6hM/SqEhoe9jHwe4Xp81CrTB1l9+EIdukCbP0kyzx0WZzte +# eiDN5rdiiQR9mBJuljCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw +# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n +# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y +# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv +# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg +# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO +# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 +# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 +# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL +# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 +# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj +# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE +# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 +# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 +# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB +# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE +# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG +# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 +# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV +# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV +# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo +# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m +# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j +# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv +# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN +# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 +# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 +# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX +# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew +# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 +# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd +# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr +# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh +# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n +# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ +# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw +# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI +# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv +# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh +# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046MkFENC00Qjky +# LUZBMDExJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB +# ATAHBgUrDgMCGgMVAAGu2DRzWkKljmXySX1korHL4fMnoIGDMIGApH4wfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tXMCIY +# DzIwMjExMjA5MDM1MTUxWhgPMjAyMTEyMTAwMzUxNTFaMHcwPQYKKwYBBAGEWQoE +# ATEvMC0wCgIFAOVbi1cCAQAwCgIBAAICFmICAf8wBwIBAAICEh0wCgIFAOVc3NcC +# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK +# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQAcxjpqy9KLSwM37+FXLc0BH8vQ +# bi/JiOUtzx1U3w8DY7ed3asVEpLwGzUKiZ6rI29ZJuKH6YlwiWrAcHP9QgQnWNwg +# LXWMiZLEeOE63JCAWeL4odLTq1DKced93+APIOfcpQ1ap6X/BY4fKpscksm/q98S +# mmAs+7pjsbcUGpWLtzGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w +# IFBDQSAyMDEwAhMzAAABhnjlGYn4JEvMAAEAAAGGMA0GCWCGSAFlAwQCAQUAoIIB +# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIIOe +# Fteykp3uhjp/CbUuslldSIpFBtmy2s0K3N7X+v4KMIH6BgsqhkiG9w0BCRACLzGB +# 6jCB5zCB5DCBvQQgGpmI4LIsCFTGiYyfRAR7m7Fa2guxVNIw17mcAiq8Qn4wgZgw +# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE +# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD +# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYZ45RmJ+CRL +# zAABAAABhjAiBCAUmIgeNWf4KXB+/obIOhBMrPwiJ83+1ebXflyLLm9rjjANBgkq +# hkiG9w0BAQsFAASCAgBf6Fat07wOy6aoLnxthDrldarQW8T2Ds6iTbNLhloJSJ1O +# Iu3QX6b7ktkdWHUtcOrW6wQ5y/EpoKQgPvT4+bs6e9QgdZqsz31NAecxGcivBfQz +# nxE8j6o46ky4HWO46ppqFjrz4ENa0ELpE8LC4fQC2h4N1EQPNkh9MQMunYZSK2Ck +# ritrVAuivl6vaeuVJyNBh0G20owR+ZDTocTnZYnOi4DqgKsrqe/8Q+kmQPmMZpig +# 3brD1Lg5JT/0zGlwNqvarcBJHRidNXrVJLxiHIcDTg4rwD+T4FN8EAbg+ioyv47T +# I6Ob7+gcrL2UdhVkZSUSqdVQVIX1V2SvP41TSHx7UCptCG0MaPiWYN5IGFlSKdRf +# hDv8Qb1cjW/wq3yQMBQBkV1g7CO48FoHlOl45b7dzXvn0b8LsYj2+gYfqzbJqacZ +# FOCrSVKIq5rlJAFKYra81Lzuryl3hpeXsREPc80w6gBZuwtq3ML/Z0YN7/rQQTs2 +# tsGyS4Ti76HltquYmkkQEfan1uk0RU91wujLFd7KZ3urFVvjqsqH9zSpxp7pCKT7 +# Sh6wf0zmG4SBX5DVQ0sHERamwpv6dqdDuadT3j9hnmsktM8uozim4Zzz0KI4DN1p +# IJE2x0YOHgYqr91aJMwULeVv3gGpcMUx6d08hSS6RDA7ne+UhH226yoyJsaYcQ== +# SIG # End signature block diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 new file mode 100644 index 0000000..5d9ffc6 --- /dev/null +++ b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1 @@ -0,0 +1,229 @@ +@{ +GUID="56D66100-99A0-4FFC-A12D-EEE9A6718AEF" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +FunctionsToExport = @() +CmdletsToExport="Start-Transcript", "Stop-Transcript" +AliasesToExport = @() +NestedModules="Microsoft.PowerShell.ConsoleHost.dll" +HelpInfoURI = 'https://aka.ms/powershell72-help' +} + +# SIG # Begin signature block +# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCCAN6qOMSgIZSKy +# niFjiV1FZGi6ofshkAXyBqiHSReb1aCCDYEwggX/MIID56ADAgECAhMzAAACUosz +# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I +# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O +# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA +# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o +# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 +# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 +# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp +# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 +# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u +# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 +# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti +# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z +# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf +# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK +# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW +# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F +# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgkynSeA0x +# XjLakAqmd0XMmOd0Xz2RQ1n1Heu6kO1y5N0wQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQBp+M1foZUndpZVBWaBgxj5ssitpnOInfqiMoO3MG1s +# H2bxWJO09yPVWWu1/hkCjpRID00eSBj71TcZ/C1ZkQimhy2bxMM7YjngYf1A20r7 +# Luw3ZbAOPs92h91TG0a1L2PJa7rjJy57BgwnHFTgNrWkCR7VXElf2LnjCbONyJPy +# rVNLQaGGM78KKhd6Tp2LDd+R8sT19o2lD5bBrVubPim3XifI6hn4f66a1no72w3S +# 9ol7radXalJgKkxKzQnAVHPiOB+GAL/J457mswnvP+eRD/kUlEPsFRCVEMKejOdo +# 69jQhGOZJH0CuLU1HlhzU6X/poT4dnIJ9d+aCMX0cfE6oYIXGTCCFxUGCisGAQQB +# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME +# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIJb96bqFa1hrFgpYPU2ayB0LEBtlTfOe8EwuWTs9 +# L81TAgZhlV4jeFAYEzIwMjExMjA4MjEwNDEzLjY4NVowBIACAfSggdikgdUwgdIx +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p +# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh +# bGVzIFRTUyBFU046OEQ0MS00QkY3LUIzQjcxJTAjBgNVBAMTHE1pY3Jvc29mdCBU +# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYguzcaBQeG8 +# KgABAAABiDANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg +# MjAxMDAeFw0yMTEwMjgxOTI3NDBaFw0yMzAxMjYxOTI3NDBaMIHSMQswCQYDVQQG +# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG +# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg +# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg +# RVNOOjhENDEtNEJGNy1CM0I3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt +# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAmucQCAQm +# kcXHyDrV4S88VeJg2XGqNKcWpsrapRKFWchhjLsf/M9XN9bgznLN48BXPAtOlwoe +# dB2kN4bZdPP3KdRNbYq1tNFUh8UnmjCCr+CjLlrigHcmS0R+rsN2gBMXlLEZh2W/ +# COuD9VOLsb2P2jDp433V4rUAAUW82M7rg81d3OcctO+1XW1h3EtbQtS6QEkw6DYI +# uvfX7Aw8jXHZnsMugP8ZA1otprpTNUh/zRWC7CJyBzymQIDSCdWhVfD4shxe+Rs6 +# 1axf27bTg5H/V/SkNd9hzM6Nq/y2OjDKrLtuN9hS53569uhTNQeAhAVDfeHpEzlM +# vtXOyX6MTme3jnHdHPj6GLT9AMRIrAf96hPYOiPEBvHtrg6MpiI3+l6NlbSOs16/ +# FTeljT1+sdsWGtFTZvea9pAqV1aB795aDkmZ6sRm5jtdnVazfoWrHd3vDeh35WV0 +# 8vW4TlOfEcV2+KbairPxaFkJ4+tlsJ+MfsVOiTr/ZnDgaMaHnzzogelI3AofDU9I +# TbMkTtTxrLPygTbRdtbptrnLzBn2jzR4TJfkQo+hzWuaMu5OtMZiKV2I5MO0m1mK +# uUAgoq+442Lw8CQuj9EC2F8nTbJb2NcUDg+74dgJis/P8Ba/OrlxW+Trgc6TPGxC +# OtT739UqeslvWD6rNQ6UEO9f7vWDkhd2vtsCAwEAAaOCATYwggEyMB0GA1UdDgQW +# BBRkebVQxKO7zru9+o27GjPljMlKSjAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl +# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j +# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx +# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh +# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG +# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQBAEFrb+1gIJsv/GKLS2zavm2ek +# 177mk4yu6BuS6ViIuL0e20YN2ddXeiUhEdhk3FRto/GD93k5SIyNJ6X+p8uQMOxI +# 23YOSdyEzLJwh7+ftu0If8y3x6AJ0S1d12OZ7fsYqljHUeccneS9DWqipHk8uM8m +# 2ZbBhRnUN8M4iqg4roJGmZKZ9Fc8Z7ZHJgM97i7fIyA9hJH017z25WrDJlxapD5d +# mMyNyzzfAVqaByemCoBn4VkRCGNISx0xRlcb93W6ENhJF1NBjMl3cKVEHW4d8Y0N +# ZhpdXDteLk9HgbJyeCI2fN9GBrCS1B1ak+194PGiZKL8+gtK7NorAoAMQvFkYgrH +# rWCYfjV6PouC3N+A6wOBrckVOHT9PUIDK5ADCH4ZraQideS9LD/imKHM3I4iazPk +# ocHcFHB9yo5d9lMJZ+pnAAWglQQjMWhUqnE/llA+EqjbO0lAxlmUtVioVUswhT3p +# K6DjFRXM/LUxwTttufz1zBjELkRIZ8uCy1YkMxfBFwEos/QFIlDaFSvUn4IiWZA3 +# VLfAEjy51iJwK2jSIHw+1bjCI+FBHcCTRH2pP3+h5DlQ5AZ/dvcfNrATP1wwz25I +# r8KgKObHRCIYH4VI2VrmOboSHFG79JbHdkPVSjfLxTuTsoh5FzoU1t5urG0rwulo +# ZZFZxTkrxfyTkhvmjDCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw +# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n +# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y +# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv +# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg +# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO +# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 +# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 +# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL +# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 +# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj +# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE +# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 +# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 +# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB +# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE +# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG +# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 +# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV +# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV +# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo +# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m +# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j +# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv +# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN +# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 +# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 +# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX +# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew +# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 +# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd +# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr +# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh +# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n +# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ +# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw +# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI +# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv +# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh +# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046OEQ0MS00QkY3 +# LUIzQjcxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB +# ATAHBgUrDgMCGgMVAOE8isx8IBeVPSweD805l5Qdeg5CoIGDMIGApH4wfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tIMCIY +# DzIwMjExMjA5MDM1MTM2WhgPMjAyMTEyMTAwMzUxMzZaMHcwPQYKKwYBBAGEWQoE +# ATEvMC0wCgIFAOVbi0gCAQAwCgIBAAICIScCAf8wBwIBAAICEdowCgIFAOVc3MgC +# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK +# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQBeVbaPZ5ldfNGhiFwP5ALaZGmV +# 4LkTqmcDT5yUk6p3tceYyxhPwMQqshcKt1fSrFqX5J8uNBeTWEpB5D/YyrXGHu/K +# a4Wj/8+nv32LXimt561Ygktjq90QX/Vha0BnifzfBTf/k64ZmtV6FMmvNI9MjNm3 +# QmHj495BbEuSWI20HzGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w +# IFBDQSAyMDEwAhMzAAABiC7NxoFB4bwqAAEAAAGIMA0GCWCGSAFlAwQCAQUAoIIB +# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIB5r +# VcRB53ajDn0amN283eZmOuFxfZ1ddPxQGZnO2OCZMIH6BgsqhkiG9w0BCRACLzGB +# 6jCB5zCB5DCBvQQgZune7awGN0aEgvjP7JyO3NKl7hstX8ChhrKmXtJJQKUwgZgw +# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE +# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD +# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYguzcaBQeG8 +# KgABAAABiDAiBCDnGsQwLYuvrNs0JZQ8D1YCe56drKP5aPf/ndr94faZkzANBgkq +# hkiG9w0BAQsFAASCAgBi8EWq1+2L+qQJjtUAiYvFYQS2GX/DAratlOcGOSYqL81P +# DXuByUFsrXsBKqXmeuAfWiNeLWOpiGvy10qNldd/AsVdVrba72n8rzGLQ1od91L4 +# CljkSRtcq/LmvjdWPqa+ySqda1OpsD80ZOFstCnTysY9S6SDqvWgZYr+UtRJsng4 +# jp8cUCQBAcjQ1N/dHGUAs/Tvfr5kHdDGynKKMGdDEUKtM2jjznIIWnxPzZoyXEi4 +# 8ePyJ/mTh3grNa3oOSGxuC+8ejye9Bc4JPSYYzhzJw+M0LAgBLQxj/HdYiuGIK7w +# TOUrqctErkPgosq1NdUAqQZakDXVpouiB+FTez3hiR2QAY1uR5lHvGD9zJValYMH +# OQEzjO5Bh+2cauVdMp012ULRJBIcVVrjUcSihcyD6EbUlyzu0VQFNFANkbFpqsf6 +# gS9p4j//r8AfQv8xwyy2N0Ql5caRRf5Vlfjp8c2ikMMvY19A53qBKs+aE093B+4Z +# 72wg2wnorYKun9fGpnfs+JufmnDf64O8a9pXV+XM9lVmgmWb0ScKAxn+N9dZrwD7 +# DbjlvSnLEUciHzyEO9wQ8/gu3L6E2Ugho+AbIDStmNhSIQiMDJblWZk5aLc8SGPr +# tts+mmDoB+lun57BwYPZKhgmnekQ9j9tCZaDKWa/ocKNByI+2+YBrNev3M37rQ== +# SIG # End signature block diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 new file mode 100644 index 0000000..5d2f511 --- /dev/null +++ b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1 @@ -0,0 +1,289 @@ +@{ +GUID="EEFCB906-B326-4E99-9F54-8B4BB6EF3C6D" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +NestedModules="Microsoft.PowerShell.Commands.Management.dll" +HelpInfoURI = 'https://aka.ms/powershell72-help' +FunctionsToExport = @() +AliasesToExport = @("gcb", "gin", "gtz", "scb", "stz") +CmdletsToExport=@("Add-Content", + "Clear-Content", + "Get-Clipboard", + "Set-Clipboard", + "Clear-ItemProperty", + "Join-Path", + "Convert-Path", + "Copy-ItemProperty", + "Get-ChildItem", + "Get-Content", + "Get-ItemProperty", + "Get-ItemPropertyValue", + "Move-ItemProperty", + "Get-Location", + "Set-Location", + "Push-Location", + "Pop-Location", + "New-PSDrive", + "Remove-PSDrive", + "Get-PSDrive", + "Get-Item", + "New-Item", + "Set-Item", + "Remove-Item", + "Move-Item", + "Rename-Item", + "Copy-Item", + "Clear-Item", + "Invoke-Item", + "Get-PSProvider", + "New-ItemProperty", + "Split-Path", + "Test-Path", + "Test-Connection", + "Get-Process", + "Stop-Process", + "Wait-Process", + "Debug-Process", + "Start-Process", + "Remove-ItemProperty", + "Rename-ItemProperty", + "Resolve-Path", + "Get-Service", + "Stop-Service", + "Start-Service", + "Suspend-Service", + "Resume-Service", + "Restart-Service", + "Set-Service", + "New-Service", + "Remove-Service", + "Set-Content", + "Set-ItemProperty", + "Restart-Computer", + "Stop-Computer", + "Rename-Computer", + "Get-ComputerInfo", + "Get-TimeZone", + "Set-TimeZone", + "Get-HotFix", + "Clear-RecycleBin") +} + +# SIG # Begin signature block +# MIInuAYJKoZIhvcNAQcCoIInqTCCJ6UCAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCAOkUHfBYP8n8JI +# rFMR/Pi6BPlAC/b/pz0LBmd3yrLJC6CCDYEwggX/MIID56ADAgECAhMzAAACUosz +# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I +# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O +# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA +# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o +# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 +# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 +# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp +# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 +# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u +# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 +# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti +# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z +# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf +# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK +# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW +# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F +# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjTCCGYkCAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgbwKAFcUU +# n/a8C1e7lODkKydexiPQBTRqAUaY8lpIXxYwQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQAS8cDlYOVWF3oFPi1M2yWWdC1wbCMgPa2utU2WgHpJ +# FdgkgR5zgZhKx2APsR5uSgSfvs9YfPYm8+NRMvxAYm4e/Bf1JgTP9gsgqxQ/xXB+ +# NqOASjMjv7v+wTLPMa/i//jTTxjqcmHebx0tVR6f0Fpr9BU7PxW996xh2vKdxVnV +# YXxHwAmhJ1TxUaZC0hVRtriJrBfAsuQ2g/aCn5wZ6YXKVJ63IBZ+jnivf80fnSYc +# t+Zl4LqAiaSvpQ7GgPo/RggihGdWk+AuZCcY9SOJYAypK3Hvu4KHy4+5GEW3+9LI +# uQ3+9k1MG+Xng2uR0sDenzNJN89weif/W6AwmTwRl69ToYIXFzCCFxMGCisGAQQB +# gjcDAwExghcDMIIW/wYJKoZIhvcNAQcCoIIW8DCCFuwCAQMxDzANBglghkgBZQME +# AgEFADCCAVcGCyqGSIb3DQEJEAEEoIIBRgSCAUIwggE+AgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIGUlM1IvDbHn/VrMmR6UJYC2nOP4lY0xhCVtPuKI +# CRBSAgZhlV4jeGYYETIwMjExMjA4MjEwNDE0LjdaMASAAgH0oIHYpIHVMIHSMQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNy +# b3NvZnQgSXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxl +# cyBUU1MgRVNOOjhENDEtNEJGNy1CM0I3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGlt +# ZS1TdGFtcCBTZXJ2aWNloIIRaDCCBxQwggT8oAMCAQICEzMAAAGILs3GgUHhvCoA +# AQAAAYgwDQYJKoZIhvcNAQELBQAwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldh +# c2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBD +# b3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIw +# MTAwHhcNMjExMDI4MTkyNzQwWhcNMjMwMTI2MTkyNzQwWjCB0jELMAkGA1UEBhMC +# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV +# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEtMCsGA1UECxMkTWljcm9zb2Z0IEly +# ZWxhbmQgT3BlcmF0aW9ucyBMaW1pdGVkMSYwJAYDVQQLEx1UaGFsZXMgVFNTIEVT +# Tjo4RDQxLTRCRjctQjNCNzElMCMGA1UEAxMcTWljcm9zb2Z0IFRpbWUtU3RhbXAg +# U2VydmljZTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAJrnEAgEJpHF +# x8g61eEvPFXiYNlxqjSnFqbK2qUShVnIYYy7H/zPVzfW4M5yzePAVzwLTpcKHnQd +# pDeG2XTz9ynUTW2KtbTRVIfFJ5owgq/goy5a4oB3JktEfq7DdoATF5SxGYdlvwjr +# g/VTi7G9j9ow6eN91eK1AAFFvNjO64PNXdznHLTvtV1tYdxLW0LUukBJMOg2CLr3 +# 1+wMPI1x2Z7DLoD/GQNaLaa6UzVIf80Vguwicgc8pkCA0gnVoVXw+LIcXvkbOtWs +# X9u204OR/1f0pDXfYczOjav8tjowyqy7bjfYUud+evboUzUHgIQFQ33h6RM5TL7V +# zsl+jE5nt45x3Rz4+hi0/QDESKwH/eoT2DojxAbx7a4OjKYiN/pejZW0jrNevxU3 +# pY09frHbFhrRU2b3mvaQKldWge/eWg5JmerEZuY7XZ1Ws36Fqx3d7w3od+VldPL1 +# uE5TnxHFdvim2oqz8WhZCePrZbCfjH7FTok6/2Zw4GjGh5886IHpSNwKHw1PSE2z +# JE7U8ayz8oE20XbW6ba5y8wZ9o80eEyX5EKPoc1rmjLuTrTGYildiOTDtJtZirlA +# IKKvuONi8PAkLo/RAthfJ02yW9jXFA4Pu+HYCYrPz/AWvzq5cVvk64HOkzxsQjrU +# +9/VKnrJb1g+qzUOlBDvX+71g5IXdr7bAgMBAAGjggE2MIIBMjAdBgNVHQ4EFgQU +# ZHm1UMSju867vfqNuxoz5YzJSkowHwYDVR0jBBgwFoAUn6cVXQBeYl2D9OXSZacb +# UzUZ6XIwXwYDVR0fBFgwVjBUoFKgUIZOaHR0cDovL3d3dy5taWNyb3NvZnQuY29t +# L3BraW9wcy9jcmwvTWljcm9zb2Z0JTIwVGltZS1TdGFtcCUyMFBDQSUyMDIwMTAo +# MSkuY3JsMGwGCCsGAQUFBwEBBGAwXjBcBggrBgEFBQcwAoZQaHR0cDovL3d3dy5t +# aWNyb3NvZnQuY29tL3BraW9wcy9jZXJ0cy9NaWNyb3NvZnQlMjBUaW1lLVN0YW1w +# JTIwUENBJTIwMjAxMCgxKS5jcnQwDAYDVR0TAQH/BAIwADATBgNVHSUEDDAKBggr +# BgEFBQcDCDANBgkqhkiG9w0BAQsFAAOCAgEAQBBa2/tYCCbL/xii0ts2r5tnpNe+ +# 5pOMrugbkulYiLi9HttGDdnXV3olIRHYZNxUbaPxg/d5OUiMjSel/qfLkDDsSNt2 +# DknchMyycIe/n7btCH/Mt8egCdEtXddjme37GKpYx1HnHJ3kvQ1qoqR5PLjPJtmW +# wYUZ1DfDOIqoOK6CRpmSmfRXPGe2RyYDPe4u3yMgPYSR9Ne89uVqwyZcWqQ+XZjM +# jcs83wFamgcnpgqAZ+FZEQhjSEsdMUZXG/d1uhDYSRdTQYzJd3ClRB1uHfGNDWYa +# XVw7Xi5PR4GycngiNnzfRgawktQdWpPtfeDxomSi/PoLSuzaKwKADELxZGIKx61g +# mH41ej6LgtzfgOsDga3JFTh0/T1CAyuQAwh+Ga2kInXkvSw/4pihzNyOImsz5KHB +# 3BRwfcqOXfZTCWfqZwAFoJUEIzFoVKpxP5ZQPhKo2ztJQMZZlLVYqFVLMIU96Sug +# 4xUVzPy1McE7bbn89cwYxC5ESGfLgstWJDMXwRcBKLP0BSJQ2hUr1J+CIlmQN1S3 +# wBI8udYicCto0iB8PtW4wiPhQR3Ak0R9qT9/oeQ5UOQGf3b3HzawEz9cMM9uSK/C +# oCjmx0QiGB+FSNla5jm6EhxRu/SWx3ZD1Uo3y8U7k7KIeRc6FNbebqxtK8LpaGWR +# WcU5K8X8k5Ib5owwggdxMIIFWaADAgECAhMzAAAAFcXna54Cm0mZAAAAAAAVMA0G +# CSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3Rv +# bjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0 +# aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3Jp +# dHkgMjAxMDAeFw0yMTA5MzAxODIyMjVaFw0zMDA5MzAxODMyMjVaMHwxCzAJBgNV +# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w +# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m +# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIIC +# CgKCAgEA5OGmTOe0ciELeaLL1yR5vQ7VgtP97pwHB9KpbE51yMo1V/YBf2xK4OK9 +# uT4XYDP/XE/HZveVU3Fa4n5KWv64NmeFRiMMtY0Tz3cywBAY6GB9alKDRLemjkZr +# BxTzxXb1hlDcwUTIcVxRMTegCjhuje3XD9gmU3w5YQJ6xKr9cmmvHaus9ja+NSZk +# 2pg7uhp7M62AW36MEBydUv626GIl3GoPz130/o5Tz9bshVZN7928jaTjkY+yOSxR +# nOlwaQ3KNi1wjjHINSi947SHJMPgyY9+tVSP3PoFVZhtaDuaRr3tpK56KTesy+uD +# RedGbsoy1cCGMFxPLOJiss254o2I5JasAUq7vnGpF1tnYN74kpEeHT39IM9zfUGa +# RnXNxF803RKJ1v2lIH1+/NmeRd+2ci/bfV+AutuqfjbsNkz2K26oElHovwUDo9Fz +# pk03dJQcNIIP8BDyt0cY7afomXw/TNuvXsLz1dhzPUNOwTM5TI4CvEJoLhDqhFFG +# 4tG9ahhaYQFzymeiXtcodgLiMxhy16cg8ML6EgrXY28MyTZki1ugpoMhXV8wdJGU +# lNi5UPkLiWHzNgY1GIRH29wb0f2y1BzFa/ZcUlFdEtsluq9QBXpsxREdcu+N+VLE +# hReTwDwV2xo3xwgVGD94q0W29R6HXtqPnhZyacaue7e3PmriLq0CAwEAAaOCAd0w +# ggHZMBIGCSsGAQQBgjcVAQQFAgMBAAEwIwYJKwYBBAGCNxUCBBYEFCqnUv5kxJq+ +# gpE8RjUpzxD/LwTuMB0GA1UdDgQWBBSfpxVdAF5iXYP05dJlpxtTNRnpcjBcBgNV +# HSAEVTBTMFEGDCsGAQQBgjdMg30BATBBMD8GCCsGAQUFBwIBFjNodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL0RvY3MvUmVwb3NpdG9yeS5odG0wEwYDVR0l +# BAwwCgYIKwYBBQUHAwgwGQYJKwYBBAGCNxQCBAweCgBTAHUAYgBDAEEwCwYDVR0P +# BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAU1fZWy4/oolxiaNE9 +# lJBb186aGMQwVgYDVR0fBE8wTTBLoEmgR4ZFaHR0cDovL2NybC5taWNyb3NvZnQu +# Y29tL3BraS9jcmwvcHJvZHVjdHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3Js +# MFoGCCsGAQUFBwEBBE4wTDBKBggrBgEFBQcwAoY+aHR0cDovL3d3dy5taWNyb3Nv +# ZnQuY29tL3BraS9jZXJ0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5jcnQwDQYJ +# KoZIhvcNAQELBQADggIBAJ1VffwqreEsH2cBMSRb4Z5yS/ypb+pcFLY+TkdkeLEG +# k5c9MTO1OdfCcTY/2mRsfNB1OW27DzHkwo/7bNGhlBgi7ulmZzpTTd2YurYeeNg2 +# LpypglYAA7AFvonoaeC6Ce5732pvvinLbtg/SHUB2RjebYIM9W0jVOR4U3UkV7nd +# n/OOPcbzaN9l9qRWqveVtihVJ9AkvUCgvxm2EhIRXT0n4ECWOKz3+SmJw7wXsFSF +# QrP8DJ6LGYnn8AtqgcKBGUIZUnWKNsIdw2FzLixre24/LAl4FOmRsqlb30mjdAy8 +# 7JGA0j3mSj5mO0+7hvoyGtmW9I/2kQH2zsZ0/fZMcm8Qq3UwxTSwethQ/gpY3UA8 +# x1RtnWN0SCyxTkctwRQEcb9k+SS+c23Kjgm9swFXSVRk2XPXfx5bRAGOWhmRaw2f +# pCjcZxkoJLo4S5pu+yFUa2pFEUep8beuyOiJXk+d0tBMdrVXVAmxaQFEfnyhYWxz +# /gq77EFmPWn9y8FBSX5+k77L+DvktxW/tM4+pTFRhLy/AsGConsXHRWJjXD+57XQ +# KBqJC4822rpM+Zv/Cuk0+CQ1ZyvgDbjmjJnW4SLq8CdCPSWU5nR0W2rRnj7tfqAx +# M328y+l7vzhwRNGQ8cirOoo6CGJ/2XBjU02N7oJtpQUQwXEGahC0HVUzWLOhcGby +# oYIC1zCCAkACAQEwggEAoYHYpIHVMIHSMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQgSXJlbGFuZCBPcGVyYXRp +# b25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNOOjhENDEtNEJGNy1C +# M0I3MSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNloiMKAQEw +# BwYFKw4DAhoDFQDhPIrMfCAXlT0sHg/NOZeUHXoOQqCBgzCBgKR+MHwxCzAJBgNV +# BAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4w +# HAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29m +# dCBUaW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBBQUAAgUA5VuLSDAiGA8y +# MDIxMTIwOTAzNTEzNloYDzIwMjExMjEwMDM1MTM2WjB3MD0GCisGAQQBhFkKBAEx +# LzAtMAoCBQDlW4tIAgEAMAoCAQACAiEnAgH/MAcCAQACAhHaMAoCBQDlXNzIAgEA +# MDYGCisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEAAgMHoSChCjAI +# AgEAAgMBhqAwDQYJKoZIhvcNAQEFBQADgYEAXlW2j2eZXXzRoYhcD+QC2mRpleC5 +# E6pnA0+clJOqd7XHmMsYT8DEKrIXCrdX0qxal+SfLjQXk1hKQeQ/2Mq1xh7vymuF +# o//Pp799i14preetWIJLY6vdEF/1YWtAZ4n83wU3/5OuGZrVehTJrzSPTIzZt0Jh +# 4+PeQWxLkliNtB8xggQNMIIECQIBATCBkzB8MQswCQYDVQQGEwJVUzETMBEGA1UE +# CBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9z +# b2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQ +# Q0EgMjAxMAITMwAAAYguzcaBQeG8KgABAAABiDANBglghkgBZQMEAgEFAKCCAUow +# GgYJKoZIhvcNAQkDMQ0GCyqGSIb3DQEJEAEEMC8GCSqGSIb3DQEJBDEiBCAAZlzS +# rT4vVB7wRIbsGvay4ACd2gPSgT3yS7r8RrU5XTCB+gYLKoZIhvcNAQkQAi8xgeow +# gecwgeQwgb0EIGbp3u2sBjdGhIL4z+ycjtzSpe4bLV/AoYaypl7SSUClMIGYMIGA +# pH4wfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcT +# B1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UE +# AxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTACEzMAAAGILs3GgUHhvCoA +# AQAAAYgwIgQg5xrEMC2Lr6zbNCWUPA9WAnuenayj+Wj3/53a/eH2mZMwDQYJKoZI +# hvcNAQELBQAEggIAOr4i66ksCOJ3Rw8xoMzAdJVQl257tTcsAl9f6cACnWS8wb5g +# W+fRBFGeoxzjBgn34Rn0NPmfz5+vx9D314QAmjWt//l6S8hmldXyUlrixC6aOGik +# +CRaSnhf0CY2o3vBSYsYV3gJx0PSnDq6/T2B+S9TY90hvl+NgkzCNBnyLEDPgDXB +# e9XQi88hUWqZxpjaTmAI26+fr9z7AMrtnA4hxEzDbh6VGDhXKZ4F//b3E6Xj6ppB +# AJBmkEH42AnDBuFGEr2iLkKbU25t0ZuD7whLQ7CaQ8yVOppTuG4kqNbsUmIPzxtI +# wlznjxAV7nN+BrIuNmraWiBmszVsqSm1FhcZBBL3jj98szffT9zmcRKwPKlO8J88 +# mHFY0io9zXsE8Cv87ezrCIDVhbIm3gHj8dMr8tiWmo9ejacYgEZSGNBAwdku6O+G +# PZ1WsWBQ1MNLRtye9FWMqGog7yqeb/iHtJH3hH7MFLgXMVHuKjI7rcIGlWKOyTbA +# Cllth+6In3BRDC/VUiSKD6SfVYyEjKdLM3dURYi/NzUJ3tapoE4DUBYt2xZlDEGO +# j/L2KpzIlyi5MhU3YZwTkAZwSNqmPKZ+f5w6j0cOhilqTOYMmVB5OycslZv6ODcW +# pcGpnK6b2QNfFMEvtGrIvflWQC95c9hwlJ2O3Fuh5Hroza3f7PgYUmrxctU= +# SIG # End signature block diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 new file mode 100644 index 0000000..b3dd852 --- /dev/null +++ b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1 @@ -0,0 +1,229 @@ +@{ +GUID="A94C8C7E-9810-47C0-B8AF-65089C13A35A" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +FunctionsToExport = @() +CmdletsToExport="Get-Acl", "Set-Acl", "Get-PfxCertificate", "Get-Credential", "Get-ExecutionPolicy", "Set-ExecutionPolicy", "Get-AuthenticodeSignature", "Set-AuthenticodeSignature", "ConvertFrom-SecureString", "ConvertTo-SecureString", "Get-CmsMessage", "Unprotect-CmsMessage", "Protect-CmsMessage" , "New-FileCatalog" , "Test-FileCatalog" +AliasesToExport = @() +NestedModules="Microsoft.PowerShell.Security.dll" +HelpInfoURI = 'https://aka.ms/powershell72-help' +} + +# SIG # Begin signature block +# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCD++xTkW7oivoiQ +# gqU/R85f/MwSI1hVEeaegSriXP6+BqCCDYEwggX/MIID56ADAgECAhMzAAACUosz +# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I +# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O +# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA +# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o +# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 +# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 +# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp +# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 +# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u +# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 +# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti +# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z +# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf +# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK +# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW +# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F +# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgWHV5GUzu +# +l9zI1GEYPanTVvtHVRaoSkM2bZBhM+rt9YwQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQByeqL4g0Ci96GXfmQN8rvCAtpT2N0neMZ9mozeBeyF +# 5hYxQhatRKLDNrOJei542+AM9l8AmsmKtJvtE8wJUkVGZqxBSiMwv7nV1uMQgVhK +# crEIUsmJO+EStsx+gA3VyfugAElJEJtTInobbDPofwO4DS8xUBpW/OLaq3XVjRga +# JOh7s7RMx+7Gysq96jaguaW2H2llklxhsKZwf3Mdi+/5BhF8tIevEqPuk4ly1oXh +# qY4/BD0pFNygoTWMp6ecxNQM2EE1N1j3y30h36Gsk5aDMeUFrRNtFFWFF1HbrbH3 +# thOhL/rqSQkbxAR2CNSGQtzrNuLF+1/xJEHXgBNGyEWioYIXGTCCFxUGCisGAQQB +# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME +# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIC9rz69tGAbCMg2r367oWNBEt5XvxdFCe04Dw8cQ +# hWtJAgZhlV5AOHEYEzIwMjExMjA4MjEwNDE0Ljc5MVowBIACAfSggdikgdUwgdIx +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p +# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh +# bGVzIFRTUyBFU046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBU +# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYm0v4YwhBxL +# jwABAAABiTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg +# MjAxMDAeFw0yMTEwMjgxOTI3NDFaFw0yMzAxMjYxOTI3NDFaMIHSMQswCQYDVQQG +# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG +# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg +# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg +# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt +# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQZXxZFm +# a6plmuOyvNpV8xONOwcYolZG/BjyZWGSk5JOGaLyrKId5VxVHWHlsmJE4Svnzsdp +# sKmVx8otONveIUFvSceEZp8VXmu5m1fu8L7c+3lwXcibjccqtEvtQslokQVx0r+L +# 54abrNDarwFG73IaRidIS1i9c+unJ8oYyhDRLrCysFAVxyQhPNZkWK7Z8/VGukaK +# LAWHXCh/+R53h42gFL+9/mAALxzCXXuofi8f/XKCm7xNwVc1hONCCz6oq94AufzV +# NkkIW4brUQgYpCcJm9U0XNmQvtropYDn9UtY8YQ0NKenXPtdgLHdQ8Nnv3igErKL +# rWI0a5n5jjdKfwk+8mvakqdZmlOseeOS1XspQNJAK1uZllAITcnQZOcO5ofjOQ33 +# ujWckAXdz+/x3o7l4AU/TSOMzGZMwhUdtVwC3dSbItpSVFgnjM2COEJ9zgCadvOi +# rGDLN471jZI2jClkjsJTdgPk343TQA4JFvds/unZq0uLr+niZ3X44OBx2x+gVlln +# 2c4UbZXNueA4yS1TJGbbJFIILAmTUA9Auj5eISGTbNiyWx79HnCOTar39QEKozm4 +# LnTmDXy0/KI/H/nYZGKuTHfckP28wQS06rD+fDS5xLwcRMCW92DkHXmtbhGyRilB +# OL5LxZelQfxt54wl4WUC0AdAEolPekODwO8CAwEAAaOCATYwggEyMB0GA1UdDgQW +# BBSXbx+zR1p4IIAeguA6rHKkrfl7UDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl +# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j +# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx +# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh +# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG +# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQCOtLdpWUI4KwfLLrfaKrLB92Dq +# bAspGWM41TaO4Jl+sHxPo522uu3GKQCjmkRWreHtlfyy9kOk7LWax3k3ke8Gtfet +# fbh7qH0LeV2XOWg39BOnHf6mTcZq7FYSZZch1JDQjc98+Odlow+oWih0Dbt4CV/e +# 19ZcE+1n1zzWkskUEd0f5jPIUis33p+vkY8szduAtCcIcPFUhI8Hb5alPUAPMjGz +# wKb7NIKbnf8j8cP18As5IveckF0oh1cw63RY/vPK62LDYdpi7WnG2ObvngfWVKtw +# iwTI4jHj2cO9q37HDe/PPl216gSpUZh0ap24mKmMDfcKp1N4mEdsxz4oseOrPYeF +# sHHWJFJ6Aivvqn70KTeJpp5r+DxSqbeSy0mxIUOq/lAaUxgNSQVUX26t8r+fciko +# fKv23WHrtRV3t7rVTsB9YzrRaiikmz68K5HWdt9MqULxPQPo+ppZ0LRqkOae466+ +# UKRY0JxWtdrMc5vHlHZfnqjawj/RsM2S6Q6fa9T9CnY1Nz7DYBG3yZJyCPFsrgU0 +# 5s9ljqfsSptpFdUh9R4ce+L71SWDLM2x/1MFLLHAMbXsEp8KloEGtaDULnxtfS2t +# YhfuKGqRXoEfDPAMnIdTvQPh3GHQ4SjkkBARHL0MY75alhGTKHWjC2aLVOo8obKI +# Bk8hfnFDUf/EyVw4uTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw +# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n +# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y +# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv +# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg +# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO +# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 +# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 +# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL +# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 +# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj +# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE +# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 +# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 +# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB +# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE +# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG +# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 +# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV +# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV +# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo +# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m +# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j +# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv +# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN +# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 +# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 +# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX +# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew +# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 +# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd +# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr +# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh +# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n +# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ +# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw +# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI +# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv +# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh +# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00Qjgw +# LTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB +# ATAHBgUrDgMCGgMVACGlCa3ketyeuey7bJNpWkMuiCcQoIGDMIGApH4wfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tYMCIY +# DzIwMjExMjA5MDM1MTUyWhgPMjAyMTEyMTAwMzUxNTJaMHcwPQYKKwYBBAGEWQoE +# ATEvMC0wCgIFAOVbi1gCAQAwCgIBAAICHvwCAf8wBwIBAAICETcwCgIFAOVc3NgC +# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK +# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQCbF/Q1IJzqUwQBkXn+GjUxZzVN +# O+9p1fpL7W8dEy9/m1L7dl968KiYqfO5rekvXeSUDTFYrkS/r0w8p2ZZ7d0TMtJt +# TrKmc85aRmxtSvCNAS2stE2sS2Y5np5+/02w3DDn3Nni6vvF8nsuiIlbiyHrGQrC +# 9eis1rpLSNvXisSYoDGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w +# IFBDQSAyMDEwAhMzAAABibS/hjCEHEuPAAEAAAGJMA0GCWCGSAFlAwQCAQUAoIIB +# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIM9O +# ao85t+tQMGnb/NodpJQMwx5JXiYYilGmLk9FSvn+MIH6BgsqhkiG9w0BCRACLzGB +# 6jCB5zCB5DCBvQQgZndHMdxQV1VsbpWHOTHqWEycvcRJm7cY69l/UmT8j0UwgZgw +# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE +# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD +# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYm0v4YwhBxL +# jwABAAABiTAiBCCErc3WAJDL+6+RTcx4qvTV2Dv0bP6a0jmZjnUp3u9sbzANBgkq +# hkiG9w0BAQsFAASCAgCzngLNnPmqawyfurGD6pabQJgWV4nP5zle9pu9tx4c1pTi +# SKAeREqAeOs5Bcg46nHpP+Flb+4BQ68zc2JUv1p1P7OlmpKshGEd1Sgpj0izHI8E +# JW8lmMXuRudxbw/761rpDKViWtWQ1lzxhyDeqJw1tiGIAcbX7P26zcoC+jp19GlY +# DaXcIJDZM/u5UUKDtKNSBIvTX+UDfuAEAwmH37GcuHTnvm1txdDZF2DNEn9Jzj7y +# TvHglap7FeMIvo/Um4cLq8xdSJxOYbGGQ5qCdc6vIGXC8HebpR3bIPxldyKDPdpd +# LdvDD0k+rnDHmMsmgQuihIG8rDiadJ/7YtexaDNm4aYRa8PD5SabeUwi94eYZ4a7 +# 25ZkBy6FQAY13i0RgSRicx2Ryowd0Hg0DWSAfHSJc5CnL7qWNTOhwvX7wEUGbe/0 +# 1GZR+ZYiJRO83/lQAEurvVJuEZ3dKTpeJB4FOP6oIc76pL3GvW9XINxo49WiIbzl +# YEToH4oTa5F5vUCvF2Wa5tDlpa60LFSJDP1VyWCYPP+sflKLkYvG3PmXSYYbCprL +# yS0rypa9ACBp7Q2rZTa1s3j7jtNa3Fa5RZ9gAulFkUVVZ+F0Pm7aUvnRAf54+Ri6 +# aoF9G+flQpzZn8nYCRFfiqcQ9wKPA6lZBGEqzGBLAZqzsmmrSgcwVjdN6ZwqYg== +# SIG # End signature block diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 new file mode 100644 index 0000000..927c504 --- /dev/null +++ b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1 @@ -0,0 +1,248 @@ +@{ +GUID = "1DA87E53-152B-403E-98DC-74D7B4D63D59" +Author = "PowerShell" +CompanyName = "Microsoft Corporation" +Copyright = "Copyright (c) Microsoft Corporation." +ModuleVersion = "7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion = "3.0" +CmdletsToExport = @( + 'Export-Alias', 'Get-Alias', 'Import-Alias', 'New-Alias', 'Remove-Alias', 'Set-Alias', 'Export-Clixml', 'Import-Clixml', + 'Measure-Command', 'Trace-Command', 'ConvertFrom-Csv', 'ConvertTo-Csv', 'Export-Csv', 'Import-Csv', 'Get-Culture', + 'Format-Custom', 'Get-Date', 'Set-Date', 'Write-Debug', 'Wait-Debugger', 'Register-EngineEvent', 'Write-Error', + 'Get-Event', 'New-Event', 'Remove-Event', 'Unregister-Event', 'Wait-Event', 'Get-EventSubscriber', 'Invoke-Expression', + 'Out-File', 'Unblock-File', 'Get-FileHash', 'Export-FormatData', 'Get-FormatData', 'Update-FormatData', 'New-Guid', + 'Format-Hex', 'Get-Host', 'Read-Host', 'Write-Host', 'ConvertTo-Html', 'Write-Information', 'ConvertFrom-Json', + 'ConvertTo-Json', 'Test-Json', 'Format-List', 'Import-LocalizedData', 'Send-MailMessage', 'ConvertFrom-Markdown', + 'Show-Markdown', 'Get-MarkdownOption', 'Set-MarkdownOption', 'Add-Member', 'Get-Member', 'Compare-Object', 'Group-Object', + 'Measure-Object', 'New-Object', 'Select-Object', 'Sort-Object', 'Tee-Object', 'Register-ObjectEvent', 'Write-Output', + 'Import-PowerShellDataFile', 'Write-Progress', 'Disable-PSBreakpoint', 'Enable-PSBreakpoint', 'Get-PSBreakpoint', + 'Remove-PSBreakpoint', 'Set-PSBreakpoint', 'Get-PSCallStack', 'Export-PSSession', 'Import-PSSession', 'Get-Random', + 'Invoke-RestMethod', 'Debug-Runspace', 'Get-Runspace', 'Disable-RunspaceDebug', 'Enable-RunspaceDebug', + 'Get-RunspaceDebug', 'ConvertFrom-SddlString', 'Start-Sleep', 'Join-String', 'Out-String', 'Select-String', + 'ConvertFrom-StringData', 'Format-Table', 'New-TemporaryFile', 'New-TimeSpan', 'Get-TraceSource', 'Set-TraceSource', + 'Add-Type', 'Get-TypeData', 'Remove-TypeData', 'Update-TypeData', 'Get-UICulture', 'Get-Unique', 'Get-Uptime', + 'Clear-Variable', 'Get-Variable', 'New-Variable', 'Remove-Variable', 'Set-Variable', 'Get-Verb', 'Write-Verbose', + 'Write-Warning', 'Invoke-WebRequest', 'Format-Wide', 'ConvertTo-Xml', 'Select-Xml', 'Get-Error', 'Update-List', + 'Out-GridView', 'Show-Command', 'Out-Printer' +) +FunctionsToExport = @() +AliasesToExport = @('fhx') +NestedModules = @("Microsoft.PowerShell.Commands.Utility.dll") +HelpInfoURI = 'https://aka.ms/powershell72-help' +} + +# SIG # Begin signature block +# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCBA95ukw/cTrslZ +# 8GEROXuMEYH1RJd2ZOe5U1EPFSWVsaCCDYEwggX/MIID56ADAgECAhMzAAACUosz +# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I +# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O +# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA +# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o +# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 +# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 +# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp +# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 +# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u +# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 +# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti +# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z +# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf +# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK +# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW +# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F +# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgqoEvsipU +# dEXkK33kvZSyP9Cx3IROdWp1ndiqGNS27hEwQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQBHzboagxcQ8L50vNYxDsscrvzcGeLtxdwkaQTW10v2 +# aTPJXDVIFjRwioUbqfGvtBDaq9QFgLBcV3qb5zGL0K33nlBa4+dK0AgYlbbkpnSp +# l9l3tTHoSRiKtFdmpIpsRQPXGZ5c6iGkicQNtX/D2c6SBQ++qayvldFZcU16y/4C +# IUzeFA8TYMYRJnGQRC7BG1xqAWztt+WIUGlO5kQOnuNYczbq/zvBrT5nBRwhqcQQ +# YzJRwkNf2F+G88rnBESxNxegRusbUX+v3bwsa6uxxLpSeqSDD3JasgCzS1eaTBYn +# NXGeHxHdweiG14ABsGjSbxT+wtB6eeNj0ymmsYJdm7ApoYIXGTCCFxUGCisGAQQB +# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME +# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIIEUntqZM075d/Xv5VtLazUG/C8XTr8E5AIBTLPG +# 2f+4AgZhlV5AOGMYEzIwMjExMjA4MjEwNDE0LjMzOFowBIACAfSggdikgdUwgdIx +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p +# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh +# bGVzIFRTUyBFU046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBU +# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYm0v4YwhBxL +# jwABAAABiTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg +# MjAxMDAeFw0yMTEwMjgxOTI3NDFaFw0yMzAxMjYxOTI3NDFaMIHSMQswCQYDVQQG +# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG +# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg +# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg +# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt +# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQZXxZFm +# a6plmuOyvNpV8xONOwcYolZG/BjyZWGSk5JOGaLyrKId5VxVHWHlsmJE4Svnzsdp +# sKmVx8otONveIUFvSceEZp8VXmu5m1fu8L7c+3lwXcibjccqtEvtQslokQVx0r+L +# 54abrNDarwFG73IaRidIS1i9c+unJ8oYyhDRLrCysFAVxyQhPNZkWK7Z8/VGukaK +# LAWHXCh/+R53h42gFL+9/mAALxzCXXuofi8f/XKCm7xNwVc1hONCCz6oq94AufzV +# NkkIW4brUQgYpCcJm9U0XNmQvtropYDn9UtY8YQ0NKenXPtdgLHdQ8Nnv3igErKL +# rWI0a5n5jjdKfwk+8mvakqdZmlOseeOS1XspQNJAK1uZllAITcnQZOcO5ofjOQ33 +# ujWckAXdz+/x3o7l4AU/TSOMzGZMwhUdtVwC3dSbItpSVFgnjM2COEJ9zgCadvOi +# rGDLN471jZI2jClkjsJTdgPk343TQA4JFvds/unZq0uLr+niZ3X44OBx2x+gVlln +# 2c4UbZXNueA4yS1TJGbbJFIILAmTUA9Auj5eISGTbNiyWx79HnCOTar39QEKozm4 +# LnTmDXy0/KI/H/nYZGKuTHfckP28wQS06rD+fDS5xLwcRMCW92DkHXmtbhGyRilB +# OL5LxZelQfxt54wl4WUC0AdAEolPekODwO8CAwEAAaOCATYwggEyMB0GA1UdDgQW +# BBSXbx+zR1p4IIAeguA6rHKkrfl7UDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl +# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j +# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx +# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh +# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG +# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQCOtLdpWUI4KwfLLrfaKrLB92Dq +# bAspGWM41TaO4Jl+sHxPo522uu3GKQCjmkRWreHtlfyy9kOk7LWax3k3ke8Gtfet +# fbh7qH0LeV2XOWg39BOnHf6mTcZq7FYSZZch1JDQjc98+Odlow+oWih0Dbt4CV/e +# 19ZcE+1n1zzWkskUEd0f5jPIUis33p+vkY8szduAtCcIcPFUhI8Hb5alPUAPMjGz +# wKb7NIKbnf8j8cP18As5IveckF0oh1cw63RY/vPK62LDYdpi7WnG2ObvngfWVKtw +# iwTI4jHj2cO9q37HDe/PPl216gSpUZh0ap24mKmMDfcKp1N4mEdsxz4oseOrPYeF +# sHHWJFJ6Aivvqn70KTeJpp5r+DxSqbeSy0mxIUOq/lAaUxgNSQVUX26t8r+fciko +# fKv23WHrtRV3t7rVTsB9YzrRaiikmz68K5HWdt9MqULxPQPo+ppZ0LRqkOae466+ +# UKRY0JxWtdrMc5vHlHZfnqjawj/RsM2S6Q6fa9T9CnY1Nz7DYBG3yZJyCPFsrgU0 +# 5s9ljqfsSptpFdUh9R4ce+L71SWDLM2x/1MFLLHAMbXsEp8KloEGtaDULnxtfS2t +# YhfuKGqRXoEfDPAMnIdTvQPh3GHQ4SjkkBARHL0MY75alhGTKHWjC2aLVOo8obKI +# Bk8hfnFDUf/EyVw4uTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw +# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n +# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y +# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv +# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg +# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO +# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 +# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 +# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL +# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 +# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj +# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE +# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 +# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 +# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB +# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE +# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG +# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 +# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV +# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV +# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo +# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m +# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j +# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv +# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN +# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 +# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 +# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX +# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew +# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 +# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd +# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr +# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh +# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n +# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ +# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw +# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI +# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv +# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh +# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00Qjgw +# LTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB +# ATAHBgUrDgMCGgMVACGlCa3ketyeuey7bJNpWkMuiCcQoIGDMIGApH4wfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tYMCIY +# DzIwMjExMjA5MDM1MTUyWhgPMjAyMTEyMTAwMzUxNTJaMHcwPQYKKwYBBAGEWQoE +# ATEvMC0wCgIFAOVbi1gCAQAwCgIBAAICHvwCAf8wBwIBAAICETcwCgIFAOVc3NgC +# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK +# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQCbF/Q1IJzqUwQBkXn+GjUxZzVN +# O+9p1fpL7W8dEy9/m1L7dl968KiYqfO5rekvXeSUDTFYrkS/r0w8p2ZZ7d0TMtJt +# TrKmc85aRmxtSvCNAS2stE2sS2Y5np5+/02w3DDn3Nni6vvF8nsuiIlbiyHrGQrC +# 9eis1rpLSNvXisSYoDGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w +# IFBDQSAyMDEwAhMzAAABibS/hjCEHEuPAAEAAAGJMA0GCWCGSAFlAwQCAQUAoIIB +# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEINjr +# jaYjHvF5zcuiSPmsJnfGwWcQHYP/2CYeqIoTLbM/MIH6BgsqhkiG9w0BCRACLzGB +# 6jCB5zCB5DCBvQQgZndHMdxQV1VsbpWHOTHqWEycvcRJm7cY69l/UmT8j0UwgZgw +# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE +# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD +# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYm0v4YwhBxL +# jwABAAABiTAiBCCErc3WAJDL+6+RTcx4qvTV2Dv0bP6a0jmZjnUp3u9sbzANBgkq +# hkiG9w0BAQsFAASCAgBlISYxvNqg3TVBqRooVDAWRo+EMXUl4mBMwOvnI755iHjz +# ksXBl+FBaJdTbgfrrbkqVuTFgjnA7/1hzx8FuYRnz7aS7yWbUamn2DKeVHfcmL4w +# luTTDqklOtM/LNUOi2iRHQHG2+bi8OvJIavShvbjjv9telA3MY+ONzP+2t7H2ESf +# 7Sht+eH7Il5Wc9p2QB1o2iMaRK+TZoE1petI8ZxSJn0F6rFdBGIOI1mhNaZTZGuk +# UVAe9v6kd5k9BQZ1mfLCVf+A86Ul66fvrwAtETiuFMWYQhbnRWRLElWVUA/3zIS4 +# MVVyPlFjINt2m980WlIgHkt+K+cSbEtIUZ4Scpt/Tf9K0Kd2PEV+2z5n7xbwDPhy +# uczGyZm+0/NH6HDWrr74wX7+UJQzHGU7cP6yIDk/MJF5+E6ahKx6XfJYB2TK28qi +# K0g2HqkFhgS6zvnoNZNpWd28UKH9TLZIyWY9I7jKEMxP6jLzPugPYsL8pxvJLsAI +# /vn5Go+lLdNHUykJgB2ChUKsm3x1aUrSpGiW8UJ5xUiJ5RB1nFfUv0AWHcouYl92 +# FJhWIn3qaZExP6R7NijbAMyoYChcDgPrOGseESmfGZuVFbhE7gMai1VIRCLnmBoK +# Der+JOgsWW/eHU9nN5uuyP6uqtP01F5eayK++qjH+B9xQAJNq79RVXVvyaNZlw== +# SIG # End signature block diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1 b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1 new file mode 100644 index 0000000..a370f4c --- /dev/null +++ b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1 @@ -0,0 +1,230 @@ +@{ +GUID="766204A6-330E-4263-A7AB-46C87AFC366C" +Author="PowerShell" +CompanyName="Microsoft Corporation" +Copyright="Copyright (c) Microsoft Corporation." +ModuleVersion="7.0.0.0" +CompatiblePSEditions = @("Core") +PowerShellVersion="3.0" +FunctionsToExport = @() +CmdletsToExport="Disable-WSManCredSSP", "Enable-WSManCredSSP", "Get-WSManCredSSP", "Set-WSManQuickConfig", "Test-WSMan", "Invoke-WSManAction", "Connect-WSMan", "Disconnect-WSMan", "Get-WSManInstance", "Set-WSManInstance", "Remove-WSManInstance", "New-WSManInstance", "New-WSManSessionOption" +AliasesToExport = @() +NestedModules="Microsoft.WSMan.Management.dll" +FormatsToProcess="WSMan.format.ps1xml" +HelpInfoURI = 'https://aka.ms/powershell72-help' +} + +# SIG # Begin signature block +# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCB+Ujs/uIRQu9NJ +# wrRJEY/iIf48rrMaCNk+CtkIzIqDVqCCDYEwggX/MIID56ADAgECAhMzAAACUosz +# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I +# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O +# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA +# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o +# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 +# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 +# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp +# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 +# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u +# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 +# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti +# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z +# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf +# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK +# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW +# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F +# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgypxuMQwq +# 1eGPEmRm52ViV1FEshB3MTFlVOkKoUKOQmgwQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQBwQLkeEMe+dK/nBzeh5yKFRrxpey/F+58vzZS97hfh +# rOZPhi6B29T/8kJqtTW8EVhdy+XNARi5JYKvFt6cO1TFJlb9H6ncq7TAYPV6ue/R +# 1CmnXltjWiRYZAibhN3Y7Yq+pnqIskQb8LI499I2Sg8JLuvRXBYqUb6F4wZ/vgH2 +# Vz/dHRgonqNkI94s5mOFXG0TX3/JzQD+xj3NWFNeOUCLsQQ0k7EA2pcF9odFgyNS +# QY0KGk3Bu+KcQUxmPdbgtIoM1ebLvINLR3mpD6xeWuusLS2NXX/7x3otBPyC17R2 +# hjh5a4lKYQH16inEdSg6jGkMXymnKOPRAmXZnFI9FET1oYIXGTCCFxUGCisGAQQB +# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME +# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIGqYa00kDq7cefzR97imqg4FhBGef4q3IvGpky5C +# NPnvAgZhlV5AOG4YEzIwMjExMjA4MjEwNDE0LjYwN1owBIACAfSggdikgdUwgdIx +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p +# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh +# bGVzIFRTUyBFU046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBU +# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYm0v4YwhBxL +# jwABAAABiTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg +# MjAxMDAeFw0yMTEwMjgxOTI3NDFaFw0yMzAxMjYxOTI3NDFaMIHSMQswCQYDVQQG +# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG +# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg +# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg +# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt +# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQZXxZFm +# a6plmuOyvNpV8xONOwcYolZG/BjyZWGSk5JOGaLyrKId5VxVHWHlsmJE4Svnzsdp +# sKmVx8otONveIUFvSceEZp8VXmu5m1fu8L7c+3lwXcibjccqtEvtQslokQVx0r+L +# 54abrNDarwFG73IaRidIS1i9c+unJ8oYyhDRLrCysFAVxyQhPNZkWK7Z8/VGukaK +# LAWHXCh/+R53h42gFL+9/mAALxzCXXuofi8f/XKCm7xNwVc1hONCCz6oq94AufzV +# NkkIW4brUQgYpCcJm9U0XNmQvtropYDn9UtY8YQ0NKenXPtdgLHdQ8Nnv3igErKL +# rWI0a5n5jjdKfwk+8mvakqdZmlOseeOS1XspQNJAK1uZllAITcnQZOcO5ofjOQ33 +# ujWckAXdz+/x3o7l4AU/TSOMzGZMwhUdtVwC3dSbItpSVFgnjM2COEJ9zgCadvOi +# rGDLN471jZI2jClkjsJTdgPk343TQA4JFvds/unZq0uLr+niZ3X44OBx2x+gVlln +# 2c4UbZXNueA4yS1TJGbbJFIILAmTUA9Auj5eISGTbNiyWx79HnCOTar39QEKozm4 +# LnTmDXy0/KI/H/nYZGKuTHfckP28wQS06rD+fDS5xLwcRMCW92DkHXmtbhGyRilB +# OL5LxZelQfxt54wl4WUC0AdAEolPekODwO8CAwEAAaOCATYwggEyMB0GA1UdDgQW +# BBSXbx+zR1p4IIAeguA6rHKkrfl7UDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl +# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j +# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx +# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh +# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG +# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQCOtLdpWUI4KwfLLrfaKrLB92Dq +# bAspGWM41TaO4Jl+sHxPo522uu3GKQCjmkRWreHtlfyy9kOk7LWax3k3ke8Gtfet +# fbh7qH0LeV2XOWg39BOnHf6mTcZq7FYSZZch1JDQjc98+Odlow+oWih0Dbt4CV/e +# 19ZcE+1n1zzWkskUEd0f5jPIUis33p+vkY8szduAtCcIcPFUhI8Hb5alPUAPMjGz +# wKb7NIKbnf8j8cP18As5IveckF0oh1cw63RY/vPK62LDYdpi7WnG2ObvngfWVKtw +# iwTI4jHj2cO9q37HDe/PPl216gSpUZh0ap24mKmMDfcKp1N4mEdsxz4oseOrPYeF +# sHHWJFJ6Aivvqn70KTeJpp5r+DxSqbeSy0mxIUOq/lAaUxgNSQVUX26t8r+fciko +# fKv23WHrtRV3t7rVTsB9YzrRaiikmz68K5HWdt9MqULxPQPo+ppZ0LRqkOae466+ +# UKRY0JxWtdrMc5vHlHZfnqjawj/RsM2S6Q6fa9T9CnY1Nz7DYBG3yZJyCPFsrgU0 +# 5s9ljqfsSptpFdUh9R4ce+L71SWDLM2x/1MFLLHAMbXsEp8KloEGtaDULnxtfS2t +# YhfuKGqRXoEfDPAMnIdTvQPh3GHQ4SjkkBARHL0MY75alhGTKHWjC2aLVOo8obKI +# Bk8hfnFDUf/EyVw4uTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw +# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n +# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y +# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv +# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg +# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO +# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 +# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 +# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL +# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 +# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj +# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE +# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 +# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 +# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB +# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE +# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG +# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 +# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV +# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV +# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo +# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m +# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j +# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv +# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN +# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 +# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 +# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX +# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew +# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 +# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd +# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr +# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh +# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n +# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ +# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw +# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI +# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv +# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh +# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00Qjgw +# LTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB +# ATAHBgUrDgMCGgMVACGlCa3ketyeuey7bJNpWkMuiCcQoIGDMIGApH4wfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tYMCIY +# DzIwMjExMjA5MDM1MTUyWhgPMjAyMTEyMTAwMzUxNTJaMHcwPQYKKwYBBAGEWQoE +# ATEvMC0wCgIFAOVbi1gCAQAwCgIBAAICHvwCAf8wBwIBAAICETcwCgIFAOVc3NgC +# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK +# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQCbF/Q1IJzqUwQBkXn+GjUxZzVN +# O+9p1fpL7W8dEy9/m1L7dl968KiYqfO5rekvXeSUDTFYrkS/r0w8p2ZZ7d0TMtJt +# TrKmc85aRmxtSvCNAS2stE2sS2Y5np5+/02w3DDn3Nni6vvF8nsuiIlbiyHrGQrC +# 9eis1rpLSNvXisSYoDGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w +# IFBDQSAyMDEwAhMzAAABibS/hjCEHEuPAAEAAAGJMA0GCWCGSAFlAwQCAQUAoIIB +# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIN1F +# wmeehZy4wMNXqLnULVbk4oVsB3cWo9ryHOQxmYoPMIH6BgsqhkiG9w0BCRACLzGB +# 6jCB5zCB5DCBvQQgZndHMdxQV1VsbpWHOTHqWEycvcRJm7cY69l/UmT8j0UwgZgw +# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE +# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD +# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYm0v4YwhBxL +# jwABAAABiTAiBCCErc3WAJDL+6+RTcx4qvTV2Dv0bP6a0jmZjnUp3u9sbzANBgkq +# hkiG9w0BAQsFAASCAgAWjRg7KzoR7Kd4cPnoMh490c1gOoabocbdzphBISFn24S4 +# Nomokt8QSkLypqSgMe0FQyCku8urnNIhX6CA1FObkCe+DFM9FFaOHNY3Lqv4oVGW +# O2nCjMXPxj8FMZM7UyZB11zPMhPHaleWP0UQPuqEf/d6V8vbh23OyZ9RfYUKft+m +# zKsR+gnqKtrmAuqLSrwoo/6JvgchTRqV+ODeDc1l3JfbhQW+6hFryB3RSAau+Msg +# n/QwOqIYCYJl/t7kV/Ze7WF97Kc294zbuRT4LTMccfms19oeACHoZpU2H7JWSEZn +# MTMnaEVlM+9ylAgC4wxiEsXlJCI5K167HTpkfR3/9/4hJo+5Pmacd0HQjpP6zDqw +# a8sveaOAmaI0eRC6ByG00sBwPmbRTRvDA4Dc2b3bKqINgkZpM7/NFmclkho4jvF0 +# XJ4jk/Ul2rvaQtTrWY0ZCITR79XpLpRZMukTFTybSZrE+bERy3eK/KNee4Wbt6wz +# 86sci4DvgqPc1nBsX0Y5iWhiPA2I9rXH36iH7ZI7D/I4+0qEWLxfsLNTUthwb8Zg +# 1ukHkIyEk14gOar+Exf4MRZ8slf1518X2zoCj6ZeYfXB8pRz/+N7w8rEtbKCjX+U +# dyI16Oy8vNwWWZRdoG6e2rMmvDDSTz34db1DymXU+a92+q/qcwFAkl1dPVTn5Q== +# SIG # End signature block diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml new file mode 100644 index 0000000..8907c23 --- /dev/null +++ b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml @@ -0,0 +1,451 @@ + + + + + + + System.Xml.XmlElement#http://schemas.dmtf.org/wbem/wsman/identity/1/wsmanidentity.xsd#IdentifyResponse + + System.Xml.XmlElement#http://schemas.dmtf.org/wbem/wsman/identity/1/wsmanidentity.xsd#IdentifyResponse + + + + + + + wsmid + + + ProtocolVersion + + + ProductVendor + + + ProductVersion + + + + + + + + Microsoft.WSMan.Management.WSManConfigElement + + Microsoft.WSMan.Management.WSManConfigElement + + + PSParentPath + + + + + + + 15 + + + + 30 + + + + + + + TypeNameOfElement + + + Name + + + + + + + + Microsoft.WSMan.Management.WSManConfigContainerElement + + Microsoft.WSMan.Management.WSManConfigContainerElement + + + PSParentPath + + + + + + + 15 + + + + 35 + + + + + + + + + + TypeNameOfElement + + + Keys + + + Name + + + + + + + + Microsoft.WSMan.Management.WSManConfigLeafElement + + Microsoft.WSMan.Management.WSManConfigLeafElement + + + PSParentPath + + + + + + + 15 + + + + 30 + + + + 15 + + + + + + + + + + TypeNameOfElement + + + Name + + + SourceOfValue + + + Value + + + + + + + + Microsoft.WSMan.Management.WSManConfigLeafElement#InitParams + + Microsoft.WSMan.Management.WSManConfigLeafElement#InitParams + + + PSParentPath + + + + + + + 30 + + + + 20 + + + + + + + Name + + + Value + + + + + + + + Microsoft.WSMan.Management.WSManConfigContainerElement#ComputerLevel + + Microsoft.WSMan.Management.WSManConfigContainerElement#ComputerLevel + + + PSParentPath + + + + + + + 45 + + + + 20 + + + + + + + Name + + + TypeNameOfElement + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psd1 b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psd1 new file mode 100644 index 0000000..626dc3a --- /dev/null +++ b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psd1 @@ -0,0 +1,207 @@ +@{ + GUID="c61d6278-02a3-4618-ae37-a524d40a7f44 " + Author="PowerShell" + CompanyName="Microsoft Corporation" + Copyright="Copyright (c) Microsoft Corporation." + ModuleVersion="7.0.0.0" + CompatiblePSEditions = @("Core") + PowerShellVersion="3.0" + ModuleToProcess="PSDiagnostics.psm1" + FunctionsToExport="Disable-PSTrace","Disable-PSWSManCombinedTrace","Disable-WSManTrace","Enable-PSTrace","Enable-PSWSManCombinedTrace","Enable-WSManTrace","Get-LogProperties","Set-LogProperties","Start-Trace","Stop-Trace" + CmdletsToExport = @() + AliasesToExport = @() + HelpInfoUri="https://aka.ms/powershell72-help" +} + +# SIG # Begin signature block +# MIIjkQYJKoZIhvcNAQcCoIIjgjCCI34CAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCD/dfsIexbywzf4 +# vgDANLKxbLCeK+0wW4ZnFQP22V0sXqCCDYEwggX/MIID56ADAgECAhMzAAACUosz +# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I +# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O +# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA +# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o +# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 +# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 +# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp +# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 +# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u +# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 +# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti +# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z +# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf +# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK +# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW +# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F +# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIVZjCCFWICAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgoT0Qfn6u +# IFQn6DGWcQzw34/4HzFrnEYbuu3YQlqVoaQwQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQCt/xkRVxP7BXqiUQi+IuzI0bokgJJBF15CLUb5UcOl +# ojrCl4Rx34i0hAAoWt5uOvUG37LQEGnKm5DEgRwG5d+R8SHjAZxk83VzPAg9c7S/ +# GLe8AdcLJ4L5rjGb5YReU+eIPGNvrcZu8JYN2dlBO1nY6axLwonRTpQj43J7wrWd +# InSCbV8CnUfK4/lgftJ5P7SCNLe7Enjv8dQOahg3B4BMReQxHm/SZWgSGb8t++wI +# ZWCw6sRh+XjE63P3VzhAp8Z8KOR3TSCE4Bt5tfy8xDbmePlVrK3GKoVVq4RkVn96 +# 4TRCHvs3RZTQm57yJ2NplI10zIqZz2geZRns5nVGDHcYoYIS8DCCEuwGCisGAQQB +# gjcDAwExghLcMIIS2AYJKoZIhvcNAQcCoIISyTCCEsUCAQMxDzANBglghkgBZQME +# AgEFADCCAVQGCyqGSIb3DQEJEAEEoIIBQwSCAT8wggE7AgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIG5NKJe+omftR+S4BYKgAMTO7Tl6rem9xPJkoE7D +# yZYZAgZhk97zjjgYEjIwMjExMjA4MjEwNDE0Ljg2WjAEgAIB9KCB1KSB0TCBzjEL +# MAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1v +# bmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEpMCcGA1UECxMgTWlj +# cm9zb2Z0IE9wZXJhdGlvbnMgUHVlcnRvIFJpY28xJjAkBgNVBAsTHVRoYWxlcyBU +# U1MgRVNOOjMyQkQtRTNENS0zQjFEMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1T +# dGFtcCBTZXJ2aWNloIIORDCCBPUwggPdoAMCAQICEzMAAAFi0P4C8wHlzUkAAAAA +# AWIwDQYJKoZIhvcNAQELBQAwfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hp +# bmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jw +# b3JhdGlvbjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAw +# HhcNMjEwMTE0MTkwMjIyWhcNMjIwNDExMTkwMjIyWjCBzjELMAkGA1UEBhMCVVMx +# EzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoT +# FU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEpMCcGA1UECxMgTWljcm9zb2Z0IE9wZXJh +# dGlvbnMgUHVlcnRvIFJpY28xJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNOOjMyQkQt +# RTNENS0zQjFEMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2aWNl +# MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA74ah1Pa5wvcyvYNCy/YQ +# s1tK8rIGlh1Qq1QFaJmYVXLXykb+m5yCStzmL227wJjsalZX8JA2YcbaZV5Icwm9 +# vAJz8AC/sk/dsUK3pmDvkhtVI04YDV6otuZCILpQB9Ipcs3d0e1Dl2KKFvdibOk0 +# /0rRxU9l+/Yxeb5lVTRERLxzI+Rd6Xv5QQYT6Sp2IE0N1vzIFd3yyO773T5XifNg +# L5lZbtIUnYUVmUBKlVoemO/54aiFeVBpIG+YzhDTF7cuHNAzxWIbP1wt4VIqAV9J +# juqLMvvBSD56pi8NTKM9fxrERAeaTS2HbfBYfmnRZ27Czjeo0ijQ5DSZGi0ErvWf +# KQIDAQABo4IBGzCCARcwHQYDVR0OBBYEFMvEShFgSkO3OnzgHlaVk3aQ/iprMB8G +# A1UdIwQYMBaAFNVjOlyKMZDzQ3t8RhvFM2hahW1VMFYGA1UdHwRPME0wS6BJoEeG +# RWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Rp +# bVN0YVBDQV8yMDEwLTA3LTAxLmNybDBaBggrBgEFBQcBAQROMEwwSgYIKwYBBQUH +# MAKGPmh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbS9wa2kvY2VydHMvTWljVGltU3Rh +# UENBXzIwMTAtMDctMDEuY3J0MAwGA1UdEwEB/wQCMAAwEwYDVR0lBAwwCgYIKwYB +# BQUHAwgwDQYJKoZIhvcNAQELBQADggEBAC1BrcOhdhtb9xcAJtxVIUZ7iALwZewX +# FIdPcmDAVT810k5xuRwVNW9Onq+WZO8ebqwiOSdEEHReLU0FOo/DbS7q79PsKdz/ +# PSBPqZ/1ysjRVH0L5HUK2N7NgpkR1lnt+41BaOzJ+00OFDL5GqeqvK3RWh7MtqWF +# 6KKcfNkP/hjiFlg9/S7xNK/Vl8q10HB5YbdBTQun8j1Jsih6YMb3tFQsxw++ra5+ +# FSnc4yJhAYvVaqTKRKepEmwzYhwDiXh2ag80/p0uDkOvs1WhgogwidpBVmNLAMxm +# FavK9+LNfRKvPIuCQw+EsxWR8vFBBJDfs14WTsXVF94CQ1YCHqYI5EEwggZxMIIE +# WaADAgECAgphCYEqAAAAAAACMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJV +# UzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UE +# ChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9v +# dCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgMjAxMDAeFw0xMDA3MDEyMTM2NTVaFw0y +# NTA3MDEyMTQ2NTVaMHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9u +# MRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRp +# b24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwMIIBIjAN +# BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqR0NvHcRijog7PwTl/X6f2mUa3RU +# ENWlCgCChfvtfGhLLF/Fw+Vhwna3PmYrW/AVUycEMR9BGxqVHc4JE458YTBZsTBE +# D/FgiIRUQwzXTbg4CLNC3ZOs1nMwVyaCo0UN0Or1R4HNvyRgMlhgRvJYR4YyhB50 +# YWeRX4FUsc+TTJLBxKZd0WETbijGGvmGgLvfYfxGwScdJGcSchohiq9LZIlQYrFd +# /XcfPfBXday9ikJNQFHRD5wGPmd/9WbAA5ZEfu/QS/1u5ZrKsajyeioKMfDaTgaR +# togINeh4HLDpmc085y9Euqf03GS9pAHBIAmTeM38vMDJRF1eFpwBBU8iTQIDAQAB +# o4IB5jCCAeIwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFNVjOlyKMZDzQ3t8 +# RhvFM2hahW1VMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1UdDwQEAwIB +# hjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNX2VsuP6KJcYmjRPZSQW9fO +# mhjEMFYGA1UdHwRPME0wS6BJoEeGRWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9w +# a2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNybDBaBggr +# BgEFBQcBAQROMEwwSgYIKwYBBQUHMAKGPmh0dHA6Ly93d3cubWljcm9zb2Z0LmNv +# bS9wa2kvY2VydHMvTWljUm9vQ2VyQXV0XzIwMTAtMDYtMjMuY3J0MIGgBgNVHSAB +# Af8EgZUwgZIwgY8GCSsGAQQBgjcuAzCBgTA9BggrBgEFBQcCARYxaHR0cDovL3d3 +# dy5taWNyb3NvZnQuY29tL1BLSS9kb2NzL0NQUy9kZWZhdWx0Lmh0bTBABggrBgEF +# BQcCAjA0HjIgHQBMAGUAZwBhAGwAXwBQAG8AbABpAGMAeQBfAFMAdABhAHQAZQBt +# AGUAbgB0AC4gHTANBgkqhkiG9w0BAQsFAAOCAgEAB+aIUQ3ixuCYP4FxAz2do6Eh +# b7Prpsz1Mb7PBeKp/vpXbRkws8LFZslq3/Xn8Hi9x6ieJeP5vO1rVFcIK1GCRBL7 +# uVOMzPRgEop2zEBAQZvcXBf/XPleFzWYJFZLdO9CEMivv3/Gf/I3fVo/HPKZeUqR +# UgCvOA8X9S95gWXZqbVr5MfO9sp6AG9LMEQkIjzP7QOllo9ZKby2/QThcJ8ySif9 +# Va8v/rbljjO7Yl+a21dA6fHOmWaQjP9qYn/dxUoLkSbiOewZSnFjnXshbcOco6I8 +# +n99lmqQeKZt0uGc+R38ONiU9MalCpaGpL2eGq4EQoO4tYCbIjggtSXlZOz39L9+ +# Y1klD3ouOVd2onGqBooPiRa6YacRy5rYDkeagMXQzafQ732D8OE7cQnfXXSYIghh +# 2rBQHm+98eEA3+cxB6STOvdlR3jo+KhIq/fecn5ha293qYHLpwmsObvsxsvYgrRy +# zR30uIUBHoD7G4kqVDmyW9rIDVWZeodzOwjmmC3qjeAzLhIp9cAvVCch98isTtoo +# uLGp25ayp0Kiyc8ZQU3ghvkqmqMRZjDTu3QyS99je/WZii8bxyGvWbWu3EQ8l1Bx +# 16HSxVXjad5XwdHeMMD9zOZN+w2/XU/pnR4ZOC+8z1gFLu8NoFA12u8JJxzVs341 +# Hgi62jbb01+P3nSISRKhggLSMIICOwIBATCB/KGB1KSB0TCBzjELMAkGA1UEBhMC +# VVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNV +# BAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEpMCcGA1UECxMgTWljcm9zb2Z0IE9w +# ZXJhdGlvbnMgUHVlcnRvIFJpY28xJjAkBgNVBAsTHVRoYWxlcyBUU1MgRVNOOjMy +# QkQtRTNENS0zQjFEMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFtcCBTZXJ2 +# aWNloiMKAQEwBwYFKw4DAhoDFQCas/oKGtvPRrHuznufk+indULyDKCBgzCBgKR+ +# MHwxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMT +# HU1pY3Jvc29mdCBUaW1lLVN0YW1wIFBDQSAyMDEwMA0GCSqGSIb3DQEBBQUAAgUA +# 5Vtd4DAiGA8yMDIxMTIwODIwMzc1MloYDzIwMjExMjA5MjAzNzUyWjB3MD0GCisG +# AQQBhFkKBAExLzAtMAoCBQDlW13gAgEAMAoCAQACAiXlAgH/MAcCAQACAhIPMAoC +# BQDlXK9gAgEAMDYGCisGAQQBhFkKBAIxKDAmMAwGCisGAQQBhFkKAwKgCjAIAgEA +# AgMHoSChCjAIAgEAAgMBhqAwDQYJKoZIhvcNAQEFBQADgYEAM2SMFWUY36bc2OtE +# Rp28goB1/JaCRplwIWPeW6MSG1c3i2g4X2GIc4vvRrc834fuuJ+Qm07NFeRHQA61 +# lJAHbTlZBMdkDILSVP+20NGOy6B3k5K1WMfGN0Et9EQJpvfEJaB2F4d+LCCNd/MM +# dXEvG2iFxgW3C4TCWZENGlxsa5ExggMNMIIDCQIBATCBkzB8MQswCQYDVQQGEwJV +# UzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UE +# ChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGlt +# ZS1TdGFtcCBQQ0EgMjAxMAITMwAAAWLQ/gLzAeXNSQAAAAABYjANBglghkgBZQME +# AgEFAKCCAUowGgYJKoZIhvcNAQkDMQ0GCyqGSIb3DQEJEAEEMC8GCSqGSIb3DQEJ +# BDEiBCB66+Xkbn3ewO+BRQNGeKLsT3CZTxRw6oyH+Hqt0XKBjzCB+gYLKoZIhvcN +# AQkQAi8xgeowgecwgeQwgb0EIIqqGJX7PA0OulTsNEHsyLnvGLoYE1iwaOBmqrap +# UwoyMIGYMIGApH4wfDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24x +# EDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlv +# bjEmMCQGA1UEAxMdTWljcm9zb2Z0IFRpbWUtU3RhbXAgUENBIDIwMTACEzMAAAFi +# 0P4C8wHlzUkAAAAAAWIwIgQgPmj2PBaeW66dmUvg/M3GbG9dSU9ROIZo6V1zy7iW +# 604wDQYJKoZIhvcNAQELBQAEggEA6MvaPUzarjssGW9T9f6ohr8y3PWDaJKtB/jB +# siPN63Ektk0b2P1aJLd+FV3f3m4dq25TfYZEIliZtog2M9YOce/24reMnhBbyWwO +# tVGurL4kJQ2+z3qsASFQvZxc4O2NVFQDyyued5Y4+imuQGM3u4TOo5DSTCsvqw89 +# P5J99wB5W9hifpU65qjBROE+LNY6aMF0bIGeDbqb0m9cPe8JE2gZN+SMQQ9kzTUm +# eLAuoyvdm6wGrsx8/xgC2XFHA47DLev3lgUfx6FczxiRna/aI6Y8oqY+Z/R5Vd/L +# vZwZYPSInN7G2gVwJV9/VzLkLQ5hjDJrDMAyZ1smJnQAdnVlLg== +# SIG # End signature block diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psm1 b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psm1 new file mode 100644 index 0000000..f4c16f0 --- /dev/null +++ b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psm1 @@ -0,0 +1,663 @@ +# Copyright (c) Microsoft Corporation. +# Licensed under the MIT License. + +<# + PowerShell Diagnostics Module + This module contains a set of wrapper scripts that + enable a user to use ETW tracing in Windows + PowerShell. + #> + +$script:Logman="$env:windir\system32\logman.exe" +$script:wsmanlogfile = "$env:windir\system32\wsmtraces.log" +$script:wsmprovfile = "$env:windir\system32\wsmtraceproviders.txt" +$script:wsmsession = "wsmlog" +$script:pssession = "PSTrace" +$script:psprovidername="Microsoft-Windows-PowerShell" +$script:wsmprovidername = "Microsoft-Windows-WinRM" +$script:oplog = "/Operational" +$script:analyticlog="/Analytic" +$script:debuglog="/Debug" +$script:wevtutil="$env:windir\system32\wevtutil.exe" +$script:slparam = "sl" +$script:glparam = "gl" + +function Start-Trace +{ + Param( + [Parameter(Mandatory=$true, + Position=0)] + [string] + $SessionName, + [Parameter(Position=1)] + [ValidateNotNullOrEmpty()] + [string] + $OutputFilePath, + [Parameter(Position=2)] + [ValidateNotNullOrEmpty()] + [string] + $ProviderFilePath, + [Parameter()] + [Switch] + $ETS, + [Parameter()] + [ValidateSet("bin", "bincirc", "csv", "tsv", "sql")] + $Format, + [Parameter()] + [int] + $MinBuffers=0, + [Parameter()] + [int] + $MaxBuffers=256, + [Parameter()] + [int] + $BufferSizeInKB = 0, + [Parameter()] + [int] + $MaxLogFileSizeInMB=0 + ) + + Process + { + $executestring = " start $SessionName" + + if ($ETS) + { + $executestring += " -ets" + } + + if ($null -ne $OutputFilePath) + { + $executestring += " -o ""$OutputFilePath""" + } + + if ($null -ne $ProviderFilePath) + { + $executestring += " -pf ""$ProviderFilePath""" + } + + if ($null -ne $Format) + { + $executestring += " -f $Format" + } + + if ($MinBuffers -ne 0 -or $MaxBuffers -ne 256) + { + $executestring += " -nb $MinBuffers $MaxBuffers" + } + + if ($BufferSizeInKB -ne 0) + { + $executestring += " -bs $BufferSizeInKB" + } + + if ($MaxLogFileSizeInMB -ne 0) + { + $executestring += " -max $MaxLogFileSizeInMB" + } + + & $script:Logman $executestring.Split(" ") + } +} + +function Stop-Trace +{ + param( + [Parameter(Mandatory=$true, + Position=0)] + $SessionName, + [Parameter()] + [switch] + $ETS + ) + + Process + { + if ($ETS) + { + & $script:Logman update $SessionName -ets + & $script:Logman stop $SessionName -ets + } + else + { + & $script:Logman update $SessionName + & $script:Logman stop $SessionName + } + } +} + +function Enable-WSManTrace +{ + + # winrm + "{04c6e16d-b99f-4a3a-9b3e-b8325bbc781e} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii + + # winrsmgr + "{c0a36be8-a515-4cfa-b2b6-2676366efff7} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append + + # WinrsExe + "{f1cab2c0-8beb-4fa2-90e1-8f17e0acdd5d} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append + + # WinrsCmd + "{03992646-3dfe-4477-80e3-85936ace7abb} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append + + # IPMIPrv + "{651d672b-e11f-41b7-add3-c2f6a4023672} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append + + #IpmiDrv + "{D5C6A3E9-FA9C-434e-9653-165B4FC869E4} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append + + # WSManProvHost + "{6e1b64d7-d3be-4651-90fb-3583af89d7f1} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append + + # Event Forwarding + "{6FCDF39A-EF67-483D-A661-76D715C6B008} 0xffffffff 0xff" | Out-File $script:wsmprovfile -Encoding ascii -Append + + Start-Trace -SessionName $script:wsmsession -ETS -OutputFilePath $script:wsmanlogfile -Format bincirc -MinBuffers 16 -MaxBuffers 256 -BufferSizeInKB 64 -MaxLogFileSizeInMB 256 -ProviderFilePath $script:wsmprovfile +} + +function Disable-WSManTrace +{ + Stop-Trace $script:wsmsession -ETS +} + +function Enable-PSWSManCombinedTrace +{ + param ( + [switch] $DoNotOverwriteExistingTrace + ) + + $provfile = [io.path]::GetTempFilename() + + $traceFileName = [string][Guid]::NewGuid() + if ($DoNotOverwriteExistingTrace) { + $fileName = [string][guid]::newguid() + $logfile = $PSHOME + "\\Traces\\PSTrace_$fileName.etl" + } else { + $logfile = $PSHOME + "\\Traces\\PSTrace.etl" + } + + "Microsoft-Windows-PowerShell 0 5" | Out-File $provfile -Encoding ascii + "Microsoft-Windows-WinRM 0 5" | Out-File $provfile -Encoding ascii -Append + + if (!(Test-Path $PSHOME\Traces)) + { + New-Item -ItemType Directory -Force $PSHOME\Traces | Out-Null + } + + if (Test-Path $logfile) + { + Remove-Item -Force $logfile | Out-Null + } + + Start-Trace -SessionName $script:pssession -OutputFilePath $logfile -ProviderFilePath $provfile -ETS + + Remove-Item $provfile -Force -ea 0 +} + +function Disable-PSWSManCombinedTrace +{ + Stop-Trace -SessionName $script:pssession -ETS +} + +function Set-LogProperties +{ + param( + [Parameter(Mandatory=$true, Position=0, ValueFromPipeline=$true)] + [Microsoft.PowerShell.Diagnostics.LogDetails] + $LogDetails, + [switch] $Force + ) + + Process + { + if ($LogDetails.AutoBackup -and !$LogDetails.Retention) + { + throw (New-Object System.InvalidOperationException) + } + + $enabled = $LogDetails.Enabled.ToString() + $retention = $LogDetails.Retention.ToString() + $autobackup = $LogDetails.AutoBackup.ToString() + $maxLogSize = $LogDetails.MaxLogSize.ToString() + $osVersion = [Version] (Get-CimInstance Win32_OperatingSystem).Version + + if (($LogDetails.Type -eq "Analytic") -or ($LogDetails.Type -eq "Debug")) + { + if ($LogDetails.Enabled) + { + if($osVersion -lt 6.3.7600) + { + & $script:wevtutil $script:slparam $LogDetails.Name -e:$Enabled + } + else + { + & $script:wevtutil /q:$Force $script:slparam $LogDetails.Name -e:$Enabled + } + } + else + { + if($osVersion -lt 6.3.7600) + { + & $script:wevtutil $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ms:$MaxLogSize + } + else + { + & $script:wevtutil /q:$Force $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ms:$MaxLogSize + } + } + } + else + { + if($osVersion -lt 6.3.7600) + { + & $script:wevtutil $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ab:$AutoBackup -ms:$MaxLogSize + } + else + { + & $script:wevtutil /q:$Force $script:slparam $LogDetails.Name -e:$Enabled -rt:$Retention -ab:$AutoBackup -ms:$MaxLogSize + } + } + } +} + +function ConvertTo-Bool([string]$value) +{ + if ($value -ieq "true") + { + return $true + } + else + { + return $false + } +} + +function Get-LogProperties +{ + param( + [Parameter(Mandatory=$true, ValueFromPipeline=$true, Position=0)] $Name + ) + + Process + { + $details = & $script:wevtutil $script:glparam $Name + $indexes = @(1,2,8,9,10) + $value = @() + foreach($index in $indexes) + { + $value += @(($details[$index].SubString($details[$index].IndexOf(":")+1)).Trim()) + } + + $enabled = ConvertTo-Bool $value[0] + $retention = ConvertTo-Bool $value[2] + $autobackup = ConvertTo-Bool $value[3] + + New-Object Microsoft.PowerShell.Diagnostics.LogDetails $Name, $enabled, $value[1], $retention, $autobackup, $value[4] + } +} + +function Enable-PSTrace +{ + param( + [switch] $Force, + [switch] $AnalyticOnly + ) + + $Properties = Get-LogProperties ($script:psprovidername + $script:analyticlog) + + if (!$Properties.Enabled) { + $Properties.Enabled = $true + if ($Force) { + Set-LogProperties $Properties -Force + } else { + Set-LogProperties $Properties + } + } + + if (!$AnalyticOnly) { + $Properties = Get-LogProperties ($script:psprovidername + $script:debuglog) + if (!$Properties.Enabled) { + $Properties.Enabled = $true + if ($Force) { + Set-LogProperties $Properties -Force + } else { + Set-LogProperties $Properties + } + } + } +} + +function Disable-PSTrace +{ + param( + [switch] $AnalyticOnly + ) + $Properties = Get-LogProperties ($script:psprovidername + $script:analyticlog) + if ($Properties.Enabled) { + $Properties.Enabled = $false + Set-LogProperties $Properties + } + + if (!$AnalyticOnly) { + $Properties = Get-LogProperties ($script:psprovidername + $script:debuglog) + if ($Properties.Enabled) { + $Properties.Enabled = $false + Set-LogProperties $Properties + } + } +} +Add-Type @" +using System; + +namespace Microsoft.PowerShell.Diagnostics +{ + public class LogDetails + { + public string Name + { + get + { + return name; + } + } + private string name; + + public bool Enabled + { + get + { + return enabled; + } + set + { + enabled = value; + } + } + private bool enabled; + + public string Type + { + get + { + return type; + } + } + private string type; + + public bool Retention + { + get + { + return retention; + } + set + { + retention = value; + } + } + private bool retention; + + public bool AutoBackup + { + get + { + return autoBackup; + } + set + { + autoBackup = value; + } + } + private bool autoBackup; + + public int MaxLogSize + { + get + { + return maxLogSize; + } + set + { + maxLogSize = value; + } + } + private int maxLogSize; + + public LogDetails(string name, bool enabled, string type, bool retention, bool autoBackup, int maxLogSize) + { + this.name = name; + this.enabled = enabled; + this.type = type; + this.retention = retention; + this.autoBackup = autoBackup; + this.maxLogSize = maxLogSize; + } + } +} +"@ + +if (Get-Command logman.exe -Type Application -ErrorAction SilentlyContinue) +{ + Export-ModuleMember Disable-PSTrace, Disable-PSWSManCombinedTrace, Disable-WSManTrace, Enable-PSTrace, Enable-PSWSManCombinedTrace, Enable-WSManTrace, Get-LogProperties, Set-LogProperties, Start-Trace, Stop-Trace +} +else +{ + # Currently we only support these cmdlets as logman.exe is not available on systems like Nano and IoT + Export-ModuleMember Disable-PSTrace, Enable-PSTrace, Get-LogProperties, Set-LogProperties +} + +# SIG # Begin signature block +# MIInugYJKoZIhvcNAQcCoIInqzCCJ6cCAQExDzANBglghkgBZQMEAgEFADB5Bgor +# BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG +# KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCBzuFp8c8UN6ilP +# /hSmUPDtAUbo8uWTs6wUbaR/ZpM1B6CCDYEwggX/MIID56ADAgECAhMzAAACUosz +# qviV8znbAAAAAAJSMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMTH01pY3Jvc29mdCBDb2RlIFNpZ25p +# bmcgUENBIDIwMTEwHhcNMjEwOTAyMTgzMjU5WhcNMjIwOTAxMTgzMjU5WjB0MQsw +# CQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9u +# ZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMR4wHAYDVQQDExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +# AQDQ5M+Ps/X7BNuv5B/0I6uoDwj0NJOo1KrVQqO7ggRXccklyTrWL4xMShjIou2I +# sbYnF67wXzVAq5Om4oe+LfzSDOzjcb6ms00gBo0OQaqwQ1BijyJ7NvDf80I1fW9O +# L76Kt0Wpc2zrGhzcHdb7upPrvxvSNNUvxK3sgw7YTt31410vpEp8yfBEl/hd8ZzA +# v47DCgJ5j1zm295s1RVZHNp6MoiQFVOECm4AwK2l28i+YER1JO4IplTH44uvzX9o +# RnJHaMvWzZEpozPy4jNO2DDqbcNs4zh7AWMhE1PWFVA+CHI/En5nASvCvLmuR/t8 +# q4bc8XR8QIZJQSp+2U6m2ldNAgMBAAGjggF+MIIBejAfBgNVHSUEGDAWBgorBgEE +# AYI3TAgBBggrBgEFBQcDAzAdBgNVHQ4EFgQUNZJaEUGL2Guwt7ZOAu4efEYXedEw +# UAYDVR0RBEkwR6RFMEMxKTAnBgNVBAsTIE1pY3Jvc29mdCBPcGVyYXRpb25zIFB1 +# ZXJ0byBSaWNvMRYwFAYDVQQFEw0yMzAwMTIrNDY3NTk3MB8GA1UdIwQYMBaAFEhu +# ZOVQBdOCqhc3NyK1bajKdQKVMFQGA1UdHwRNMEswSaBHoEWGQ2h0dHA6Ly93d3cu +# bWljcm9zb2Z0LmNvbS9wa2lvcHMvY3JsL01pY0NvZFNpZ1BDQTIwMTFfMjAxMS0w +# Ny0wOC5jcmwwYQYIKwYBBQUHAQEEVTBTMFEGCCsGAQUFBzAChkVodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY0NvZFNpZ1BDQTIwMTFfMjAx +# MS0wNy0wOC5jcnQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAFkk3 +# uSxkTEBh1NtAl7BivIEsAWdgX1qZ+EdZMYbQKasY6IhSLXRMxF1B3OKdR9K/kccp +# kvNcGl8D7YyYS4mhCUMBR+VLrg3f8PUj38A9V5aiY2/Jok7WZFOAmjPRNNGnyeg7 +# l0lTiThFqE+2aOs6+heegqAdelGgNJKRHLWRuhGKuLIw5lkgx9Ky+QvZrn/Ddi8u +# TIgWKp+MGG8xY6PBvvjgt9jQShlnPrZ3UY8Bvwy6rynhXBaV0V0TTL0gEx7eh/K1 +# o8Miaru6s/7FyqOLeUS4vTHh9TgBL5DtxCYurXbSBVtL1Fj44+Od/6cmC9mmvrti +# yG709Y3Rd3YdJj2f3GJq7Y7KdWq0QYhatKhBeg4fxjhg0yut2g6aM1mxjNPrE48z +# 6HWCNGu9gMK5ZudldRw4a45Z06Aoktof0CqOyTErvq0YjoE4Xpa0+87T/PVUXNqf +# 7Y+qSU7+9LtLQuMYR4w3cSPjuNusvLf9gBnch5RqM7kaDtYWDgLyB42EfsxeMqwK +# WwA+TVi0HrWRqfSx2olbE56hJcEkMjOSKz3sRuupFCX3UroyYf52L+2iVTrda8XW +# esPG62Mnn3T8AuLfzeJFuAbfOSERx7IFZO92UPoXE1uEjL5skl1yTZB3MubgOA4F +# 8KoRNhviFAEST+nG8c8uIsbZeb08SeYQMqjVEmkwggd6MIIFYqADAgECAgphDpDS +# AAAAAAADMA0GCSqGSIb3DQEBCwUAMIGIMQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMTIwMAYDVQQDEylNaWNyb3NvZnQgUm9vdCBDZXJ0aWZpY2F0 +# ZSBBdXRob3JpdHkgMjAxMTAeFw0xMTA3MDgyMDU5MDlaFw0yNjA3MDgyMTA5MDla +# MH4xCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdS +# ZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xKDAmBgNVBAMT +# H01pY3Jvc29mdCBDb2RlIFNpZ25pbmcgUENBIDIwMTEwggIiMA0GCSqGSIb3DQEB +# AQUAA4ICDwAwggIKAoICAQCr8PpyEBwurdhuqoIQTTS68rZYIZ9CGypr6VpQqrgG +# OBoESbp/wwwe3TdrxhLYC/A4wpkGsMg51QEUMULTiQ15ZId+lGAkbK+eSZzpaF7S +# 35tTsgosw6/ZqSuuegmv15ZZymAaBelmdugyUiYSL+erCFDPs0S3XdjELgN1q2jz +# y23zOlyhFvRGuuA4ZKxuZDV4pqBjDy3TQJP4494HDdVceaVJKecNvqATd76UPe/7 +# 4ytaEB9NViiienLgEjq3SV7Y7e1DkYPZe7J7hhvZPrGMXeiJT4Qa8qEvWeSQOy2u +# M1jFtz7+MtOzAz2xsq+SOH7SnYAs9U5WkSE1JcM5bmR/U7qcD60ZI4TL9LoDho33 +# X/DQUr+MlIe8wCF0JV8YKLbMJyg4JZg5SjbPfLGSrhwjp6lm7GEfauEoSZ1fiOIl +# XdMhSz5SxLVXPyQD8NF6Wy/VI+NwXQ9RRnez+ADhvKwCgl/bwBWzvRvUVUvnOaEP +# 6SNJvBi4RHxF5MHDcnrgcuck379GmcXvwhxX24ON7E1JMKerjt/sW5+v/N2wZuLB +# l4F77dbtS+dJKacTKKanfWeA5opieF+yL4TXV5xcv3coKPHtbcMojyyPQDdPweGF +# RInECUzF1KVDL3SV9274eCBYLBNdYJWaPk8zhNqwiBfenk70lrC8RqBsmNLg1oiM +# CwIDAQABo4IB7TCCAekwEAYJKwYBBAGCNxUBBAMCAQAwHQYDVR0OBBYEFEhuZOVQ +# BdOCqhc3NyK1bajKdQKVMBkGCSsGAQQBgjcUAgQMHgoAUwB1AGIAQwBBMAsGA1Ud +# DwQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFHItOgIxkEO5FAVO +# 4eqnxzHRI4k0MFoGA1UdHwRTMFEwT6BNoEuGSWh0dHA6Ly9jcmwubWljcm9zb2Z0 +# LmNvbS9wa2kvY3JsL3Byb2R1Y3RzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcmwwXgYIKwYBBQUHAQEEUjBQME4GCCsGAQUFBzAChkJodHRwOi8vd3d3Lm1p +# Y3Jvc29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dDIwMTFfMjAxMV8wM18y +# Mi5jcnQwgZ8GA1UdIASBlzCBlDCBkQYJKwYBBAGCNy4DMIGDMD8GCCsGAQUFBwIB +# FjNodHRwOi8vd3d3Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2RvY3MvcHJpbWFyeWNw +# cy5odG0wQAYIKwYBBQUHAgIwNB4yIB0ATABlAGcAYQBsAF8AcABvAGwAaQBjAHkA +# XwBzAHQAYQB0AGUAbQBlAG4AdAAuIB0wDQYJKoZIhvcNAQELBQADggIBAGfyhqWY +# 4FR5Gi7T2HRnIpsLlhHhY5KZQpZ90nkMkMFlXy4sPvjDctFtg/6+P+gKyju/R6mj +# 82nbY78iNaWXXWWEkH2LRlBV2AySfNIaSxzzPEKLUtCw/WvjPgcuKZvmPRul1LUd +# d5Q54ulkyUQ9eHoj8xN9ppB0g430yyYCRirCihC7pKkFDJvtaPpoLpWgKj8qa1hJ +# Yx8JaW5amJbkg/TAj/NGK978O9C9Ne9uJa7lryft0N3zDq+ZKJeYTQ49C/IIidYf +# wzIY4vDFLc5bnrRJOQrGCsLGra7lstnbFYhRRVg4MnEnGn+x9Cf43iw6IGmYslmJ +# aG5vp7d0w0AFBqYBKig+gj8TTWYLwLNN9eGPfxxvFX1Fp3blQCplo8NdUmKGwx1j +# NpeG39rz+PIWoZon4c2ll9DuXWNB41sHnIc+BncG0QaxdR8UvmFhtfDcxhsEvt9B +# xw4o7t5lL+yX9qFcltgA1qFGvVnzl6UJS0gQmYAf0AApxbGbpT9Fdx41xtKiop96 +# eiL6SJUfq/tHI4D1nvi/a7dLl+LrdXga7Oo3mXkYS//WsyNodeav+vyL6wuA6mk7 +# r/ww7QRMjt/fdW1jkT3RnVZOT7+AVyKheBEyIXrvQQqxP/uozKRdwaGIm1dxVk5I +# RcBCyZt2WwqASGv9eZ/BvW1taslScxMNelDNMYIZjzCCGYsCAQEwgZUwfjELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEoMCYGA1UEAxMfTWljcm9z +# b2Z0IENvZGUgU2lnbmluZyBQQ0EgMjAxMQITMwAAAlKLM6r4lfM52wAAAAACUjAN +# BglghkgBZQMEAgEFAKCBrjAZBgkqhkiG9w0BCQMxDAYKKwYBBAGCNwIBBDAcBgor +# BgEEAYI3AgELMQ4wDAYKKwYBBAGCNwIBFTAvBgkqhkiG9w0BCQQxIgQgSB3jjVY/ +# WMZ8WHFGDewy2JQLkkMsgxe7OQ9hGxl1POAwQgYKKwYBBAGCNwIBDDE0MDKgFIAS +# AE0AaQBjAHIAbwBzAG8AZgB0oRqAGGh0dHA6Ly93d3cubWljcm9zb2Z0LmNvbTAN +# BgkqhkiG9w0BAQEFAASCAQDECdQe+dGfTQ9+1MUoap76UXkZqRUtWJtHANEX9QRF +# zu/zYxq/dvy7faWSumOPbC+fRwu+83u+3CYadkq+B7I6NDeWqTacnJnPk+uV78yi +# UnGjJx9i8cu6fUBS7HhFg1+VS5IZsor64K33Etj9NPBvVxW/AdbcA1Vm1/HCcnfC +# ZVVP8SUsEQsnksf1sgEix5zjYP5yoRrc7zZ31CsfFUseccW0GbjWVellm+JVYQR8 +# PyRw/UvU9wBEGmoG05yKQHMtIQzbgamTF+mFpvvLdNamUk2kTBtPw8esiUQSQSKT +# 893Bw7LCuWiqo8pwi1U45lsh2/5GrxKGyLwQY3vXep01oYIXGTCCFxUGCisGAQQB +# gjcDAwExghcFMIIXAQYJKoZIhvcNAQcCoIIW8jCCFu4CAQMxDzANBglghkgBZQME +# AgEFADCCAVkGCyqGSIb3DQEJEAEEoIIBSASCAUQwggFAAgEBBgorBgEEAYRZCgMB +# MDEwDQYJYIZIAWUDBAIBBQAEIEeWczI88EUPcg8HePXnLkMZtTRhTovyeZypUyUE +# AkF4AgZhlV5AOFwYEzIwMjExMjA4MjEwNDE0LjA2NVowBIACAfSggdikgdUwgdIx +# CzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRt +# b25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1p +# Y3Jvc29mdCBJcmVsYW5kIE9wZXJhdGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhh +# bGVzIFRTUyBFU046M0JENC00QjgwLTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBU +# aW1lLVN0YW1wIFNlcnZpY2WgghFoMIIHFDCCBPygAwIBAgITMwAAAYm0v4YwhBxL +# jwABAAABiTANBgkqhkiG9w0BAQsFADB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMK +# V2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0 +# IENvcnBvcmF0aW9uMSYwJAYDVQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0Eg +# MjAxMDAeFw0yMTEwMjgxOTI3NDFaFw0yMzAxMjYxOTI3NDFaMIHSMQswCQYDVQQG +# EwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UEBxMHUmVkbW9uZDEeMBwG +# A1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMS0wKwYDVQQLEyRNaWNyb3NvZnQg +# SXJlbGFuZCBPcGVyYXRpb25zIExpbWl0ZWQxJjAkBgNVBAsTHVRoYWxlcyBUU1Mg +# RVNOOjNCRDQtNEI4MC02OUMzMSUwIwYDVQQDExxNaWNyb3NvZnQgVGltZS1TdGFt +# cCBTZXJ2aWNlMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAvQZXxZFm +# a6plmuOyvNpV8xONOwcYolZG/BjyZWGSk5JOGaLyrKId5VxVHWHlsmJE4Svnzsdp +# sKmVx8otONveIUFvSceEZp8VXmu5m1fu8L7c+3lwXcibjccqtEvtQslokQVx0r+L +# 54abrNDarwFG73IaRidIS1i9c+unJ8oYyhDRLrCysFAVxyQhPNZkWK7Z8/VGukaK +# LAWHXCh/+R53h42gFL+9/mAALxzCXXuofi8f/XKCm7xNwVc1hONCCz6oq94AufzV +# NkkIW4brUQgYpCcJm9U0XNmQvtropYDn9UtY8YQ0NKenXPtdgLHdQ8Nnv3igErKL +# rWI0a5n5jjdKfwk+8mvakqdZmlOseeOS1XspQNJAK1uZllAITcnQZOcO5ofjOQ33 +# ujWckAXdz+/x3o7l4AU/TSOMzGZMwhUdtVwC3dSbItpSVFgnjM2COEJ9zgCadvOi +# rGDLN471jZI2jClkjsJTdgPk343TQA4JFvds/unZq0uLr+niZ3X44OBx2x+gVlln +# 2c4UbZXNueA4yS1TJGbbJFIILAmTUA9Auj5eISGTbNiyWx79HnCOTar39QEKozm4 +# LnTmDXy0/KI/H/nYZGKuTHfckP28wQS06rD+fDS5xLwcRMCW92DkHXmtbhGyRilB +# OL5LxZelQfxt54wl4WUC0AdAEolPekODwO8CAwEAAaOCATYwggEyMB0GA1UdDgQW +# BBSXbx+zR1p4IIAeguA6rHKkrfl7UDAfBgNVHSMEGDAWgBSfpxVdAF5iXYP05dJl +# pxtTNRnpcjBfBgNVHR8EWDBWMFSgUqBQhk5odHRwOi8vd3d3Lm1pY3Jvc29mdC5j +# b20vcGtpb3BzL2NybC9NaWNyb3NvZnQlMjBUaW1lLVN0YW1wJTIwUENBJTIwMjAx +# MCgxKS5jcmwwbAYIKwYBBQUHAQEEYDBeMFwGCCsGAQUFBzAChlBodHRwOi8vd3d3 +# Lm1pY3Jvc29mdC5jb20vcGtpb3BzL2NlcnRzL01pY3Jvc29mdCUyMFRpbWUtU3Rh +# bXAlMjBQQ0ElMjAyMDEwKDEpLmNydDAMBgNVHRMBAf8EAjAAMBMGA1UdJQQMMAoG +# CCsGAQUFBwMIMA0GCSqGSIb3DQEBCwUAA4ICAQCOtLdpWUI4KwfLLrfaKrLB92Dq +# bAspGWM41TaO4Jl+sHxPo522uu3GKQCjmkRWreHtlfyy9kOk7LWax3k3ke8Gtfet +# fbh7qH0LeV2XOWg39BOnHf6mTcZq7FYSZZch1JDQjc98+Odlow+oWih0Dbt4CV/e +# 19ZcE+1n1zzWkskUEd0f5jPIUis33p+vkY8szduAtCcIcPFUhI8Hb5alPUAPMjGz +# wKb7NIKbnf8j8cP18As5IveckF0oh1cw63RY/vPK62LDYdpi7WnG2ObvngfWVKtw +# iwTI4jHj2cO9q37HDe/PPl216gSpUZh0ap24mKmMDfcKp1N4mEdsxz4oseOrPYeF +# sHHWJFJ6Aivvqn70KTeJpp5r+DxSqbeSy0mxIUOq/lAaUxgNSQVUX26t8r+fciko +# fKv23WHrtRV3t7rVTsB9YzrRaiikmz68K5HWdt9MqULxPQPo+ppZ0LRqkOae466+ +# UKRY0JxWtdrMc5vHlHZfnqjawj/RsM2S6Q6fa9T9CnY1Nz7DYBG3yZJyCPFsrgU0 +# 5s9ljqfsSptpFdUh9R4ce+L71SWDLM2x/1MFLLHAMbXsEp8KloEGtaDULnxtfS2t +# YhfuKGqRXoEfDPAMnIdTvQPh3GHQ4SjkkBARHL0MY75alhGTKHWjC2aLVOo8obKI +# Bk8hfnFDUf/EyVw4uTCCB3EwggVZoAMCAQICEzMAAAAVxedrngKbSZkAAAAAABUw +# DQYJKoZIhvcNAQELBQAwgYgxCzAJBgNVBAYTAlVTMRMwEQYDVQQIEwpXYXNoaW5n +# dG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3NvZnQgQ29ycG9y +# YXRpb24xMjAwBgNVBAMTKU1pY3Jvc29mdCBSb290IENlcnRpZmljYXRlIEF1dGhv +# cml0eSAyMDEwMB4XDTIxMDkzMDE4MjIyNVoXDTMwMDkzMDE4MzIyNVowfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +# ggIKAoICAQDk4aZM57RyIQt5osvXJHm9DtWC0/3unAcH0qlsTnXIyjVX9gF/bErg +# 4r25PhdgM/9cT8dm95VTcVrifkpa/rg2Z4VGIwy1jRPPdzLAEBjoYH1qUoNEt6aO +# RmsHFPPFdvWGUNzBRMhxXFExN6AKOG6N7dcP2CZTfDlhAnrEqv1yaa8dq6z2Nr41 +# JmTamDu6GnszrYBbfowQHJ1S/rboYiXcag/PXfT+jlPP1uyFVk3v3byNpOORj7I5 +# LFGc6XBpDco2LXCOMcg1KL3jtIckw+DJj361VI/c+gVVmG1oO5pGve2krnopN6zL +# 64NF50ZuyjLVwIYwXE8s4mKyzbnijYjklqwBSru+cakXW2dg3viSkR4dPf0gz3N9 +# QZpGdc3EXzTdEonW/aUgfX782Z5F37ZyL9t9X4C626p+Nuw2TPYrbqgSUei/BQOj +# 0XOmTTd0lBw0gg/wEPK3Rxjtp+iZfD9M269ewvPV2HM9Q07BMzlMjgK8QmguEOqE +# UUbi0b1qGFphAXPKZ6Je1yh2AuIzGHLXpyDwwvoSCtdjbwzJNmSLW6CmgyFdXzB0 +# kZSU2LlQ+QuJYfM2BjUYhEfb3BvR/bLUHMVr9lxSUV0S2yW6r1AFemzFER1y7435 +# UsSFF5PAPBXbGjfHCBUYP3irRbb1Hode2o+eFnJpxq57t7c+auIurQIDAQABo4IB +# 3TCCAdkwEgYJKwYBBAGCNxUBBAUCAwEAATAjBgkrBgEEAYI3FQIEFgQUKqdS/mTE +# mr6CkTxGNSnPEP8vBO4wHQYDVR0OBBYEFJ+nFV0AXmJdg/Tl0mWnG1M1GelyMFwG +# A1UdIARVMFMwUQYMKwYBBAGCN0yDfQEBMEEwPwYIKwYBBQUHAgEWM2h0dHA6Ly93 +# d3cubWljcm9zb2Z0LmNvbS9wa2lvcHMvRG9jcy9SZXBvc2l0b3J5Lmh0bTATBgNV +# HSUEDDAKBggrBgEFBQcDCDAZBgkrBgEEAYI3FAIEDB4KAFMAdQBiAEMAQTALBgNV +# HQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAfBgNVHSMEGDAWgBTV9lbLj+iiXGJo +# 0T2UkFvXzpoYxDBWBgNVHR8ETzBNMEugSaBHhkVodHRwOi8vY3JsLm1pY3Jvc29m +# dC5jb20vcGtpL2NybC9wcm9kdWN0cy9NaWNSb29DZXJBdXRfMjAxMC0wNi0yMy5j +# cmwwWgYIKwYBBQUHAQEETjBMMEoGCCsGAQUFBzAChj5odHRwOi8vd3d3Lm1pY3Jv +# c29mdC5jb20vcGtpL2NlcnRzL01pY1Jvb0NlckF1dF8yMDEwLTA2LTIzLmNydDAN +# BgkqhkiG9w0BAQsFAAOCAgEAnVV9/Cqt4SwfZwExJFvhnnJL/Klv6lwUtj5OR2R4 +# sQaTlz0xM7U518JxNj/aZGx80HU5bbsPMeTCj/ts0aGUGCLu6WZnOlNN3Zi6th54 +# 2DYunKmCVgADsAW+iehp4LoJ7nvfam++Kctu2D9IdQHZGN5tggz1bSNU5HhTdSRX +# ud2f8449xvNo32X2pFaq95W2KFUn0CS9QKC/GbYSEhFdPSfgQJY4rPf5KYnDvBew +# VIVCs/wMnosZiefwC2qBwoEZQhlSdYo2wh3DYXMuLGt7bj8sCXgU6ZGyqVvfSaN0 +# DLzskYDSPeZKPmY7T7uG+jIa2Zb0j/aRAfbOxnT99kxybxCrdTDFNLB62FD+Cljd +# QDzHVG2dY3RILLFORy3BFARxv2T5JL5zbcqOCb2zAVdJVGTZc9d/HltEAY5aGZFr +# DZ+kKNxnGSgkujhLmm77IVRrakURR6nxt67I6IleT53S0Ex2tVdUCbFpAUR+fKFh +# bHP+CrvsQWY9af3LwUFJfn6Tvsv4O+S3Fb+0zj6lMVGEvL8CwYKiexcdFYmNcP7n +# tdAoGokLjzbaukz5m/8K6TT4JDVnK+ANuOaMmdbhIurwJ0I9JZTmdHRbatGePu1+ +# oDEzfbzL6Xu/OHBE0ZDxyKs6ijoIYn/ZcGNTTY3ugm2lBRDBcQZqELQdVTNYs6Fw +# ZvKhggLXMIICQAIBATCCAQChgdikgdUwgdIxCzAJBgNVBAYTAlVTMRMwEQYDVQQI +# EwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNyb3Nv +# ZnQgQ29ycG9yYXRpb24xLTArBgNVBAsTJE1pY3Jvc29mdCBJcmVsYW5kIE9wZXJh +# dGlvbnMgTGltaXRlZDEmMCQGA1UECxMdVGhhbGVzIFRTUyBFU046M0JENC00Qjgw +# LTY5QzMxJTAjBgNVBAMTHE1pY3Jvc29mdCBUaW1lLVN0YW1wIFNlcnZpY2WiIwoB +# ATAHBgUrDgMCGgMVACGlCa3ketyeuey7bJNpWkMuiCcQoIGDMIGApH4wfDELMAkG +# A1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQx +# HjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEmMCQGA1UEAxMdTWljcm9z +# b2Z0IFRpbWUtU3RhbXAgUENBIDIwMTAwDQYJKoZIhvcNAQEFBQACBQDlW4tYMCIY +# DzIwMjExMjA5MDM1MTUyWhgPMjAyMTEyMTAwMzUxNTJaMHcwPQYKKwYBBAGEWQoE +# ATEvMC0wCgIFAOVbi1gCAQAwCgIBAAICHvwCAf8wBwIBAAICETcwCgIFAOVc3NgC +# AQAwNgYKKwYBBAGEWQoEAjEoMCYwDAYKKwYBBAGEWQoDAqAKMAgCAQACAwehIKEK +# MAgCAQACAwGGoDANBgkqhkiG9w0BAQUFAAOBgQCbF/Q1IJzqUwQBkXn+GjUxZzVN +# O+9p1fpL7W8dEy9/m1L7dl968KiYqfO5rekvXeSUDTFYrkS/r0w8p2ZZ7d0TMtJt +# TrKmc85aRmxtSvCNAS2stE2sS2Y5np5+/02w3DDn3Nni6vvF8nsuiIlbiyHrGQrC +# 9eis1rpLSNvXisSYoDGCBA0wggQJAgEBMIGTMHwxCzAJBgNVBAYTAlVTMRMwEQYD +# VQQIEwpXYXNoaW5ndG9uMRAwDgYDVQQHEwdSZWRtb25kMR4wHAYDVQQKExVNaWNy +# b3NvZnQgQ29ycG9yYXRpb24xJjAkBgNVBAMTHU1pY3Jvc29mdCBUaW1lLVN0YW1w +# IFBDQSAyMDEwAhMzAAABibS/hjCEHEuPAAEAAAGJMA0GCWCGSAFlAwQCAQUAoIIB +# SjAaBgkqhkiG9w0BCQMxDQYLKoZIhvcNAQkQAQQwLwYJKoZIhvcNAQkEMSIEIE9C +# YLePpB7z2n25zIz6S9czmnMvqhq9zWDUWGRetdy3MIH6BgsqhkiG9w0BCRACLzGB +# 6jCB5zCB5DCBvQQgZndHMdxQV1VsbpWHOTHqWEycvcRJm7cY69l/UmT8j0UwgZgw +# gYCkfjB8MQswCQYDVQQGEwJVUzETMBEGA1UECBMKV2FzaGluZ3RvbjEQMA4GA1UE +# BxMHUmVkbW9uZDEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMSYwJAYD +# VQQDEx1NaWNyb3NvZnQgVGltZS1TdGFtcCBQQ0EgMjAxMAITMwAAAYm0v4YwhBxL +# jwABAAABiTAiBCCErc3WAJDL+6+RTcx4qvTV2Dv0bP6a0jmZjnUp3u9sbzANBgkq +# hkiG9w0BAQsFAASCAgCLuF4LX6ghAt1uercf24wmzMJ22FHRyklnWLILmQXDOSwZ +# bLzptb/gXN2KtDnQU3xF02SLNfmPvFCYkU7l9pYTmDQ18Pm6GtnwLMke8xbMlWsl +# 2gZCMMI3Q40kidzeZ3yYggxf5a+YP0JI3rcgZuRDnEeJ69oUqVvD/sWPTuWqKV7V +# 2jb5gnLURKrzDKPYf1trvb7M2oRkxXToLOEtbsHI2O46WJCbGrYlERk6Sp8+nmPD +# oQ7Lz8Vq5xXn3L8z3QqDI0UCdxxd32JBQbzMZ21xI+JgljiGXv3TSrtz+0M88mLM +# m+Kf7LHqDN3v6xfGI+AWD5KPfxzLekMmtTIlkeA93MolkgeFfkx5BpqbWLrbd63S +# RzhF88sZt47hwzoDfn4DMzFOrtbJqbdVWcVtIgY07AmWUSvpNtXgljty4kzg1rHV +# v2m6ezcnQa0D9a8WQJSd+gRfD6BEmDBOyGL7w49Tcgp2vZiWWdnHrWeRXMp+N4Fs +# 4IbQ51teHXISCvqZoVaz8/jEvWPftKkwcXuM89+S7hN4NMq0zpON1lizLV/FPP7p +# bpAQuaBgSY2f0Hfyko8JAH/KJFpmuzjTTcUAwvru2dsCdakB4kd6k6JHpu+XjWez +# M4lfX7MZegJiXfCQ8QBIKwg80WLwjJjjHrvTap+yPG9goxm6Nzh+UftgAcz+Qw== +# SIG # End signature block diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.Odbc.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.Odbc.dll new file mode 100644 index 0000000..cc9c1da Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.Odbc.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.OleDb.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.OleDb.dll new file mode 100644 index 0000000..95d3e71 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Data.OleDb.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll new file mode 100644 index 0000000..bc23526 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..03b44f1 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll new file mode 100644 index 0000000..235a22f Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll new file mode 100644 index 0000000..58eacf8 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..7f910de Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.dll new file mode 100644 index 0000000..650007c Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.DirectoryServices.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll new file mode 100644 index 0000000..7c9e87b Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.IO.Ports.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.IO.Ports.dll new file mode 100644 index 0000000..b678ac4 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.IO.Ports.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.Automation.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.Automation.dll new file mode 100644 index 0000000..0c2333e Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.Automation.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.dll new file mode 100644 index 0000000..3e409fa Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Management.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll new file mode 100644 index 0000000..2b6fda4 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll new file mode 100644 index 0000000..bdca76d Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll new file mode 100644 index 0000000..10c0dd8 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..332dbfa Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll new file mode 100644 index 0000000..8a6feee Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Speech.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Speech.dll new file mode 100644 index 0000000..b551f9c Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Speech.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Threading.AccessControl.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Threading.AccessControl.dll new file mode 100644 index 0000000..8109eae Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Threading.AccessControl.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..69f0d1b Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll new file mode 100644 index 0000000..d92be8f Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..c70b1d3 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..6d14e76 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll new file mode 100644 index 0000000..2e5c7ea Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x64/native/mi.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x64/native/mi.dll new file mode 100644 index 0000000..f169cbe Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x64/native/mi.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x64/native/miutils.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x64/native/miutils.dll new file mode 100644 index 0000000..f9c9d3f Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x64/native/miutils.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..e1819d5 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..13d9f3b Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll new file mode 100644 index 0000000..434e1f4 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x86/native/mi.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x86/native/mi.dll new file mode 100644 index 0000000..cfa3846 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x86/native/mi.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x86/native/miutils.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x86/native/miutils.dll new file mode 100644 index 0000000..6a6fdd1 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win10-x86/native/miutils.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..c70b1d3 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..6d14e76 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll new file mode 100644 index 0000000..90fc1b2 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x64/native/mi.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x64/native/mi.dll new file mode 100644 index 0000000..75de9d2 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x64/native/mi.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x64/native/miutils.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x64/native/miutils.dll new file mode 100644 index 0000000..d6d3465 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x64/native/miutils.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..e1819d5 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..13d9f3b Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll new file mode 100644 index 0000000..7a2fe92 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x86/native/mi.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x86/native/mi.dll new file mode 100644 index 0000000..f0f556f Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x86/native/mi.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x86/native/miutils.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x86/native/miutils.dll new file mode 100644 index 0000000..19dbafc Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win7-x86/native/miutils.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..c70b1d3 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..6d14e76 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x64/native/mi.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x64/native/mi.dll new file mode 100644 index 0000000..34043ba Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x64/native/mi.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x64/native/miutils.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x64/native/miutils.dll new file mode 100644 index 0000000..0579e97 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x64/native/miutils.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..e1819d5 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..13d9f3b Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x86/native/mi.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x86/native/mi.dll new file mode 100644 index 0000000..f303e1e Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x86/native/mi.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x86/native/miutils.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x86/native/miutils.dll new file mode 100644 index 0000000..d305891 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win8-x86/native/miutils.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..c70b1d3 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..6d14e76 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll new file mode 100644 index 0000000..8af4889 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x64/native/mi.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x64/native/mi.dll new file mode 100644 index 0000000..46dedce Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x64/native/mi.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x64/native/miutils.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x64/native/miutils.dll new file mode 100644 index 0000000..3c8ebbd Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x64/native/miutils.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll new file mode 100644 index 0000000..e1819d5 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll new file mode 100644 index 0000000..13d9f3b Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll new file mode 100644 index 0000000..9dcbfd1 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x86/native/mi.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x86/native/mi.dll new file mode 100644 index 0000000..087163a Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x86/native/mi.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x86/native/miutils.dll b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x86/native/miutils.dll new file mode 100644 index 0000000..21ad782 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/runtimes/win81-x86/native/miutils.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/testhost.dll b/linguard/Core.Test/bin/Debug/net6.0/testhost.dll new file mode 100644 index 0000000..4a8a1a3 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/testhost.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/testhost.exe b/linguard/Core.Test/bin/Debug/net6.0/testhost.exe new file mode 100644 index 0000000..f2ab13c Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/testhost.exe differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..56f6a16 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..81ce1fc Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..667bb80 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..7914420 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..70172b5 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..d819258 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..6fa1eb3 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/tr/System.Private.ServiceModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/tr/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..4a0bd6f Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/tr/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/tr/System.Web.Services.Description.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/tr/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..7917190 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/tr/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/xunit.abstractions.dll b/linguard/Core.Test/bin/Debug/net6.0/xunit.abstractions.dll new file mode 100644 index 0000000..d1e90bf Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/xunit.abstractions.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/xunit.assert.dll b/linguard/Core.Test/bin/Debug/net6.0/xunit.assert.dll new file mode 100644 index 0000000..6cec730 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/xunit.assert.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/xunit.core.dll b/linguard/Core.Test/bin/Debug/net6.0/xunit.core.dll new file mode 100644 index 0000000..4f2f495 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/xunit.core.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/xunit.execution.dotnet.dll b/linguard/Core.Test/bin/Debug/net6.0/xunit.execution.dotnet.dll new file mode 100644 index 0000000..fb72ce0 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/xunit.execution.dotnet.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/xunit.runner.reporters.netcoreapp10.dll b/linguard/Core.Test/bin/Debug/net6.0/xunit.runner.reporters.netcoreapp10.dll new file mode 100644 index 0000000..953544f Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/xunit.runner.reporters.netcoreapp10.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/xunit.runner.utility.netcoreapp10.dll b/linguard/Core.Test/bin/Debug/net6.0/xunit.runner.utility.netcoreapp10.dll new file mode 100644 index 0000000..f389ee1 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/xunit.runner.utility.netcoreapp10.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/xunit.runner.visualstudio.dotnetcore.testadapter.dll b/linguard/Core.Test/bin/Debug/net6.0/xunit.runner.visualstudio.dotnetcore.testadapter.dll new file mode 100644 index 0000000..94b21e6 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/xunit.runner.visualstudio.dotnetcore.testadapter.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..ffe2682 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..d17ccb3 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..9271276 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..ea7e5f8 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..a5cbbbc Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..d0478ca Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..edce377 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/System.Private.ServiceModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..8e8fe2e Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/System.Web.Services.Description.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..903dca8 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/zh-Hans/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..2efe878 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..62c7b50 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..097303b Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..77d4ab4 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..146df9b Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..21b8a3d Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..0962268 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/System.Private.ServiceModel.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/System.Private.ServiceModel.resources.dll new file mode 100644 index 0000000..2001bc8 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/System.Private.ServiceModel.resources.dll differ diff --git a/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/System.Web.Services.Description.resources.dll b/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/System.Web.Services.Description.resources.dll new file mode 100644 index 0000000..6bf5a85 Binary files /dev/null and b/linguard/Core.Test/bin/Debug/net6.0/zh-Hant/System.Web.Services.Description.resources.dll differ diff --git a/linguard/Core.Test/obj/Core.Test.csproj.nuget.dgspec.json b/linguard/Core.Test/obj/Core.Test.csproj.nuget.dgspec.json new file mode 100644 index 0000000..8122da2 --- /dev/null +++ b/linguard/Core.Test/obj/Core.Test.csproj.nuget.dgspec.json @@ -0,0 +1,246 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj": {} + }, + "projects": { + "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj", + "projectName": "Core.Test", + "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj", + "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", + "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj": { + "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "FluentAssertions": { + "target": "Package", + "version": "[6.4.0, )" + }, + "FluentValidation": { + "target": "Package", + "version": "[10.3.6, )" + }, + "IPNetwork2": { + "target": "Package", + "version": "[2.5.386, )" + }, + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[16.11.0, )" + }, + "Moq": { + "target": "Package", + "version": "[4.16.1, )" + }, + "coverlet.msbuild": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[3.1.2, )" + }, + "xunit": { + "target": "Package", + "version": "[2.4.1, )" + }, + "xunit.runner.visualstudio": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[2.4.3, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj": { + "version": "2.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj", + "projectName": "Linguard.Core", + "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj", + "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", + "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj": { + "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "Bogus": { + "target": "Package", + "version": "[34.0.1, )" + }, + "ByteSize": { + "target": "Package", + "version": "[2.1.1, )" + }, + "FluentValidation": { + "target": "Package", + "version": "[10.3.6, )" + }, + "IPNetwork2": { + "target": "Package", + "version": "[2.5.386, )" + }, + "Microsoft.PowerShell.SDK": { + "target": "Package", + "version": "[7.2.1, )" + }, + "System.Management.Automation": { + "target": "Package", + "version": "[7.2.1, )" + }, + "YamlDotNet": { + "target": "Package", + "version": "[11.2.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj": { + "version": "2.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj", + "projectName": "Linguard.Log", + "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj", + "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", + "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "NLog": { + "target": "Package", + "version": "[4.7.13, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/linguard/Core.Test/obj/Core.Test.csproj.nuget.g.props b/linguard/Core.Test/obj/Core.Test.csproj.nuget.g.props new file mode 100644 index 0000000..5985ad6 --- /dev/null +++ b/linguard/Core.Test/obj/Core.Test.csproj.nuget.g.props @@ -0,0 +1,27 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\theyu\.nuget\packages\ + PackageReference + 6.0.0 + + + + + + + + + + + + + + C:\Users\theyu\.nuget\packages\xunit.analyzers\0.10.0 + C:\Users\theyu\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.2 + + \ No newline at end of file diff --git a/linguard/Core.Test/obj/Core.Test.csproj.nuget.g.targets b/linguard/Core.Test/obj/Core.Test.csproj.nuget.g.targets new file mode 100644 index 0000000..6d23769 --- /dev/null +++ b/linguard/Core.Test/obj/Core.Test.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/linguard/Core.Test/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/linguard/Core.Test/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/linguard/Core.Test/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/linguard/Core.Test/obj/Debug/net6.0/Core.Test.AssemblyInfo.cs b/linguard/Core.Test/obj/Debug/net6.0/Core.Test.AssemblyInfo.cs new file mode 100644 index 0000000..901aa75 --- /dev/null +++ b/linguard/Core.Test/obj/Debug/net6.0/Core.Test.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Core.Test")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Core.Test")] +[assembly: System.Reflection.AssemblyTitleAttribute("Core.Test")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generado por la clase WriteCodeFragment de MSBuild. + diff --git a/linguard/Core.Test/obj/Debug/net6.0/Core.Test.AssemblyInfoInputs.cache b/linguard/Core.Test/obj/Debug/net6.0/Core.Test.AssemblyInfoInputs.cache new file mode 100644 index 0000000..3761cb8 --- /dev/null +++ b/linguard/Core.Test/obj/Debug/net6.0/Core.Test.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +cea23721a75c479c98cefbdbc3682a66003512bb diff --git a/linguard/Core.Test/obj/Debug/net6.0/Core.Test.GeneratedMSBuildEditorConfig.editorconfig b/linguard/Core.Test/obj/Debug/net6.0/Core.Test.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..1cfd181 --- /dev/null +++ b/linguard/Core.Test/obj/Debug/net6.0/Core.Test.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Core.Test +build_property.ProjectDir = C:\Users\theyu\repos\linguard\Linguard\Core.Test\ diff --git a/linguard/Core.Test/obj/Debug/net6.0/Core.Test.assets.cache b/linguard/Core.Test/obj/Debug/net6.0/Core.Test.assets.cache new file mode 100644 index 0000000..d059650 Binary files /dev/null and b/linguard/Core.Test/obj/Debug/net6.0/Core.Test.assets.cache differ diff --git a/linguard/Core.Test/obj/Debug/net6.0/Core.Test.csproj.AssemblyReference.cache b/linguard/Core.Test/obj/Debug/net6.0/Core.Test.csproj.AssemblyReference.cache new file mode 100644 index 0000000..fa0bb2c Binary files /dev/null and b/linguard/Core.Test/obj/Debug/net6.0/Core.Test.csproj.AssemblyReference.cache differ diff --git a/linguard/Core.Test/obj/Debug/net6.0/Core.Test.csproj.CopyComplete b/linguard/Core.Test/obj/Debug/net6.0/Core.Test.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/linguard/Core.Test/obj/Debug/net6.0/Core.Test.csproj.CoreCompileInputs.cache b/linguard/Core.Test/obj/Debug/net6.0/Core.Test.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..a55e350 --- /dev/null +++ b/linguard/Core.Test/obj/Debug/net6.0/Core.Test.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +2b3d6dc0fc3872db2ffb649d49c8ccdbe171e834 diff --git a/linguard/Core.Test/obj/Debug/net6.0/Core.Test.csproj.FileListAbsolute.txt b/linguard/Core.Test/obj/Debug/net6.0/Core.Test.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..000bf11 --- /dev/null +++ b/linguard/Core.Test/obj/Debug/net6.0/Core.Test.csproj.FileListAbsolute.txt @@ -0,0 +1,1025 @@ +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\CoverletSourceRootsMapping +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\testhost.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\testhost.exe +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.TestPlatform.PlatformAbstractions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\xunit.runner.visualstudio.dotnetcore.testadapter.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\xunit.runner.reporters.netcoreapp10.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\xunit.runner.utility.netcoreapp10.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Core.Test.deps.json +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Core.Test.runtimeconfig.json +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Core.Test.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\Core.Test.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Core.Test.pdb +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\FluentAssertions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.VisualStudio.CodeCoverage.Shim.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.TestPlatform.CoreUtilities.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.VisualStudio.TestPlatform.ObjectModel.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.TestPlatform.CommunicationUtilities.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.TestPlatform.CrossPlatEngine.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.TestPlatform.Utilities.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.VisualStudio.TestPlatform.Common.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Newtonsoft.Json.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\NuGet.Frameworks.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Configuration.ConfigurationManager.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Security.Cryptography.ProtectedData.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\xunit.abstractions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\xunit.assert.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\xunit.core.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\xunit.execution.dotnet.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\YamlDotNet.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\cs\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\de\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\de\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\es\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\es\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\fr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\it\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\it\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ja\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ko\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pl\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ru\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\tr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\cs\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\de\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\de\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\de\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\es\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\es\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\es\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\fr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\it\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\it\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\it\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ja\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ko\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pl\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ru\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\tr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Linguard.Core.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Linguard.Core.pdb +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.csproj.AssemblyReference.cache +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.AssemblyInfoInputs.cache +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.AssemblyInfo.cs +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.csproj.CoreCompileInputs.cache +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.csproj.CopyComplete +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\obj\Debug\net6.0\ref\Core.Test.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.pdb +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.genruntimeconfig.cache +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.ApplicationInsights.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.Win32.Registry.AccessControl.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.Win32.SystemEvents.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.CodeDom.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Diagnostics.EventLog.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.DirectoryServices.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Drawing.Common.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Management.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Security.Cryptography.Pkcs.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Security.Permissions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Windows.Extensions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm\native\mi.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm\native\miutils.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm64\native\mi.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm64\native\miutils.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x64\native\mi.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x64\native\miutils.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x86\native\mi.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x86\native\miutils.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x64\native\mi.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x64\native\miutils.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x86\native\mi.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x86\native\miutils.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win8-x64\native\mi.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win8-x64\native\miutils.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win8-x86\native\mi.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win8-x86\native\miutils.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x64\native\mi.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x64\native\miutils.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x86\native\mi.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x86\native\miutils.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.CoreCLR.Eventing.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-arm\native\libpsl-native.so +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-arm64\native\libpsl-native.so +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-musl-x64\native\libpsl-native.so +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-x64\native\libmi.so +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-x64\native\libpsl-native.so +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-x64\native\libpsrpclient.so +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\osx\native\libmi.dylib +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\osx\native\libpsl-native.dylib +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\osx\native\libpsrpclient.dylib +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm\native\PowerShell.Core.Instrumentation.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm\native\pwrshplugin.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm64\native\PowerShell.Core.Instrumentation.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm64\native\pwrshplugin.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-x64\native\PowerShell.Core.Instrumentation.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-x64\native\pwrshplugin.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-x86\native\PowerShell.Core.Instrumentation.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-x86\native\pwrshplugin.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Win32.Registry.AccessControl.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.Messages.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Management.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.Management.Automation.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Management.Automation.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Security.Cryptography.Pkcs.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\Microsoft.CSharp.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\Microsoft.VisualBasic.Core.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\Microsoft.VisualBasic.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\Microsoft.Win32.Primitives.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\Microsoft.Win32.Registry.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.AppContext.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Buffers.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Collections.Concurrent.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Collections.Immutable.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Collections.NonGeneric.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Collections.Specialized.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Collections.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ComponentModel.Annotations.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ComponentModel.DataAnnotations.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ComponentModel.EventBasedAsync.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ComponentModel.Primitives.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ComponentModel.TypeConverter.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ComponentModel.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Configuration.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Console.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Core.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Data.Common.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Data.DataSetExtensions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Data.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.Contracts.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.Debug.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.DiagnosticSource.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.FileVersionInfo.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.Process.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.StackTrace.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.TextWriterTraceListener.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.Tools.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.TraceSource.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.Tracing.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Drawing.Primitives.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Drawing.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Dynamic.Runtime.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Formats.Asn1.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Globalization.Calendars.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Globalization.Extensions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Globalization.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.Compression.Brotli.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.Compression.FileSystem.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.Compression.ZipFile.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.Compression.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.AccessControl.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.DriveInfo.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.Primitives.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.Watcher.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.IsolatedStorage.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.MemoryMappedFiles.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.Pipes.AccessControl.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.Pipes.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.UnmanagedMemoryStream.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Linq.Expressions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Linq.Parallel.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Linq.Queryable.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Linq.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Memory.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.Http.Json.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.Http.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.HttpListener.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.Mail.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.NameResolution.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.NetworkInformation.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.Ping.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.Primitives.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.Requests.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.Security.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.ServicePoint.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.Sockets.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.WebClient.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.WebHeaderCollection.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.WebProxy.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.WebSockets.Client.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.WebSockets.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Numerics.Vectors.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Numerics.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ObjectModel.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.DispatchProxy.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.Emit.ILGeneration.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.Emit.Lightweight.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.Emit.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.Extensions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.Metadata.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.Primitives.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.TypeExtensions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Resources.Reader.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Resources.ResourceManager.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Resources.Writer.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.CompilerServices.Unsafe.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.CompilerServices.VisualC.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Extensions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Handles.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.InteropServices.RuntimeInformation.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.InteropServices.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Intrinsics.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Loader.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Numerics.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.Formatters.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.Json.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.Primitives.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.Xml.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.AccessControl.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Claims.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Algorithms.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Cng.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Csp.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Encoding.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.OpenSsl.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Primitives.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.X509Certificates.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Principal.Windows.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Principal.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.SecureString.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ServiceModel.Web.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ServiceProcess.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Text.Encoding.CodePages.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Text.Encoding.Extensions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Text.Encoding.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Text.Encodings.Web.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Text.Json.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Text.RegularExpressions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.Channels.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.Overlapped.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.Tasks.Dataflow.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.Tasks.Extensions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.Tasks.Parallel.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.Tasks.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.Thread.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.ThreadPool.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.Timer.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Transactions.Local.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Transactions.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ValueTuple.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Web.HttpUtility.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Web.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Windows.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.Linq.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.ReaderWriter.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.Serialization.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.XDocument.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.XPath.XDocument.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.XPath.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.XmlDocument.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.XmlSerializer.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\System.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\WindowsBase.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\mscorlib.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ref\netstandard.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\CimCmdlets\CimCmdlets.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Diagnostics.format.ps1xml +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Event.format.ps1xml +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\GetEvent.types.ps1xml +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Microsoft.PowerShell.Diagnostics.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\Microsoft.WSMan.Management.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\WSMan.format.ps1xml +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psd1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psm1 +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Markdig.Signed.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.Bcl.AsyncInterfaces.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.CodeAnalysis.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.CodeAnalysis.CSharp.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.Extensions.ObjectPool.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.PowerShell.MarkdownRender.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Namotion.Reflection.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\NJsonSchema.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.ComponentModel.Composition.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.ComponentModel.Composition.Registration.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Data.OleDb.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Data.SqlClient.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Diagnostics.PerformanceCounter.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.DirectoryServices.AccountManagement.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.DirectoryServices.Protocols.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.IO.Packaging.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.IO.Ports.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Net.Http.WinHttpHandler.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Private.ServiceModel.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Reflection.Context.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Runtime.Caching.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Security.Cryptography.Xml.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.ServiceModel.Duplex.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.ServiceModel.Http.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.ServiceModel.NetTcp.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.ServiceModel.Primitives.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.ServiceModel.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.ServiceModel.Security.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.ServiceModel.Syndication.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.ServiceProcess.ServiceController.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Speech.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Threading.AccessControl.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Web.Services.Description.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\cs\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\de\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\es\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\fr\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\it\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ja\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ko\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pl\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ru\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\tr\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\cs\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\de\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\es\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\fr\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\it\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ja\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ko\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pl\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ru\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\tr\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\cs\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\de\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\es\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\fr\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\it\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ja\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ko\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pl\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\ru\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\tr\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Management.Infrastructure.CimCmdlets.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Diagnostics.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.SDK.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.SDK.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Security.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Security.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.WSMan.Management.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.WSMan.Runtime.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-arm\native\libSystem.IO.Ports.Native.so +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-arm64\native\libSystem.IO.Ports.Native.so +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-x64\native\libSystem.IO.Ports.Native.so +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\osx-arm64\native\libSystem.IO.Ports.Native.dylib +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\osx-x64\native\libSystem.IO.Ports.Native.dylib +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm64\native\sni.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-x64\native\sni.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-x86\native\sni.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\freebsd\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\illumos\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\ios\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\osx\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\solaris\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\tvos\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Data.OleDb.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.PerformanceCounter.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.AccountManagement.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux\lib\net6.0\System.DirectoryServices.Protocols.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\osx\lib\net6.0\System.DirectoryServices.Protocols.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.Protocols.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.IO.Ports.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.IO.Ports.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Net.Http.WinHttpHandler.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Runtime.Caching.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.ServiceProcess.ServiceController.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Speech.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Threading.AccessControl.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Linguard.Log.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Linguard.Log.pdb +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\System.Net.IPNetwork.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\NLog.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Bogus.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\FluentValidation.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Castle.Core.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Core.Test\bin\Debug\net6.0\Moq.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\CoverletSourceRootsMapping +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\Microsoft.CSharp.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\Microsoft.VisualBasic.Core.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\Microsoft.VisualBasic.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\Microsoft.Win32.Primitives.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\Microsoft.Win32.Registry.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.AppContext.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Buffers.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Collections.Concurrent.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Collections.Immutable.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Collections.NonGeneric.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Collections.Specialized.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Collections.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ComponentModel.Annotations.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ComponentModel.DataAnnotations.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ComponentModel.EventBasedAsync.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ComponentModel.Primitives.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ComponentModel.TypeConverter.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ComponentModel.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Configuration.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Console.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Core.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Data.Common.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Data.DataSetExtensions.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Data.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.Contracts.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.Debug.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.DiagnosticSource.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.FileVersionInfo.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.Process.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.StackTrace.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.TextWriterTraceListener.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.Tools.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.TraceSource.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Diagnostics.Tracing.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Drawing.Primitives.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Drawing.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Dynamic.Runtime.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Formats.Asn1.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Globalization.Calendars.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Globalization.Extensions.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Globalization.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.Compression.Brotli.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.Compression.FileSystem.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.Compression.ZipFile.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.Compression.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.AccessControl.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.DriveInfo.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.Primitives.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.Watcher.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.FileSystem.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.IsolatedStorage.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.MemoryMappedFiles.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.Pipes.AccessControl.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.Pipes.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.UnmanagedMemoryStream.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.IO.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Linq.Expressions.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Linq.Parallel.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Linq.Queryable.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Linq.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Memory.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.Http.Json.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.Http.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.HttpListener.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.Mail.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.NameResolution.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.NetworkInformation.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.Ping.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.Primitives.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.Requests.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.Security.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.ServicePoint.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.Sockets.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.WebClient.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.WebHeaderCollection.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.WebProxy.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.WebSockets.Client.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.WebSockets.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Net.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Numerics.Vectors.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Numerics.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ObjectModel.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.DispatchProxy.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.Emit.ILGeneration.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.Emit.Lightweight.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.Emit.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.Extensions.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.Metadata.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.Primitives.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.TypeExtensions.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Reflection.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Resources.Reader.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Resources.ResourceManager.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Resources.Writer.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.CompilerServices.Unsafe.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.CompilerServices.VisualC.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Extensions.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Handles.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.InteropServices.RuntimeInformation.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.InteropServices.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Intrinsics.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Loader.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Numerics.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.Formatters.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.Json.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.Primitives.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.Xml.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.Serialization.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Runtime.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.AccessControl.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Claims.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Algorithms.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Cng.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Csp.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Encoding.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.OpenSsl.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.Primitives.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Cryptography.X509Certificates.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Principal.Windows.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.Principal.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.SecureString.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Security.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ServiceModel.Web.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ServiceProcess.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Text.Encoding.CodePages.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Text.Encoding.Extensions.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Text.Encoding.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Text.Encodings.Web.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Text.Json.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Text.RegularExpressions.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.Channels.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.Overlapped.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.Tasks.Dataflow.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.Tasks.Extensions.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.Tasks.Parallel.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.Tasks.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.Thread.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.ThreadPool.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.Timer.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Threading.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Transactions.Local.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Transactions.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.ValueTuple.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Web.HttpUtility.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Web.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Windows.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.Linq.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.ReaderWriter.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.Serialization.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.XDocument.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.XPath.XDocument.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.XPath.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.XmlDocument.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.XmlSerializer.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.Xml.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\System.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\WindowsBase.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\mscorlib.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\netstandard.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\CimCmdlets\CimCmdlets.psd1 +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Diagnostics.format.ps1xml +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Event.format.ps1xml +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\GetEvent.types.ps1xml +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Diagnostics\Microsoft.PowerShell.Diagnostics.psd1 +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Host\Microsoft.PowerShell.Host.psd1 +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Management\Microsoft.PowerShell.Management.psd1 +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Security\Microsoft.PowerShell.Security.psd1 +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.PowerShell.Utility\Microsoft.PowerShell.Utility.psd1 +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\Microsoft.WSMan.Management.psd1 +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\Microsoft.WSMan.Management\WSMan.format.ps1xml +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psd1 +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Modules\PSDiagnostics\PSDiagnostics.psm1 +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\testhost.exe +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\testhost.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\xunit.runner.visualstudio.dotnetcore.testadapter.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\xunit.runner.reporters.netcoreapp10.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\xunit.runner.utility.netcoreapp10.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.TestPlatform.PlatformAbstractions.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Core.Test.deps.json +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Core.Test.runtimeconfig.json +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Core.Test.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ref\Core.Test.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Core.Test.pdb +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Bogus.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Castle.Core.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\FluentAssertions.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\FluentValidation.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Net.IPNetwork.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Markdig.Signed.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.ApplicationInsights.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.Bcl.AsyncInterfaces.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.CodeAnalysis.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.CodeAnalysis.CSharp.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.VisualStudio.CodeCoverage.Shim.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.Extensions.ObjectPool.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.PowerShell.MarkdownRender.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.TestPlatform.CoreUtilities.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.VisualStudio.TestPlatform.ObjectModel.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.TestPlatform.CommunicationUtilities.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.TestPlatform.CrossPlatEngine.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.TestPlatform.Utilities.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.VisualStudio.TestPlatform.Common.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.Win32.Registry.AccessControl.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Microsoft.Win32.SystemEvents.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Moq.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Namotion.Reflection.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Newtonsoft.Json.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\NJsonSchema.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\NLog.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\NuGet.Frameworks.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.CodeDom.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.ComponentModel.Composition.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.ComponentModel.Composition.Registration.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Configuration.ConfigurationManager.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Data.OleDb.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Data.SqlClient.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Diagnostics.EventLog.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Diagnostics.PerformanceCounter.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.DirectoryServices.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.DirectoryServices.AccountManagement.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.DirectoryServices.Protocols.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Drawing.Common.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.IO.Packaging.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.IO.Ports.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Management.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Net.Http.WinHttpHandler.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Private.ServiceModel.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Reflection.Context.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Runtime.Caching.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Security.Cryptography.Pkcs.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Security.Cryptography.ProtectedData.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Security.Cryptography.Xml.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Security.Permissions.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.ServiceModel.Duplex.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.ServiceModel.Http.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.ServiceModel.NetTcp.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.ServiceModel.Primitives.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.ServiceModel.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.ServiceModel.Security.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.ServiceModel.Syndication.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.ServiceProcess.ServiceController.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Speech.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Threading.AccessControl.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Web.Services.Description.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\System.Windows.Extensions.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\xunit.abstractions.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\xunit.assert.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\xunit.core.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\xunit.execution.dotnet.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\YamlDotNet.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\cs\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\de\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\es\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\fr\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\it\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ja\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ko\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pl\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ru\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\tr\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\cs\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\de\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\de\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\es\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\es\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\fr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\it\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\it\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ja\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ko\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pl\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ru\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\tr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\cs\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\cs\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\de\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\de\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\de\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\es\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\es\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\es\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\fr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\fr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\it\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\it\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\it\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ja\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ja\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ko\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ko\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pl\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pl\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ru\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ru\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\tr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\tr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\cs\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\de\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\es\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\fr\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\it\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ja\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ko\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pl\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ru\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\tr\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\System.Private.ServiceModel.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\cs\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\de\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\es\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\fr\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\it\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ja\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ko\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pl\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\pt-BR\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ru\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\tr\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hans\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\zh-Hant\System.Web.Services.Description.resources.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Management.Infrastructure.CimCmdlets.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm\native\mi.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm\native\miutils.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm64\native\mi.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm64\native\miutils.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x64\native\mi.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x64\native\miutils.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x86\native\mi.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win10-x86\native\miutils.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x64\native\mi.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x64\native\miutils.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x86\native\mi.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win7-x86\native\miutils.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win8-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win8-x64\native\mi.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win8-x64\native\miutils.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win8-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win8-x86\native\mi.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win8-x86\native\miutils.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x64\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x64\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x64\native\mi.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x64\native\miutils.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.Native.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x86\lib\netstandard1.6\Microsoft.Management.Infrastructure.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x86\native\Microsoft.Management.Infrastructure.Native.Unmanaged.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x86\native\mi.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win81-x86\native\miutils.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Diagnostics.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Management.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Commands.Utility.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.ConsoleHost.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.CoreCLR.Eventing.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-arm\native\libpsl-native.so +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-arm64\native\libpsl-native.so +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-musl-x64\native\libpsl-native.so +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-x64\native\libmi.so +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-x64\native\libpsl-native.so +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-x64\native\libpsrpclient.so +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\osx\native\libmi.dylib +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\osx\native\libpsl-native.dylib +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\osx\native\libpsrpclient.dylib +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm\native\PowerShell.Core.Instrumentation.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm\native\pwrshplugin.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm64\native\PowerShell.Core.Instrumentation.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm64\native\pwrshplugin.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-x64\native\PowerShell.Core.Instrumentation.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-x64\native\pwrshplugin.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-x86\native\PowerShell.Core.Instrumentation.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-x86\native\pwrshplugin.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.SDK.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.SDK.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\Microsoft.PowerShell.Security.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.PowerShell.Security.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Win32.Registry.AccessControl.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.Win32.SystemEvents.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.WSMan.Management.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\Microsoft.WSMan.Runtime.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-arm\native\libSystem.IO.Ports.Native.so +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-arm64\native\libSystem.IO.Ports.Native.so +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux-x64\native\libSystem.IO.Ports.Native.so +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\osx-arm64\native\libSystem.IO.Ports.Native.dylib +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\osx-x64\native\libSystem.IO.Ports.Native.dylib +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-arm64\native\sni.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-x64\native\sni.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win-x86\native\sni.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\freebsd\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\illumos\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\ios\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\osx\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\solaris\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\tvos\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Data.Odbc.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Data.OleDb.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.Messages.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Diagnostics.PerformanceCounter.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.AccountManagement.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\linux\lib\net6.0\System.DirectoryServices.Protocols.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\osx\lib\net6.0\System.DirectoryServices.Protocols.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.DirectoryServices.Protocols.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.Drawing.Common.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Drawing.Common.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.IO.Ports.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.IO.Ports.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Management.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\unix\lib\net6.0\System.Management.Automation.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Management.Automation.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Net.Http.WinHttpHandler.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Runtime.Caching.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Security.Cryptography.Pkcs.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Security.Cryptography.ProtectedData.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.ServiceProcess.ServiceController.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Speech.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Threading.AccessControl.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\runtimes\win\lib\net6.0\System.Windows.Extensions.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Linguard.Core.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Linguard.Log.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Linguard.Core.pdb +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\Linguard.Log.pdb +C:\Users\theyu\repos\linguard\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.csproj.AssemblyReference.cache +C:\Users\theyu\repos\linguard\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\theyu\repos\linguard\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.AssemblyInfoInputs.cache +C:\Users\theyu\repos\linguard\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.AssemblyInfo.cs +C:\Users\theyu\repos\linguard\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.csproj.CoreCompileInputs.cache +C:\Users\theyu\repos\linguard\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.csproj.CopyComplete +C:\Users\theyu\repos\linguard\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\obj\Debug\net6.0\ref\Core.Test.dll +C:\Users\theyu\repos\linguard\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.pdb +C:\Users\theyu\repos\linguard\Linguard\Core.Test\obj\Debug\net6.0\Core.Test.genruntimeconfig.cache +C:\Users\theyu\repos\linguard\Linguard\Core.Test\bin\Debug\net6.0\ByteSize.dll diff --git a/linguard/Core.Test/obj/Debug/net6.0/Core.Test.dll b/linguard/Core.Test/obj/Debug/net6.0/Core.Test.dll new file mode 100644 index 0000000..c03a86d Binary files /dev/null and b/linguard/Core.Test/obj/Debug/net6.0/Core.Test.dll differ diff --git a/linguard/Core.Test/obj/Debug/net6.0/Core.Test.genruntimeconfig.cache b/linguard/Core.Test/obj/Debug/net6.0/Core.Test.genruntimeconfig.cache new file mode 100644 index 0000000..73e37c4 --- /dev/null +++ b/linguard/Core.Test/obj/Debug/net6.0/Core.Test.genruntimeconfig.cache @@ -0,0 +1 @@ +290d28a0d99eee59d1ac5161c03e597dab022739 diff --git a/linguard/Core.Test/obj/Debug/net6.0/Core.Test.pdb b/linguard/Core.Test/obj/Debug/net6.0/Core.Test.pdb new file mode 100644 index 0000000..bc7b96e Binary files /dev/null and b/linguard/Core.Test/obj/Debug/net6.0/Core.Test.pdb differ diff --git a/linguard/Core.Test/obj/Debug/net6.0/ref/Core.Test.dll b/linguard/Core.Test/obj/Debug/net6.0/ref/Core.Test.dll new file mode 100644 index 0000000..258ba6a Binary files /dev/null and b/linguard/Core.Test/obj/Debug/net6.0/ref/Core.Test.dll differ diff --git a/linguard/Core.Test/obj/project.assets.json b/linguard/Core.Test/obj/project.assets.json new file mode 100644 index 0000000..4fca2c1 --- /dev/null +++ b/linguard/Core.Test/obj/project.assets.json @@ -0,0 +1,11267 @@ +{ + "version": 3, + "targets": { + "net6.0": { + "Bogus/34.0.1": { + "type": "package", + "compile": { + "lib/net6.0/Bogus.dll": {} + }, + "runtime": { + "lib/net6.0/Bogus.dll": {} + } + }, + "ByteSize/2.1.1": { + "type": "package", + "compile": { + "lib/net5.0/ByteSize.dll": {} + }, + "runtime": { + "lib/net5.0/ByteSize.dll": {} + } + }, + "Castle.Core/4.4.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.TypeConverter": "4.3.0", + "System.Diagnostics.TraceSource": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "compile": { + "lib/netstandard1.5/Castle.Core.dll": {} + }, + "runtime": { + "lib/netstandard1.5/Castle.Core.dll": {} + } + }, + "coverlet.msbuild/3.1.2": { + "type": "package", + "build": { + "build/coverlet.msbuild.props": {}, + "build/coverlet.msbuild.targets": {} + } + }, + "FluentAssertions/6.4.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "4.4.0" + }, + "compile": { + "lib/netcoreapp3.0/FluentAssertions.dll": {} + }, + "runtime": { + "lib/netcoreapp3.0/FluentAssertions.dll": {} + } + }, + "FluentValidation/10.3.6": { + "type": "package", + "compile": { + "lib/net6.0/FluentValidation.dll": {} + }, + "runtime": { + "lib/net6.0/FluentValidation.dll": {} + } + }, + "IPNetwork2/2.5.386": { + "type": "package", + "compile": { + "lib/net5.0/System.Net.IPNetwork.dll": {} + }, + "runtime": { + "lib/net5.0/System.Net.IPNetwork.dll": {} + } + }, + "Markdig.Signed/0.22.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Markdig.Signed.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Markdig.Signed.dll": {} + } + }, + "Microsoft.ApplicationInsights/2.18.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.DiagnosticSource": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.ApplicationInsights.dll": {} + } + }, + "Microsoft.Bcl.AsyncInterfaces/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": { + "type": "package", + "build": { + "build/_._": {} + } + }, + "Microsoft.CodeAnalysis.Common/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.2", + "System.Collections.Immutable": "5.0.0", + "System.Memory": "4.5.4", + "System.Reflection.Metadata": "5.0.0", + "System.Runtime.CompilerServices.Unsafe": "5.0.0", + "System.Text.Encoding.CodePages": "4.5.1", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {} + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[4.0.1]" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeCoverage/16.11.0": { + "type": "package", + "compile": { + "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "runtime": { + "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "build": { + "build/netstandard1.0/Microsoft.CodeCoverage.props": {}, + "build/netstandard1.0/Microsoft.CodeCoverage.targets": {} + } + }, + "Microsoft.CSharp/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/Microsoft.CSharp.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.Extensions.ObjectPool/5.0.10": { + "type": "package", + "compile": { + "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": {} + }, + "runtime": { + "lib/net5.0/Microsoft.Extensions.ObjectPool.dll": {} + } + }, + "Microsoft.Management.Infrastructure/2.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Management.Infrastructure.Runtime.Unix": "2.0.0", + "Microsoft.Management.Infrastructure.Runtime.Win": "2.0.0" + }, + "compile": { + "ref/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": {}, + "ref/netstandard1.6/Microsoft.Management.Infrastructure.dll": {} + }, + "runtime": { + "lib/netstandard1.6/_._": {} + } + }, + "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { + "type": "package", + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { + "type": "package", + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win-arm" + }, + "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win-arm" + }, + "runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm/native/mi.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm/native/miutils.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win-arm64" + }, + "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/mi.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/miutils.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win10-x64" + }, + "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win10-x64" + }, + "runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win10-x64" + }, + "runtimes/win10-x64/native/mi.dll": { + "assetType": "native", + "rid": "win10-x64" + }, + "runtimes/win10-x64/native/miutils.dll": { + "assetType": "native", + "rid": "win10-x64" + }, + "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win10-x86" + }, + "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win10-x86" + }, + "runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win10-x86" + }, + "runtimes/win10-x86/native/mi.dll": { + "assetType": "native", + "rid": "win10-x86" + }, + "runtimes/win10-x86/native/miutils.dll": { + "assetType": "native", + "rid": "win10-x86" + }, + "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win7-x64" + }, + "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/mi.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x64/native/miutils.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win7-x86" + }, + "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win7-x86" + }, + "runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win7-x86" + }, + "runtimes/win7-x86/native/mi.dll": { + "assetType": "native", + "rid": "win7-x86" + }, + "runtimes/win7-x86/native/miutils.dll": { + "assetType": "native", + "rid": "win7-x86" + }, + "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win8-x64" + }, + "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/mi.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x64/native/miutils.dll": { + "assetType": "native", + "rid": "win8-x64" + }, + "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win8-x86" + }, + "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win8-x86" + }, + "runtimes/win8-x86/native/mi.dll": { + "assetType": "native", + "rid": "win8-x86" + }, + "runtimes/win8-x86/native/miutils.dll": { + "assetType": "native", + "rid": "win8-x86" + }, + "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win81-x64" + }, + "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win81-x64" + }, + "runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win81-x64" + }, + "runtimes/win81-x64/native/mi.dll": { + "assetType": "native", + "rid": "win81-x64" + }, + "runtimes/win81-x64/native/miutils.dll": { + "assetType": "native", + "rid": "win81-x64" + }, + "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll": { + "assetType": "runtime", + "rid": "win81-x86" + }, + "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll": { + "assetType": "runtime", + "rid": "win81-x86" + }, + "runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll": { + "assetType": "native", + "rid": "win81-x86" + }, + "runtimes/win81-x86/native/mi.dll": { + "assetType": "native", + "rid": "win81-x86" + }, + "runtimes/win81-x86/native/miutils.dll": { + "assetType": "native", + "rid": "win81-x86" + } + } + }, + "Microsoft.NET.Test.Sdk/16.11.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeCoverage": "16.11.0", + "Microsoft.TestPlatform.TestHost": "16.11.0" + }, + "compile": { + "lib/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + }, + "build": { + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.props": {}, + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {} + } + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "type": "package" + }, + "Microsoft.PowerShell.Commands.Diagnostics/7.2.1": { + "type": "package", + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.PowerShell.Commands.Management/7.2.1": { + "type": "package", + "dependencies": { + "Microsoft.PowerShell.Security": "7.2.1", + "System.ServiceProcess.ServiceController": "6.0.0" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.PowerShell.Commands.Utility/7.2.1": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "4.0.1", + "Microsoft.PowerShell.MarkdownRender": "7.2.0", + "NJsonSchema": "10.5.2", + "System.Drawing.Common": "6.0.0", + "System.Management.Automation": "7.2.1", + "System.Threading.AccessControl": "6.0.0" + }, + "compile": { + "ref/net6.0/Microsoft.PowerShell.Commands.Utility.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.PowerShell.ConsoleHost/7.2.1": { + "type": "package", + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "compile": { + "ref/net6.0/Microsoft.PowerShell.ConsoleHost.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.EventLog": "6.0.0" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.PowerShell.MarkdownRender/7.2.0": { + "type": "package", + "dependencies": { + "Markdig.Signed": "0.22.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll": {} + } + }, + "Microsoft.PowerShell.Native/7.2.0": { + "type": "package", + "runtimeTargets": { + "runtimes/linux-arm/native/libpsl-native.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libpsl-native.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-musl-x64/native/libpsl-native.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libmi.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/linux-x64/native/libpsl-native.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/linux-x64/native/libpsrpclient.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/osx/native/libmi.dylib": { + "assetType": "native", + "rid": "osx" + }, + "runtimes/osx/native/libpsl-native.dylib": { + "assetType": "native", + "rid": "osx" + }, + "runtimes/osx/native/libpsrpclient.dylib": { + "assetType": "native", + "rid": "osx" + }, + "runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm/native/pwrshplugin.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-arm64/native/pwrshplugin.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x64/native/pwrshplugin.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll": { + "assetType": "native", + "rid": "win-x86" + }, + "runtimes/win-x86/native/pwrshplugin.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Microsoft.PowerShell.SDK/7.2.1": { + "type": "package", + "dependencies": { + "Microsoft.Management.Infrastructure.CimCmdlets": "7.2.1", + "Microsoft.NETCore.Windows.ApiSets": "1.0.1", + "Microsoft.PowerShell.Commands.Diagnostics": "7.2.1", + "Microsoft.PowerShell.Commands.Management": "7.2.1", + "Microsoft.PowerShell.Commands.Utility": "7.2.1", + "Microsoft.PowerShell.ConsoleHost": "7.2.1", + "Microsoft.PowerShell.Security": "7.2.1", + "Microsoft.WSMan.Management": "7.2.1", + "Microsoft.Windows.Compatibility": "6.0.0", + "System.Data.SqlClient": "4.8.3", + "System.IO.Packaging": "6.0.0", + "System.Management.Automation": "7.2.1", + "System.Net.Http.WinHttpHandler": "6.0.0", + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Duplex": "4.9.0", + "System.ServiceModel.Http": "4.9.0", + "System.ServiceModel.NetTcp": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0", + "System.ServiceModel.Security": "4.9.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "compile": { + "ref/net6.0/Microsoft.PowerShell.Commands.Utility.dll": {}, + "ref/net6.0/Microsoft.PowerShell.ConsoleHost.dll": {}, + "ref/net6.0/System.Management.Automation.dll": {} + }, + "contentFiles": { + "contentFiles/any/any/_._": { + "buildAction": "None", + "codeLanguage": "any", + "copyToOutput": false + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.PowerShell.Security/7.2.1": { + "type": "package", + "dependencies": { + "System.Management.Automation": "7.2.1" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.TestPlatform.ObjectModel/16.11.0": { + "type": "package", + "dependencies": { + "NuGet.Frameworks": "5.0.0", + "System.Reflection.Metadata": "1.6.0" + }, + "compile": { + "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + }, + "resource": { + "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.TestPlatform.TestHost/16.11.0": { + "type": "package", + "dependencies": { + "Microsoft.TestPlatform.ObjectModel": "16.11.0", + "Newtonsoft.Json": "9.0.1" + }, + "compile": { + "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, + "lib/netcoreapp2.1/testhost.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, + "lib/netcoreapp2.1/testhost.dll": {} + }, + "resource": { + "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hant" + } + }, + "build": { + "build/netcoreapp2.1/Microsoft.TestPlatform.TestHost.props": {} + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} + } + }, + "Microsoft.Win32.Registry/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.Registry.AccessControl/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {} + }, + "runtime": { + "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Windows.Compatibility/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry.AccessControl": "6.0.0", + "Microsoft.Win32.SystemEvents": "6.0.0", + "System.CodeDom": "6.0.0", + "System.ComponentModel.Composition": "6.0.0", + "System.ComponentModel.Composition.Registration": "6.0.0", + "System.Configuration.ConfigurationManager": "6.0.0", + "System.Data.Odbc": "6.0.0", + "System.Data.OleDb": "6.0.0", + "System.Data.SqlClient": "4.8.3", + "System.Diagnostics.EventLog": "6.0.0", + "System.Diagnostics.PerformanceCounter": "6.0.0", + "System.DirectoryServices": "6.0.0", + "System.DirectoryServices.AccountManagement": "6.0.0", + "System.DirectoryServices.Protocols": "6.0.0", + "System.Drawing.Common": "6.0.0", + "System.IO.Packaging": "6.0.0", + "System.IO.Ports": "6.0.0", + "System.Management": "6.0.0", + "System.Reflection.Context": "6.0.0", + "System.Runtime.Caching": "6.0.0", + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.0", + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Cryptography.Xml": "6.0.0", + "System.Security.Permissions": "6.0.0", + "System.ServiceModel.Duplex": "4.9.0", + "System.ServiceModel.Http": "4.9.0", + "System.ServiceModel.NetTcp": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0", + "System.ServiceModel.Security": "4.9.0", + "System.ServiceModel.Syndication": "6.0.0", + "System.ServiceProcess.ServiceController": "6.0.0", + "System.Speech": "6.0.0", + "System.Text.Encoding.CodePages": "6.0.0", + "System.Threading.AccessControl": "6.0.0", + "System.Web.Services.Description": "4.9.0" + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.WSMan.Management/7.2.1": { + "type": "package", + "dependencies": { + "Microsoft.WSMan.Runtime": "7.2.1", + "System.Management.Automation": "7.2.1", + "System.ServiceProcess.ServiceController": "6.0.0" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.WSMan.Runtime/7.2.1": { + "type": "package", + "compile": { + "ref/net6.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Moq/4.16.1": { + "type": "package", + "dependencies": { + "Castle.Core": "4.4.0", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netstandard2.1/Moq.dll": {} + }, + "runtime": { + "lib/netstandard2.1/Moq.dll": {} + } + }, + "Namotion.Reflection/2.0.3": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.3.0" + }, + "compile": { + "lib/netstandard2.0/Namotion.Reflection.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Namotion.Reflection.dll": {} + } + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "NJsonSchema/10.5.2": { + "type": "package", + "dependencies": { + "Namotion.Reflection": "2.0.3", + "Newtonsoft.Json": "9.0.1" + }, + "compile": { + "lib/netstandard2.0/NJsonSchema.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NJsonSchema.dll": {} + } + }, + "NLog/4.7.13": { + "type": "package", + "compile": { + "lib/netstandard2.0/NLog.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NLog.dll": {} + } + }, + "NuGet.Frameworks/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/NuGet.Frameworks.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NuGet.Frameworks.dll": {} + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "debian.8-x64" + } + } + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.23-x64" + } + } + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "fedora.24-x64" + } + } + }, + "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "runtimeTargets": { + "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so": { + "assetType": "native", + "rid": "linux-arm" + } + } + }, + "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "runtimeTargets": { + "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so": { + "assetType": "native", + "rid": "linux-arm64" + } + } + }, + "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "runtimeTargets": { + "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so": { + "assetType": "native", + "rid": "linux-x64" + } + } + }, + "runtime.native.System/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "type": "package", + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "dependencies": { + "runtime.linux-arm.runtime.native.System.IO.Ports": "6.0.0", + "runtime.linux-arm64.runtime.native.System.IO.Ports": "6.0.0", + "runtime.linux-x64.runtime.native.System.IO.Ports": "6.0.0", + "runtime.osx-arm64.runtime.native.System.IO.Ports": "6.0.0", + "runtime.osx-x64.runtime.native.System.IO.Ports": "6.0.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.13.2-x64" + } + } + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "opensuse.42.1-x64" + } + } + }, + "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib": { + "assetType": "native", + "rid": "osx-arm64" + } + } + }, + "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib": { + "assetType": "native", + "rid": "osx-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { + "assetType": "native", + "rid": "osx.10.10-x64" + } + } + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "rhel.7-x64" + } + } + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.14.04-x64" + } + } + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.04-x64" + } + } + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "runtimeTargets": { + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { + "assetType": "native", + "rid": "ubuntu.16.10-x64" + } + } + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "assetType": "native", + "rid": "win-arm64" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "assetType": "native", + "rid": "win-x64" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "System.AppContext/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.AppContext.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.AppContext.dll": {} + } + }, + "System.Buffers/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "lib/netstandard1.1/_._": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.CodeDom/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.CodeDom.dll": {} + }, + "runtime": { + "lib/net6.0/System.CodeDom.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Collections/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": {} + } + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Concurrent.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Concurrent.dll": {} + } + }, + "System.Collections.Immutable/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Collections.Immutable.dll": {} + } + }, + "System.Collections.NonGeneric/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} + } + }, + "System.Collections.Specialized/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections.NonGeneric": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.Specialized.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Collections.Specialized.dll": {} + } + }, + "System.ComponentModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ComponentModel.dll": {} + } + }, + "System.ComponentModel.Composition/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.ComponentModel.Composition.dll": {} + }, + "runtime": { + "lib/net6.0/System.ComponentModel.Composition.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.ComponentModel.Composition.Registration/6.0.0": { + "type": "package", + "dependencies": { + "System.ComponentModel.Composition": "6.0.0", + "System.Reflection.Context": "6.0.0" + }, + "compile": { + "lib/net6.0/System.ComponentModel.Composition.Registration.dll": {} + }, + "runtime": { + "lib/net6.0/System.ComponentModel.Composition.Registration.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.ComponentModel.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.NonGeneric": "4.3.0", + "System.Collections.Specialized": "4.3.0", + "System.ComponentModel": "4.3.0", + "System.ComponentModel.Primitives": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Configuration.ConfigurationManager/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": {} + }, + "runtime": { + "lib/net6.0/System.Configuration.ConfigurationManager.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Console/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Console.dll": {} + } + }, + "System.Data.Odbc/6.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encoding.CodePages": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Data.Odbc.dll": {} + }, + "runtime": { + "lib/net6.0/System.Data.Odbc.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "freebsd" + }, + "runtimes/illumos/lib/net6.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "illumos" + }, + "runtimes/ios/lib/net6.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "ios" + }, + "runtimes/linux/lib/net6.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "linux" + }, + "runtimes/osx/lib/net6.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/solaris/lib/net6.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "solaris" + }, + "runtimes/tvos/lib/net6.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "tvos" + }, + "runtimes/win/lib/net6.0/System.Data.Odbc.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Data.OleDb/6.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0", + "System.Diagnostics.PerformanceCounter": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Data.OleDb.dll": {} + }, + "runtime": { + "lib/net6.0/System.Data.OleDb.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Data.OleDb.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Data.SqlClient/4.8.3": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "4.7.0", + "System.Security.Principal.Windows": "4.7.0", + "runtime.native.System.Data.SqlClient.sni": "4.7.0" + }, + "compile": { + "ref/netcoreapp2.1/System.Data.SqlClient.dll": {} + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} + } + }, + "System.Diagnostics.DiagnosticSource/5.0.0": { + "type": "package", + "compile": { + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.EventLog/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Diagnostics.EventLog.dll": {} + }, + "runtime": { + "lib/net6.0/System.Diagnostics.EventLog.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll": { + "assetType": "runtime", + "rid": "win" + }, + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.PerformanceCounter/6.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": {} + }, + "runtime": { + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} + } + }, + "System.Diagnostics.TraceSource/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} + } + }, + "System.DirectoryServices/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Permissions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.DirectoryServices.dll": {} + }, + "runtime": { + "lib/net6.0/System.DirectoryServices.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.DirectoryServices.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices.AccountManagement/6.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0", + "System.DirectoryServices": "6.0.0", + "System.DirectoryServices.Protocols": "6.0.0", + "System.Security.AccessControl": "6.0.0" + }, + "compile": { + "lib/net6.0/System.DirectoryServices.AccountManagement.dll": {} + }, + "runtime": { + "lib/net6.0/System.DirectoryServices.AccountManagement.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices.Protocols/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.DirectoryServices.Protocols.dll": {} + }, + "runtime": { + "lib/net6.0/System.DirectoryServices.Protocols.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "linux" + }, + "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/6.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Drawing.Common.dll": {} + }, + "runtime": { + "lib/net6.0/System.Drawing.Common.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Formats.Asn1/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Formats.Asn1.dll": {} + }, + "runtime": { + "lib/net6.0/System.Formats.Asn1.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Globalization/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": {} + } + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.Calendars.dll": {} + } + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": {} + } + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} + } + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.IO.Packaging/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.IO.Packaging.dll": {} + }, + "runtime": { + "lib/net6.0/System.IO.Packaging.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.IO.Ports/6.0.0": { + "type": "package", + "dependencies": { + "runtime.native.System.IO.Ports": "6.0.0" + }, + "compile": { + "lib/net6.0/System.IO.Ports.dll": {} + }, + "runtime": { + "lib/net6.0/System.IO.Ports.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.IO.Ports.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/System.IO.Ports.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Linq/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.Management/6.0.0": { + "type": "package", + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Management.dll": {} + }, + "runtime": { + "lib/net6.0/System.Management.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Management.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Management.Automation/7.2.1": { + "type": "package", + "dependencies": { + "Microsoft.ApplicationInsights": "2.18.0", + "Microsoft.Management.Infrastructure": "2.0.0", + "Microsoft.PowerShell.CoreCLR.Eventing": "7.2.1", + "Microsoft.PowerShell.Native": "7.2.0", + "Microsoft.Win32.Registry.AccessControl": "6.0.0", + "Newtonsoft.Json": "13.0.1", + "System.Configuration.ConfigurationManager": "6.0.0", + "System.DirectoryServices": "6.0.0", + "System.Management": "6.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.0", + "System.Security.Permissions": "6.0.0", + "System.Text.Encoding.CodePages": "6.0.0" + }, + "compile": { + "ref/net6.0/System.Management.Automation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/System.Management.Automation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/System.Management.Automation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Memory/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Net.Http/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Http.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Http.WinHttpHandler/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Net.Http.WinHttpHandler.dll": {} + }, + "runtime": { + "lib/net6.0/System.Net.Http.WinHttpHandler.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Primitives.dll": {} + } + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Net.Sockets.dll": {} + } + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Private.ServiceModel/4.9.0": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "5.0.0", + "Microsoft.Extensions.ObjectPool": "5.0.10", + "System.Numerics.Vectors": "4.5.0", + "System.Reflection.DispatchProxy": "4.7.1", + "System.Security.Cryptography.Xml": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/System.Private.ServiceModel.dll": {} + }, + "resource": { + "lib/netstandard2.0/cs/System.Private.ServiceModel.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/System.Private.ServiceModel.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/System.Private.ServiceModel.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/System.Private.ServiceModel.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/System.Private.ServiceModel.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/System.Private.ServiceModel.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/System.Private.ServiceModel.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/System.Private.ServiceModel.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/System.Private.ServiceModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/System.Private.ServiceModel.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/System.Private.ServiceModel.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/System.Private.ServiceModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/System.Private.ServiceModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Reflection/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": {} + } + }, + "System.Reflection.Context/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Reflection.Context.dll": {} + }, + "runtime": { + "lib/net6.0/System.Reflection.Context.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Reflection.DispatchProxy/4.7.1": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Reflection.DispatchProxy.dll": {} + }, + "runtime": { + "lib/netcoreapp2.0/System.Reflection.DispatchProxy.dll": {} + } + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Reflection.Emit.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": {} + } + }, + "System.Reflection.Metadata/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": {} + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} + } + }, + "System.Runtime/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": {} + } + }, + "System.Runtime.Caching/6.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Runtime.Caching.dll": {} + }, + "runtime": { + "lib/net6.0/System.Runtime.Caching.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": {} + } + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Runtime.Handles.dll": {} + } + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.1/System.Runtime.Numerics.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Numerics.dll": {} + } + }, + "System.Security.AccessControl/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.AccessControl.dll": {} + }, + "runtime": { + "lib/net6.0/System.Security.AccessControl.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtimeTargets": { + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.6/_._": {} + }, + "runtime": { + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { + "assetType": "runtime", + "rid": "unix" + } + } + }, + "System.Security.Cryptography.Pkcs/6.0.0": { + "type": "package", + "dependencies": { + "System.Formats.Asn1": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Security.Cryptography.Pkcs.dll": {} + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Pkcs.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {} + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.3.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + }, + "compile": { + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Xml/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Security.Cryptography.Pkcs": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": {} + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Xml.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Permissions/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0", + "System.Windows.Extensions": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Security.Permissions.dll": {} + }, + "runtime": { + "lib/net6.0/System.Security.Permissions.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.ServiceModel.Duplex/4.9.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "compile": { + "ref/net6.0/System.ServiceModel.Duplex.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Duplex.dll": {} + } + }, + "System.ServiceModel.Http/4.9.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "compile": { + "ref/net6.0/System.ServiceModel.Http.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Http.dll": {} + } + }, + "System.ServiceModel.NetTcp/4.9.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "compile": { + "ref/net6.0/System.ServiceModel.NetTcp.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.NetTcp.dll": {} + } + }, + "System.ServiceModel.Primitives/4.9.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.9.0" + }, + "compile": { + "ref/net6.0/System.ServiceModel.Primitives.dll": {}, + "ref/net6.0/System.ServiceModel.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Primitives.dll": {}, + "lib/net6.0/System.ServiceModel.dll": {} + } + }, + "System.ServiceModel.Security/4.9.0": { + "type": "package", + "dependencies": { + "System.Private.ServiceModel": "4.9.0", + "System.ServiceModel.Primitives": "4.9.0" + }, + "compile": { + "ref/net6.0/System.ServiceModel.Security.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Security.dll": {} + } + }, + "System.ServiceModel.Syndication/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.ServiceModel.Syndication.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceModel.Syndication.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.ServiceProcess.ServiceController/6.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.EventLog": "6.0.0" + }, + "compile": { + "lib/net6.0/System.ServiceProcess.ServiceController.dll": {} + }, + "runtime": { + "lib/net6.0/System.ServiceProcess.ServiceController.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Speech/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Speech.dll": {} + }, + "runtime": { + "lib/net6.0/System.Speech.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Speech.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": {} + } + }, + "System.Text.Encoding.CodePages/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtime": { + "lib/net6.0/System.Text.Encoding.CodePages.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} + } + }, + "System.Text.Encodings.Web/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/net6.0/System.Text.Encodings.Web.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.3.0": { + "type": "package", + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.AccessControl/6.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Threading.AccessControl.dll": {} + }, + "runtime": { + "lib/net6.0/System.Threading.AccessControl.dll": {} + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Threading.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": {} + } + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + }, + "compile": { + "ref/netstandard1.2/System.Threading.Timer.dll": {} + } + }, + "System.Web.Services.Description/4.9.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Web.Services.Description.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Web.Services.Description.dll": {} + }, + "resource": { + "lib/netstandard2.0/cs/System.Web.Services.Description.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/System.Web.Services.Description.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/System.Web.Services.Description.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/System.Web.Services.Description.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/System.Web.Services.Description.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/System.Web.Services.Description.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/System.Web.Services.Description.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/System.Web.Services.Description.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/System.Web.Services.Description.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/System.Web.Services.Description.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/System.Web.Services.Description.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/System.Web.Services.Description.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/System.Web.Services.Description.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Windows.Extensions/6.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Windows.Extensions.dll": {} + }, + "runtime": { + "lib/net6.0/System.Windows.Extensions.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} + } + }, + "xunit/2.4.1": { + "type": "package", + "dependencies": { + "xunit.analyzers": "0.10.0", + "xunit.assert": "[2.4.1]", + "xunit.core": "[2.4.1]" + } + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/xunit.abstractions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/xunit.abstractions.dll": {} + } + }, + "xunit.analyzers/0.10.0": { + "type": "package" + }, + "xunit.assert/2.4.1": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "compile": { + "lib/netstandard1.1/xunit.assert.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.assert.dll": {} + } + }, + "xunit.core/2.4.1": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.4.1]", + "xunit.extensibility.execution": "[2.4.1]" + }, + "build": { + "build/xunit.core.props": {}, + "build/xunit.core.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/xunit.core.props": {}, + "buildMultiTargeting/xunit.core.targets": {} + } + }, + "xunit.extensibility.core/2.4.1": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.core.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": {} + } + }, + "xunit.extensibility.execution/2.4.1": { + "type": "package", + "dependencies": { + "NETStandard.Library": "1.6.1", + "xunit.extensibility.core": "[2.4.1]" + }, + "compile": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": {} + } + }, + "xunit.runner.visualstudio/2.4.3": { + "type": "package", + "build": { + "build/netcoreapp2.1/xunit.runner.visualstudio.props": {} + } + }, + "YamlDotNet/11.2.1": { + "type": "package", + "compile": { + "lib/netstandard2.1/YamlDotNet.dll": {} + }, + "runtime": { + "lib/netstandard2.1/YamlDotNet.dll": {} + } + }, + "Linguard.Core/2.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "Bogus": "34.0.1", + "ByteSize": "2.1.1", + "FluentValidation": "10.3.6", + "IPNetwork2": "2.5.386", + "Linguard.Log": "2.0.0", + "Microsoft.PowerShell.SDK": "7.2.1", + "System.Management.Automation": "7.2.1", + "YamlDotNet": "11.2.1" + }, + "compile": { + "bin/placeholder/Linguard.Core.dll": {} + }, + "runtime": { + "bin/placeholder/Linguard.Core.dll": {} + } + }, + "Linguard.Log/2.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "NLog": "4.7.13" + }, + "compile": { + "bin/placeholder/Linguard.Log.dll": {} + }, + "runtime": { + "bin/placeholder/Linguard.Log.dll": {} + } + } + } + }, + "libraries": { + "Bogus/34.0.1": { + "sha512": "49iq7QrD0wb7V4/FcK8p3dWdJxNUbojaqK9L6KRvdikIuRjt38EsNp7QXICcYdbYw01K8BHUdxlnTNn/YX3qDA==", + "type": "package", + "path": "bogus/34.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "bogus.34.0.1.nupkg.sha512", + "bogus.nuspec", + "lib/net40/Bogus.dll", + "lib/net40/Bogus.xml", + "lib/net6.0/Bogus.dll", + "lib/net6.0/Bogus.xml", + "lib/netstandard1.3/Bogus.dll", + "lib/netstandard1.3/Bogus.xml", + "lib/netstandard2.0/Bogus.dll", + "lib/netstandard2.0/Bogus.xml" + ] + }, + "ByteSize/2.1.1": { + "sha512": "D+Y3NpbHrW21vZwwegeWf/8iAg2Mr0s7n1su8Ysho+O9dctJ5/EkWUi19QVxc6+nZl080gGTXBP/Nz0twSI3dA==", + "type": "package", + "path": "bytesize/2.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "bytesize.2.1.1.nupkg.sha512", + "bytesize.nuspec", + "lib/net45/ByteSize.dll", + "lib/net45/ByteSize.xml", + "lib/net5.0/ByteSize.dll", + "lib/net5.0/ByteSize.xml", + "lib/netstandard1.0/ByteSize.dll", + "lib/netstandard1.0/ByteSize.xml", + "lib/netstandard2.0/ByteSize.dll", + "lib/netstandard2.0/ByteSize.xml", + "lib/netstandard2.1/ByteSize.dll", + "lib/netstandard2.1/ByteSize.xml" + ] + }, + "Castle.Core/4.4.0": { + "sha512": "b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", + "type": "package", + "path": "castle.core/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ASL - Apache Software Foundation License.txt", + "CHANGELOG.md", + "LICENSE", + "castle.core.4.4.0.nupkg.sha512", + "castle.core.nuspec", + "lib/net35/Castle.Core.dll", + "lib/net35/Castle.Core.xml", + "lib/net40/Castle.Core.dll", + "lib/net40/Castle.Core.xml", + "lib/net45/Castle.Core.dll", + "lib/net45/Castle.Core.xml", + "lib/netstandard1.3/Castle.Core.dll", + "lib/netstandard1.3/Castle.Core.xml", + "lib/netstandard1.5/Castle.Core.dll", + "lib/netstandard1.5/Castle.Core.xml", + "readme.txt" + ] + }, + "coverlet.msbuild/3.1.2": { + "sha512": "QhM0fnDtmIMImY7oxyQ/kh1VYtRxPyRVeLwRUGuUvI6Xp83pSYG9gerK8WgJj4TzUl7ISziADUGtIWKhtlbkbQ==", + "type": "package", + "path": "coverlet.msbuild/3.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Microsoft.Build.Framework.dll", + "build/Microsoft.Build.Utilities.Core.dll", + "build/Microsoft.CSharp.dll", + "build/Microsoft.DotNet.PlatformAbstractions.dll", + "build/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "build/Microsoft.Extensions.DependencyInjection.dll", + "build/Microsoft.Extensions.DependencyModel.dll", + "build/Microsoft.Extensions.FileSystemGlobbing.dll", + "build/Mono.Cecil.Mdb.dll", + "build/Mono.Cecil.Pdb.dll", + "build/Mono.Cecil.Rocks.dll", + "build/Mono.Cecil.dll", + "build/Newtonsoft.Json.dll", + "build/System.AppContext.dll", + "build/System.Collections.Concurrent.dll", + "build/System.Collections.Immutable.dll", + "build/System.Collections.NonGeneric.dll", + "build/System.Dynamic.Runtime.dll", + "build/System.IO.FileSystem.Primitives.dll", + "build/System.Linq.Expressions.dll", + "build/System.Linq.dll", + "build/System.ObjectModel.dll", + "build/System.Private.DataContractSerialization.dll", + "build/System.Reflection.Emit.ILGeneration.dll", + "build/System.Reflection.Emit.Lightweight.dll", + "build/System.Reflection.Emit.dll", + "build/System.Reflection.Metadata.dll", + "build/System.Reflection.TypeExtensions.dll", + "build/System.Resources.Reader.dll", + "build/System.Runtime.Serialization.Primitives.dll", + "build/System.Runtime.Serialization.Xml.dll", + "build/System.Text.RegularExpressions.dll", + "build/System.Threading.Tasks.Extensions.dll", + "build/System.Threading.Tasks.Parallel.dll", + "build/System.Threading.Thread.dll", + "build/System.Threading.ThreadPool.dll", + "build/System.Threading.dll", + "build/System.Xml.ReaderWriter.dll", + "build/System.Xml.XDocument.dll", + "build/System.Xml.XmlDocument.dll", + "build/System.Xml.XmlSerializer.dll", + "build/coverlet.core.dll", + "build/coverlet.core.pdb", + "build/coverlet.msbuild.props", + "build/coverlet.msbuild.targets", + "build/coverlet.msbuild.tasks.dll", + "build/coverlet.msbuild.tasks.pdb", + "coverlet-icon.png", + "coverlet.msbuild.3.1.2.nupkg.sha512", + "coverlet.msbuild.nuspec" + ] + }, + "FluentAssertions/6.4.0": { + "sha512": "KOJE1UD7ndxoZAdmOraiUFLdcdGTArGQW8WYN+vwrC3mdt2G/B7gmsMOozgXKiNSh3fpD/Xp/0mhonRh8vrZKw==", + "type": "package", + "path": "fluentassertions/6.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "FluentAssertions.png", + "fluentassertions.6.4.0.nupkg.sha512", + "fluentassertions.nuspec", + "lib/net47/FluentAssertions.dll", + "lib/net47/FluentAssertions.pdb", + "lib/net47/FluentAssertions.xml", + "lib/netcoreapp2.1/FluentAssertions.dll", + "lib/netcoreapp2.1/FluentAssertions.pdb", + "lib/netcoreapp2.1/FluentAssertions.xml", + "lib/netcoreapp3.0/FluentAssertions.dll", + "lib/netcoreapp3.0/FluentAssertions.pdb", + "lib/netcoreapp3.0/FluentAssertions.xml", + "lib/netstandard2.0/FluentAssertions.dll", + "lib/netstandard2.0/FluentAssertions.pdb", + "lib/netstandard2.0/FluentAssertions.xml", + "lib/netstandard2.1/FluentAssertions.dll", + "lib/netstandard2.1/FluentAssertions.pdb", + "lib/netstandard2.1/FluentAssertions.xml" + ] + }, + "FluentValidation/10.3.6": { + "sha512": "iMd370ZDx6ydm8t7bIFdRbSKX0e42lpvCtifUSbTSXOk5iKjmgl7HU0PXBhIWQAyIRi3gCwfMI9luj8H6K+byw==", + "type": "package", + "path": "fluentvalidation/10.3.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "fluent-validation-icon.png", + "fluentvalidation.10.3.6.nupkg.sha512", + "fluentvalidation.nuspec", + "lib/net5.0/FluentValidation.dll", + "lib/net5.0/FluentValidation.xml", + "lib/net6.0/FluentValidation.dll", + "lib/net6.0/FluentValidation.xml", + "lib/netstandard2.0/FluentValidation.dll", + "lib/netstandard2.0/FluentValidation.xml", + "lib/netstandard2.1/FluentValidation.dll", + "lib/netstandard2.1/FluentValidation.xml" + ] + }, + "IPNetwork2/2.5.386": { + "sha512": "6ihnNm82vyJsUYYfR2BRTziY/mQ5UGLsQZuhdSYPeTlbQLhBW/4BC9hBz3h5bFDn8PkVw9dP0cpv9brIBmk4Fw==", + "type": "package", + "path": "ipnetwork2/2.5.386", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "ipnetwork2.2.5.386.nupkg.sha512", + "ipnetwork2.nuspec", + "lib/net40/System.Net.IPNetwork.dll", + "lib/net40/System.Net.IPNetwork.xml", + "lib/net45/System.Net.IPNetwork.dll", + "lib/net45/System.Net.IPNetwork.xml", + "lib/net46/System.Net.IPNetwork.dll", + "lib/net46/System.Net.IPNetwork.xml", + "lib/net47/System.Net.IPNetwork.dll", + "lib/net47/System.Net.IPNetwork.xml", + "lib/net48/System.Net.IPNetwork.dll", + "lib/net48/System.Net.IPNetwork.xml", + "lib/net5.0/System.Net.IPNetwork.dll", + "lib/net5.0/System.Net.IPNetwork.xml", + "lib/netcoreapp3.1/System.Net.IPNetwork.dll", + "lib/netcoreapp3.1/System.Net.IPNetwork.xml", + "lib/netstandard1.6/System.Net.IPNetwork.dll", + "lib/netstandard1.6/System.Net.IPNetwork.xml", + "lib/netstandard2.0/System.Net.IPNetwork.dll", + "lib/netstandard2.0/System.Net.IPNetwork.xml", + "lib/netstandard2.1/System.Net.IPNetwork.dll", + "lib/netstandard2.1/System.Net.IPNetwork.xml" + ] + }, + "Markdig.Signed/0.22.0": { + "sha512": "7x3FqS3wk8DXyQLuflD47tBs6+ly6k4VtoDCzlDWfy7XHVsBIi7eGYEM15sPAcwSCQjOksNWE8U5r2v0Sk5FzQ==", + "type": "package", + "path": "markdig.signed/0.22.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/Markdig.Signed.dll", + "lib/net452/Markdig.Signed.xml", + "lib/netcoreapp2.1/Markdig.Signed.dll", + "lib/netcoreapp2.1/Markdig.Signed.xml", + "lib/netcoreapp3.1/Markdig.Signed.dll", + "lib/netcoreapp3.1/Markdig.Signed.xml", + "lib/netstandard2.0/Markdig.Signed.dll", + "lib/netstandard2.0/Markdig.Signed.xml", + "lib/netstandard2.1/Markdig.Signed.dll", + "lib/netstandard2.1/Markdig.Signed.xml", + "markdig.signed.0.22.0.nupkg.sha512", + "markdig.signed.nuspec" + ] + }, + "Microsoft.ApplicationInsights/2.18.0": { + "sha512": "milJB3VOCoC4EWmpE/Co9cOJ7SV6Ji6VqV4Rf5UlqL9QCg+rAX1y+3Y+j1Gu/j4IExYiPq7SEKqkP2BFnEu6Vw==", + "type": "package", + "path": "microsoft.applicationinsights/2.18.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net452/Microsoft.ApplicationInsights.dll", + "lib/net452/Microsoft.ApplicationInsights.pdb", + "lib/net452/Microsoft.ApplicationInsights.xml", + "lib/net46/Microsoft.ApplicationInsights.dll", + "lib/net46/Microsoft.ApplicationInsights.pdb", + "lib/net46/Microsoft.ApplicationInsights.xml", + "lib/netstandard2.0/Microsoft.ApplicationInsights.dll", + "lib/netstandard2.0/Microsoft.ApplicationInsights.pdb", + "lib/netstandard2.0/Microsoft.ApplicationInsights.xml", + "microsoft.applicationinsights.2.18.0.nupkg.sha512", + "microsoft.applicationinsights.nuspec" + ] + }, + "Microsoft.Bcl.AsyncInterfaces/5.0.0": { + "sha512": "W8DPQjkMScOMTtJbPwmPyj9c3zYSFGawDW3jwlBOOsnY+EzZFLgNQ/UMkK35JmkNOVPdCyPr2Tw7Vv9N+KA3ZQ==", + "type": "package", + "path": "microsoft.bcl.asyncinterfaces/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", + "microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.2": { + "sha512": "7xt6zTlIEizUgEsYAIgm37EbdkiMmr6fP6J9pDoKEpiGM4pi32BCPGr/IczmSJI9Zzp0a6HOzpr9OvpMP+2veA==", + "type": "package", + "path": "microsoft.codeanalysis.analyzers/3.3.2", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "EULA.rtf", + "ThirdPartyNotices.rtf", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "build/Microsoft.CodeAnalysis.Analyzers.props", + "build/Microsoft.CodeAnalysis.Analyzers.targets", + "build/config/AnalysisLevel_2_9_8_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_2_9_8_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_2_9_8_Default.editorconfig", + "build/config/AnalysisLevel_3_3_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_3_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_3_Default.editorconfig", + "build/config/AnalysisLevel_3_AllDisabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_AllEnabledByDefault.editorconfig", + "build/config/AnalysisLevel_3_Default.editorconfig", + "documentation/Analyzer Configuration.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.sarif", + "editorconfig/AllRulesDefault/.editorconfig", + "editorconfig/AllRulesDisabled/.editorconfig", + "editorconfig/AllRulesEnabled/.editorconfig", + "editorconfig/CorrectnessRulesDefault/.editorconfig", + "editorconfig/CorrectnessRulesEnabled/.editorconfig", + "editorconfig/DataflowRulesDefault/.editorconfig", + "editorconfig/DataflowRulesEnabled/.editorconfig", + "editorconfig/LibraryRulesDefault/.editorconfig", + "editorconfig/LibraryRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig", + "editorconfig/PortedFromFxCopRulesDefault/.editorconfig", + "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig", + "microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512", + "microsoft.codeanalysis.analyzers.nuspec", + "rulesets/AllRulesDefault.ruleset", + "rulesets/AllRulesDisabled.ruleset", + "rulesets/AllRulesEnabled.ruleset", + "rulesets/CorrectnessRulesDefault.ruleset", + "rulesets/CorrectnessRulesEnabled.ruleset", + "rulesets/DataflowRulesDefault.ruleset", + "rulesets/DataflowRulesEnabled.ruleset", + "rulesets/LibraryRulesDefault.ruleset", + "rulesets/LibraryRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset", + "rulesets/PortedFromFxCopRulesDefault.ruleset", + "rulesets/PortedFromFxCopRulesEnabled.ruleset", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/4.0.1": { + "sha512": "SMREwaVD5SzatlWhh9aahQAtSWdb63NcE//f+bQzgHSECU6xtDtaxk0kwV+asdFfr6HtW38UeO6jvqdfzudg3w==", + "type": "package", + "path": "microsoft.codeanalysis.common/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml", + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "microsoft.codeanalysis.common.4.0.1.nupkg.sha512", + "microsoft.codeanalysis.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/4.0.1": { + "sha512": "Q9RxxydPpUElj/x1/qykDTUGsRoKbJG8H5XUSeMGmMu54fBiuX1xyanom9caa1oQfh5JIW1BgLxobSaWs4WyHQ==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "microsoft.codeanalysis.csharp.4.0.1.nupkg.sha512", + "microsoft.codeanalysis.csharp.nuspec" + ] + }, + "Microsoft.CodeCoverage/16.11.0": { + "sha512": "wf6lpAeCqP0KFfbDVtfL50lr7jY1gq0+0oSphyksfLOEygMDXqnaxHK5LPFtMEhYSEtgXdNyXNnEddOqQQUdlQ==", + "type": "package", + "path": "microsoft.codecoverage/16.11.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE_NET.txt", + "ThirdPartyNotices.txt", + "build/netstandard1.0/CodeCoverage/CodeCoverage.config", + "build/netstandard1.0/CodeCoverage/CodeCoverage.exe", + "build/netstandard1.0/CodeCoverage/VanguardInstrumentationProfiler_x86.config", + "build/netstandard1.0/CodeCoverage/amd64/CodeCoverage.exe", + "build/netstandard1.0/CodeCoverage/amd64/VanguardInstrumentationProfiler_x64.config", + "build/netstandard1.0/CodeCoverage/amd64/covrun64.dll", + "build/netstandard1.0/CodeCoverage/amd64/msdia140.dll", + "build/netstandard1.0/CodeCoverage/amd64/msvcdis140.dll", + "build/netstandard1.0/CodeCoverage/amd64/msvcp140.dll", + "build/netstandard1.0/CodeCoverage/amd64/msvcp140_atomic_wait.dll", + "build/netstandard1.0/CodeCoverage/amd64/vcruntime140.dll", + "build/netstandard1.0/CodeCoverage/amd64/vcruntime140_1.dll", + "build/netstandard1.0/CodeCoverage/codecoveragemessages.dll", + "build/netstandard1.0/CodeCoverage/coreclr/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "build/netstandard1.0/CodeCoverage/covrun32.dll", + "build/netstandard1.0/CodeCoverage/msdia140.dll", + "build/netstandard1.0/CodeCoverage/msvcdis140.dll", + "build/netstandard1.0/CodeCoverage/msvcp140.dll", + "build/netstandard1.0/CodeCoverage/msvcp140_atomic_wait.dll", + "build/netstandard1.0/CodeCoverage/vcruntime140.dll", + "build/netstandard1.0/InstrumentationEngine/alpine/x64/ProductionBreakpoints_x64.config", + "build/netstandard1.0/InstrumentationEngine/alpine/x64/libCoverageInstrumentationMethod.so", + "build/netstandard1.0/InstrumentationEngine/alpine/x64/libInstrumentationEngine.so", + "build/netstandard1.0/InstrumentationEngine/ubuntu/x64/ProductionBreakpoints_x64.config", + "build/netstandard1.0/InstrumentationEngine/ubuntu/x64/libCoverageInstrumentationMethod.so", + "build/netstandard1.0/InstrumentationEngine/ubuntu/x64/libInstrumentationEngine.so", + "build/netstandard1.0/InstrumentationEngine/x64/MicrosoftInstrumentationEngine_x64.dll", + "build/netstandard1.0/InstrumentationEngine/x86/MicrosoftInstrumentationEngine_x86.dll", + "build/netstandard1.0/Microsoft.CodeCoverage.props", + "build/netstandard1.0/Microsoft.CodeCoverage.targets", + "build/netstandard1.0/Microsoft.VisualStudio.Coverage.Core.dll", + "build/netstandard1.0/Microsoft.VisualStudio.Coverage.Instrumentation.dll", + "build/netstandard1.0/Microsoft.VisualStudio.Coverage.Interprocess.dll", + "build/netstandard1.0/Microsoft.VisualStudio.TraceDataCollector.dll", + "build/netstandard1.0/Mono.Cecil.Pdb.dll", + "build/netstandard1.0/Mono.Cecil.dll", + "build/netstandard1.0/ThirdPartyNotices.txt", + "build/netstandard1.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "lib/net45/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "microsoft.codecoverage.16.11.0.nupkg.sha512", + "microsoft.codecoverage.nuspec" + ] + }, + "Microsoft.CSharp/4.3.0": { + "sha512": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==", + "type": "package", + "path": "microsoft.csharp/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.3.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.Extensions.ObjectPool/5.0.10": { + "sha512": "pp9tbGqIhdEXL6Q1yJl+zevAJSq4BsxqhS1GXzBvEsEz9DDNu9GLNzgUy2xyFc4YjB4m4Ff2YEWTnvQvVYdkvQ==", + "type": "package", + "path": "microsoft.extensions.objectpool/5.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Extensions.ObjectPool.dll", + "lib/net461/Microsoft.Extensions.ObjectPool.xml", + "lib/net5.0/Microsoft.Extensions.ObjectPool.dll", + "lib/net5.0/Microsoft.Extensions.ObjectPool.xml", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.dll", + "lib/netstandard2.0/Microsoft.Extensions.ObjectPool.xml", + "microsoft.extensions.objectpool.5.0.10.nupkg.sha512", + "microsoft.extensions.objectpool.nuspec" + ] + }, + "Microsoft.Management.Infrastructure/2.0.0": { + "sha512": "IaKZRNBBv3sdrmBWd+aqwHq8cVHk/3WgWFAN/dt40MRY9rbtHiDfTTmaEN0tGTmQqGCGDo/ncntA8MvFMvcsRw==", + "type": "package", + "path": "microsoft.management.infrastructure/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard1.6/_._", + "microsoft.management.infrastructure.2.0.0.nupkg.sha512", + "microsoft.management.infrastructure.nuspec", + "ref/net451/Microsoft.Management.Infrastructure.Native.dll", + "ref/net451/Microsoft.Management.Infrastructure.dll", + "ref/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "ref/netstandard1.6/Microsoft.Management.Infrastructure.dll" + ] + }, + "Microsoft.Management.Infrastructure.CimCmdlets/7.2.1": { + "sha512": "xe1x237SCyrjpmW1mP1T69/OOc/gtU66P8wVC+b4/u7Hz7fIO6B8P5yVQQfb79rAe1GocruIpQlX4KXTFQf09w==", + "type": "package", + "path": "microsoft.management.infrastructure.cimcmdlets/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.management.infrastructure.cimcmdlets.7.2.1.nupkg.sha512", + "microsoft.management.infrastructure.cimcmdlets.nuspec", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/win/lib/net6.0/Microsoft.Management.Infrastructure.CimCmdlets.dll" + ] + }, + "Microsoft.Management.Infrastructure.Runtime.Unix/2.0.0": { + "sha512": "p0lslMX5bdWLxO2P7ao+rjAMOB0LEwPYpzvdCQ2OEYgX2NxFpQ8ILvqPGnYlTAb53rT8gu5DyIol1HboHFYfxQ==", + "type": "package", + "path": "microsoft.management.infrastructure.runtime.unix/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512", + "microsoft.management.infrastructure.runtime.unix.nuspec", + "runtimes/unix/lib/net451/_._", + "runtimes/unix/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll" + ] + }, + "Microsoft.Management.Infrastructure.Runtime.Win/2.0.0": { + "sha512": "vjBWQeDOjgernkrOdbEgn7M70SF7hof7ORdKPSlL06Uc15+oYdth5dZju9KsgUoti/cwnkZTiwtDx/lRtay0sA==", + "type": "package", + "path": "microsoft.management.infrastructure.runtime.win/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512", + "microsoft.management.infrastructure.runtime.win.nuspec", + "runtimes/win-arm/lib/net451/_._", + "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win-arm/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win-arm/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win-arm/native/mi.dll", + "runtimes/win-arm/native/miutils.dll", + "runtimes/win-arm64/lib/net451/_._", + "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win-arm64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win-arm64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win-arm64/native/mi.dll", + "runtimes/win-arm64/native/miutils.dll", + "runtimes/win10-x64/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win10-x64/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win10-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win10-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win10-x64/native/mi.dll", + "runtimes/win10-x64/native/miutils.dll", + "runtimes/win10-x86/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win10-x86/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win10-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win10-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win10-x86/native/mi.dll", + "runtimes/win10-x86/native/miutils.dll", + "runtimes/win7-x64/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win7-x64/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win7-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win7-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win7-x64/native/mi.dll", + "runtimes/win7-x64/native/miutils.dll", + "runtimes/win7-x86/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win7-x86/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win7-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win7-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win7-x86/native/mi.dll", + "runtimes/win7-x86/native/miutils.dll", + "runtimes/win8-x64/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win8-x64/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win8-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win8-x64/native/mi.dll", + "runtimes/win8-x64/native/miutils.dll", + "runtimes/win8-x86/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win8-x86/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win8-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win8-x86/native/mi.dll", + "runtimes/win8-x86/native/miutils.dll", + "runtimes/win81-x64/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win81-x64/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win81-x64/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win81-x64/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win81-x64/native/mi.dll", + "runtimes/win81-x64/native/miutils.dll", + "runtimes/win81-x86/lib/net451/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win81-x86/lib/net451/Microsoft.Management.Infrastructure.dll", + "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.Native.dll", + "runtimes/win81-x86/lib/netstandard1.6/Microsoft.Management.Infrastructure.dll", + "runtimes/win81-x86/native/Microsoft.Management.Infrastructure.Native.Unmanaged.dll", + "runtimes/win81-x86/native/mi.dll", + "runtimes/win81-x86/native/miutils.dll" + ] + }, + "Microsoft.NET.Test.Sdk/16.11.0": { + "sha512": "f4mbG1SUSkNWF5p7B3Y8ZxMsvKhxCmpZhdl+w6tMtLSUGE7Izi1syU6TkmKOvB2BV66pdbENConFAISOix4ohQ==", + "type": "package", + "path": "microsoft.net.test.sdk/16.11.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE_NET.txt", + "build/net40/Microsoft.NET.Test.Sdk.props", + "build/net40/Microsoft.NET.Test.Sdk.targets", + "build/net45/Microsoft.NET.Test.Sdk.props", + "build/net45/Microsoft.NET.Test.Sdk.targets", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.cs", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.fs", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.vb", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.props", + "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.targets", + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.cs", + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.fs", + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.vb", + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.props", + "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets", + "build/uap10.0/Microsoft.NET.Test.Sdk.props", + "buildMultiTargeting/Microsoft.NET.Test.Sdk.props", + "lib/net40/_._", + "lib/net45/_._", + "lib/netcoreapp1.0/_._", + "lib/netcoreapp2.1/_._", + "lib/uap10.0/_._", + "microsoft.net.test.sdk.16.11.0.nupkg.sha512", + "microsoft.net.test.sdk.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "type": "package", + "path": "microsoft.netcore.platforms/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Targets/1.1.0": { + "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "type": "package", + "path": "microsoft.netcore.targets/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.1.0.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.NETCore.Windows.ApiSets/1.0.1": { + "sha512": "SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==", + "type": "package", + "path": "microsoft.netcore.windows.apisets/1.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512", + "microsoft.netcore.windows.apisets.nuspec", + "runtime.json" + ] + }, + "Microsoft.PowerShell.Commands.Diagnostics/7.2.1": { + "sha512": "Bgw4Egv7cnYUTWAy6koxg+0+/8K6rqUdlAiAxuJby9FeDPZQFfqCHQqlyP9JDa6lvbtmeBx1btFDx6Kh8bxdwQ==", + "type": "package", + "path": "microsoft.powershell.commands.diagnostics/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.powershell.commands.diagnostics.7.2.1.nupkg.sha512", + "microsoft.powershell.commands.diagnostics.nuspec", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Diagnostics.dll" + ] + }, + "Microsoft.PowerShell.Commands.Management/7.2.1": { + "sha512": "YAMrGDF2QTg6Gwz07+m1+BnmcYsPyywfY4J8nOpImfXZLLNhD7zQQP0orNHu9WPPV3/+E33qUyPj5J3ugCMk6A==", + "type": "package", + "path": "microsoft.powershell.commands.management/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.powershell.commands.management.7.2.1.nupkg.sha512", + "microsoft.powershell.commands.management.nuspec", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll", + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Management.dll" + ] + }, + "Microsoft.PowerShell.Commands.Utility/7.2.1": { + "sha512": "PU15IxUJd7nSacTstlxqJoEeGlI+BH6cUKTppkkIIxEj7EfwC5nD1qTL41xye63BFeZmOFeqAhMI6LtJUd875g==", + "type": "package", + "path": "microsoft.powershell.commands.utility/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.powershell.commands.utility.7.2.1.nupkg.sha512", + "microsoft.powershell.commands.utility.nuspec", + "ref/net6.0/Microsoft.PowerShell.Commands.Utility.dll", + "ref/net6.0/Microsoft.PowerShell.Commands.Utility.xml", + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll", + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Commands.Utility.dll" + ] + }, + "Microsoft.PowerShell.ConsoleHost/7.2.1": { + "sha512": "uAPSsTmkOa7na1+OAPF87yBRwD1Ka/qXThoyrlvP9ihzMWfHM52k3MuKVEGi04VP3Wdi7U4Rzkr3svxDDmkHgA==", + "type": "package", + "path": "microsoft.powershell.consolehost/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.powershell.consolehost.7.2.1.nupkg.sha512", + "microsoft.powershell.consolehost.nuspec", + "ref/net6.0/Microsoft.PowerShell.ConsoleHost.dll", + "ref/net6.0/Microsoft.PowerShell.ConsoleHost.xml", + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll", + "runtimes/win/lib/net6.0/Microsoft.PowerShell.ConsoleHost.dll" + ] + }, + "Microsoft.PowerShell.CoreCLR.Eventing/7.2.1": { + "sha512": "fUz7InjavqKtslkQN828nWbZLnmmJRL9rn4b3e/XXdx0BcN+65x/pSgMnehwDVGIoqUPUMXN54eDo4HRVcLA5g==", + "type": "package", + "path": "microsoft.powershell.coreclr.eventing/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.powershell.coreclr.eventing.7.2.1.nupkg.sha512", + "microsoft.powershell.coreclr.eventing.nuspec", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/win/lib/net6.0/Microsoft.PowerShell.CoreCLR.Eventing.dll" + ] + }, + "Microsoft.PowerShell.MarkdownRender/7.2.0": { + "sha512": "1vqDtdX9RCGsMWCbzp0CIxZW3slWgq8mYHDfUlUKzmkV57fMAn4m0Gy2OtsqopZzrOiVJci+QCWx5FB7BVpMlw==", + "type": "package", + "path": "microsoft.powershell.markdownrender/7.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.PowerShell.MarkdownRender.dll", + "microsoft.powershell.markdownrender.7.2.0.nupkg.sha512", + "microsoft.powershell.markdownrender.nuspec" + ] + }, + "Microsoft.PowerShell.Native/7.2.0": { + "sha512": "TauOu3bYr4DRh9HpH3+fgaL+y2GY47KLsgU6qX1NDLqHshdEaCCjiF0N5sDEgCEhSb38FwWhpdFTIQvoOcYCXQ==", + "type": "package", + "path": "microsoft.powershell.native/7.2.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "PSRP_version.txt", + "Powershell_black_64.png", + "microsoft.powershell.native.7.2.0.nupkg.sha512", + "microsoft.powershell.native.nuspec", + "runtimes/linux-arm/native/libpsl-native.so", + "runtimes/linux-arm64/native/libpsl-native.so", + "runtimes/linux-musl-x64/native/libpsl-native.so", + "runtimes/linux-x64/native/libmi.so", + "runtimes/linux-x64/native/libpsl-native.so", + "runtimes/linux-x64/native/libpsrpclient.so", + "runtimes/osx/native/libmi.dylib", + "runtimes/osx/native/libpsl-native.dylib", + "runtimes/osx/native/libpsrpclient.dylib", + "runtimes/win-arm/native/PowerShell.Core.Instrumentation.dll", + "runtimes/win-arm/native/pwrshplugin.dll", + "runtimes/win-arm64/native/PowerShell.Core.Instrumentation.dll", + "runtimes/win-arm64/native/pwrshplugin.dll", + "runtimes/win-x64/native/PowerShell.Core.Instrumentation.dll", + "runtimes/win-x64/native/pwrshplugin.dll", + "runtimes/win-x86/native/PowerShell.Core.Instrumentation.dll", + "runtimes/win-x86/native/pwrshplugin.dll" + ] + }, + "Microsoft.PowerShell.SDK/7.2.1": { + "sha512": "UufIcywqI/22p0oqC5qg+yDoW39U2JAQyaHxy2Tr/h0hdWuFimtmhxp/FDXTxszgOdobtjcrCkSzqcoNmu/vQQ==", + "type": "package", + "path": "microsoft.powershell.sdk/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "contentFiles/any/any/ref/Microsoft.CSharp.dll", + "contentFiles/any/any/ref/Microsoft.VisualBasic.Core.dll", + "contentFiles/any/any/ref/Microsoft.VisualBasic.dll", + "contentFiles/any/any/ref/Microsoft.Win32.Primitives.dll", + "contentFiles/any/any/ref/Microsoft.Win32.Registry.dll", + "contentFiles/any/any/ref/System.AppContext.dll", + "contentFiles/any/any/ref/System.Buffers.dll", + "contentFiles/any/any/ref/System.Collections.Concurrent.dll", + "contentFiles/any/any/ref/System.Collections.Immutable.dll", + "contentFiles/any/any/ref/System.Collections.NonGeneric.dll", + "contentFiles/any/any/ref/System.Collections.Specialized.dll", + "contentFiles/any/any/ref/System.Collections.dll", + "contentFiles/any/any/ref/System.ComponentModel.Annotations.dll", + "contentFiles/any/any/ref/System.ComponentModel.DataAnnotations.dll", + "contentFiles/any/any/ref/System.ComponentModel.EventBasedAsync.dll", + "contentFiles/any/any/ref/System.ComponentModel.Primitives.dll", + "contentFiles/any/any/ref/System.ComponentModel.TypeConverter.dll", + "contentFiles/any/any/ref/System.ComponentModel.dll", + "contentFiles/any/any/ref/System.Configuration.dll", + "contentFiles/any/any/ref/System.Console.dll", + "contentFiles/any/any/ref/System.Core.dll", + "contentFiles/any/any/ref/System.Data.Common.dll", + "contentFiles/any/any/ref/System.Data.DataSetExtensions.dll", + "contentFiles/any/any/ref/System.Data.dll", + "contentFiles/any/any/ref/System.Diagnostics.Contracts.dll", + "contentFiles/any/any/ref/System.Diagnostics.Debug.dll", + "contentFiles/any/any/ref/System.Diagnostics.DiagnosticSource.dll", + "contentFiles/any/any/ref/System.Diagnostics.FileVersionInfo.dll", + "contentFiles/any/any/ref/System.Diagnostics.Process.dll", + "contentFiles/any/any/ref/System.Diagnostics.StackTrace.dll", + "contentFiles/any/any/ref/System.Diagnostics.TextWriterTraceListener.dll", + "contentFiles/any/any/ref/System.Diagnostics.Tools.dll", + "contentFiles/any/any/ref/System.Diagnostics.TraceSource.dll", + "contentFiles/any/any/ref/System.Diagnostics.Tracing.dll", + "contentFiles/any/any/ref/System.Drawing.Primitives.dll", + "contentFiles/any/any/ref/System.Drawing.dll", + "contentFiles/any/any/ref/System.Dynamic.Runtime.dll", + "contentFiles/any/any/ref/System.Formats.Asn1.dll", + "contentFiles/any/any/ref/System.Globalization.Calendars.dll", + "contentFiles/any/any/ref/System.Globalization.Extensions.dll", + "contentFiles/any/any/ref/System.Globalization.dll", + "contentFiles/any/any/ref/System.IO.Compression.Brotli.dll", + "contentFiles/any/any/ref/System.IO.Compression.FileSystem.dll", + "contentFiles/any/any/ref/System.IO.Compression.ZipFile.dll", + "contentFiles/any/any/ref/System.IO.Compression.dll", + "contentFiles/any/any/ref/System.IO.FileSystem.AccessControl.dll", + "contentFiles/any/any/ref/System.IO.FileSystem.DriveInfo.dll", + "contentFiles/any/any/ref/System.IO.FileSystem.Primitives.dll", + "contentFiles/any/any/ref/System.IO.FileSystem.Watcher.dll", + "contentFiles/any/any/ref/System.IO.FileSystem.dll", + "contentFiles/any/any/ref/System.IO.IsolatedStorage.dll", + "contentFiles/any/any/ref/System.IO.MemoryMappedFiles.dll", + "contentFiles/any/any/ref/System.IO.Pipes.AccessControl.dll", + "contentFiles/any/any/ref/System.IO.Pipes.dll", + "contentFiles/any/any/ref/System.IO.UnmanagedMemoryStream.dll", + "contentFiles/any/any/ref/System.IO.dll", + "contentFiles/any/any/ref/System.Linq.Expressions.dll", + "contentFiles/any/any/ref/System.Linq.Parallel.dll", + "contentFiles/any/any/ref/System.Linq.Queryable.dll", + "contentFiles/any/any/ref/System.Linq.dll", + "contentFiles/any/any/ref/System.Memory.dll", + "contentFiles/any/any/ref/System.Net.Http.Json.dll", + "contentFiles/any/any/ref/System.Net.Http.dll", + "contentFiles/any/any/ref/System.Net.HttpListener.dll", + "contentFiles/any/any/ref/System.Net.Mail.dll", + "contentFiles/any/any/ref/System.Net.NameResolution.dll", + "contentFiles/any/any/ref/System.Net.NetworkInformation.dll", + "contentFiles/any/any/ref/System.Net.Ping.dll", + "contentFiles/any/any/ref/System.Net.Primitives.dll", + "contentFiles/any/any/ref/System.Net.Requests.dll", + "contentFiles/any/any/ref/System.Net.Security.dll", + "contentFiles/any/any/ref/System.Net.ServicePoint.dll", + "contentFiles/any/any/ref/System.Net.Sockets.dll", + "contentFiles/any/any/ref/System.Net.WebClient.dll", + "contentFiles/any/any/ref/System.Net.WebHeaderCollection.dll", + "contentFiles/any/any/ref/System.Net.WebProxy.dll", + "contentFiles/any/any/ref/System.Net.WebSockets.Client.dll", + "contentFiles/any/any/ref/System.Net.WebSockets.dll", + "contentFiles/any/any/ref/System.Net.dll", + "contentFiles/any/any/ref/System.Numerics.Vectors.dll", + "contentFiles/any/any/ref/System.Numerics.dll", + "contentFiles/any/any/ref/System.ObjectModel.dll", + "contentFiles/any/any/ref/System.Reflection.DispatchProxy.dll", + "contentFiles/any/any/ref/System.Reflection.Emit.ILGeneration.dll", + "contentFiles/any/any/ref/System.Reflection.Emit.Lightweight.dll", + "contentFiles/any/any/ref/System.Reflection.Emit.dll", + "contentFiles/any/any/ref/System.Reflection.Extensions.dll", + "contentFiles/any/any/ref/System.Reflection.Metadata.dll", + "contentFiles/any/any/ref/System.Reflection.Primitives.dll", + "contentFiles/any/any/ref/System.Reflection.TypeExtensions.dll", + "contentFiles/any/any/ref/System.Reflection.dll", + "contentFiles/any/any/ref/System.Resources.Reader.dll", + "contentFiles/any/any/ref/System.Resources.ResourceManager.dll", + "contentFiles/any/any/ref/System.Resources.Writer.dll", + "contentFiles/any/any/ref/System.Runtime.CompilerServices.Unsafe.dll", + "contentFiles/any/any/ref/System.Runtime.CompilerServices.VisualC.dll", + "contentFiles/any/any/ref/System.Runtime.Extensions.dll", + "contentFiles/any/any/ref/System.Runtime.Handles.dll", + "contentFiles/any/any/ref/System.Runtime.InteropServices.RuntimeInformation.dll", + "contentFiles/any/any/ref/System.Runtime.InteropServices.dll", + "contentFiles/any/any/ref/System.Runtime.Intrinsics.dll", + "contentFiles/any/any/ref/System.Runtime.Loader.dll", + "contentFiles/any/any/ref/System.Runtime.Numerics.dll", + "contentFiles/any/any/ref/System.Runtime.Serialization.Formatters.dll", + "contentFiles/any/any/ref/System.Runtime.Serialization.Json.dll", + "contentFiles/any/any/ref/System.Runtime.Serialization.Primitives.dll", + "contentFiles/any/any/ref/System.Runtime.Serialization.Xml.dll", + "contentFiles/any/any/ref/System.Runtime.Serialization.dll", + "contentFiles/any/any/ref/System.Runtime.dll", + "contentFiles/any/any/ref/System.Security.AccessControl.dll", + "contentFiles/any/any/ref/System.Security.Claims.dll", + "contentFiles/any/any/ref/System.Security.Cryptography.Algorithms.dll", + "contentFiles/any/any/ref/System.Security.Cryptography.Cng.dll", + "contentFiles/any/any/ref/System.Security.Cryptography.Csp.dll", + "contentFiles/any/any/ref/System.Security.Cryptography.Encoding.dll", + "contentFiles/any/any/ref/System.Security.Cryptography.OpenSsl.dll", + "contentFiles/any/any/ref/System.Security.Cryptography.Primitives.dll", + "contentFiles/any/any/ref/System.Security.Cryptography.X509Certificates.dll", + "contentFiles/any/any/ref/System.Security.Principal.Windows.dll", + "contentFiles/any/any/ref/System.Security.Principal.dll", + "contentFiles/any/any/ref/System.Security.SecureString.dll", + "contentFiles/any/any/ref/System.Security.dll", + "contentFiles/any/any/ref/System.ServiceModel.Web.dll", + "contentFiles/any/any/ref/System.ServiceProcess.dll", + "contentFiles/any/any/ref/System.Text.Encoding.CodePages.dll", + "contentFiles/any/any/ref/System.Text.Encoding.Extensions.dll", + "contentFiles/any/any/ref/System.Text.Encoding.dll", + "contentFiles/any/any/ref/System.Text.Encodings.Web.dll", + "contentFiles/any/any/ref/System.Text.Json.dll", + "contentFiles/any/any/ref/System.Text.RegularExpressions.dll", + "contentFiles/any/any/ref/System.Threading.Channels.dll", + "contentFiles/any/any/ref/System.Threading.Overlapped.dll", + "contentFiles/any/any/ref/System.Threading.Tasks.Dataflow.dll", + "contentFiles/any/any/ref/System.Threading.Tasks.Extensions.dll", + "contentFiles/any/any/ref/System.Threading.Tasks.Parallel.dll", + "contentFiles/any/any/ref/System.Threading.Tasks.dll", + "contentFiles/any/any/ref/System.Threading.Thread.dll", + "contentFiles/any/any/ref/System.Threading.ThreadPool.dll", + "contentFiles/any/any/ref/System.Threading.Timer.dll", + "contentFiles/any/any/ref/System.Threading.dll", + "contentFiles/any/any/ref/System.Transactions.Local.dll", + "contentFiles/any/any/ref/System.Transactions.dll", + "contentFiles/any/any/ref/System.ValueTuple.dll", + "contentFiles/any/any/ref/System.Web.HttpUtility.dll", + "contentFiles/any/any/ref/System.Web.dll", + "contentFiles/any/any/ref/System.Windows.dll", + "contentFiles/any/any/ref/System.Xml.Linq.dll", + "contentFiles/any/any/ref/System.Xml.ReaderWriter.dll", + "contentFiles/any/any/ref/System.Xml.Serialization.dll", + "contentFiles/any/any/ref/System.Xml.XDocument.dll", + "contentFiles/any/any/ref/System.Xml.XPath.XDocument.dll", + "contentFiles/any/any/ref/System.Xml.XPath.dll", + "contentFiles/any/any/ref/System.Xml.XmlDocument.dll", + "contentFiles/any/any/ref/System.Xml.XmlSerializer.dll", + "contentFiles/any/any/ref/System.Xml.dll", + "contentFiles/any/any/ref/System.dll", + "contentFiles/any/any/ref/WindowsBase.dll", + "contentFiles/any/any/ref/mscorlib.dll", + "contentFiles/any/any/ref/netstandard.dll", + "contentFiles/any/any/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1", + "contentFiles/any/any/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1", + "contentFiles/any/any/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1", + "contentFiles/any/any/runtimes/unix/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/CimCmdlets/CimCmdlets.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Diagnostics.format.ps1xml", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Event.format.ps1xml", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/GetEvent.types.ps1xml", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Diagnostics/Microsoft.PowerShell.Diagnostics.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Host/Microsoft.PowerShell.Host.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Management/Microsoft.PowerShell.Management.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Security/Microsoft.PowerShell.Security.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.PowerShell.Utility/Microsoft.PowerShell.Utility.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/Microsoft.WSMan.Management.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/Microsoft.WSMan.Management/WSMan.format.ps1xml", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psd1", + "contentFiles/any/any/runtimes/win/lib/net6.0/Modules/PSDiagnostics/PSDiagnostics.psm1", + "microsoft.powershell.sdk.7.2.1.nupkg.sha512", + "microsoft.powershell.sdk.nuspec", + "ref/net6.0/Microsoft.PowerShell.Commands.Utility.dll", + "ref/net6.0/Microsoft.PowerShell.Commands.Utility.xml", + "ref/net6.0/Microsoft.PowerShell.ConsoleHost.dll", + "ref/net6.0/Microsoft.PowerShell.ConsoleHost.xml", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.SDK.dll", + "runtimes/win/lib/net6.0/Microsoft.PowerShell.SDK.dll" + ] + }, + "Microsoft.PowerShell.Security/7.2.1": { + "sha512": "GV3RuuOmXHAaEjeBcyixdzUIAQvHW6xgoWwafzTe97DbhI+N1sg4fa/FQ9pd8lqG+kkWxGwTy1VgudXX6rhUkg==", + "type": "package", + "path": "microsoft.powershell.security/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.powershell.security.7.2.1.nupkg.sha512", + "microsoft.powershell.security.nuspec", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/unix/lib/net6.0/Microsoft.PowerShell.Security.dll", + "runtimes/win/lib/net6.0/Microsoft.PowerShell.Security.dll" + ] + }, + "Microsoft.TestPlatform.ObjectModel/16.11.0": { + "sha512": "EiknJx9N9Z30gs7R+HHhki7fA8EiiM3pwD1vkw3bFsBC8kdVq/O7mHf1hrg5aJp+ASO6BoOzQueD2ysfTOy/Bg==", + "type": "package", + "path": "microsoft.testplatform.objectmodel/16.11.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE_NET.txt", + "lib/net45/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/net45/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/net45/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/net45/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/net451/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/net451/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/net451/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net451/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net451/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp1.0/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netcoreapp1.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netcoreapp1.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp1.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp1.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp1.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp1.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp1.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp1.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp1.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp1.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp1.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp1.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp1.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp1.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp1.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp1.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp1.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp1.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp1.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp1.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp1.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp1.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp1.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp1.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp1.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netstandard1.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netstandard1.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netstandard1.3/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netstandard1.3/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netstandard1.3/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard1.3/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard1.3/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/uap10.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/uap10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/uap10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "microsoft.testplatform.objectmodel.16.11.0.nupkg.sha512", + "microsoft.testplatform.objectmodel.nuspec" + ] + }, + "Microsoft.TestPlatform.TestHost/16.11.0": { + "sha512": "/Q+R0EcCJE8JaYCk+bGReicw/xrB0HhecrYrUcLbn95BnAlaTJrZhoLkUhvtKTAVtqX/AIKWXYtutiU/Q6QUgg==", + "type": "package", + "path": "microsoft.testplatform.testhost/16.11.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE_NET.txt", + "ThirdPartyNotices.txt", + "build/netcoreapp1.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "build/netcoreapp1.0/Microsoft.TestPlatform.TestHost.props", + "build/netcoreapp1.0/x64/Microsoft.TestPlatform.PlatformAbstractions.dll", + "build/netcoreapp1.0/x64/testhost.dll", + "build/netcoreapp1.0/x64/testhost.exe", + "build/netcoreapp1.0/x86/Microsoft.TestPlatform.PlatformAbstractions.dll", + "build/netcoreapp1.0/x86/testhost.x86.dll", + "build/netcoreapp1.0/x86/testhost.x86.exe", + "build/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll", + "build/netcoreapp2.1/Microsoft.TestPlatform.TestHost.props", + "build/netcoreapp2.1/x64/Microsoft.TestPlatform.PlatformAbstractions.dll", + "build/netcoreapp2.1/x64/testhost.dll", + "build/netcoreapp2.1/x64/testhost.exe", + "build/netcoreapp2.1/x86/Microsoft.TestPlatform.PlatformAbstractions.dll", + "build/netcoreapp2.1/x86/testhost.x86.dll", + "build/netcoreapp2.1/x86/testhost.x86.exe", + "build/uap10.0/Microsoft.TestPlatform.TestHost.props", + "build/uap10.0/Microsoft.TestPlatform.TestHost.targets", + "build/uap10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/cs/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/de/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/es/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/fr/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/it/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/ja/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/ko/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/pl/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/pt-BR/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/ru/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/tr/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/x64/msdia140.dll", + "build/uap10.0/x86/msdia140.dll", + "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.TestPlatform.Utilities.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net45/_._", + "lib/netcoreapp1.0/Microsoft.TestPlatform.CommunicationUtilities.dll", + "lib/netcoreapp1.0/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netcoreapp1.0/Microsoft.TestPlatform.CrossPlatEngine.dll", + "lib/netcoreapp1.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netcoreapp1.0/Microsoft.TestPlatform.Utilities.dll", + "lib/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.Common.dll", + "lib/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netcoreapp1.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/testhost.deps.json", + "lib/netcoreapp1.0/testhost.dll", + "lib/netcoreapp1.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/x64/msdia140.dll", + "lib/netcoreapp1.0/x86/msdia140.dll", + "lib/netcoreapp1.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp1.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp1.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll", + "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll", + "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll", + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll", + "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/testhost.deps.json", + "lib/netcoreapp2.1/testhost.dll", + "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/x64/msdia140.dll", + "lib/netcoreapp2.1/x86/msdia140.dll", + "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/uap10.0/Microsoft.TestPlatform.CommunicationUtilities.dll", + "lib/uap10.0/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/uap10.0/Microsoft.TestPlatform.CrossPlatEngine.dll", + "lib/uap10.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/uap10.0/Microsoft.TestPlatform.Utilities.dll", + "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.Common.dll", + "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/uap10.0/testhost.dll", + "microsoft.testplatform.testhost.16.11.0.nupkg.sha512", + "microsoft.testplatform.testhost.nuspec" + ] + }, + "Microsoft.Win32.Primitives/4.3.0": { + "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "type": "package", + "path": "microsoft.win32.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/Microsoft.Win32.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.win32.primitives.4.3.0.nupkg.sha512", + "microsoft.win32.primitives.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", + "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.Win32.Registry/4.7.0": { + "sha512": "KSrRMb5vNi0CWSGG1++id2ZOs/1QhRqROt+qgbEAdQuGjGrFcl4AOl4/exGPUYz2wUnU42nvJqon1T3U0kPXLA==", + "type": "package", + "path": "microsoft.win32.registry/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.4.7.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/net472/Microsoft.Win32.Registry.dll", + "ref/net472/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.Registry.AccessControl/6.0.0": { + "sha512": "UoE+eeuBKL+GFHxHV3FjHlY5K8Wr/IR7Ee/a2oDNqFodF1iMqyt5hIs0U9Z217AbWrHrNle4750kD03hv1IMZw==", + "type": "package", + "path": "microsoft.win32.registry.accesscontrol/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.Registry.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Win32.Registry.AccessControl.dll", + "lib/net461/Microsoft.Win32.Registry.AccessControl.xml", + "lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll", + "lib/net6.0/Microsoft.Win32.Registry.AccessControl.xml", + "lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.xml", + "microsoft.win32.registry.accesscontrol.6.0.0.nupkg.sha512", + "microsoft.win32.registry.accesscontrol.nuspec", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.AccessControl.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.AccessControl.xml", + "runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.Registry.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.AccessControl.xml", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Win32.SystemEvents/6.0.0": { + "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==", + "type": "package", + "path": "microsoft.win32.systemevents/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Windows.Compatibility/6.0.0": { + "sha512": "9esuK5JqnjkDgO9/AHesyJSG0aKwpfLVzTw6nIGYhqE91VLxZyv3HKulNoPVy/NOuyAaf1kE4FKtdZDzdd/SLw==", + "type": "package", + "path": "microsoft.windows.compatibility/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/Microsoft.Windows.Compatibility.targets", + "buildTransitive/netcoreapp3.1/_._", + "microsoft.windows.compatibility.6.0.0.nupkg.sha512", + "microsoft.windows.compatibility.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.WSMan.Management/7.2.1": { + "sha512": "vMOJMof4eLql180G4PmTurN8h8+VmPaf1l/Tqq+GI7HYyNv140iY3/Z18MiZA4dRG14qghLNo5JxtTolY7b4og==", + "type": "package", + "path": "microsoft.wsman.management/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.wsman.management.7.2.1.nupkg.sha512", + "microsoft.wsman.management.nuspec", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/win/lib/net6.0/Microsoft.WSMan.Management.dll" + ] + }, + "Microsoft.WSMan.Runtime/7.2.1": { + "sha512": "v14vzUXIg7opXoQI8Eb82dvsRwBNylZ44lvyXOBSRCiVfvMhyTqE8bpPWbwwmQ5JZRnG/dP5/aOYuu9l163fyQ==", + "type": "package", + "path": "microsoft.wsman.runtime/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "microsoft.wsman.runtime.7.2.1.nupkg.sha512", + "microsoft.wsman.runtime.nuspec", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/win/lib/net6.0/Microsoft.WSMan.Runtime.dll" + ] + }, + "Moq/4.16.1": { + "sha512": "bw3R9q8cVNhWXNpnvWb0OGP4HadS4zvClq+T1zf7AF+tLY1haZ2AvbHidQekf4PDv1T40c6brZeT/V0IBq7cEQ==", + "type": "package", + "path": "moq/4.16.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Moq.dll", + "lib/net45/Moq.xml", + "lib/netstandard2.0/Moq.dll", + "lib/netstandard2.0/Moq.xml", + "lib/netstandard2.1/Moq.dll", + "lib/netstandard2.1/Moq.xml", + "moq.4.16.1.nupkg.sha512", + "moq.nuspec", + "moq.png" + ] + }, + "Namotion.Reflection/2.0.3": { + "sha512": "tZCe/UrSBAMW8A4TjD/SlpRHaWjnHlSWdyRuOXhf3yrE0OX+4fXg0uzj7mwFDclXznfCGRAZbP+akPt4G/mclw==", + "type": "package", + "path": "namotion.reflection/2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net40/Namotion.Reflection.dll", + "lib/net40/Namotion.Reflection.xml", + "lib/net45/Namotion.Reflection.dll", + "lib/net45/Namotion.Reflection.xml", + "lib/netstandard1.0/Namotion.Reflection.dll", + "lib/netstandard1.0/Namotion.Reflection.xml", + "lib/netstandard2.0/Namotion.Reflection.dll", + "lib/netstandard2.0/Namotion.Reflection.xml", + "namotion.reflection.2.0.3.nupkg.sha512", + "namotion.reflection.nuspec" + ] + }, + "NETStandard.Library/1.6.1": { + "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "type": "package", + "path": "netstandard.library/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "netstandard.library.1.6.1.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "Newtonsoft.Json/13.0.1": { + "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "type": "package", + "path": "newtonsoft.json/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "NJsonSchema/10.5.2": { + "sha512": "Vr2CbySuXh74TQFU0rGJYZOS492xOE64cPXdB7a0cfXJb/N45Bf4v7sd4LOla0jNhgc5V/B61Ko3qecriL195w==", + "type": "package", + "path": "njsonschema/10.5.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "NuGetIcon.png", + "lib/net40/NJsonSchema.dll", + "lib/net40/NJsonSchema.xml", + "lib/net45/NJsonSchema.dll", + "lib/net45/NJsonSchema.xml", + "lib/netstandard1.0/NJsonSchema.dll", + "lib/netstandard1.0/NJsonSchema.xml", + "lib/netstandard2.0/NJsonSchema.dll", + "lib/netstandard2.0/NJsonSchema.xml", + "njsonschema.10.5.2.nupkg.sha512", + "njsonschema.nuspec" + ] + }, + "NLog/4.7.13": { + "sha512": "AvoGpCuq36B+0wY313XA6gC+YeMvk24rqF8P+HS9fInBGOjCzPjpXp2ln9ATZjPOJtXgHfc8zNmTjyswFGLxvg==", + "type": "package", + "path": "nlog/4.7.13", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/monoandroid44/NLog.dll", + "lib/monoandroid44/NLog.xml", + "lib/net35/NLog.dll", + "lib/net35/NLog.xml", + "lib/net40-client/NLog.dll", + "lib/net40-client/NLog.xml", + "lib/net45/NLog.dll", + "lib/net45/NLog.xml", + "lib/netstandard1.3/NLog.dll", + "lib/netstandard1.3/NLog.xml", + "lib/netstandard1.5/NLog.dll", + "lib/netstandard1.5/NLog.xml", + "lib/netstandard2.0/NLog.dll", + "lib/netstandard2.0/NLog.xml", + "lib/sl4/NLog.dll", + "lib/sl4/NLog.xml", + "lib/sl5/NLog.dll", + "lib/sl5/NLog.xml", + "lib/wp8/NLog.dll", + "lib/wp8/NLog.xml", + "lib/xamarinios10/NLog.dll", + "lib/xamarinios10/NLog.xml", + "nlog.4.7.13.nupkg.sha512", + "nlog.nuspec" + ] + }, + "NuGet.Frameworks/5.0.0": { + "sha512": "c5JVjuVAm4f7E9Vj+v09Z9s2ZsqFDjBpcsyS3M9xRo0bEdm/LVZSzLxxNvfvAwRiiE8nwe1h2G4OwiwlzFKXlA==", + "type": "package", + "path": "nuget.frameworks/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net40/NuGet.Frameworks.dll", + "lib/net40/NuGet.Frameworks.xml", + "lib/net472/NuGet.Frameworks.dll", + "lib/net472/NuGet.Frameworks.xml", + "lib/netstandard2.0/NuGet.Frameworks.dll", + "lib/netstandard2.0/NuGet.Frameworks.xml", + "nuget.frameworks.5.0.0.nupkg.sha512", + "nuget.frameworks.nuspec" + ] + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "type": "package", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "type": "package", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "type": "package", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.linux-arm.runtime.native.System.IO.Ports/6.0.0": { + "sha512": "75q52H7CSpgIoIDwXb9o833EvBZIXJ0mdPhz1E6jSisEXUBlSCPalC29cj3EXsjpuDwr0dj1LRXZepIQH/oL4Q==", + "type": "package", + "path": "runtime.linux-arm.runtime.native.system.io.ports/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.linux-arm.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "runtime.linux-arm.runtime.native.system.io.ports.nuspec", + "runtimes/linux-arm/native/libSystem.IO.Ports.Native.so", + "useSharedDesignerContext.txt" + ] + }, + "runtime.linux-arm64.runtime.native.System.IO.Ports/6.0.0": { + "sha512": "xn2bMThmXr3CsvOYmS8ex2Yz1xo+kcnhVg2iVhS9PlmqjZPAkrEo/I40wjrBZH/tU4kvH0s1AE8opAvQ3KIS8g==", + "type": "package", + "path": "runtime.linux-arm64.runtime.native.system.io.ports/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.linux-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "runtime.linux-arm64.runtime.native.system.io.ports.nuspec", + "runtimes/linux-arm64/native/libSystem.IO.Ports.Native.so", + "useSharedDesignerContext.txt" + ] + }, + "runtime.linux-x64.runtime.native.System.IO.Ports/6.0.0": { + "sha512": "16nbNXwv0sC+gLGIuecri0skjuh6R1maIJggsaNP7MQBcbVcEfWFUOkEnsnvoLEjy0XerfibuRptfQ8AmdIcWA==", + "type": "package", + "path": "runtime.linux-x64.runtime.native.system.io.ports/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.linux-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "runtime.linux-x64.runtime.native.system.io.ports.nuspec", + "runtimes/linux-x64/native/libSystem.IO.Ports.Native.so", + "useSharedDesignerContext.txt" + ] + }, + "runtime.native.System/4.3.0": { + "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "type": "package", + "path": "runtime.native.system/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.4.3.0.nupkg.sha512", + "runtime.native.system.nuspec" + ] + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "sha512": "9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", + "type": "package", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", + "runtime.native.system.data.sqlclient.sni.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.native.System.IO.Compression/4.3.0": { + "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "type": "package", + "path": "runtime.native.system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "runtime.native.system.io.compression.nuspec" + ] + }, + "runtime.native.System.IO.Ports/6.0.0": { + "sha512": "KaaXlpOcuZjMdmyF5wzzx3b+PRKIzt6A5Ax9dKenPDQbVJAFpev+casD0BIig1pBcbs3zx7CqWemzUJKAeHdSQ==", + "type": "package", + "path": "runtime.native.system.io.ports/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "runtime.native.system.io.ports.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "runtime.native.System.Net.Http/4.3.0": { + "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "type": "package", + "path": "runtime.native.system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.net.http.4.3.0.nupkg.sha512", + "runtime.native.system.net.http.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "type": "package", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.apple.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "type": "package", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.native.system.security.cryptography.openssl.nuspec" + ] + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "type": "package", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "type": "package", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.osx-arm64.runtime.native.System.IO.Ports/6.0.0": { + "sha512": "fXG12NodG1QrCdoaeSQ1gVnk/koi4WYY4jZtarMkZeQMyReBm1nZlSRoPnUjLr2ZR36TiMjpcGnQfxymieUe7w==", + "type": "package", + "path": "runtime.osx-arm64.runtime.native.system.io.ports/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.osx-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "runtime.osx-arm64.runtime.native.system.io.ports.nuspec", + "runtimes/osx-arm64/native/libSystem.IO.Ports.Native.dylib", + "useSharedDesignerContext.txt" + ] + }, + "runtime.osx-x64.runtime.native.System.IO.Ports/6.0.0": { + "sha512": "/As+zPY49+dSUXkh+fTUbyPhqrdGN//evLxo4Vue88pfh1BHZgF7q4kMblTkxYvwR6Vi03zSYxysSFktO8/SDQ==", + "type": "package", + "path": "runtime.osx-x64.runtime.native.system.io.ports/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "runtime.osx-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "runtime.osx-x64.runtime.native.system.io.ports.nuspec", + "runtimes/osx-x64/native/libSystem.IO.Ports.Native.dylib", + "useSharedDesignerContext.txt" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" + ] + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "type": "package", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" + ] + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "type": "package", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "type": "package", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "type": "package", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "type": "package", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", + "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" + ] + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "type": "package", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-arm64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "type": "package", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x64.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x64/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "sha512": "YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "type": "package", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "runtime.win-x86.runtime.native.system.data.sqlclient.sni.nuspec", + "runtimes/win-x86/native/sni.dll", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.AppContext/4.3.0": { + "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "type": "package", + "path": "system.appcontext/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net463/System.AppContext.dll", + "lib/netcore50/System.AppContext.dll", + "lib/netstandard1.6/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.AppContext.dll", + "ref/net463/System.AppContext.dll", + "ref/netstandard/_._", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.6/System.AppContext.dll", + "ref/netstandard1.6/System.AppContext.xml", + "ref/netstandard1.6/de/System.AppContext.xml", + "ref/netstandard1.6/es/System.AppContext.xml", + "ref/netstandard1.6/fr/System.AppContext.xml", + "ref/netstandard1.6/it/System.AppContext.xml", + "ref/netstandard1.6/ja/System.AppContext.xml", + "ref/netstandard1.6/ko/System.AppContext.xml", + "ref/netstandard1.6/ru/System.AppContext.xml", + "ref/netstandard1.6/zh-hans/System.AppContext.xml", + "ref/netstandard1.6/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.AppContext.dll", + "system.appcontext.4.3.0.nupkg.sha512", + "system.appcontext.nuspec" + ] + }, + "System.Buffers/4.3.0": { + "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "type": "package", + "path": "system.buffers/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.1/.xml", + "lib/netstandard1.1/System.Buffers.dll", + "system.buffers.4.3.0.nupkg.sha512", + "system.buffers.nuspec" + ] + }, + "System.CodeDom/6.0.0": { + "sha512": "CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "type": "package", + "path": "system.codedom/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.CodeDom.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.CodeDom.dll", + "lib/net461/System.CodeDom.xml", + "lib/net6.0/System.CodeDom.dll", + "lib/net6.0/System.CodeDom.xml", + "lib/netstandard2.0/System.CodeDom.dll", + "lib/netstandard2.0/System.CodeDom.xml", + "system.codedom.6.0.0.nupkg.sha512", + "system.codedom.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Collections/4.3.0": { + "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "type": "package", + "path": "system.collections/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.4.3.0.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Collections.Concurrent/4.3.0": { + "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "type": "package", + "path": "system.collections.concurrent/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.concurrent.4.3.0.nupkg.sha512", + "system.collections.concurrent.nuspec" + ] + }, + "System.Collections.Immutable/5.0.0": { + "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", + "type": "package", + "path": "system.collections.immutable/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Collections.Immutable.dll", + "lib/net461/System.Collections.Immutable.xml", + "lib/netstandard1.0/System.Collections.Immutable.dll", + "lib/netstandard1.0/System.Collections.Immutable.xml", + "lib/netstandard1.3/System.Collections.Immutable.dll", + "lib/netstandard1.3/System.Collections.Immutable.xml", + "lib/netstandard2.0/System.Collections.Immutable.dll", + "lib/netstandard2.0/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", + "system.collections.immutable.5.0.0.nupkg.sha512", + "system.collections.immutable.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections.NonGeneric/4.3.0": { + "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", + "type": "package", + "path": "system.collections.nongeneric/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.NonGeneric.dll", + "lib/netstandard1.3/System.Collections.NonGeneric.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.dll", + "ref/netstandard1.3/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", + "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.nongeneric.4.3.0.nupkg.sha512", + "system.collections.nongeneric.nuspec" + ] + }, + "System.Collections.Specialized/4.3.0": { + "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "type": "package", + "path": "system.collections.specialized/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Collections.Specialized.dll", + "lib/netstandard1.3/System.Collections.Specialized.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.dll", + "ref/netstandard1.3/System.Collections.Specialized.xml", + "ref/netstandard1.3/de/System.Collections.Specialized.xml", + "ref/netstandard1.3/es/System.Collections.Specialized.xml", + "ref/netstandard1.3/fr/System.Collections.Specialized.xml", + "ref/netstandard1.3/it/System.Collections.Specialized.xml", + "ref/netstandard1.3/ja/System.Collections.Specialized.xml", + "ref/netstandard1.3/ko/System.Collections.Specialized.xml", + "ref/netstandard1.3/ru/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.collections.specialized.4.3.0.nupkg.sha512", + "system.collections.specialized.nuspec" + ] + }, + "System.ComponentModel/4.3.0": { + "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", + "type": "package", + "path": "system.componentmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/netstandard1.3/System.ComponentModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/netcore50/de/System.ComponentModel.xml", + "ref/netcore50/es/System.ComponentModel.xml", + "ref/netcore50/fr/System.ComponentModel.xml", + "ref/netcore50/it/System.ComponentModel.xml", + "ref/netcore50/ja/System.ComponentModel.xml", + "ref/netcore50/ko/System.ComponentModel.xml", + "ref/netcore50/ru/System.ComponentModel.xml", + "ref/netcore50/zh-hans/System.ComponentModel.xml", + "ref/netcore50/zh-hant/System.ComponentModel.xml", + "ref/netstandard1.0/System.ComponentModel.dll", + "ref/netstandard1.0/System.ComponentModel.xml", + "ref/netstandard1.0/de/System.ComponentModel.xml", + "ref/netstandard1.0/es/System.ComponentModel.xml", + "ref/netstandard1.0/fr/System.ComponentModel.xml", + "ref/netstandard1.0/it/System.ComponentModel.xml", + "ref/netstandard1.0/ja/System.ComponentModel.xml", + "ref/netstandard1.0/ko/System.ComponentModel.xml", + "ref/netstandard1.0/ru/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.4.3.0.nupkg.sha512", + "system.componentmodel.nuspec" + ] + }, + "System.ComponentModel.Composition/6.0.0": { + "sha512": "60Qv+F7oxomOjJeTDA5Z4iCyFbQ0B/2Mi5HT+13pxxq0lVnu2ipbWMzFB+RWKr3wWKA8BSncXr9PH/fECwMX5Q==", + "type": "package", + "path": "system.componentmodel.composition/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.ComponentModel.Composition.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.ComponentModel.Composition.dll", + "lib/net6.0/System.ComponentModel.Composition.xml", + "lib/netcoreapp3.1/System.ComponentModel.Composition.dll", + "lib/netcoreapp3.1/System.ComponentModel.Composition.xml", + "lib/netstandard2.0/System.ComponentModel.Composition.dll", + "lib/netstandard2.0/System.ComponentModel.Composition.xml", + "system.componentmodel.composition.6.0.0.nupkg.sha512", + "system.componentmodel.composition.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.ComponentModel.Composition.Registration/6.0.0": { + "sha512": "+i3RLlOgTsf15VeADBPpzPyRiXq71aLSuzdHeNtmq9f6BwpF3OWhB76p0WDUNCa3Z+SLD4dJbBM9yAep7kQCGA==", + "type": "package", + "path": "system.componentmodel.composition.registration/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.ComponentModel.Composition.Registration.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.ComponentModel.Composition.Registration.dll", + "lib/net6.0/System.ComponentModel.Composition.Registration.xml", + "lib/netstandard2.1/System.ComponentModel.Composition.Registration.dll", + "lib/netstandard2.1/System.ComponentModel.Composition.Registration.xml", + "system.componentmodel.composition.registration.6.0.0.nupkg.sha512", + "system.componentmodel.composition.registration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.ComponentModel.Primitives/4.3.0": { + "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", + "type": "package", + "path": "system.componentmodel.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.Primitives.dll", + "lib/netstandard1.0/System.ComponentModel.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.primitives.4.3.0.nupkg.sha512", + "system.componentmodel.primitives.nuspec" + ] + }, + "System.ComponentModel.TypeConverter/4.3.0": { + "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", + "type": "package", + "path": "system.componentmodel.typeconverter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.TypeConverter.dll", + "lib/net462/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.TypeConverter.dll", + "ref/net462/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "system.componentmodel.typeconverter.nuspec" + ] + }, + "System.Configuration.ConfigurationManager/6.0.0": { + "sha512": "7T+m0kDSlIPTHIkPMIu6m6tV6qsMqJpvQWW2jIc2qi7sn40qxFo0q+7mEQAhMPXZHMKnWrnv47ntGlM/ejvw3g==", + "type": "package", + "path": "system.configuration.configurationmanager/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/net461/System.Configuration.ConfigurationManager.xml", + "lib/net6.0/System.Configuration.ConfigurationManager.dll", + "lib/net6.0/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.dll", + "runtimes/win/lib/net461/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.6.0.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Console/4.3.0": { + "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "type": "package", + "path": "system.console/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.console.4.3.0.nupkg.sha512", + "system.console.nuspec" + ] + }, + "System.Data.Odbc/6.0.0": { + "sha512": "pnZjwe0Qwr1Rnp7NExd5zz4YwXJrYuAbWNKjEQpTzCEg6f/L5DYJS7w3hG3vgSj1t/r79UL390YzXIklf1VuQQ==", + "type": "package", + "path": "system.data.odbc/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Data.Odbc.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Data.Odbc.dll", + "lib/net461/System.Data.Odbc.xml", + "lib/net6.0/System.Data.Odbc.dll", + "lib/net6.0/System.Data.Odbc.xml", + "lib/netcoreapp3.1/System.Data.Odbc.dll", + "lib/netcoreapp3.1/System.Data.Odbc.xml", + "lib/netstandard2.0/System.Data.Odbc.dll", + "lib/netstandard2.0/System.Data.Odbc.xml", + "runtimes/freebsd/lib/net6.0/System.Data.Odbc.dll", + "runtimes/freebsd/lib/net6.0/System.Data.Odbc.xml", + "runtimes/freebsd/lib/netcoreapp3.1/System.Data.Odbc.dll", + "runtimes/freebsd/lib/netcoreapp3.1/System.Data.Odbc.xml", + "runtimes/illumos/lib/net6.0/System.Data.Odbc.dll", + "runtimes/illumos/lib/net6.0/System.Data.Odbc.xml", + "runtimes/ios/lib/net6.0/System.Data.Odbc.dll", + "runtimes/ios/lib/net6.0/System.Data.Odbc.xml", + "runtimes/linux/lib/net6.0/System.Data.Odbc.dll", + "runtimes/linux/lib/net6.0/System.Data.Odbc.xml", + "runtimes/linux/lib/netcoreapp3.1/System.Data.Odbc.dll", + "runtimes/linux/lib/netcoreapp3.1/System.Data.Odbc.xml", + "runtimes/osx/lib/net6.0/System.Data.Odbc.dll", + "runtimes/osx/lib/net6.0/System.Data.Odbc.xml", + "runtimes/osx/lib/netcoreapp3.1/System.Data.Odbc.dll", + "runtimes/osx/lib/netcoreapp3.1/System.Data.Odbc.xml", + "runtimes/solaris/lib/net6.0/System.Data.Odbc.dll", + "runtimes/solaris/lib/net6.0/System.Data.Odbc.xml", + "runtimes/tvos/lib/net6.0/System.Data.Odbc.dll", + "runtimes/tvos/lib/net6.0/System.Data.Odbc.xml", + "runtimes/win/lib/net461/System.Data.Odbc.dll", + "runtimes/win/lib/net461/System.Data.Odbc.xml", + "runtimes/win/lib/net6.0/System.Data.Odbc.dll", + "runtimes/win/lib/net6.0/System.Data.Odbc.xml", + "runtimes/win/lib/netcoreapp3.1/System.Data.Odbc.dll", + "runtimes/win/lib/netcoreapp3.1/System.Data.Odbc.xml", + "system.data.odbc.6.0.0.nupkg.sha512", + "system.data.odbc.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Data.OleDb/6.0.0": { + "sha512": "LQ8PjTIF1LtrrlGiyiTVjAkQtTWKm9GSNnygIlWjhN9y88s7xhy6DUNDDkmQQ9f6ex7mA4k0Tl97lz/CklaiLg==", + "type": "package", + "path": "system.data.oledb/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Data.OleDb.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Data.OleDb.dll", + "lib/net461/System.Data.OleDb.xml", + "lib/net6.0/System.Data.OleDb.dll", + "lib/net6.0/System.Data.OleDb.xml", + "lib/netstandard2.0/System.Data.OleDb.dll", + "lib/netstandard2.0/System.Data.OleDb.xml", + "runtimes/win/lib/net461/System.Data.OleDb.dll", + "runtimes/win/lib/net461/System.Data.OleDb.xml", + "runtimes/win/lib/net6.0/System.Data.OleDb.dll", + "runtimes/win/lib/net6.0/System.Data.OleDb.xml", + "runtimes/win/lib/netstandard2.0/System.Data.OleDb.dll", + "runtimes/win/lib/netstandard2.0/System.Data.OleDb.xml", + "system.data.oledb.6.0.0.nupkg.sha512", + "system.data.oledb.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Data.SqlClient/4.8.3": { + "sha512": "yERfVLXAY0QbylAgaGLByYN0hFxX28aeEQ0hUgJO+Ntn1AfmWl5HHUoYJA0Yl9HhIUUJHVaS/Sw/RLZr5aaC+A==", + "type": "package", + "path": "system.data.sqlclient/4.8.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/System.Data.SqlClient.dll", + "lib/net46/System.Data.SqlClient.dll", + "lib/net461/System.Data.SqlClient.dll", + "lib/net461/System.Data.SqlClient.xml", + "lib/netcoreapp2.1/System.Data.SqlClient.dll", + "lib/netcoreapp2.1/System.Data.SqlClient.xml", + "lib/netstandard1.2/System.Data.SqlClient.dll", + "lib/netstandard1.2/System.Data.SqlClient.xml", + "lib/netstandard1.3/System.Data.SqlClient.dll", + "lib/netstandard1.3/System.Data.SqlClient.xml", + "lib/netstandard2.0/System.Data.SqlClient.dll", + "lib/netstandard2.0/System.Data.SqlClient.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/System.Data.SqlClient.dll", + "ref/net46/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.dll", + "ref/net461/System.Data.SqlClient.xml", + "ref/netcoreapp2.1/System.Data.SqlClient.dll", + "ref/netcoreapp2.1/System.Data.SqlClient.xml", + "ref/netstandard1.2/System.Data.SqlClient.dll", + "ref/netstandard1.2/System.Data.SqlClient.xml", + "ref/netstandard1.2/de/System.Data.SqlClient.xml", + "ref/netstandard1.2/es/System.Data.SqlClient.xml", + "ref/netstandard1.2/fr/System.Data.SqlClient.xml", + "ref/netstandard1.2/it/System.Data.SqlClient.xml", + "ref/netstandard1.2/ja/System.Data.SqlClient.xml", + "ref/netstandard1.2/ko/System.Data.SqlClient.xml", + "ref/netstandard1.2/ru/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard1.3/System.Data.SqlClient.dll", + "ref/netstandard1.3/System.Data.SqlClient.xml", + "ref/netstandard1.3/de/System.Data.SqlClient.xml", + "ref/netstandard1.3/es/System.Data.SqlClient.xml", + "ref/netstandard1.3/fr/System.Data.SqlClient.xml", + "ref/netstandard1.3/it/System.Data.SqlClient.xml", + "ref/netstandard1.3/ja/System.Data.SqlClient.xml", + "ref/netstandard1.3/ko/System.Data.SqlClient.xml", + "ref/netstandard1.3/ru/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard2.0/System.Data.SqlClient.dll", + "ref/netstandard2.0/System.Data.SqlClient.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.xml", + "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/System.Data.SqlClient.xml", + "runtimes/win/lib/net451/System.Data.SqlClient.dll", + "runtimes/win/lib/net46/System.Data.SqlClient.dll", + "runtimes/win/lib/net461/System.Data.SqlClient.dll", + "runtimes/win/lib/net461/System.Data.SqlClient.xml", + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll", + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.xml", + "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/System.Data.SqlClient.xml", + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.dll", + "runtimes/win/lib/uap10.0.16299/System.Data.SqlClient.xml", + "system.data.sqlclient.4.8.3.nupkg.sha512", + "system.data.sqlclient.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.Debug/4.3.0": { + "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "type": "package", + "path": "system.diagnostics.debug/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.debug.4.3.0.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/5.0.0": { + "sha512": "tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/System.Diagnostics.DiagnosticSource.dll", + "lib/net45/System.Diagnostics.DiagnosticSource.xml", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.EventLog/6.0.0": { + "sha512": "lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "type": "package", + "path": "system.diagnostics.eventlog/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.EventLog.dll", + "lib/net461/System.Diagnostics.EventLog.xml", + "lib/net6.0/System.Diagnostics.EventLog.dll", + "lib/net6.0/System.Diagnostics.EventLog.xml", + "lib/netcoreapp3.1/System.Diagnostics.EventLog.dll", + "lib/netcoreapp3.1/System.Diagnostics.EventLog.xml", + "lib/netstandard2.0/System.Diagnostics.EventLog.dll", + "lib/netstandard2.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.6.0.0.nupkg.sha512", + "system.diagnostics.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.PerformanceCounter/6.0.0": { + "sha512": "gbeE5tNp/oB7O8kTTLh3wPPJCxpNOphXPTWVs1BsYuFOYapFijWuh0LYw1qnDo4gwDUYPXOmpTIhvtxisGsYOQ==", + "type": "package", + "path": "system.diagnostics.performancecounter/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.PerformanceCounter.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.PerformanceCounter.dll", + "lib/net461/System.Diagnostics.PerformanceCounter.xml", + "lib/net6.0/System.Diagnostics.PerformanceCounter.dll", + "lib/net6.0/System.Diagnostics.PerformanceCounter.xml", + "lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.dll", + "lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.xml", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.dll", + "lib/netstandard2.0/System.Diagnostics.PerformanceCounter.xml", + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.PerformanceCounter.xml", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.dll", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.PerformanceCounter.xml", + "system.diagnostics.performancecounter.6.0.0.nupkg.sha512", + "system.diagnostics.performancecounter.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.Tools/4.3.0": { + "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "type": "package", + "path": "system.diagnostics.tools/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tools.4.3.0.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.Diagnostics.TraceSource/4.3.0": { + "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", + "type": "package", + "path": "system.diagnostics.tracesource/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.TraceSource.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.TraceSource.dll", + "ref/netstandard1.3/System.Diagnostics.TraceSource.dll", + "ref/netstandard1.3/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", + "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll", + "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", + "system.diagnostics.tracesource.4.3.0.nupkg.sha512", + "system.diagnostics.tracesource.nuspec" + ] + }, + "System.Diagnostics.Tracing/4.3.0": { + "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "type": "package", + "path": "system.diagnostics.tracing/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Diagnostics.Tracing.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.dll", + "ref/netcore50/System.Diagnostics.Tracing.xml", + "ref/netcore50/de/System.Diagnostics.Tracing.xml", + "ref/netcore50/es/System.Diagnostics.Tracing.xml", + "ref/netcore50/fr/System.Diagnostics.Tracing.xml", + "ref/netcore50/it/System.Diagnostics.Tracing.xml", + "ref/netcore50/ja/System.Diagnostics.Tracing.xml", + "ref/netcore50/ko/System.Diagnostics.Tracing.xml", + "ref/netcore50/ru/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/System.Diagnostics.Tracing.dll", + "ref/netstandard1.1/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/System.Diagnostics.Tracing.dll", + "ref/netstandard1.2/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/System.Diagnostics.Tracing.dll", + "ref/netstandard1.3/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/System.Diagnostics.Tracing.dll", + "ref/netstandard1.5/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", + "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.diagnostics.tracing.4.3.0.nupkg.sha512", + "system.diagnostics.tracing.nuspec" + ] + }, + "System.DirectoryServices/6.0.0": { + "sha512": "kp/Op0nxDVGlElDKh8TsXO0GKXftQgAB6sJk0wUetZK1Rr0Pbd86Tn7AllLLlROFZa4BTl/LVHakljtGELFzCg==", + "type": "package", + "path": "system.directoryservices/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.DirectoryServices.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.DirectoryServices.dll", + "lib/net6.0/System.DirectoryServices.xml", + "lib/netcoreapp3.1/System.DirectoryServices.dll", + "lib/netcoreapp3.1/System.DirectoryServices.xml", + "lib/netstandard2.0/System.DirectoryServices.dll", + "lib/netstandard2.0/System.DirectoryServices.xml", + "runtimes/win/lib/net6.0/System.DirectoryServices.dll", + "runtimes/win/lib/net6.0/System.DirectoryServices.xml", + "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.dll", + "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.xml", + "system.directoryservices.6.0.0.nupkg.sha512", + "system.directoryservices.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.DirectoryServices.AccountManagement/6.0.0": { + "sha512": "2iKkY6VC4WX6H13N8WhH2SRUfWCwg2KZR5w9JIS9cw9N8cZhT7VXxHX0L6OX6Po419aSu2LWrJE9tu6b+cUnPA==", + "type": "package", + "path": "system.directoryservices.accountmanagement/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.DirectoryServices.AccountManagement.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.DirectoryServices.AccountManagement.dll", + "lib/net6.0/System.DirectoryServices.AccountManagement.xml", + "lib/netcoreapp3.1/System.DirectoryServices.AccountManagement.dll", + "lib/netcoreapp3.1/System.DirectoryServices.AccountManagement.xml", + "lib/netstandard2.0/System.DirectoryServices.AccountManagement.dll", + "lib/netstandard2.0/System.DirectoryServices.AccountManagement.xml", + "runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll", + "runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.xml", + "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.AccountManagement.dll", + "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.AccountManagement.xml", + "system.directoryservices.accountmanagement.6.0.0.nupkg.sha512", + "system.directoryservices.accountmanagement.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.DirectoryServices.Protocols/6.0.0": { + "sha512": "++WKU7HQPo/FJdhywWw+q2lLjcVAGVw5XLH9kRCV+4DvkhVAcHCksh0ezIqwNROmaU9LMJN0d/LAdeWXu3pi6Q==", + "type": "package", + "path": "system.directoryservices.protocols/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.DirectoryServices.Protocols.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.DirectoryServices.Protocols.dll", + "lib/net6.0/System.DirectoryServices.Protocols.xml", + "lib/netcoreapp3.1/System.DirectoryServices.Protocols.dll", + "lib/netcoreapp3.1/System.DirectoryServices.Protocols.xml", + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll", + "lib/netstandard2.0/System.DirectoryServices.Protocols.xml", + "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll", + "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.xml", + "runtimes/linux/lib/netcoreapp3.1/System.DirectoryServices.Protocols.dll", + "runtimes/linux/lib/netcoreapp3.1/System.DirectoryServices.Protocols.xml", + "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll", + "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.xml", + "runtimes/osx/lib/netcoreapp3.1/System.DirectoryServices.Protocols.dll", + "runtimes/osx/lib/netcoreapp3.1/System.DirectoryServices.Protocols.xml", + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll", + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.xml", + "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.Protocols.dll", + "runtimes/win/lib/netcoreapp3.1/System.DirectoryServices.Protocols.xml", + "system.directoryservices.protocols.6.0.0.nupkg.sha512", + "system.directoryservices.protocols.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Drawing.Common/6.0.0": { + "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==", + "type": "package", + "path": "system.drawing.common/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/net461/System.Drawing.Common.xml", + "lib/net6.0/System.Drawing.Common.dll", + "lib/net6.0/System.Drawing.Common.xml", + "lib/netcoreapp3.1/System.Drawing.Common.dll", + "lib/netcoreapp3.1/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/unix/lib/net6.0/System.Drawing.Common.dll", + "runtimes/unix/lib/net6.0/System.Drawing.Common.xml", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml", + "runtimes/win/lib/net6.0/System.Drawing.Common.dll", + "runtimes/win/lib/net6.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml", + "system.drawing.common.6.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Dynamic.Runtime/4.3.0": { + "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", + "type": "package", + "path": "system.dynamic.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/netstandard1.3/System.Dynamic.Runtime.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/System.Dynamic.Runtime.dll", + "ref/netstandard1.0/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/System.Dynamic.Runtime.dll", + "ref/netstandard1.3/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", + "system.dynamic.runtime.4.3.0.nupkg.sha512", + "system.dynamic.runtime.nuspec" + ] + }, + "System.Formats.Asn1/6.0.0": { + "sha512": "T6fD00dQ3NTbPDy31m4eQUwKW84s03z0N2C8HpOklyeaDgaJPa/TexP4/SkORMSOwc7WhKifnA6Ya33AkzmafA==", + "type": "package", + "path": "system.formats.asn1/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Formats.Asn1.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Formats.Asn1.dll", + "lib/net461/System.Formats.Asn1.xml", + "lib/net6.0/System.Formats.Asn1.dll", + "lib/net6.0/System.Formats.Asn1.xml", + "lib/netstandard2.0/System.Formats.Asn1.dll", + "lib/netstandard2.0/System.Formats.Asn1.xml", + "system.formats.asn1.6.0.0.nupkg.sha512", + "system.formats.asn1.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Globalization/4.3.0": { + "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "type": "package", + "path": "system.globalization/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.4.3.0.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.Globalization.Calendars/4.3.0": { + "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "type": "package", + "path": "system.globalization.calendars/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Calendars.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.dll", + "ref/netstandard1.3/System.Globalization.Calendars.xml", + "ref/netstandard1.3/de/System.Globalization.Calendars.xml", + "ref/netstandard1.3/es/System.Globalization.Calendars.xml", + "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", + "ref/netstandard1.3/it/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", + "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.globalization.calendars.4.3.0.nupkg.sha512", + "system.globalization.calendars.nuspec" + ] + }, + "System.Globalization.Extensions/4.3.0": { + "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "type": "package", + "path": "system.globalization.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Globalization.Extensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.dll", + "ref/netstandard1.3/System.Globalization.Extensions.xml", + "ref/netstandard1.3/de/System.Globalization.Extensions.xml", + "ref/netstandard1.3/es/System.Globalization.Extensions.xml", + "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", + "ref/netstandard1.3/it/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", + "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", + "runtimes/win/lib/net46/System.Globalization.Extensions.dll", + "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", + "system.globalization.extensions.4.3.0.nupkg.sha512", + "system.globalization.extensions.nuspec" + ] + }, + "System.IO/4.3.0": { + "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "type": "package", + "path": "system.io/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.4.3.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.Compression/4.3.0": { + "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "type": "package", + "path": "system.io.compression/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.IO.Compression.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.dll", + "ref/netcore50/System.IO.Compression.xml", + "ref/netcore50/de/System.IO.Compression.xml", + "ref/netcore50/es/System.IO.Compression.xml", + "ref/netcore50/fr/System.IO.Compression.xml", + "ref/netcore50/it/System.IO.Compression.xml", + "ref/netcore50/ja/System.IO.Compression.xml", + "ref/netcore50/ko/System.IO.Compression.xml", + "ref/netcore50/ru/System.IO.Compression.xml", + "ref/netcore50/zh-hans/System.IO.Compression.xml", + "ref/netcore50/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.1/System.IO.Compression.dll", + "ref/netstandard1.1/System.IO.Compression.xml", + "ref/netstandard1.1/de/System.IO.Compression.xml", + "ref/netstandard1.1/es/System.IO.Compression.xml", + "ref/netstandard1.1/fr/System.IO.Compression.xml", + "ref/netstandard1.1/it/System.IO.Compression.xml", + "ref/netstandard1.1/ja/System.IO.Compression.xml", + "ref/netstandard1.1/ko/System.IO.Compression.xml", + "ref/netstandard1.1/ru/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", + "ref/netstandard1.3/System.IO.Compression.dll", + "ref/netstandard1.3/System.IO.Compression.xml", + "ref/netstandard1.3/de/System.IO.Compression.xml", + "ref/netstandard1.3/es/System.IO.Compression.xml", + "ref/netstandard1.3/fr/System.IO.Compression.xml", + "ref/netstandard1.3/it/System.IO.Compression.xml", + "ref/netstandard1.3/ja/System.IO.Compression.xml", + "ref/netstandard1.3/ko/System.IO.Compression.xml", + "ref/netstandard1.3/ru/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", + "runtimes/win/lib/net46/System.IO.Compression.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", + "system.io.compression.4.3.0.nupkg.sha512", + "system.io.compression.nuspec" + ] + }, + "System.IO.Compression.ZipFile/4.3.0": { + "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "type": "package", + "path": "system.io.compression.zipfile/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.Compression.ZipFile.dll", + "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", + "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", + "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.compression.zipfile.4.3.0.nupkg.sha512", + "system.io.compression.zipfile.nuspec" + ] + }, + "System.IO.FileSystem/4.3.0": { + "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "type": "package", + "path": "system.io.filesystem/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.4.3.0.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "type": "package", + "path": "system.io.filesystem.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.IO.Packaging/6.0.0": { + "sha512": "C7OkTRIjqIjAKu6ef/fuj8ynCZTPcTYZnvHaq48bniACgXXJogmEoIc56YCDNTc14xhsbLmgpS3KP+evbsUa2g==", + "type": "package", + "path": "system.io.packaging/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.IO.Packaging.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.IO.Packaging.dll", + "lib/net461/System.IO.Packaging.xml", + "lib/net6.0/System.IO.Packaging.dll", + "lib/net6.0/System.IO.Packaging.xml", + "lib/netstandard2.0/System.IO.Packaging.dll", + "lib/netstandard2.0/System.IO.Packaging.xml", + "system.io.packaging.6.0.0.nupkg.sha512", + "system.io.packaging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.IO.Ports/6.0.0": { + "sha512": "dRyGI7fUESar5ZLIpiBOaaNLW7YyOBGftjj5Of+xcduC/Rjl7RjhEnWDvvNBmHuF3d0tdXoqdVI/yrVA8f00XA==", + "type": "package", + "path": "system.io.ports/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.IO.Ports.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.IO.Ports.dll", + "lib/net461/System.IO.Ports.xml", + "lib/net6.0/System.IO.Ports.dll", + "lib/net6.0/System.IO.Ports.xml", + "lib/netstandard2.0/System.IO.Ports.dll", + "lib/netstandard2.0/System.IO.Ports.xml", + "runtimes/unix/lib/net6.0/System.IO.Ports.dll", + "runtimes/unix/lib/net6.0/System.IO.Ports.xml", + "runtimes/unix/lib/netstandard2.0/System.IO.Ports.dll", + "runtimes/unix/lib/netstandard2.0/System.IO.Ports.xml", + "runtimes/win/lib/net461/System.IO.Ports.dll", + "runtimes/win/lib/net461/System.IO.Ports.xml", + "runtimes/win/lib/net6.0/System.IO.Ports.dll", + "runtimes/win/lib/net6.0/System.IO.Ports.xml", + "runtimes/win/lib/netstandard2.0/System.IO.Ports.dll", + "runtimes/win/lib/netstandard2.0/System.IO.Ports.xml", + "system.io.ports.6.0.0.nupkg.sha512", + "system.io.ports.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Linq/4.3.0": { + "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "type": "package", + "path": "system.linq/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.6/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.6/System.Linq.dll", + "ref/netstandard1.6/System.Linq.xml", + "ref/netstandard1.6/de/System.Linq.xml", + "ref/netstandard1.6/es/System.Linq.xml", + "ref/netstandard1.6/fr/System.Linq.xml", + "ref/netstandard1.6/it/System.Linq.xml", + "ref/netstandard1.6/ja/System.Linq.xml", + "ref/netstandard1.6/ko/System.Linq.xml", + "ref/netstandard1.6/ru/System.Linq.xml", + "ref/netstandard1.6/zh-hans/System.Linq.xml", + "ref/netstandard1.6/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.linq.4.3.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Expressions/4.3.0": { + "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "type": "package", + "path": "system.linq.expressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Linq.Expressions.dll", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.6/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.6/System.Linq.Expressions.dll", + "ref/netstandard1.6/System.Linq.Expressions.xml", + "ref/netstandard1.6/de/System.Linq.Expressions.xml", + "ref/netstandard1.6/es/System.Linq.Expressions.xml", + "ref/netstandard1.6/fr/System.Linq.Expressions.xml", + "ref/netstandard1.6/it/System.Linq.Expressions.xml", + "ref/netstandard1.6/ja/System.Linq.Expressions.xml", + "ref/netstandard1.6/ko/System.Linq.Expressions.xml", + "ref/netstandard1.6/ru/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", + "system.linq.expressions.4.3.0.nupkg.sha512", + "system.linq.expressions.nuspec" + ] + }, + "System.Management/6.0.0": { + "sha512": "sHsESYMmPDhQuOC66h6AEOs/XowzKsbT9srMbX71TCXP58hkpn1BqBjdmKj1+DCA/WlBETX1K5WjQHwmV0Txrg==", + "type": "package", + "path": "system.management/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Management.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.Management.dll", + "lib/net6.0/System.Management.xml", + "lib/netcoreapp3.1/System.Management.dll", + "lib/netcoreapp3.1/System.Management.xml", + "lib/netstandard2.0/System.Management.dll", + "lib/netstandard2.0/System.Management.xml", + "runtimes/win/lib/net6.0/System.Management.dll", + "runtimes/win/lib/net6.0/System.Management.xml", + "runtimes/win/lib/netcoreapp3.1/System.Management.dll", + "runtimes/win/lib/netcoreapp3.1/System.Management.xml", + "system.management.6.0.0.nupkg.sha512", + "system.management.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Management.Automation/7.2.1": { + "sha512": "YlTE+q14vQ1YU//A5+/Jwl5+L5r6uOVIWuB4D/T9r80AaCeUAZMMvTKjgvIr9lwkovwQflVL+1JfBAi9f0q0KA==", + "type": "package", + "path": "system.management.automation/7.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Powershell_black_64.png", + "ref/net6.0/System.Management.Automation.dll", + "ref/net6.0/System.Management.Automation.xml", + "runtimes/unix/lib/net6.0/System.Management.Automation.dll", + "runtimes/win/lib/net6.0/System.Management.Automation.dll", + "system.management.automation.7.2.1.nupkg.sha512", + "system.management.automation.nuspec" + ] + }, + "System.Memory/4.5.4": { + "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "type": "package", + "path": "system.memory/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/System.Memory.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.4.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Net.Http/4.3.0": { + "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "type": "package", + "path": "system.net.http/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/Xamarinmac20/_._", + "lib/monoandroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/net46/System.Net.Http.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/Xamarinmac20/_._", + "ref/monoandroid10/_._", + "ref/monotouch10/_._", + "ref/net45/_._", + "ref/net46/System.Net.Http.dll", + "ref/net46/System.Net.Http.xml", + "ref/net46/de/System.Net.Http.xml", + "ref/net46/es/System.Net.Http.xml", + "ref/net46/fr/System.Net.Http.xml", + "ref/net46/it/System.Net.Http.xml", + "ref/net46/ja/System.Net.Http.xml", + "ref/net46/ko/System.Net.Http.xml", + "ref/net46/ru/System.Net.Http.xml", + "ref/net46/zh-hans/System.Net.Http.xml", + "ref/net46/zh-hant/System.Net.Http.xml", + "ref/netcore50/System.Net.Http.dll", + "ref/netcore50/System.Net.Http.xml", + "ref/netcore50/de/System.Net.Http.xml", + "ref/netcore50/es/System.Net.Http.xml", + "ref/netcore50/fr/System.Net.Http.xml", + "ref/netcore50/it/System.Net.Http.xml", + "ref/netcore50/ja/System.Net.Http.xml", + "ref/netcore50/ko/System.Net.Http.xml", + "ref/netcore50/ru/System.Net.Http.xml", + "ref/netcore50/zh-hans/System.Net.Http.xml", + "ref/netcore50/zh-hant/System.Net.Http.xml", + "ref/netstandard1.1/System.Net.Http.dll", + "ref/netstandard1.1/System.Net.Http.xml", + "ref/netstandard1.1/de/System.Net.Http.xml", + "ref/netstandard1.1/es/System.Net.Http.xml", + "ref/netstandard1.1/fr/System.Net.Http.xml", + "ref/netstandard1.1/it/System.Net.Http.xml", + "ref/netstandard1.1/ja/System.Net.Http.xml", + "ref/netstandard1.1/ko/System.Net.Http.xml", + "ref/netstandard1.1/ru/System.Net.Http.xml", + "ref/netstandard1.1/zh-hans/System.Net.Http.xml", + "ref/netstandard1.1/zh-hant/System.Net.Http.xml", + "ref/netstandard1.3/System.Net.Http.dll", + "ref/netstandard1.3/System.Net.Http.xml", + "ref/netstandard1.3/de/System.Net.Http.xml", + "ref/netstandard1.3/es/System.Net.Http.xml", + "ref/netstandard1.3/fr/System.Net.Http.xml", + "ref/netstandard1.3/it/System.Net.Http.xml", + "ref/netstandard1.3/ja/System.Net.Http.xml", + "ref/netstandard1.3/ko/System.Net.Http.xml", + "ref/netstandard1.3/ru/System.Net.Http.xml", + "ref/netstandard1.3/zh-hans/System.Net.Http.xml", + "ref/netstandard1.3/zh-hant/System.Net.Http.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", + "runtimes/win/lib/net46/System.Net.Http.dll", + "runtimes/win/lib/netcore50/System.Net.Http.dll", + "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", + "system.net.http.4.3.0.nupkg.sha512", + "system.net.http.nuspec" + ] + }, + "System.Net.Http.WinHttpHandler/6.0.0": { + "sha512": "jubNN9jH4NzVrvEf4fGwESLBsfH8whWNbHMhgM6IwA8UCt6+/M19bbOHc21JhigvC2HQKCl8HKGZMcBtIpzqIg==", + "type": "package", + "path": "system.net.http.winhttphandler/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Net.Http.WinHttpHandler.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Net.Http.WinHttpHandler.dll", + "lib/net461/System.Net.Http.WinHttpHandler.xml", + "lib/net6.0/System.Net.Http.WinHttpHandler.dll", + "lib/net6.0/System.Net.Http.WinHttpHandler.xml", + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll", + "lib/netstandard2.0/System.Net.Http.WinHttpHandler.xml", + "lib/netstandard2.1/System.Net.Http.WinHttpHandler.dll", + "lib/netstandard2.1/System.Net.Http.WinHttpHandler.xml", + "runtimes/win/lib/net461/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/net461/System.Net.Http.WinHttpHandler.xml", + "runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/net6.0/System.Net.Http.WinHttpHandler.xml", + "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/netstandard2.0/System.Net.Http.WinHttpHandler.xml", + "runtimes/win/lib/netstandard2.1/System.Net.Http.WinHttpHandler.dll", + "runtimes/win/lib/netstandard2.1/System.Net.Http.WinHttpHandler.xml", + "system.net.http.winhttphandler.6.0.0.nupkg.sha512", + "system.net.http.winhttphandler.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Net.Primitives/4.3.0": { + "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "type": "package", + "path": "system.net.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Net.Primitives.dll", + "ref/netcore50/System.Net.Primitives.xml", + "ref/netcore50/de/System.Net.Primitives.xml", + "ref/netcore50/es/System.Net.Primitives.xml", + "ref/netcore50/fr/System.Net.Primitives.xml", + "ref/netcore50/it/System.Net.Primitives.xml", + "ref/netcore50/ja/System.Net.Primitives.xml", + "ref/netcore50/ko/System.Net.Primitives.xml", + "ref/netcore50/ru/System.Net.Primitives.xml", + "ref/netcore50/zh-hans/System.Net.Primitives.xml", + "ref/netcore50/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.0/System.Net.Primitives.dll", + "ref/netstandard1.0/System.Net.Primitives.xml", + "ref/netstandard1.0/de/System.Net.Primitives.xml", + "ref/netstandard1.0/es/System.Net.Primitives.xml", + "ref/netstandard1.0/fr/System.Net.Primitives.xml", + "ref/netstandard1.0/it/System.Net.Primitives.xml", + "ref/netstandard1.0/ja/System.Net.Primitives.xml", + "ref/netstandard1.0/ko/System.Net.Primitives.xml", + "ref/netstandard1.0/ru/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.1/System.Net.Primitives.dll", + "ref/netstandard1.1/System.Net.Primitives.xml", + "ref/netstandard1.1/de/System.Net.Primitives.xml", + "ref/netstandard1.1/es/System.Net.Primitives.xml", + "ref/netstandard1.1/fr/System.Net.Primitives.xml", + "ref/netstandard1.1/it/System.Net.Primitives.xml", + "ref/netstandard1.1/ja/System.Net.Primitives.xml", + "ref/netstandard1.1/ko/System.Net.Primitives.xml", + "ref/netstandard1.1/ru/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", + "ref/netstandard1.3/System.Net.Primitives.dll", + "ref/netstandard1.3/System.Net.Primitives.xml", + "ref/netstandard1.3/de/System.Net.Primitives.xml", + "ref/netstandard1.3/es/System.Net.Primitives.xml", + "ref/netstandard1.3/fr/System.Net.Primitives.xml", + "ref/netstandard1.3/it/System.Net.Primitives.xml", + "ref/netstandard1.3/ja/System.Net.Primitives.xml", + "ref/netstandard1.3/ko/System.Net.Primitives.xml", + "ref/netstandard1.3/ru/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.primitives.4.3.0.nupkg.sha512", + "system.net.primitives.nuspec" + ] + }, + "System.Net.Sockets/4.3.0": { + "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "type": "package", + "path": "system.net.sockets/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Net.Sockets.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.dll", + "ref/netstandard1.3/System.Net.Sockets.xml", + "ref/netstandard1.3/de/System.Net.Sockets.xml", + "ref/netstandard1.3/es/System.Net.Sockets.xml", + "ref/netstandard1.3/fr/System.Net.Sockets.xml", + "ref/netstandard1.3/it/System.Net.Sockets.xml", + "ref/netstandard1.3/ja/System.Net.Sockets.xml", + "ref/netstandard1.3/ko/System.Net.Sockets.xml", + "ref/netstandard1.3/ru/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", + "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.net.sockets.4.3.0.nupkg.sha512", + "system.net.sockets.nuspec" + ] + }, + "System.Numerics.Vectors/4.5.0": { + "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "type": "package", + "path": "system.numerics.vectors/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Numerics.Vectors.dll", + "lib/net46/System.Numerics.Vectors.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.Numerics.Vectors.dll", + "lib/netstandard1.0/System.Numerics.Vectors.xml", + "lib/netstandard2.0/System.Numerics.Vectors.dll", + "lib/netstandard2.0/System.Numerics.Vectors.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.Numerics.Vectors.dll", + "ref/net45/System.Numerics.Vectors.xml", + "ref/net46/System.Numerics.Vectors.dll", + "ref/net46/System.Numerics.Vectors.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/System.Numerics.Vectors.dll", + "ref/netstandard1.0/System.Numerics.Vectors.xml", + "ref/netstandard2.0/System.Numerics.Vectors.dll", + "ref/netstandard2.0/System.Numerics.Vectors.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.numerics.vectors.4.5.0.nupkg.sha512", + "system.numerics.vectors.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ObjectModel/4.3.0": { + "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "type": "package", + "path": "system.objectmodel/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ObjectModel.dll", + "lib/netstandard1.3/System.ObjectModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ObjectModel.dll", + "ref/netcore50/System.ObjectModel.xml", + "ref/netcore50/de/System.ObjectModel.xml", + "ref/netcore50/es/System.ObjectModel.xml", + "ref/netcore50/fr/System.ObjectModel.xml", + "ref/netcore50/it/System.ObjectModel.xml", + "ref/netcore50/ja/System.ObjectModel.xml", + "ref/netcore50/ko/System.ObjectModel.xml", + "ref/netcore50/ru/System.ObjectModel.xml", + "ref/netcore50/zh-hans/System.ObjectModel.xml", + "ref/netcore50/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.0/System.ObjectModel.dll", + "ref/netstandard1.0/System.ObjectModel.xml", + "ref/netstandard1.0/de/System.ObjectModel.xml", + "ref/netstandard1.0/es/System.ObjectModel.xml", + "ref/netstandard1.0/fr/System.ObjectModel.xml", + "ref/netstandard1.0/it/System.ObjectModel.xml", + "ref/netstandard1.0/ja/System.ObjectModel.xml", + "ref/netstandard1.0/ko/System.ObjectModel.xml", + "ref/netstandard1.0/ru/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", + "ref/netstandard1.3/System.ObjectModel.dll", + "ref/netstandard1.3/System.ObjectModel.xml", + "ref/netstandard1.3/de/System.ObjectModel.xml", + "ref/netstandard1.3/es/System.ObjectModel.xml", + "ref/netstandard1.3/fr/System.ObjectModel.xml", + "ref/netstandard1.3/it/System.ObjectModel.xml", + "ref/netstandard1.3/ja/System.ObjectModel.xml", + "ref/netstandard1.3/ko/System.ObjectModel.xml", + "ref/netstandard1.3/ru/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", + "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.objectmodel.4.3.0.nupkg.sha512", + "system.objectmodel.nuspec" + ] + }, + "System.Private.ServiceModel/4.9.0": { + "sha512": "d3RjkrtpjUQ63PzFmm/SZ4aOXeJNP+8YW5QeP0lCJy8iX4xlHdlNLWTF9sRn9SmrFTK757kQXT9Op/R4l858uw==", + "type": "package", + "path": "system.private.servicemodel/4.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard2.0/System.Private.ServiceModel.dll", + "lib/netstandard2.0/System.Private.ServiceModel.pdb", + "lib/netstandard2.0/cs/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/de/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/es/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/fr/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/it/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/ja/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/ko/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/pl/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/pt-BR/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/ru/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/tr/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/zh-Hans/System.Private.ServiceModel.resources.dll", + "lib/netstandard2.0/zh-Hant/System.Private.ServiceModel.resources.dll", + "ref/netstandard2.0/_._", + "system.private.servicemodel.4.9.0.nupkg.sha512", + "system.private.servicemodel.nuspec" + ] + }, + "System.Reflection/4.3.0": { + "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "type": "package", + "path": "system.reflection/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.4.3.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Context/6.0.0": { + "sha512": "Vi+Gb41oyOYie7uLSsjRmfRg3bryUg5DssJvj3gDUl0D8z6ipSm6/yi/XNx2rcS5iVMvHcwRUHjcx7ixv0K3/w==", + "type": "package", + "path": "system.reflection.context/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Reflection.Context.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.Reflection.Context.dll", + "lib/net6.0/System.Reflection.Context.xml", + "lib/netstandard2.0/System.Reflection.Context.dll", + "lib/netstandard2.0/System.Reflection.Context.xml", + "lib/netstandard2.1/System.Reflection.Context.dll", + "lib/netstandard2.1/System.Reflection.Context.xml", + "system.reflection.context.6.0.0.nupkg.sha512", + "system.reflection.context.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Reflection.DispatchProxy/4.7.1": { + "sha512": "C1sMLwIG6ILQ2bmOT4gh62V6oJlyF4BlHcVMrOoor49p0Ji2tA8QAoqyMcIhAdH6OHKJ8m7BU+r4LK2CUEOKqw==", + "type": "package", + "path": "system.reflection.dispatchproxy/4.7.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Reflection.DispatchProxy.dll", + "lib/net461/System.Reflection.DispatchProxy.xml", + "lib/netcoreapp2.0/System.Reflection.DispatchProxy.dll", + "lib/netcoreapp2.0/System.Reflection.DispatchProxy.xml", + "lib/netstandard1.3/System.Reflection.DispatchProxy.dll", + "lib/netstandard2.0/System.Reflection.DispatchProxy.dll", + "lib/netstandard2.0/System.Reflection.DispatchProxy.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Reflection.DispatchProxy.dll", + "ref/net461/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/System.Reflection.DispatchProxy.dll", + "ref/netstandard1.3/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/de/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/es/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/fr/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/it/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ja/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ko/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/ru/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.DispatchProxy.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.DispatchProxy.xml", + "ref/netstandard2.0/System.Reflection.DispatchProxy.dll", + "ref/netstandard2.0/System.Reflection.DispatchProxy.xml", + "ref/uap10.0.16299/System.Reflection.DispatchProxy.dll", + "ref/uap10.0.16299/System.Reflection.DispatchProxy.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.DispatchProxy.dll", + "runtimes/win-aot/lib/uap10.0.16299/System.Reflection.DispatchProxy.dll", + "runtimes/win/lib/uap10.0.16299/System.Reflection.DispatchProxy.dll", + "system.reflection.dispatchproxy.4.7.1.nupkg.sha512", + "system.reflection.dispatchproxy.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Emit/4.3.0": { + "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "type": "package", + "path": "system.reflection.emit/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/monotouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/net45/_._", + "ref/netstandard1.1/System.Reflection.Emit.dll", + "ref/netstandard1.1/System.Reflection.Emit.xml", + "ref/netstandard1.1/de/System.Reflection.Emit.xml", + "ref/netstandard1.1/es/System.Reflection.Emit.xml", + "ref/netstandard1.1/fr/System.Reflection.Emit.xml", + "ref/netstandard1.1/it/System.Reflection.Emit.xml", + "ref/netstandard1.1/ja/System.Reflection.Emit.xml", + "ref/netstandard1.1/ko/System.Reflection.Emit.xml", + "ref/netstandard1.1/ru/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", + "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", + "ref/xamarinmac20/_._", + "system.reflection.emit.4.3.0.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", + "ref/portable-net45+wp8/_._", + "ref/wp80/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.3.0": { + "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "type": "package", + "path": "system.reflection.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.extensions.4.3.0.nupkg.sha512", + "system.reflection.extensions.nuspec" + ] + }, + "System.Reflection.Metadata/5.0.0": { + "sha512": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==", + "type": "package", + "path": "system.reflection.metadata/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Reflection.Metadata.dll", + "lib/net461/System.Reflection.Metadata.xml", + "lib/netstandard1.1/System.Reflection.Metadata.dll", + "lib/netstandard1.1/System.Reflection.Metadata.xml", + "lib/netstandard2.0/System.Reflection.Metadata.dll", + "lib/netstandard2.0/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.5.0.0.nupkg.sha512", + "system.reflection.metadata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Primitives/4.3.0": { + "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "type": "package", + "path": "system.reflection.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.reflection.primitives.4.3.0.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.3.0": { + "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "type": "package", + "path": "system.reflection.typeextensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Reflection.TypeExtensions.dll", + "lib/net462/System.Reflection.TypeExtensions.dll", + "lib/netcore50/System.Reflection.TypeExtensions.dll", + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Reflection.TypeExtensions.dll", + "ref/net462/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", + "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", + "system.reflection.typeextensions.4.3.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.3.0": { + "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "type": "package", + "path": "system.resources.resourcemanager/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.resources.resourcemanager.4.3.0.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.3.0": { + "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "type": "package", + "path": "system.runtime/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.4.3.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Caching/6.0.0": { + "sha512": "E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==", + "type": "package", + "path": "system.runtime.caching/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.Caching.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/_._", + "lib/net6.0/System.Runtime.Caching.dll", + "lib/net6.0/System.Runtime.Caching.xml", + "lib/netcoreapp3.1/System.Runtime.Caching.dll", + "lib/netcoreapp3.1/System.Runtime.Caching.xml", + "lib/netstandard2.0/System.Runtime.Caching.dll", + "lib/netstandard2.0/System.Runtime.Caching.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net461/_._", + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll", + "runtimes/win/lib/net6.0/System.Runtime.Caching.xml", + "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.dll", + "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.xml", + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll", + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml", + "system.runtime.caching.6.0.0.nupkg.sha512", + "system.runtime.caching.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.Extensions/4.3.0": { + "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "type": "package", + "path": "system.runtime.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.extensions.4.3.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.3.0": { + "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "type": "package", + "path": "system.runtime.handles/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.handles.4.3.0.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.3.0": { + "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "type": "package", + "path": "system.runtime.interopservices/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/net463/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/net463/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.interopservices.4.3.0.nupkg.sha512", + "system.runtime.interopservices.nuspec" + ] + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "type": "package", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", + "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", + "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "system.runtime.interopservices.runtimeinformation.nuspec" + ] + }, + "System.Runtime.Numerics/4.3.0": { + "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "type": "package", + "path": "system.runtime.numerics/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.runtime.numerics.4.3.0.nupkg.sha512", + "system.runtime.numerics.nuspec" + ] + }, + "System.Security.AccessControl/6.0.0": { + "sha512": "AUADIc0LIEQe7MzC+I0cl0rAT8RrTAKFHl53yHjEUzNVIaUlhFY11vc2ebiVJzVBuOzun6F7FBA+8KAbGTTedQ==", + "type": "package", + "path": "system.security.accesscontrol/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/net6.0/System.Security.AccessControl.dll", + "lib/net6.0/System.Security.AccessControl.xml", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/net6.0/System.Security.AccessControl.dll", + "runtimes/win/lib/net6.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.Security.AccessControl.xml", + "system.security.accesscontrol.6.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "type": "package", + "path": "system.security.cryptography.algorithms/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/net463/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/net463/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", + "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "system.security.cryptography.algorithms.nuspec" + ] + }, + "System.Security.Cryptography.Cng/4.3.0": { + "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", + "type": "package", + "path": "system.security.cryptography.cng/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net463/System.Security.Cryptography.Cng.dll", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net463/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "system.security.cryptography.cng.4.3.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec" + ] + }, + "System.Security.Cryptography.Csp/4.3.0": { + "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "type": "package", + "path": "system.security.cryptography.csp/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Csp.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Csp.dll", + "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", + "runtimes/win/lib/netcore50/_._", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", + "system.security.cryptography.csp.4.3.0.nupkg.sha512", + "system.security.cryptography.csp.nuspec" + ] + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "type": "package", + "path": "system.security.cryptography.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "system.security.cryptography.encoding.nuspec" + ] + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "type": "package", + "path": "system.security.cryptography.openssl/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", + "system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "system.security.cryptography.openssl.nuspec" + ] + }, + "System.Security.Cryptography.Pkcs/6.0.0": { + "sha512": "elM3x+xSRhzQysiqo85SbidJJ2YbZlnvmh+53TuSZHsD7dNuuEWser+9EFtY+rYupBwkq2avc6ZCO3/6qACgmg==", + "type": "package", + "path": "system.security.cryptography.pkcs/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Cryptography.Pkcs.dll", + "lib/net461/System.Security.Cryptography.Pkcs.xml", + "lib/net6.0/System.Security.Cryptography.Pkcs.dll", + "lib/net6.0/System.Security.Cryptography.Pkcs.xml", + "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll", + "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml", + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml", + "system.security.cryptography.pkcs.6.0.0.nupkg.sha512", + "system.security.cryptography.pkcs.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "type": "package", + "path": "system.security.cryptography.primitives/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "system.security.cryptography.primitives.nuspec" + ] + }, + "System.Security.Cryptography.ProtectedData/6.0.0": { + "sha512": "rp1gMNEZpvx9vP0JW0oHLxlf8oSiQgtno77Y4PLUBjSiDYoD77Y8uXHr1Ea5XG4/pIKhqAdxZ8v8OTUtqo9PeQ==", + "type": "package", + "path": "system.security.cryptography.protecteddata/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.xml", + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "type": "package", + "path": "system.security.cryptography.x509certificates/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", + "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "system.security.cryptography.x509certificates.nuspec" + ] + }, + "System.Security.Cryptography.Xml/6.0.0": { + "sha512": "puJ4UCh9JVRwOCyCIcq71JY6Axr8Sp8E2GjTIU1Fj8hm4+oX6NEoyGFGa/+pBG8SrVxbQPSj7hvtaREyTHHsmw==", + "type": "package", + "path": "system.security.cryptography.xml/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Xml.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Cryptography.Xml.dll", + "lib/net461/System.Security.Cryptography.Xml.xml", + "lib/net6.0/System.Security.Cryptography.Xml.dll", + "lib/net6.0/System.Security.Cryptography.Xml.xml", + "lib/netstandard2.0/System.Security.Cryptography.Xml.dll", + "lib/netstandard2.0/System.Security.Cryptography.Xml.xml", + "runtimes/win/lib/net461/System.Security.Cryptography.Xml.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Xml.xml", + "system.security.cryptography.xml.6.0.0.nupkg.sha512", + "system.security.cryptography.xml.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Permissions/6.0.0": { + "sha512": "T/uuc7AklkDoxmcJ7LGkyX1CcSviZuLCa4jg3PekfJ7SU0niF0IVTXwUiNVP9DSpzou2PpxJ+eNY2IfDM90ZCg==", + "type": "package", + "path": "system.security.permissions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/net5.0/System.Security.Permissions.dll", + "lib/net5.0/System.Security.Permissions.xml", + "lib/net6.0/System.Security.Permissions.dll", + "lib/net6.0/System.Security.Permissions.xml", + "lib/netcoreapp3.1/System.Security.Permissions.dll", + "lib/netcoreapp3.1/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "runtimes/win/lib/net461/System.Security.Permissions.dll", + "runtimes/win/lib/net461/System.Security.Permissions.xml", + "system.security.permissions.6.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Principal.Windows/5.0.0": { + "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "type": "package", + "path": "system.security.principal.windows/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.5.0.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.ServiceModel.Duplex/4.9.0": { + "sha512": "Yb8MFiJxBBtm2JnfS/5SxYzm2HqkEmHu5xeaVIHXy83sNpty9wc30JifH2xgda821D6nr1UctbwbdZqN4LBUKQ==", + "type": "package", + "path": "system.servicemodel.duplex/4.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ServiceModel.Duplex.dll", + "lib/net461/System.ServiceModel.Duplex.pdb", + "lib/net6.0/System.ServiceModel.Duplex.dll", + "lib/net6.0/System.ServiceModel.Duplex.pdb", + "lib/netcore50/System.ServiceModel.Duplex.dll", + "lib/netstandard1.3/System.ServiceModel.Duplex.dll", + "lib/netstandard2.0/System.ServiceModel.Duplex.dll", + "lib/netstandard2.0/System.ServiceModel.Duplex.pdb", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ServiceModel.Duplex.dll", + "ref/net6.0/System.ServiceModel.Duplex.dll", + "ref/netcore50/System.ServiceModel.Duplex.dll", + "ref/netstandard1.1/System.ServiceModel.Duplex.dll", + "ref/netstandard2.0/System.ServiceModel.Duplex.dll", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.servicemodel.duplex.4.9.0.nupkg.sha512", + "system.servicemodel.duplex.nuspec" + ] + }, + "System.ServiceModel.Http/4.9.0": { + "sha512": "Z+s3RkLNzJ31fDXAjqXdXp67FqsNG4V3Md3r7FOrzMkHmg61gY8faEfTFPBLxU9tax1HPWt6IHVAquXBKySJaw==", + "type": "package", + "path": "system.servicemodel.http/4.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.ServiceModel.Http.dll", + "lib/net461/System.ServiceModel.Http.dll", + "lib/net461/System.ServiceModel.Http.pdb", + "lib/net6.0/System.ServiceModel.Http.dll", + "lib/net6.0/System.ServiceModel.Http.pdb", + "lib/netcore50/System.ServiceModel.Http.dll", + "lib/netstandard1.3/System.ServiceModel.Http.dll", + "lib/netstandard2.0/System.ServiceModel.Http.dll", + "lib/netstandard2.0/System.ServiceModel.Http.pdb", + "lib/portable-net45+win8+wp8/_._", + "lib/win8/_._", + "lib/wp8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.ServiceModel.Http.dll", + "ref/net461/System.ServiceModel.Http.dll", + "ref/net6.0/System.ServiceModel.Http.dll", + "ref/netcore50/System.ServiceModel.Http.dll", + "ref/netstandard1.0/System.ServiceModel.Http.dll", + "ref/netstandard1.1/System.ServiceModel.Http.dll", + "ref/netstandard1.3/System.ServiceModel.Http.dll", + "ref/netstandard2.0/System.ServiceModel.Http.dll", + "ref/portable-net45+win8+wp8/_._", + "ref/win8/_._", + "ref/wp8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.servicemodel.http.4.9.0.nupkg.sha512", + "system.servicemodel.http.nuspec" + ] + }, + "System.ServiceModel.NetTcp/4.9.0": { + "sha512": "nXgnnkrZERUF/KwmoLwZPkc7fqgiq94DXkmUZBvDNh/LdZquDvjy2NbhJLElpApOa5x8zEoQoBZyJ2PqNC39qg==", + "type": "package", + "path": "system.servicemodel.nettcp/4.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.ServiceModel.NetTcp.dll", + "lib/net461/System.ServiceModel.NetTcp.dll", + "lib/net461/System.ServiceModel.NetTcp.pdb", + "lib/net6.0/System.ServiceModel.NetTcp.dll", + "lib/net6.0/System.ServiceModel.NetTcp.pdb", + "lib/netcore50/System.ServiceModel.NetTcp.dll", + "lib/netstandard1.3/System.ServiceModel.NetTcp.dll", + "lib/netstandard2.0/System.ServiceModel.NetTcp.dll", + "lib/netstandard2.0/System.ServiceModel.NetTcp.pdb", + "lib/portable-net45+win8/_._", + "lib/win8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.ServiceModel.NetTcp.dll", + "ref/net461/System.ServiceModel.NetTcp.dll", + "ref/net6.0/System.ServiceModel.NetTcp.dll", + "ref/netcore50/System.ServiceModel.NetTcp.dll", + "ref/netstandard1.1/System.ServiceModel.NetTcp.dll", + "ref/netstandard1.3/System.ServiceModel.NetTcp.dll", + "ref/netstandard2.0/System.ServiceModel.NetTcp.dll", + "ref/portable-net45+win8/_._", + "ref/win8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.servicemodel.nettcp.4.9.0.nupkg.sha512", + "system.servicemodel.nettcp.nuspec" + ] + }, + "System.ServiceModel.Primitives/4.9.0": { + "sha512": "LTFPVdS8Nf76xg/wRZkDa+2Q+GnjTOmwkTlwuoetwX37mAfYnGkf7p8ydhpDwVmomNljpUOhUUGxfjQyd5YcOg==", + "type": "package", + "path": "system.servicemodel.primitives/4.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.ServiceModel.Primitives.dll", + "lib/net461/System.ServiceModel.Primitives.dll", + "lib/net461/System.ServiceModel.Primitives.pdb", + "lib/net6.0/System.ServiceModel.Primitives.dll", + "lib/net6.0/System.ServiceModel.Primitives.pdb", + "lib/net6.0/System.ServiceModel.dll", + "lib/netcore50/System.ServiceModel.Primitives.dll", + "lib/netcoreapp2.1/System.ServiceModel.Primitives.dll", + "lib/netcoreapp2.1/System.ServiceModel.Primitives.pdb", + "lib/netcoreapp2.1/System.ServiceModel.dll", + "lib/netstandard1.3/System.ServiceModel.Primitives.dll", + "lib/netstandard2.0/System.ServiceModel.Primitives.dll", + "lib/netstandard2.0/System.ServiceModel.Primitives.pdb", + "lib/netstandard2.0/System.ServiceModel.dll", + "lib/portable-net45+win8+wp8/_._", + "lib/win8/_._", + "lib/wp8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.ServiceModel.Primitives.dll", + "ref/net461/System.ServiceModel.Primitives.dll", + "ref/net6.0/System.ServiceModel.Primitives.dll", + "ref/net6.0/System.ServiceModel.dll", + "ref/netcore50/System.ServiceModel.Primitives.dll", + "ref/netcoreapp2.1/System.ServiceModel.Primitives.dll", + "ref/netcoreapp2.1/System.ServiceModel.dll", + "ref/netstandard1.0/System.ServiceModel.Primitives.dll", + "ref/netstandard1.1/System.ServiceModel.Primitives.dll", + "ref/netstandard1.3/System.ServiceModel.Primitives.dll", + "ref/netstandard2.0/System.ServiceModel.Primitives.dll", + "ref/netstandard2.0/System.ServiceModel.dll", + "ref/portable-net45+win8+wp8/_._", + "ref/win8/_._", + "ref/wp8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.servicemodel.primitives.4.9.0.nupkg.sha512", + "system.servicemodel.primitives.nuspec" + ] + }, + "System.ServiceModel.Security/4.9.0": { + "sha512": "iurpbSmPgotHps94VQ6acvL6hU2gjiuBmQI7PwLLN76jsbSpUcahT0PglccKIAwoMujATk/LWtAapBHpwCFn2g==", + "type": "package", + "path": "system.servicemodel.security/4.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net461/System.ServiceModel.Security.dll", + "lib/net461/System.ServiceModel.Security.pdb", + "lib/net6.0/System.ServiceModel.Security.dll", + "lib/net6.0/System.ServiceModel.Security.pdb", + "lib/netcore50/System.ServiceModel.Security.dll", + "lib/netstandard1.3/System.ServiceModel.Security.dll", + "lib/netstandard2.0/System.ServiceModel.Security.dll", + "lib/netstandard2.0/System.ServiceModel.Security.pdb", + "lib/portable-net45+win8+wp8/_._", + "lib/win8/_._", + "lib/wp8/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net461/System.ServiceModel.Security.dll", + "ref/net6.0/System.ServiceModel.Security.dll", + "ref/netcore50/System.ServiceModel.Security.dll", + "ref/netstandard1.0/System.ServiceModel.Security.dll", + "ref/netstandard1.1/System.ServiceModel.Security.dll", + "ref/netstandard2.0/System.ServiceModel.Security.dll", + "ref/portable-net45+win8+wp8/_._", + "ref/win8/_._", + "ref/wp8/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.servicemodel.security.4.9.0.nupkg.sha512", + "system.servicemodel.security.nuspec" + ] + }, + "System.ServiceModel.Syndication/6.0.0": { + "sha512": "cp1mMNG87iJtE0oHXFtfWT6cfski2JNo5iU0siTPi/uN2k1CIJI6FE4jr4v3got2dzt7wBq17fSy44btun9GiA==", + "type": "package", + "path": "system.servicemodel.syndication/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.ServiceModel.Syndication.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.ServiceModel.Syndication.dll", + "lib/net461/System.ServiceModel.Syndication.xml", + "lib/net6.0/System.ServiceModel.Syndication.dll", + "lib/net6.0/System.ServiceModel.Syndication.xml", + "lib/netcoreapp3.1/System.ServiceModel.Syndication.dll", + "lib/netcoreapp3.1/System.ServiceModel.Syndication.xml", + "lib/netstandard2.0/System.ServiceModel.Syndication.dll", + "lib/netstandard2.0/System.ServiceModel.Syndication.xml", + "system.servicemodel.syndication.6.0.0.nupkg.sha512", + "system.servicemodel.syndication.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.ServiceProcess.ServiceController/6.0.0": { + "sha512": "qMBvG8ZFbkXoe0Z5/D7FAAadfPkH2v7vSuh2xsLf3U6jNoejpIdeV18A0htiASsLK1CCAc/p59kaLXlt2yB1gw==", + "type": "package", + "path": "system.serviceprocess.servicecontroller/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.ServiceProcess.ServiceController.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.ServiceProcess.ServiceController.dll", + "lib/net461/System.ServiceProcess.ServiceController.xml", + "lib/net6.0/System.ServiceProcess.ServiceController.dll", + "lib/net6.0/System.ServiceProcess.ServiceController.xml", + "lib/netcoreapp3.1/System.ServiceProcess.ServiceController.dll", + "lib/netcoreapp3.1/System.ServiceProcess.ServiceController.xml", + "lib/netstandard2.0/System.ServiceProcess.ServiceController.dll", + "lib/netstandard2.0/System.ServiceProcess.ServiceController.xml", + "runtimes/win/lib/net461/System.ServiceProcess.ServiceController.dll", + "runtimes/win/lib/net461/System.ServiceProcess.ServiceController.xml", + "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.dll", + "runtimes/win/lib/net6.0/System.ServiceProcess.ServiceController.xml", + "runtimes/win/lib/netcoreapp3.1/System.ServiceProcess.ServiceController.dll", + "runtimes/win/lib/netcoreapp3.1/System.ServiceProcess.ServiceController.xml", + "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.dll", + "runtimes/win/lib/netstandard2.0/System.ServiceProcess.ServiceController.xml", + "system.serviceprocess.servicecontroller.6.0.0.nupkg.sha512", + "system.serviceprocess.servicecontroller.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Speech/6.0.0": { + "sha512": "GQovERMrNP0Vbtgk8LzH4PlFS6lqHgsL9WkUmv8Kkxa0m0vNakitytpHZlfJ9WR7n9WKLXh68nn2kyL9mflnLg==", + "type": "package", + "path": "system.speech/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Speech.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/_._", + "lib/net6.0/System.Speech.dll", + "lib/net6.0/System.Speech.xml", + "lib/netcoreapp3.1/System.Speech.dll", + "lib/netcoreapp3.1/System.Speech.xml", + "lib/netstandard2.0/System.Speech.dll", + "lib/netstandard2.0/System.Speech.xml", + "runtimes/win/lib/net6.0/System.Speech.dll", + "runtimes/win/lib/net6.0/System.Speech.xml", + "runtimes/win/lib/netcoreapp3.1/System.Speech.dll", + "runtimes/win/lib/netcoreapp3.1/System.Speech.xml", + "system.speech.6.0.0.nupkg.sha512", + "system.speech.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Encoding/4.3.0": { + "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "type": "package", + "path": "system.text.encoding/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.4.3.0.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.CodePages/6.0.0": { + "sha512": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", + "type": "package", + "path": "system.text.encoding.codepages/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.xml", + "lib/net6.0/System.Text.Encoding.CodePages.dll", + "lib/net6.0/System.Text.Encoding.CodePages.xml", + "lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll", + "lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "system.text.encoding.codepages.6.0.0.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Encoding.Extensions/4.3.0": { + "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "type": "package", + "path": "system.text.encoding.extensions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.encoding.extensions.4.3.0.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.Encodings.Web/6.0.0": { + "sha512": "Vg8eB5Tawm1IFqj4TVK1czJX89rhFxJo9ELqc/Eiq0eXy13RK00eubyU6TJE6y+GQXjyV5gSfiewDUZjQgSE0w==", + "type": "package", + "path": "system.text.encodings.web/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Text.Encodings.Web.dll", + "lib/net461/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/netcoreapp3.1/System.Text.Encodings.Web.dll", + "lib/netcoreapp3.1/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.6.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.RegularExpressions/4.3.0": { + "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "type": "package", + "path": "system.text.regularexpressions/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net463/System.Text.RegularExpressions.dll", + "lib/netcore50/System.Text.RegularExpressions.dll", + "lib/netstandard1.6/System.Text.RegularExpressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net463/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.dll", + "ref/netcore50/System.Text.RegularExpressions.xml", + "ref/netcore50/de/System.Text.RegularExpressions.xml", + "ref/netcore50/es/System.Text.RegularExpressions.xml", + "ref/netcore50/fr/System.Text.RegularExpressions.xml", + "ref/netcore50/it/System.Text.RegularExpressions.xml", + "ref/netcore50/ja/System.Text.RegularExpressions.xml", + "ref/netcore50/ko/System.Text.RegularExpressions.xml", + "ref/netcore50/ru/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", + "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", + "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.dll", + "ref/netstandard1.0/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/System.Text.RegularExpressions.dll", + "ref/netstandard1.3/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/System.Text.RegularExpressions.dll", + "ref/netstandard1.6/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", + "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.text.regularexpressions.4.3.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading/4.3.0": { + "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "type": "package", + "path": "system.threading/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll", + "system.threading.4.3.0.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.AccessControl/6.0.0": { + "sha512": "2258mqWesMch/xCpcnjJBgJP33yhpZLGLbEOm01qwq0efG4b+NG8c9sxYOWNxmDQ82swXrnQRl1Yp2wC1NrfZA==", + "type": "package", + "path": "system.threading.accesscontrol/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Threading.AccessControl.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Threading.AccessControl.dll", + "lib/net461/System.Threading.AccessControl.xml", + "lib/net6.0/System.Threading.AccessControl.dll", + "lib/net6.0/System.Threading.AccessControl.xml", + "lib/netstandard2.0/System.Threading.AccessControl.dll", + "lib/netstandard2.0/System.Threading.AccessControl.xml", + "runtimes/win/lib/net461/System.Threading.AccessControl.dll", + "runtimes/win/lib/net461/System.Threading.AccessControl.xml", + "runtimes/win/lib/net6.0/System.Threading.AccessControl.dll", + "runtimes/win/lib/net6.0/System.Threading.AccessControl.xml", + "runtimes/win/lib/netstandard2.0/System.Threading.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.Threading.AccessControl.xml", + "system.threading.accesscontrol.6.0.0.nupkg.sha512", + "system.threading.accesscontrol.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Threading.Tasks/4.3.0": { + "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "type": "package", + "path": "system.threading.tasks/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.4.3.0.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Threading.Tasks.Extensions.dll", + "lib/net461/System.Threading.Tasks.Extensions.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netcoreapp2.1/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Threading.Timer/4.3.0": { + "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "type": "package", + "path": "system.threading.timer/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/_._", + "lib/portable-net451+win81+wpa81/_._", + "lib/win81/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/_._", + "ref/netcore50/System.Threading.Timer.dll", + "ref/netcore50/System.Threading.Timer.xml", + "ref/netcore50/de/System.Threading.Timer.xml", + "ref/netcore50/es/System.Threading.Timer.xml", + "ref/netcore50/fr/System.Threading.Timer.xml", + "ref/netcore50/it/System.Threading.Timer.xml", + "ref/netcore50/ja/System.Threading.Timer.xml", + "ref/netcore50/ko/System.Threading.Timer.xml", + "ref/netcore50/ru/System.Threading.Timer.xml", + "ref/netcore50/zh-hans/System.Threading.Timer.xml", + "ref/netcore50/zh-hant/System.Threading.Timer.xml", + "ref/netstandard1.2/System.Threading.Timer.dll", + "ref/netstandard1.2/System.Threading.Timer.xml", + "ref/netstandard1.2/de/System.Threading.Timer.xml", + "ref/netstandard1.2/es/System.Threading.Timer.xml", + "ref/netstandard1.2/fr/System.Threading.Timer.xml", + "ref/netstandard1.2/it/System.Threading.Timer.xml", + "ref/netstandard1.2/ja/System.Threading.Timer.xml", + "ref/netstandard1.2/ko/System.Threading.Timer.xml", + "ref/netstandard1.2/ru/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", + "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", + "ref/portable-net451+win81+wpa81/_._", + "ref/win81/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.timer.4.3.0.nupkg.sha512", + "system.threading.timer.nuspec" + ] + }, + "System.Web.Services.Description/4.9.0": { + "sha512": "d20B3upsWddwSG5xF3eQLs0cAV3tXDsBNqP4kh02ylfgZwqfpf4f/9KiZVIGIoxULt2cKqxWs+U4AdNAJ7L8cQ==", + "type": "package", + "path": "system.web.services.description/4.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Web.Services.Description.dll", + "lib/net461/System.Web.Services.Description.pdb", + "lib/netstandard2.0/System.Web.Services.Description.dll", + "lib/netstandard2.0/System.Web.Services.Description.pdb", + "lib/netstandard2.0/cs/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/de/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/es/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/fr/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/it/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/ja/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/ko/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/pl/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/pt-BR/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/ru/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/tr/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/zh-Hans/System.Web.Services.Description.resources.dll", + "lib/netstandard2.0/zh-Hant/System.Web.Services.Description.resources.dll", + "system.web.services.description.4.9.0.nupkg.sha512", + "system.web.services.description.nuspec" + ] + }, + "System.Windows.Extensions/6.0.0": { + "sha512": "IXoJOXIqc39AIe+CIR7koBtRGMiCt/LPM3lI+PELtDIy9XdyeSrwXFdWV9dzJ2Awl0paLWUaknLxFQ5HpHZUog==", + "type": "package", + "path": "system.windows.extensions/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/System.Windows.Extensions.dll", + "lib/net6.0/System.Windows.Extensions.xml", + "lib/netcoreapp3.1/System.Windows.Extensions.dll", + "lib/netcoreapp3.1/System.Windows.Extensions.xml", + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net6.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.1/System.Windows.Extensions.xml", + "system.windows.extensions.6.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Xml.ReaderWriter/4.3.0": { + "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "type": "package", + "path": "system.xml.readerwriter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Xml.ReaderWriter.dll", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.readerwriter.4.3.0.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.3.0": { + "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "type": "package", + "path": "system.xml.xdocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xdocument.4.3.0.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "System.Xml.XmlDocument/4.3.0": { + "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "type": "package", + "path": "system.xml.xmldocument/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.xml.xmldocument.4.3.0.nupkg.sha512", + "system.xml.xmldocument.nuspec" + ] + }, + "xunit/2.4.1": { + "sha512": "XNR3Yz9QTtec16O0aKcO6+baVNpXmOnPUxDkCY97J+8krUYxPvXT1szYYEUdKk4sB8GOI2YbAjRIOm8ZnXRfzQ==", + "type": "package", + "path": "xunit/2.4.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "xunit.2.4.1.nupkg.sha512", + "xunit.nuspec" + ] + }, + "xunit.abstractions/2.0.3": { + "sha512": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", + "type": "package", + "path": "xunit.abstractions/2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/netstandard1.0/xunit.abstractions.dll", + "lib/netstandard1.0/xunit.abstractions.xml", + "lib/netstandard2.0/xunit.abstractions.dll", + "lib/netstandard2.0/xunit.abstractions.xml", + "xunit.abstractions.2.0.3.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.analyzers/0.10.0": { + "sha512": "4/IDFCJfIeg6bix9apmUtIMwvOsiwqdEexeO/R2D4GReIGPLIRODTpId/l4LRSrAJk9lEO3Zx1H0Zx6uohJDNg==", + "type": "package", + "path": "xunit.analyzers/0.10.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "analyzers/dotnet/cs/xunit.analyzers.dll", + "tools/install.ps1", + "tools/uninstall.ps1", + "xunit.analyzers.0.10.0.nupkg.sha512", + "xunit.analyzers.nuspec" + ] + }, + "xunit.assert/2.4.1": { + "sha512": "O/Oe0BS5RmSsM+LQOb041TzuPo5MdH2Rov+qXGS37X+KFG1Hxz7kopYklM5+1Y+tRGeXrOx5+Xne1RuqLFQoyQ==", + "type": "package", + "path": "xunit.assert/2.4.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard1.1/xunit.assert.dll", + "lib/netstandard1.1/xunit.assert.xml", + "xunit.assert.2.4.1.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.core/2.4.1": { + "sha512": "Zsj5OMU6JasNGERXZy8s72+pcheG6Q15atS5XpZXqAtULuyQiQ6XNnUsp1gyfC6WgqScqMvySiEHmHcOG6Eg0Q==", + "type": "package", + "path": "xunit.core/2.4.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/xunit.core.props", + "build/xunit.core.targets", + "buildMultiTargeting/xunit.core.props", + "buildMultiTargeting/xunit.core.targets", + "xunit.core.2.4.1.nupkg.sha512", + "xunit.core.nuspec" + ] + }, + "xunit.extensibility.core/2.4.1": { + "sha512": "yKZKm/8QNZnBnGZFD9SewkllHBiK0DThybQD/G4PiAmQjKtEZyHi6ET70QPU9KtSMJGRYS6Syk7EyR2EVDU4Kg==", + "type": "package", + "path": "xunit.extensibility.core/2.4.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/xunit.core.dll", + "lib/net452/xunit.core.dll.tdnet", + "lib/net452/xunit.core.xml", + "lib/net452/xunit.runner.tdnet.dll", + "lib/net452/xunit.runner.utility.net452.dll", + "lib/netstandard1.1/xunit.core.dll", + "lib/netstandard1.1/xunit.core.xml", + "xunit.extensibility.core.2.4.1.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.4.1": { + "sha512": "7e/1jqBpcb7frLkB6XDrHCGXAbKN4Rtdb88epYxCSRQuZDRW8UtTfdTEVpdTl8s4T56e07hOBVd4G0OdCxIY2A==", + "type": "package", + "path": "xunit.extensibility.execution/2.4.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/xunit.execution.desktop.dll", + "lib/net452/xunit.execution.desktop.xml", + "lib/netstandard1.1/xunit.execution.dotnet.dll", + "lib/netstandard1.1/xunit.execution.dotnet.xml", + "xunit.extensibility.execution.2.4.1.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.runner.visualstudio/2.4.3": { + "sha512": "kZZSmOmKA8OBlAJaquPXnJJLM9RwQ27H7BMVqfMLUcTi9xHinWGJiWksa3D4NEtz0wZ/nxd2mogObvBgJKCRhQ==", + "type": "package", + "path": "xunit.runner.visualstudio/2.4.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "License.txt", + "build/net452/xunit.abstractions.dll", + "build/net452/xunit.runner.reporters.net452.dll", + "build/net452/xunit.runner.utility.net452.dll", + "build/net452/xunit.runner.visualstudio.props", + "build/net452/xunit.runner.visualstudio.testadapter.dll", + "build/netcoreapp2.1/xunit.abstractions.dll", + "build/netcoreapp2.1/xunit.runner.reporters.netcoreapp10.dll", + "build/netcoreapp2.1/xunit.runner.utility.netcoreapp10.dll", + "build/netcoreapp2.1/xunit.runner.visualstudio.dotnetcore.testadapter.dll", + "build/netcoreapp2.1/xunit.runner.visualstudio.props", + "build/uap10.0.16299/xunit.runner.reporters.netstandard15.dll", + "build/uap10.0.16299/xunit.runner.utility.netstandard15.dll", + "build/uap10.0.16299/xunit.runner.utility.uwp10.dll", + "build/uap10.0.16299/xunit.runner.utility.uwp10.pri", + "build/uap10.0.16299/xunit.runner.visualstudio.props", + "build/uap10.0.16299/xunit.runner.visualstudio.targets", + "build/uap10.0.16299/xunit.runner.visualstudio.uwp.testadapter.dll", + "build/uap10.0.16299/xunit.runner.visualstudio.uwp.testadapter.pri", + "logo-512-transparent.png", + "xunit.runner.visualstudio.2.4.3.nupkg.sha512", + "xunit.runner.visualstudio.nuspec" + ] + }, + "YamlDotNet/11.2.1": { + "sha512": "tBt8K+korVfrjH9wyDEhiLKxbs8qoLCLIFwvYgkSUuMC9//w3z0cFQ8LQAI/5MCKq+BMil0cfRTRvPeE7eXhQw==", + "type": "package", + "path": "yamldotnet/11.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "images/yamldotnet.png", + "lib/net20/YamlDotNet.dll", + "lib/net20/YamlDotNet.xml", + "lib/net35-client/YamlDotNet.dll", + "lib/net35-client/YamlDotNet.xml", + "lib/net35/YamlDotNet.dll", + "lib/net35/YamlDotNet.xml", + "lib/net45/YamlDotNet.dll", + "lib/net45/YamlDotNet.xml", + "lib/netstandard1.3/YamlDotNet.dll", + "lib/netstandard1.3/YamlDotNet.xml", + "lib/netstandard2.1/YamlDotNet.dll", + "lib/netstandard2.1/YamlDotNet.xml", + "yamldotnet.11.2.1.nupkg.sha512", + "yamldotnet.nuspec" + ] + }, + "Linguard.Core/2.0.0": { + "type": "project", + "path": "../Core/Core.csproj", + "msbuildProject": "../Core/Core.csproj" + }, + "Linguard.Log/2.0.0": { + "type": "project", + "path": "../Log/Log.csproj", + "msbuildProject": "../Log/Log.csproj" + } + }, + "projectFileDependencyGroups": { + "net6.0": [ + "FluentAssertions >= 6.4.0", + "FluentValidation >= 10.3.6", + "IPNetwork2 >= 2.5.386", + "Linguard.Core >= 2.0.0", + "Microsoft.NET.Test.Sdk >= 16.11.0", + "Moq >= 4.16.1", + "coverlet.msbuild >= 3.1.2", + "xunit >= 2.4.1", + "xunit.runner.visualstudio >= 2.4.3" + ] + }, + "packageFolders": { + "C:\\Users\\theyu\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj", + "projectName": "Core.Test", + "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj", + "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", + "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj": { + "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "FluentAssertions": { + "target": "Package", + "version": "[6.4.0, )" + }, + "FluentValidation": { + "target": "Package", + "version": "[10.3.6, )" + }, + "IPNetwork2": { + "target": "Package", + "version": "[2.5.386, )" + }, + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[16.11.0, )" + }, + "Moq": { + "target": "Package", + "version": "[4.16.1, )" + }, + "coverlet.msbuild": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[3.1.2, )" + }, + "xunit": { + "target": "Package", + "version": "[2.4.1, )" + }, + "xunit.runner.visualstudio": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[2.4.3, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/linguard/Core.Test/obj/project.nuget.cache b/linguard/Core.Test/obj/project.nuget.cache new file mode 100644 index 0000000..c63907e --- /dev/null +++ b/linguard/Core.Test/obj/project.nuget.cache @@ -0,0 +1,201 @@ +{ + "version": 2, + "dgSpecHash": "9GXRblvdF7wlX2OMNlU1anCXmzl/+5CA0hL0m+4RmyvBH4v7mr1NM2/ew8CAZAEG/zllvqhstzX/Bhn7xjVgbw==", + "success": true, + "projectFilePath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj", + "expectedPackageFiles": [ + "C:\\Users\\theyu\\.nuget\\packages\\bogus\\34.0.1\\bogus.34.0.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\bytesize\\2.1.1\\bytesize.2.1.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\castle.core\\4.4.0\\castle.core.4.4.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\coverlet.msbuild\\3.1.2\\coverlet.msbuild.3.1.2.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\fluentassertions\\6.4.0\\fluentassertions.6.4.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\fluentvalidation\\10.3.6\\fluentvalidation.10.3.6.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\ipnetwork2\\2.5.386\\ipnetwork2.2.5.386.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\markdig.signed\\0.22.0\\markdig.signed.0.22.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.applicationinsights\\2.18.0\\microsoft.applicationinsights.2.18.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\5.0.0\\microsoft.bcl.asyncinterfaces.5.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.2\\microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.codeanalysis.common\\4.0.1\\microsoft.codeanalysis.common.4.0.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.0.1\\microsoft.codeanalysis.csharp.4.0.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.codecoverage\\16.11.0\\microsoft.codecoverage.16.11.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.csharp\\4.3.0\\microsoft.csharp.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.extensions.objectpool\\5.0.10\\microsoft.extensions.objectpool.5.0.10.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.management.infrastructure\\2.0.0\\microsoft.management.infrastructure.2.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.management.infrastructure.cimcmdlets\\7.2.1\\microsoft.management.infrastructure.cimcmdlets.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.management.infrastructure.runtime.unix\\2.0.0\\microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.management.infrastructure.runtime.win\\2.0.0\\microsoft.management.infrastructure.runtime.win.2.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.net.test.sdk\\16.11.0\\microsoft.net.test.sdk.16.11.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.netcore.windows.apisets\\1.0.1\\microsoft.netcore.windows.apisets.1.0.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.commands.diagnostics\\7.2.1\\microsoft.powershell.commands.diagnostics.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.commands.management\\7.2.1\\microsoft.powershell.commands.management.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.commands.utility\\7.2.1\\microsoft.powershell.commands.utility.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.consolehost\\7.2.1\\microsoft.powershell.consolehost.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.coreclr.eventing\\7.2.1\\microsoft.powershell.coreclr.eventing.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.markdownrender\\7.2.0\\microsoft.powershell.markdownrender.7.2.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.native\\7.2.0\\microsoft.powershell.native.7.2.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.sdk\\7.2.1\\microsoft.powershell.sdk.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.powershell.security\\7.2.1\\microsoft.powershell.security.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.testplatform.objectmodel\\16.11.0\\microsoft.testplatform.objectmodel.16.11.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.testplatform.testhost\\16.11.0\\microsoft.testplatform.testhost.16.11.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.win32.registry.accesscontrol\\6.0.0\\microsoft.win32.registry.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.win32.systemevents\\6.0.0\\microsoft.win32.systemevents.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.windows.compatibility\\6.0.0\\microsoft.windows.compatibility.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.wsman.management\\7.2.1\\microsoft.wsman.management.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\microsoft.wsman.runtime\\7.2.1\\microsoft.wsman.runtime.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\moq\\4.16.1\\moq.4.16.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\namotion.reflection\\2.0.3\\namotion.reflection.2.0.3.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\njsonschema\\10.5.2\\njsonschema.10.5.2.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\nlog\\4.7.13\\nlog.4.7.13.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\nuget.frameworks\\5.0.0\\nuget.frameworks.5.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.linux-arm.runtime.native.system.io.ports\\6.0.0\\runtime.linux-arm.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.linux-arm64.runtime.native.system.io.ports\\6.0.0\\runtime.linux-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.linux-x64.runtime.native.system.io.ports\\6.0.0\\runtime.linux-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.native.system.io.ports\\6.0.0\\runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.osx-arm64.runtime.native.system.io.ports\\6.0.0\\runtime.osx-arm64.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.osx-x64.runtime.native.system.io.ports\\6.0.0\\runtime.osx-x64.runtime.native.system.io.ports.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.buffers\\4.3.0\\system.buffers.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.codedom\\6.0.0\\system.codedom.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.componentmodel.composition\\6.0.0\\system.componentmodel.composition.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.componentmodel.composition.registration\\6.0.0\\system.componentmodel.composition.registration.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.configuration.configurationmanager\\6.0.0\\system.configuration.configurationmanager.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.data.odbc\\6.0.0\\system.data.odbc.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.data.oledb\\6.0.0\\system.data.oledb.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.data.sqlclient\\4.8.3\\system.data.sqlclient.4.8.3.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.diagnosticsource\\5.0.0\\system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.eventlog\\6.0.0\\system.diagnostics.eventlog.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.performancecounter\\6.0.0\\system.diagnostics.performancecounter.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.tracesource\\4.3.0\\system.diagnostics.tracesource.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.directoryservices\\6.0.0\\system.directoryservices.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.directoryservices.accountmanagement\\6.0.0\\system.directoryservices.accountmanagement.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.directoryservices.protocols\\6.0.0\\system.directoryservices.protocols.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.drawing.common\\6.0.0\\system.drawing.common.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.formats.asn1\\6.0.0\\system.formats.asn1.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.io.packaging\\6.0.0\\system.io.packaging.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.io.ports\\6.0.0\\system.io.ports.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.management\\6.0.0\\system.management.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.management.automation\\7.2.1\\system.management.automation.7.2.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.net.http.winhttphandler\\6.0.0\\system.net.http.winhttphandler.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.private.servicemodel\\4.9.0\\system.private.servicemodel.4.9.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.context\\6.0.0\\system.reflection.context.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.dispatchproxy\\4.7.1\\system.reflection.dispatchproxy.4.7.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.metadata\\5.0.0\\system.reflection.metadata.5.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.caching\\6.0.0\\system.runtime.caching.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.security.accesscontrol\\6.0.0\\system.security.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.cng\\4.3.0\\system.security.cryptography.cng.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.pkcs\\6.0.0\\system.security.cryptography.pkcs.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.protecteddata\\6.0.0\\system.security.cryptography.protecteddata.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.security.cryptography.xml\\6.0.0\\system.security.cryptography.xml.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.security.permissions\\6.0.0\\system.security.permissions.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.duplex\\4.9.0\\system.servicemodel.duplex.4.9.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.http\\4.9.0\\system.servicemodel.http.4.9.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.nettcp\\4.9.0\\system.servicemodel.nettcp.4.9.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.primitives\\4.9.0\\system.servicemodel.primitives.4.9.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.security\\4.9.0\\system.servicemodel.security.4.9.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.servicemodel.syndication\\6.0.0\\system.servicemodel.syndication.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.serviceprocess.servicecontroller\\6.0.0\\system.serviceprocess.servicecontroller.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.speech\\6.0.0\\system.speech.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.text.encoding.codepages\\6.0.0\\system.text.encoding.codepages.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.text.encodings.web\\6.0.0\\system.text.encodings.web.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.threading.accesscontrol\\6.0.0\\system.threading.accesscontrol.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.web.services.description\\4.9.0\\system.web.services.description.4.9.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.windows.extensions\\6.0.0\\system.windows.extensions.6.0.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\xunit\\2.4.1\\xunit.2.4.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\xunit.abstractions\\2.0.3\\xunit.abstractions.2.0.3.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\xunit.analyzers\\0.10.0\\xunit.analyzers.0.10.0.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\xunit.assert\\2.4.1\\xunit.assert.2.4.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\xunit.core\\2.4.1\\xunit.core.2.4.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\xunit.extensibility.core\\2.4.1\\xunit.extensibility.core.2.4.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\xunit.extensibility.execution\\2.4.1\\xunit.extensibility.execution.2.4.1.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\xunit.runner.visualstudio\\2.4.3\\xunit.runner.visualstudio.2.4.3.nupkg.sha512", + "C:\\Users\\theyu\\.nuget\\packages\\yamldotnet\\11.2.1\\yamldotnet.11.2.1.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/linguard/Core.Test/obj/project.packagespec.json b/linguard/Core.Test/obj/project.packagespec.json new file mode 100644 index 0000000..005739a --- /dev/null +++ b/linguard/Core.Test/obj/project.packagespec.json @@ -0,0 +1 @@ +"restore":{"projectUniqueName":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj","projectName":"Core.Test","projectPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\Core.Test.csproj","outputPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core.Test\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net6.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net6.0":{"targetAlias":"net6.0","projectReferences":{"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj":{"projectPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Core\\Core.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net6.0":{"targetAlias":"net6.0","dependencies":{"FluentAssertions":{"target":"Package","version":"[6.4.0, )"},"FluentValidation":{"target":"Package","version":"[10.3.6, )"},"IPNetwork2":{"target":"Package","version":"[2.5.386, )"},"Microsoft.NET.Test.Sdk":{"target":"Package","version":"[16.11.0, )"},"Moq":{"target":"Package","version":"[4.16.1, )"},"coverlet.msbuild":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[3.1.2, )"},"xunit":{"target":"Package","version":"[2.4.1, )"},"xunit.runner.visualstudio":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[2.4.3, )"}},"imports":["net461","net462","net47","net471","net472","net48"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/linguard/Core.Test/obj/rider.project.restore.info b/linguard/Core.Test/obj/rider.project.restore.info new file mode 100644 index 0000000..3e41a2d --- /dev/null +++ b/linguard/Core.Test/obj/rider.project.restore.info @@ -0,0 +1 @@ +16455551443808364 \ No newline at end of file diff --git a/linguard/Linguard.sln b/linguard/Linguard.sln new file mode 100644 index 0000000..7249f91 --- /dev/null +++ b/linguard/Linguard.sln @@ -0,0 +1,52 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Core", "Core\Core.csproj", "{32D41ADE-259C-43DB-9CF5-A93AAB079D3B}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Cli", "Cli\Cli.csproj", "{DC40EC92-D659-4615-955E-8B169BC6363C}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Log", "Log\Log.csproj", "{C61D8911-AAEF-4DCA-9060-426FF5E43A59}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Cli.Test", "Cli.Test\Cli.Test.csproj", "{8A9534B3-EF1F-4400-AF19-F92AEDE444A5}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Auth", "Auth\Auth.csproj", "{A32E0801-DE91-4FC9-9003-E81C4B652A09}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Core.Test", "Core.Test\Core.Test.csproj", "{59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Web", "Web\Web.csproj", "{5447985B-643D-41BB-A6AC-786A3AAD87EA}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {32D41ADE-259C-43DB-9CF5-A93AAB079D3B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {32D41ADE-259C-43DB-9CF5-A93AAB079D3B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {32D41ADE-259C-43DB-9CF5-A93AAB079D3B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {32D41ADE-259C-43DB-9CF5-A93AAB079D3B}.Release|Any CPU.Build.0 = Release|Any CPU + {DC40EC92-D659-4615-955E-8B169BC6363C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DC40EC92-D659-4615-955E-8B169BC6363C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DC40EC92-D659-4615-955E-8B169BC6363C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DC40EC92-D659-4615-955E-8B169BC6363C}.Release|Any CPU.Build.0 = Release|Any CPU + {C61D8911-AAEF-4DCA-9060-426FF5E43A59}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C61D8911-AAEF-4DCA-9060-426FF5E43A59}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C61D8911-AAEF-4DCA-9060-426FF5E43A59}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C61D8911-AAEF-4DCA-9060-426FF5E43A59}.Release|Any CPU.Build.0 = Release|Any CPU + {8A9534B3-EF1F-4400-AF19-F92AEDE444A5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8A9534B3-EF1F-4400-AF19-F92AEDE444A5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8A9534B3-EF1F-4400-AF19-F92AEDE444A5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8A9534B3-EF1F-4400-AF19-F92AEDE444A5}.Release|Any CPU.Build.0 = Release|Any CPU + {A32E0801-DE91-4FC9-9003-E81C4B652A09}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A32E0801-DE91-4FC9-9003-E81C4B652A09}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A32E0801-DE91-4FC9-9003-E81C4B652A09}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A32E0801-DE91-4FC9-9003-E81C4B652A09}.Release|Any CPU.Build.0 = Release|Any CPU + {59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9}.Debug|Any CPU.Build.0 = Debug|Any CPU + {59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9}.Release|Any CPU.ActiveCfg = Release|Any CPU + {59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9}.Release|Any CPU.Build.0 = Release|Any CPU + {5447985B-643D-41BB-A6AC-786A3AAD87EA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5447985B-643D-41BB-A6AC-786A3AAD87EA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5447985B-643D-41BB-A6AC-786A3AAD87EA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5447985B-643D-41BB-A6AC-786A3AAD87EA}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/linguard/Linguard.sln.DotSettings b/linguard/Linguard.sln.DotSettings new file mode 100644 index 0000000..4f9ff32 --- /dev/null +++ b/linguard/Linguard.sln.DotSettings @@ -0,0 +1,2 @@ + + IP \ No newline at end of file diff --git a/linguard/Linguard.sln.DotSettings.user b/linguard/Linguard.sln.DotSettings.user new file mode 100644 index 0000000..92800e9 --- /dev/null +++ b/linguard/Linguard.sln.DotSettings.user @@ -0,0 +1,65 @@ + + + <SessionState ContinuousTestingMode="0" IsActive="True" Name="RegisterSingletonInstanceAsInterface" xmlns="urn:schemas-jetbrains-com:jetbrains-ut-session"> + <Or> + <TestAncestor> + <TestId>xUnit::7EE59559-FA02-4D9A-9214-0547D3D6D9F7::net6.0::DependencyInjector.Test.InjectorShould</TestId> + <TestId>xUnit::59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9::net6.0::Core.Test.CommandRunnerShould</TestId> + <TestId>xUnit::59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9::net6.0::Core.Test.InterfaceShould.CreateValidWireguardConfiguration</TestId> + <TestId>xUnit::59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9::net6.0::Core.Test.PeerShould.CreateValidWireguardConfig</TestId> + <TestId>xUnit::59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9::net6.0::Core.Test.PeerShould.CreateAnotherValidWireguardConfig</TestId> + <TestId>xUnit::59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9::net6.0::Core.Test.PeerShould</TestId> + <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.CommandParserShould</TestId> + <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.CommandShould.Run</TestId> + <TestId>xUnit::109BD25C-277A-4810-8306-4F6BB0248A0E::net6.0::InteractiveCli.Test.CommandShould.RunWithArgumentsOfDifferentTypes</TestId> + <TestId>xUnit::109BD25C-277A-4810-8306-4F6BB0248A0E::net6.0::InteractiveCli.Test.CommandShould.RunWithArgumentWithWhiteSpaces</TestId> + <TestId>xUnit::109BD25C-277A-4810-8306-4F6BB0248A0E::net6.0::InteractiveCli.Test.CommandShould.RunWithArgumentsWithWhiteSpaces</TestId> + <TestId>xUnit::109BD25C-277A-4810-8306-4F6BB0248A0E::net6.0::InteractiveCli.Test.CommandShould.RunWithArgumentsOfComplexTypes</TestId> + <TestId>xUnit::109BD25C-277A-4810-8306-4F6BB0248A0E::net6.0::InteractiveCli.Test.CommandParserShould.ParseCommandWithArgumentsOfTheSameType</TestId> + <TestId>xUnit::109BD25C-277A-4810-8306-4F6BB0248A0E::net6.0::InteractiveCli.Test.CommandParserShould.ParseSimpleCommandWithParameters</TestId> + <TestId>xUnit::109BD25C-277A-4810-8306-4F6BB0248A0E::net6.0::InteractiveCli.Test.CommandParserShould.ParseComplexCommand</TestId> + <TestId>xUnit::109BD25C-277A-4810-8306-4F6BB0248A0E::net6.0::InteractiveCli.Test.CommandParserShould</TestId> + <TestId>xUnit::109BD25C-277A-4810-8306-4F6BB0248A0E::net6.0::InteractiveCli.Test.CommandShould</TestId> + <TestId>xUnit::109BD25C-277A-4810-8306-4F6BB0248A0E::net6.0::InteractiveCli.Test.CommandShouldNot.RunWithWrongArguments</TestId> + <TestId>xUnit::59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9::net6.0::Core.Test.InterfaceGeneratorShould.GenerateValidInterfaces</TestId> + <TestId>xUnit::59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9::net6.0::Core.Test.InterfaceGeneratorShould</TestId> + <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.AddInterfaceShouldNot.AddInterfaceWithEmptyName</TestId> + <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.AddInterfaceShouldNot.AddInterfaceWithNameTooLong</TestId> + <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.AddInterfaceShouldNot.AddInterfaceWithNameTooShort</TestId> + <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.AddInterfaceShouldNot</TestId> + <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.AddInterfaceCommandShouldNot.AddInterfaceWithEmptyName</TestId> + <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.AddInterfaceCommandShould.CreateInterfaceWithDefinedGateway</TestId> + <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.AddInterfaceCommandShould</TestId> + <TestId>xUnit::59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9::net6.0::Core.Test.YamlConfigurationShould</TestId> + <TestId>xUnit::59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9::net6.0::Core.Test.YamlConfigurationSerializerShould</TestId> + <TestId>xUnit::59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9::net6.0::Core.Test.DefaultInterfaceGeneratorShould.AlwaysGenerateValidInterfaces</TestId> + <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.AddInterfaceCommandShouldNot</TestId> + <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.ListInterfacesCommandShould.CreateInterfaceWithNoArguments</TestId> + <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.ListInterfacesCommandShould.ListOneInterface</TestId> + <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.ListInterfacesCommandShould</TestId> + <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.ShowInterfaceCommandShould</TestId> + <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.AddPeerCommandShould.CreateRandomPeer</TestId> + <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.AddPeerCommandShould</TestId> + <TestId>xUnit::59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9::net6.0::Core.Test.DefaultPeerGeneratorShould</TestId> + <TestId>xUnit::8A9534B3-EF1F-4400-AF19-F92AEDE444A5::net6.0::Cli.Test.ListPeersCommandShould</TestId> + <TestId>xUnit::59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9::net6.0::Core.Test.TrafficDataProcessorShould.ExtractData</TestId> + <TestId>xUnit::59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9::net6.0::Core.Test.WireguardTrafficDataProcessorShould.ExtractEmptyData</TestId> + <TestId>xUnit::59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9::net6.0::Core.Test.WireguardTrafficDataProcessorShould</TestId> + </TestAncestor> + <ProjectFile>59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9/f:ConfigurationShould.cs</ProjectFile> + <ProjectFile>59EDF24F-8E0B-4BB2-A43E-4A327D4F7CA9/f:InterfaceShould.cs</ProjectFile> + <Project Location="C:\Users\theyu\repos\linguard\Linguard\Core.Test" Presentation="&lt;Core.Test&gt;" /> + </Or> +</SessionState> + True + + en + True + False + False + + True + + True + True + True \ No newline at end of file diff --git a/linguard/Log.NLog/Log.NLog.csproj b/linguard/Log.NLog/Log.NLog.csproj new file mode 100644 index 0000000..13c87ed --- /dev/null +++ b/linguard/Log.NLog/Log.NLog.csproj @@ -0,0 +1,17 @@ + + + + net6.0 + enable + enable + + + + + + + + + + + diff --git a/linguard/Log.NLog/bin/Debug/net6.0/Linguard.Log.dll b/linguard/Log.NLog/bin/Debug/net6.0/Linguard.Log.dll new file mode 100644 index 0000000..ad8dc55 Binary files /dev/null and b/linguard/Log.NLog/bin/Debug/net6.0/Linguard.Log.dll differ diff --git a/linguard/Log.NLog/bin/Debug/net6.0/Linguard.Log.pdb b/linguard/Log.NLog/bin/Debug/net6.0/Linguard.Log.pdb new file mode 100644 index 0000000..abac2bb Binary files /dev/null and b/linguard/Log.NLog/bin/Debug/net6.0/Linguard.Log.pdb differ diff --git a/linguard/Log.NLog/bin/Debug/net6.0/Log.NLog.deps.json b/linguard/Log.NLog/bin/Debug/net6.0/Log.NLog.deps.json new file mode 100644 index 0000000..03be6b2 --- /dev/null +++ b/linguard/Log.NLog/bin/Debug/net6.0/Log.NLog.deps.json @@ -0,0 +1,52 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "Log.NLog/1.0.0": { + "dependencies": { + "Linguard.Log": "0.1.0", + "NLog": "4.7.13" + }, + "runtime": { + "Log.NLog.dll": {} + } + }, + "NLog/4.7.13": { + "runtime": { + "lib/netstandard2.0/NLog.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.7.13.493" + } + } + }, + "Linguard.Log/0.1.0": { + "runtime": { + "Linguard.Log.dll": {} + } + } + } + }, + "libraries": { + "Log.NLog/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "NLog/4.7.13": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AvoGpCuq36B+0wY313XA6gC+YeMvk24rqF8P+HS9fInBGOjCzPjpXp2ln9ATZjPOJtXgHfc8zNmTjyswFGLxvg==", + "path": "nlog/4.7.13", + "hashPath": "nlog.4.7.13.nupkg.sha512" + }, + "Linguard.Log/0.1.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/linguard/Log.NLog/bin/Debug/net6.0/Log.NLog.dll b/linguard/Log.NLog/bin/Debug/net6.0/Log.NLog.dll new file mode 100644 index 0000000..a11cff7 Binary files /dev/null and b/linguard/Log.NLog/bin/Debug/net6.0/Log.NLog.dll differ diff --git a/linguard/Log.NLog/bin/Debug/net6.0/Log.NLog.pdb b/linguard/Log.NLog/bin/Debug/net6.0/Log.NLog.pdb new file mode 100644 index 0000000..a505254 Binary files /dev/null and b/linguard/Log.NLog/bin/Debug/net6.0/Log.NLog.pdb differ diff --git a/linguard/Log.NLog/bin/Debug/net6.0/ref/Log.NLog.dll b/linguard/Log.NLog/bin/Debug/net6.0/ref/Log.NLog.dll new file mode 100644 index 0000000..3712c36 Binary files /dev/null and b/linguard/Log.NLog/bin/Debug/net6.0/ref/Log.NLog.dll differ diff --git a/linguard/Log.NLog/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/linguard/Log.NLog/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/linguard/Log.NLog/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.AssemblyInfo.cs b/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.AssemblyInfo.cs new file mode 100644 index 0000000..a32f0ab --- /dev/null +++ b/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Log.NLog")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Log.NLog")] +[assembly: System.Reflection.AssemblyTitleAttribute("Log.NLog")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generado por la clase WriteCodeFragment de MSBuild. + diff --git a/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.AssemblyInfoInputs.cache b/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.AssemblyInfoInputs.cache new file mode 100644 index 0000000..06e6a7c --- /dev/null +++ b/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +8c22863d7f26bd2c4d87ec2404dd17e912c7f3b5 diff --git a/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.GeneratedMSBuildEditorConfig.editorconfig b/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..4485581 --- /dev/null +++ b/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Log.NLog +build_property.ProjectDir = C:\Users\theyu\repos\linguard-dotnet\Linguard\Log.NLog\ diff --git a/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.GlobalUsings.g.cs b/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.assets.cache b/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.assets.cache new file mode 100644 index 0000000..de951de Binary files /dev/null and b/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.assets.cache differ diff --git a/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.csproj.AssemblyReference.cache b/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.csproj.AssemblyReference.cache new file mode 100644 index 0000000..204fdef Binary files /dev/null and b/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.csproj.AssemblyReference.cache differ diff --git a/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.csproj.CopyComplete b/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.csproj.CoreCompileInputs.cache b/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..860ac13 --- /dev/null +++ b/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +fb47d07fa8b4bbaff928df66b14f68f44579254b diff --git a/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.csproj.FileListAbsolute.txt b/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..2a2516b --- /dev/null +++ b/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.csproj.FileListAbsolute.txt @@ -0,0 +1,15 @@ +C:\Users\theyu\repos\linguard-dotnet\Linguard\Log.NLog\bin\Debug\net6.0\Log.NLog.deps.json +C:\Users\theyu\repos\linguard-dotnet\Linguard\Log.NLog\bin\Debug\net6.0\Log.NLog.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Log.NLog\bin\Debug\net6.0\ref\Log.NLog.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Log.NLog\bin\Debug\net6.0\Log.NLog.pdb +C:\Users\theyu\repos\linguard-dotnet\Linguard\Log.NLog\bin\Debug\net6.0\Linguard.Log.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Log.NLog\bin\Debug\net6.0\Linguard.Log.pdb +C:\Users\theyu\repos\linguard-dotnet\Linguard\Log.NLog\obj\Debug\net6.0\Log.NLog.csproj.AssemblyReference.cache +C:\Users\theyu\repos\linguard-dotnet\Linguard\Log.NLog\obj\Debug\net6.0\Log.NLog.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\theyu\repos\linguard-dotnet\Linguard\Log.NLog\obj\Debug\net6.0\Log.NLog.AssemblyInfoInputs.cache +C:\Users\theyu\repos\linguard-dotnet\Linguard\Log.NLog\obj\Debug\net6.0\Log.NLog.AssemblyInfo.cs +C:\Users\theyu\repos\linguard-dotnet\Linguard\Log.NLog\obj\Debug\net6.0\Log.NLog.csproj.CoreCompileInputs.cache +C:\Users\theyu\repos\linguard-dotnet\Linguard\Log.NLog\obj\Debug\net6.0\Log.NLog.csproj.CopyComplete +C:\Users\theyu\repos\linguard-dotnet\Linguard\Log.NLog\obj\Debug\net6.0\Log.NLog.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Log.NLog\obj\Debug\net6.0\ref\Log.NLog.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Log.NLog\obj\Debug\net6.0\Log.NLog.pdb diff --git a/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.dll b/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.dll new file mode 100644 index 0000000..a11cff7 Binary files /dev/null and b/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.dll differ diff --git a/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.pdb b/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.pdb new file mode 100644 index 0000000..a505254 Binary files /dev/null and b/linguard/Log.NLog/obj/Debug/net6.0/Log.NLog.pdb differ diff --git a/linguard/Log.NLog/obj/Debug/net6.0/ref/Log.NLog.dll b/linguard/Log.NLog/obj/Debug/net6.0/ref/Log.NLog.dll new file mode 100644 index 0000000..3712c36 Binary files /dev/null and b/linguard/Log.NLog/obj/Debug/net6.0/ref/Log.NLog.dll differ diff --git a/linguard/Log.NLog/obj/Log.NLog.csproj.nuget.dgspec.json b/linguard/Log.NLog/obj/Log.NLog.csproj.nuget.dgspec.json new file mode 100644 index 0000000..fc9ed5b --- /dev/null +++ b/linguard/Log.NLog/obj/Log.NLog.csproj.nuget.dgspec.json @@ -0,0 +1,128 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log.NLog\\Log.NLog.csproj": {} + }, + "projects": { + "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log.NLog\\Log.NLog.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log.NLog\\Log.NLog.csproj", + "projectName": "Log.NLog", + "projectPath": "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log.NLog\\Log.NLog.csproj", + "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", + "outputPath": "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log.NLog\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log\\Log.csproj": { + "projectPath": "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log\\Log.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "NLog": { + "target": "Package", + "version": "[4.7.13, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log\\Log.csproj": { + "version": "2.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log\\Log.csproj", + "projectName": "Linguard.Log", + "projectPath": "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log\\Log.csproj", + "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", + "outputPath": "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "NLog": { + "target": "Package", + "version": "[4.7.13, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/linguard/Log.NLog/obj/Log.NLog.csproj.nuget.g.props b/linguard/Log.NLog/obj/Log.NLog.csproj.nuget.g.props new file mode 100644 index 0000000..df348a1 --- /dev/null +++ b/linguard/Log.NLog/obj/Log.NLog.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\theyu\.nuget\packages\ + PackageReference + 6.0.0 + + + + + \ No newline at end of file diff --git a/linguard/Log.NLog/obj/Log.NLog.csproj.nuget.g.targets b/linguard/Log.NLog/obj/Log.NLog.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/linguard/Log.NLog/obj/Log.NLog.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/linguard/Log.NLog/obj/project.assets.json b/linguard/Log.NLog/obj/project.assets.json new file mode 100644 index 0000000..d83580a --- /dev/null +++ b/linguard/Log.NLog/obj/project.assets.json @@ -0,0 +1,140 @@ +{ + "version": 3, + "targets": { + "net6.0": { + "NLog/4.7.13": { + "type": "package", + "compile": { + "lib/netstandard2.0/NLog.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NLog.dll": {} + } + }, + "Linguard.Log/2.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v6.0", + "dependencies": { + "NLog": "4.7.13" + }, + "compile": { + "bin/placeholder/Linguard.Log.dll": {} + }, + "runtime": { + "bin/placeholder/Linguard.Log.dll": {} + } + } + } + }, + "libraries": { + "NLog/4.7.13": { + "sha512": "AvoGpCuq36B+0wY313XA6gC+YeMvk24rqF8P+HS9fInBGOjCzPjpXp2ln9ATZjPOJtXgHfc8zNmTjyswFGLxvg==", + "type": "package", + "path": "nlog/4.7.13", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/monoandroid44/NLog.dll", + "lib/monoandroid44/NLog.xml", + "lib/net35/NLog.dll", + "lib/net35/NLog.xml", + "lib/net40-client/NLog.dll", + "lib/net40-client/NLog.xml", + "lib/net45/NLog.dll", + "lib/net45/NLog.xml", + "lib/netstandard1.3/NLog.dll", + "lib/netstandard1.3/NLog.xml", + "lib/netstandard1.5/NLog.dll", + "lib/netstandard1.5/NLog.xml", + "lib/netstandard2.0/NLog.dll", + "lib/netstandard2.0/NLog.xml", + "lib/sl4/NLog.dll", + "lib/sl4/NLog.xml", + "lib/sl5/NLog.dll", + "lib/sl5/NLog.xml", + "lib/wp8/NLog.dll", + "lib/wp8/NLog.xml", + "lib/xamarinios10/NLog.dll", + "lib/xamarinios10/NLog.xml", + "nlog.4.7.13.nupkg.sha512", + "nlog.nuspec" + ] + }, + "Linguard.Log/2.0.0": { + "type": "project", + "path": "../Log/Log.csproj", + "msbuildProject": "../Log/Log.csproj" + } + }, + "projectFileDependencyGroups": { + "net6.0": [ + "Linguard.Log >= 2.0.0", + "NLog >= 4.7.13" + ] + }, + "packageFolders": { + "C:\\Users\\theyu\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log.NLog\\Log.NLog.csproj", + "projectName": "Log.NLog", + "projectPath": "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log.NLog\\Log.NLog.csproj", + "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", + "outputPath": "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log.NLog\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": { + "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log\\Log.csproj": { + "projectPath": "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log\\Log.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "NLog": { + "target": "Package", + "version": "[4.7.13, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/linguard/Log.NLog/obj/project.nuget.cache b/linguard/Log.NLog/obj/project.nuget.cache new file mode 100644 index 0000000..9b9ca82 --- /dev/null +++ b/linguard/Log.NLog/obj/project.nuget.cache @@ -0,0 +1,10 @@ +{ + "version": 2, + "dgSpecHash": "0ZOwYHQ6yBVKu+IXh+iwK3FiNH3dhnd0o020P8SvIXta39mOnd8rJs80DKX2p+ls+DP8SB9rOvuSqqQPwoLF+Q==", + "success": true, + "projectFilePath": "C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log.NLog\\Log.NLog.csproj", + "expectedPackageFiles": [ + "C:\\Users\\theyu\\.nuget\\packages\\nlog\\4.7.13\\nlog.4.7.13.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/linguard/Log.NLog/obj/project.packagespec.json b/linguard/Log.NLog/obj/project.packagespec.json new file mode 100644 index 0000000..405583d --- /dev/null +++ b/linguard/Log.NLog/obj/project.packagespec.json @@ -0,0 +1 @@ +"restore":{"projectUniqueName":"C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log.NLog\\Log.NLog.csproj","projectName":"Log.NLog","projectPath":"C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log.NLog\\Log.NLog.csproj","outputPath":"C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log.NLog\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net6.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net6.0":{"targetAlias":"net6.0","projectReferences":{"C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log\\Log.csproj":{"projectPath":"C:\\Users\\theyu\\repos\\linguard-dotnet\\Linguard\\Log\\Log.csproj"}}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net6.0":{"targetAlias":"net6.0","dependencies":{"NLog":{"target":"Package","version":"[4.7.13, )"}},"imports":["net461","net462","net47","net471","net472","net48"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/linguard/Log.NLog/obj/rider.project.restore.info b/linguard/Log.NLog/obj/rider.project.restore.info new file mode 100644 index 0000000..9a6b887 --- /dev/null +++ b/linguard/Log.NLog/obj/rider.project.restore.info @@ -0,0 +1 @@ +16438014600847348 \ No newline at end of file diff --git a/linguard/Log/ILogger.cs b/linguard/Log/ILogger.cs new file mode 100644 index 0000000..052fa63 --- /dev/null +++ b/linguard/Log/ILogger.cs @@ -0,0 +1,32 @@ +namespace Linguard.Log; + +public interface ILogger { + void Log(LogLevel level, string message); + void Log(LogLevel level, Exception exception, string message); + + void Trace(string message); + void Trace(Exception exception, string message); + + void Debug(string message); + void Debug(Exception exception, string message); + + void Info(string message); + void Info(Exception exception, string message); + + void Warn(string message); + void Warn(Exception exception, string message); + + void Error(string message); + void Error(Exception exception, string message); + + void Fatal(string message); + void Fatal(Exception exception, string message); + + bool IsEnabled(LogLevel level); + bool IsTraceEnabled(LogLevel level); + bool IsDebugEnabled(LogLevel level); + bool IsInfoEnabled(LogLevel level); + bool IsWarnEnabled(LogLevel level); + bool IsErrorEnabled(LogLevel level); + bool IsFatalEnabled(LogLevel level); +} \ No newline at end of file diff --git a/linguard/Log/Log.csproj b/linguard/Log/Log.csproj new file mode 100644 index 0000000..9463c77 --- /dev/null +++ b/linguard/Log/Log.csproj @@ -0,0 +1,22 @@ + + + + net6.0 + enable + enable + Linguard.Log + Linguard.Log + Linguard.Log + 2.0.0 + Linguard.Log + José Antonio Mazón San Bartolomé + José Antonio Mazón San Bartolomé + Linguard + 2.0.0 + + + + + + + diff --git a/linguard/Log/LogLevel.cs b/linguard/Log/LogLevel.cs new file mode 100644 index 0000000..ce42611 --- /dev/null +++ b/linguard/Log/LogLevel.cs @@ -0,0 +1,5 @@ +namespace Linguard.Log; + +public enum LogLevel { + Trace, Debug, Info, Warn, Error, Fatal +} \ No newline at end of file diff --git a/linguard/Log/LoggerBase.cs b/linguard/Log/LoggerBase.cs new file mode 100644 index 0000000..73fa01e --- /dev/null +++ b/linguard/Log/LoggerBase.cs @@ -0,0 +1,80 @@ +namespace Linguard.Log; + +public abstract class LoggerBase : ILogger { + public abstract void Log(LogLevel level, string message); + public abstract void Log(LogLevel level, Exception exception, string message); + + public void Trace(string message) { + Log(LogLevel.Trace, message); + } + + public void Trace(Exception exception, string message) { + Log(LogLevel.Trace, exception, message); + } + + public void Debug(string message) { + Log(LogLevel.Debug, message); + } + + public void Debug(Exception exception, string message) { + Log(LogLevel.Debug, exception, message); + } + + public void Info(string message) { + Log(LogLevel.Info, message); + } + + public void Info(Exception exception, string message) { + Log(LogLevel.Info, exception, message); + } + + public void Warn(string message) { + Log(LogLevel.Warn, message); + } + + public void Warn(Exception exception, string message) { + Log(LogLevel.Warn, exception, message); + } + + public void Error(string message) { + Log(LogLevel.Error, message); + } + + public void Error(Exception exception, string message) { + Log(LogLevel.Error, exception, message); + } + + public void Fatal(string message) { + Log(LogLevel.Fatal, message); + } + + public void Fatal(Exception exception, string message) { + Log(LogLevel.Fatal, exception, message); + } + + public abstract bool IsEnabled(LogLevel level); + + public bool IsTraceEnabled(LogLevel level) { + return IsEnabled(LogLevel.Trace); + } + + public bool IsDebugEnabled(LogLevel level) { + return IsEnabled(LogLevel.Debug); + } + + public bool IsInfoEnabled(LogLevel level) { + return IsEnabled(LogLevel.Info); + } + + public bool IsWarnEnabled(LogLevel level) { + return IsEnabled(LogLevel.Warn); + } + + public bool IsErrorEnabled(LogLevel level) { + return IsEnabled(LogLevel.Error); + } + + public bool IsFatalEnabled(LogLevel level) { + return IsEnabled(LogLevel.Fatal); + } +} \ No newline at end of file diff --git a/linguard/Log/NLogLogger.cs b/linguard/Log/NLogLogger.cs new file mode 100644 index 0000000..4858439 --- /dev/null +++ b/linguard/Log/NLogLogger.cs @@ -0,0 +1,29 @@ +using System.Diagnostics; +using NLog; + +namespace Linguard.Log; + +public class NLogLogger : LoggerBase { + + private static readonly Logger Logger = LogManager.GetCurrentClassLogger(); + + private static void DoLog(LogLevel level, string message, object[] args) { + var nlogLevel = NLog.LogLevel.FromString(level.ToString()); + var stackTrace = new StackTrace(); + var caller = stackTrace.GetFrame(3)?.GetMethod()?.DeclaringType; + var logEventInfo = new LogEventInfo(nlogLevel, caller?.Name, null, message, args); + var wrapper = stackTrace.GetFrame(2)?.GetMethod()?.DeclaringType; + Logger.Log(wrapper, logEventInfo); + } + + public override void Log(LogLevel level, string message) { + DoLog(level, message, Array.Empty()); + } + public override void Log(LogLevel level, Exception exception, string message) { + DoLog(level, message, new object[] {exception}); + } + + public override bool IsEnabled(LogLevel level) { + return Logger.IsEnabled(NLog.LogLevel.FromString(level.ToString())); + } +} \ No newline at end of file diff --git a/linguard/Log/bin/Debug/net6.0/Linguard.Log.deps.json b/linguard/Log/bin/Debug/net6.0/Linguard.Log.deps.json new file mode 100644 index 0000000..bb9635e --- /dev/null +++ b/linguard/Log/bin/Debug/net6.0/Linguard.Log.deps.json @@ -0,0 +1,41 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "Linguard.Log/2.0.0": { + "dependencies": { + "NLog": "4.7.13" + }, + "runtime": { + "Linguard.Log.dll": {} + } + }, + "NLog/4.7.13": { + "runtime": { + "lib/netstandard2.0/NLog.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.7.13.493" + } + } + } + } + }, + "libraries": { + "Linguard.Log/2.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "NLog/4.7.13": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AvoGpCuq36B+0wY313XA6gC+YeMvk24rqF8P+HS9fInBGOjCzPjpXp2ln9ATZjPOJtXgHfc8zNmTjyswFGLxvg==", + "path": "nlog/4.7.13", + "hashPath": "nlog.4.7.13.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/linguard/Log/bin/Debug/net6.0/Linguard.Log.dll b/linguard/Log/bin/Debug/net6.0/Linguard.Log.dll new file mode 100644 index 0000000..561b728 Binary files /dev/null and b/linguard/Log/bin/Debug/net6.0/Linguard.Log.dll differ diff --git a/linguard/Log/bin/Debug/net6.0/Linguard.Log.pdb b/linguard/Log/bin/Debug/net6.0/Linguard.Log.pdb new file mode 100644 index 0000000..ef5cdfa Binary files /dev/null and b/linguard/Log/bin/Debug/net6.0/Linguard.Log.pdb differ diff --git a/linguard/Log/bin/Debug/net6.0/ref/Linguard.Log.dll b/linguard/Log/bin/Debug/net6.0/ref/Linguard.Log.dll new file mode 100644 index 0000000..cfb8fb6 Binary files /dev/null and b/linguard/Log/bin/Debug/net6.0/ref/Linguard.Log.dll differ diff --git a/linguard/Log/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/linguard/Log/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs new file mode 100644 index 0000000..36203c7 --- /dev/null +++ b/linguard/Log/obj/Debug/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")] diff --git a/linguard/Log/obj/Debug/net6.0/Linguard.Log.dll b/linguard/Log/obj/Debug/net6.0/Linguard.Log.dll new file mode 100644 index 0000000..561b728 Binary files /dev/null and b/linguard/Log/obj/Debug/net6.0/Linguard.Log.dll differ diff --git a/linguard/Log/obj/Debug/net6.0/Linguard.Log.pdb b/linguard/Log/obj/Debug/net6.0/Linguard.Log.pdb new file mode 100644 index 0000000..ef5cdfa Binary files /dev/null and b/linguard/Log/obj/Debug/net6.0/Linguard.Log.pdb differ diff --git a/linguard/Log/obj/Debug/net6.0/Log.AssemblyInfo.cs b/linguard/Log/obj/Debug/net6.0/Log.AssemblyInfo.cs new file mode 100644 index 0000000..9fab41b --- /dev/null +++ b/linguard/Log/obj/Debug/net6.0/Log.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("José Antonio Mazón San Bartolomé")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("2.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("2.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Linguard")] +[assembly: System.Reflection.AssemblyTitleAttribute("Linguard.Log")] +[assembly: System.Reflection.AssemblyVersionAttribute("2.0.0.0")] + +// Generado por la clase WriteCodeFragment de MSBuild. + diff --git a/linguard/Log/obj/Debug/net6.0/Log.AssemblyInfoInputs.cache b/linguard/Log/obj/Debug/net6.0/Log.AssemblyInfoInputs.cache new file mode 100644 index 0000000..39aff32 --- /dev/null +++ b/linguard/Log/obj/Debug/net6.0/Log.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +328a6e89eb3b6f63c694d4ab3d3e3f3c458f5dd1 diff --git a/linguard/Log/obj/Debug/net6.0/Log.GeneratedMSBuildEditorConfig.editorconfig b/linguard/Log/obj/Debug/net6.0/Log.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d353977 --- /dev/null +++ b/linguard/Log/obj/Debug/net6.0/Log.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,10 @@ +is_global = true +build_property.TargetFramework = net6.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Linguard.Log +build_property.ProjectDir = C:\Users\theyu\repos\linguard\Linguard\Log\ diff --git a/linguard/Log/obj/Debug/net6.0/Log.GlobalUsings.g.cs b/linguard/Log/obj/Debug/net6.0/Log.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/linguard/Log/obj/Debug/net6.0/Log.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/linguard/Log/obj/Debug/net6.0/Log.assets.cache b/linguard/Log/obj/Debug/net6.0/Log.assets.cache new file mode 100644 index 0000000..f38dffb Binary files /dev/null and b/linguard/Log/obj/Debug/net6.0/Log.assets.cache differ diff --git a/linguard/Log/obj/Debug/net6.0/Log.csproj.AssemblyReference.cache b/linguard/Log/obj/Debug/net6.0/Log.csproj.AssemblyReference.cache new file mode 100644 index 0000000..dd3e646 Binary files /dev/null and b/linguard/Log/obj/Debug/net6.0/Log.csproj.AssemblyReference.cache differ diff --git a/linguard/Log/obj/Debug/net6.0/Log.csproj.CoreCompileInputs.cache b/linguard/Log/obj/Debug/net6.0/Log.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..6b28d48 --- /dev/null +++ b/linguard/Log/obj/Debug/net6.0/Log.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +880485ed70790989b14a12873a0db3740d78a200 diff --git a/linguard/Log/obj/Debug/net6.0/Log.csproj.FileListAbsolute.txt b/linguard/Log/obj/Debug/net6.0/Log.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..88063ec --- /dev/null +++ b/linguard/Log/obj/Debug/net6.0/Log.csproj.FileListAbsolute.txt @@ -0,0 +1,24 @@ +C:\Users\theyu\repos\linguard-dotnet\Linguard\Log\bin\Debug\net6.0\Linguard.Log.deps.json +C:\Users\theyu\repos\linguard-dotnet\Linguard\Log\bin\Debug\net6.0\Linguard.Log.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Log\bin\Debug\net6.0\ref\Linguard.Log.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Log\bin\Debug\net6.0\Linguard.Log.pdb +C:\Users\theyu\repos\linguard-dotnet\Linguard\Log\obj\Debug\net6.0\Log.csproj.AssemblyReference.cache +C:\Users\theyu\repos\linguard-dotnet\Linguard\Log\obj\Debug\net6.0\Log.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\theyu\repos\linguard-dotnet\Linguard\Log\obj\Debug\net6.0\Log.AssemblyInfoInputs.cache +C:\Users\theyu\repos\linguard-dotnet\Linguard\Log\obj\Debug\net6.0\Log.AssemblyInfo.cs +C:\Users\theyu\repos\linguard-dotnet\Linguard\Log\obj\Debug\net6.0\Log.csproj.CoreCompileInputs.cache +C:\Users\theyu\repos\linguard-dotnet\Linguard\Log\obj\Debug\net6.0\Linguard.Log.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Log\obj\Debug\net6.0\ref\Linguard.Log.dll +C:\Users\theyu\repos\linguard-dotnet\Linguard\Log\obj\Debug\net6.0\Linguard.Log.pdb +C:\Users\theyu\repos\linguard\Linguard\Log\bin\Debug\net6.0\Linguard.Log.deps.json +C:\Users\theyu\repos\linguard\Linguard\Log\bin\Debug\net6.0\Linguard.Log.dll +C:\Users\theyu\repos\linguard\Linguard\Log\bin\Debug\net6.0\ref\Linguard.Log.dll +C:\Users\theyu\repos\linguard\Linguard\Log\bin\Debug\net6.0\Linguard.Log.pdb +C:\Users\theyu\repos\linguard\Linguard\Log\obj\Debug\net6.0\Log.csproj.AssemblyReference.cache +C:\Users\theyu\repos\linguard\Linguard\Log\obj\Debug\net6.0\Log.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\theyu\repos\linguard\Linguard\Log\obj\Debug\net6.0\Log.AssemblyInfoInputs.cache +C:\Users\theyu\repos\linguard\Linguard\Log\obj\Debug\net6.0\Log.AssemblyInfo.cs +C:\Users\theyu\repos\linguard\Linguard\Log\obj\Debug\net6.0\Log.csproj.CoreCompileInputs.cache +C:\Users\theyu\repos\linguard\Linguard\Log\obj\Debug\net6.0\Linguard.Log.dll +C:\Users\theyu\repos\linguard\Linguard\Log\obj\Debug\net6.0\ref\Linguard.Log.dll +C:\Users\theyu\repos\linguard\Linguard\Log\obj\Debug\net6.0\Linguard.Log.pdb diff --git a/linguard/Log/obj/Debug/net6.0/ref/Linguard.Log.dll b/linguard/Log/obj/Debug/net6.0/ref/Linguard.Log.dll new file mode 100644 index 0000000..cfb8fb6 Binary files /dev/null and b/linguard/Log/obj/Debug/net6.0/ref/Linguard.Log.dll differ diff --git a/linguard/Log/obj/Log.csproj.nuget.dgspec.json b/linguard/Log/obj/Log.csproj.nuget.dgspec.json new file mode 100644 index 0000000..90a35e8 --- /dev/null +++ b/linguard/Log/obj/Log.csproj.nuget.dgspec.json @@ -0,0 +1,66 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj": {} + }, + "projects": { + "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj": { + "version": "2.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj", + "projectName": "Linguard.Log", + "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj", + "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", + "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "NLog": { + "target": "Package", + "version": "[4.7.13, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/linguard/Log/obj/Log.csproj.nuget.g.props b/linguard/Log/obj/Log.csproj.nuget.g.props new file mode 100644 index 0000000..df348a1 --- /dev/null +++ b/linguard/Log/obj/Log.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\theyu\.nuget\packages\ + PackageReference + 6.0.0 + + + + + \ No newline at end of file diff --git a/linguard/Log/obj/Log.csproj.nuget.g.targets b/linguard/Log/obj/Log.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/linguard/Log/obj/Log.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/linguard/Log/obj/project.assets.json b/linguard/Log/obj/project.assets.json new file mode 100644 index 0000000..9d92f4a --- /dev/null +++ b/linguard/Log/obj/project.assets.json @@ -0,0 +1,117 @@ +{ + "version": 3, + "targets": { + "net6.0": { + "NLog/4.7.13": { + "type": "package", + "compile": { + "lib/netstandard2.0/NLog.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NLog.dll": {} + } + } + } + }, + "libraries": { + "NLog/4.7.13": { + "sha512": "AvoGpCuq36B+0wY313XA6gC+YeMvk24rqF8P+HS9fInBGOjCzPjpXp2ln9ATZjPOJtXgHfc8zNmTjyswFGLxvg==", + "type": "package", + "path": "nlog/4.7.13", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/monoandroid44/NLog.dll", + "lib/monoandroid44/NLog.xml", + "lib/net35/NLog.dll", + "lib/net35/NLog.xml", + "lib/net40-client/NLog.dll", + "lib/net40-client/NLog.xml", + "lib/net45/NLog.dll", + "lib/net45/NLog.xml", + "lib/netstandard1.3/NLog.dll", + "lib/netstandard1.3/NLog.xml", + "lib/netstandard1.5/NLog.dll", + "lib/netstandard1.5/NLog.xml", + "lib/netstandard2.0/NLog.dll", + "lib/netstandard2.0/NLog.xml", + "lib/sl4/NLog.dll", + "lib/sl4/NLog.xml", + "lib/sl5/NLog.dll", + "lib/sl5/NLog.xml", + "lib/wp8/NLog.dll", + "lib/wp8/NLog.xml", + "lib/xamarinios10/NLog.dll", + "lib/xamarinios10/NLog.xml", + "nlog.4.7.13.nupkg.sha512", + "nlog.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "net6.0": [ + "NLog >= 4.7.13" + ] + }, + "packageFolders": { + "C:\\Users\\theyu\\.nuget\\packages\\": {} + }, + "project": { + "version": "2.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj", + "projectName": "Linguard.Log", + "projectPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj", + "packagesPath": "C:\\Users\\theyu\\.nuget\\packages\\", + "outputPath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\theyu\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net6.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net6.0": { + "targetAlias": "net6.0", + "dependencies": { + "NLog": { + "target": "Package", + "version": "[4.7.13, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/linguard/Log/obj/project.nuget.cache b/linguard/Log/obj/project.nuget.cache new file mode 100644 index 0000000..b629160 --- /dev/null +++ b/linguard/Log/obj/project.nuget.cache @@ -0,0 +1,10 @@ +{ + "version": 2, + "dgSpecHash": "DbN6ZXzE3V3xmQG8h17p0U3xYuP3RMuQ5XTzRQJxi2R/6nt+LpyhCJ+hNMgMZPEhqceSMc0jA805TQc18Zs/3Q==", + "success": true, + "projectFilePath": "C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj", + "expectedPackageFiles": [ + "C:\\Users\\theyu\\.nuget\\packages\\nlog\\4.7.13\\nlog.4.7.13.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/linguard/Log/obj/project.packagespec.json b/linguard/Log/obj/project.packagespec.json new file mode 100644 index 0000000..b4f5f14 --- /dev/null +++ b/linguard/Log/obj/project.packagespec.json @@ -0,0 +1 @@ +"restore":{"projectUniqueName":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj","projectName":"Linguard.Log","projectPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\Log.csproj","outputPath":"C:\\Users\\theyu\\repos\\linguard\\Linguard\\Log\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net6.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net6.0":{"targetAlias":"net6.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]}}"frameworks":{"net6.0":{"targetAlias":"net6.0","dependencies":{"NLog":{"target":"Package","version":"[4.7.13, )"}},"imports":["net461","net462","net47","net471","net472","net48"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/linguard/Log/obj/rider.project.restore.info b/linguard/Log/obj/rider.project.restore.info new file mode 100644 index 0000000..d5c3989 --- /dev/null +++ b/linguard/Log/obj/rider.project.restore.info @@ -0,0 +1 @@ +16454671675444561 \ No newline at end of file diff --git a/linguard/__main__.py b/linguard/__main__.py deleted file mode 100644 index 2664483..0000000 --- a/linguard/__main__.py +++ /dev/null @@ -1,93 +0,0 @@ -import argparse -import atexit -import os -from logging import warning, fatal, info, debug - -from flask import Flask -from flask_login import LoginManager -from flask_qrcode import QRcode - -from linguard.__version__ import commit, release -from linguard.common.models.user import users -from linguard.common.properties import global_properties -from linguard.common.utils.system import try_makedir -from linguard.core.managers.cron import cron_manager -from linguard.core.managers.wireguard import wireguard_manager -from linguard.web.static.assets.resources import APP_NAME - -login_manager = LoginManager() - - -@login_manager.user_loader -def load_user(user_id): - return users.get(user_id, None) - - -def parse_args(): - parser = argparse.ArgumentParser(description=f"Welcome to {APP_NAME}, the best WireGuard's web GUI :)") - parser.add_argument("workdir", type=str, - help=f"Path to the directory used to store all data related to {APP_NAME}.") - parser.add_argument("--debug", help="Start flask in debug mode.", action="store_true") - return parser.parse_args() - - -args = parse_args() - -workdir = os.path.abspath(args.workdir) -if os.path.exists(workdir) and not os.path.isdir(workdir): - fatal(f"'{workdir}' is not a valid working directory!") -try_makedir(workdir) -global_properties.workdir = workdir - -from linguard.core.config.web import config as web_config -from linguard.core.config.logger import config as log_config -from linguard.core.managers.config import config_manager -from linguard.web.router import router - -app = Flask(__name__, template_folder="web/templates", static_folder="web/static") -info(f"Logging to '{log_config.logfile}'...") -config_manager.load() -if log_config.overwrite: - log_config.reset_logfile() - -app.config['SECRET_KEY'] = web_config.secret_key -app.register_blueprint(router) -QRcode(app) -login_manager.init_app(app) -wireguard_manager.start() -cron_manager.start() - - -@atexit.register -def on_exit(): - warning(f"Shutting down {APP_NAME}...") - cron_manager.stop() - wireguard_manager.stop() - - -if __name__ == "__main__": - warning("**************************") - warning("RUNNING DEVELOPMENT SERVER") - warning("**************************") - global_properties.dev_env = True - # Override log level (although it can be manually edited via UI) - log_config.level = "debug" - log_config.apply() - # Unlike the production scenario, a missing version file is not fatal - if not release or not commit: - warning("!! No versioning information provided !!") - else: - info(f"Running {APP_NAME} {release}") - debug(f"Commit hash: {commit}") - app.run(debug=args.debug, port=8080, host="0.0.0.0") -else: - if not release or not commit: - if global_properties.dev_env: - warning("!! No versioning information provided !!") - else: - fatal("!! No versioning information provided !!") - exit(1) - if "-" in release or "+" in release: - global_properties.dev_env = True - info(f"Running {APP_NAME} {release}") - debug(f"Commit hash: {commit}") diff --git a/linguard/__version__.py b/linguard/__version__.py deleted file mode 100644 index cdbac4e..0000000 --- a/linguard/__version__.py +++ /dev/null @@ -1,2 +0,0 @@ -release = '0.1.1' -commit = 'ba9bf1162adf017ea5994d74237485a701ba581a' diff --git a/linguard/common/models/encrypted_yamlable.py b/linguard/common/models/encrypted_yamlable.py deleted file mode 100644 index e16f42f..0000000 --- a/linguard/common/models/encrypted_yamlable.py +++ /dev/null @@ -1,37 +0,0 @@ -import os -from typing import Type - -from yamlable import YamlAble, Y - -from linguard.common.utils.encryption import CryptoUtils -from linguard.common.utils.system import try_makedir - - -class EncryptedYamlAble(YamlAble): - - def save(self, filepath: str, encryption_key: str): - """ - Save the current instance as an encrypted yaml file. - - :param encryption_key: - :param filepath: - :return: - """ - data = CryptoUtils().encrypt(self.dumps_yaml().encode(), encryption_key) - path = os.path.abspath(filepath) - try_makedir(os.path.dirname(path)) - with open(path, "wb") as file: - file.write(data) - - @classmethod - def load(cls: Type[Y], filepath: str, encryption_key: str) -> Y: - """ - Read an encrypted yaml file and return a serialized instance of this class. - - :param encryption_key: - :param filepath: - :return: - """ - with open(filepath, "rb") as file: - yaml_str = CryptoUtils().decrypt(file.read(), encryption_key).decode() - return cls.loads_yaml(yaml_str) \ No newline at end of file diff --git a/linguard/common/models/enhanced_dict.py b/linguard/common/models/enhanced_dict.py deleted file mode 100644 index a5506a2..0000000 --- a/linguard/common/models/enhanced_dict.py +++ /dev/null @@ -1,40 +0,0 @@ -from typing import Mapping, Dict, TypeVar - -K = TypeVar('K') -V = TypeVar('V') - - -class EnhancedDict(Dict, Mapping[K, V]): - - def set_contents(self, dct: "EnhancedDict"): - """ - Clear the dictionary and fill it with the values of the given one. - - :param dct: - :return: - """ - self.clear() - self.update(dct) - - def sort(self, order_by): - self.set_contents(EnhancedDict(sorted(self.items(), key=order_by))) - - def get_key_by_attr(self, attr: str, attr_value: str) -> K: - """ - Get the first key (or None) of the dictionary which contains an attribute whose value is equal to attr_value. - - :param attr: Attribute to compare. - :param attr_value: Value to compare. - :return: The first matching key or None. - """ - return next(iter(filter(lambda k: k.__getattribute__(attr) == attr_value, self.keys())), None) - - def get_value_by_attr(self, attr: str, attr_value: str) -> V: - """ - Get the first value (or None) of the dictionary which contains an attribute whose value is equal to attr_value. - - :param attr: Attribute to compare. - :param attr_value: Value to compare. - :return: The first matching value or None. - """ - return next(iter(filter(lambda v: v.__getattribute__(attr) == attr_value, self.values())), None) \ No newline at end of file diff --git a/linguard/common/models/user.py b/linguard/common/models/user.py deleted file mode 100644 index 665811d..0000000 --- a/linguard/common/models/user.py +++ /dev/null @@ -1,98 +0,0 @@ -from datetime import datetime -from typing import Type, Dict, Any, Mapping -from uuid import uuid4 as gen_uuid - -from flask_login import logout_user, UserMixin -from werkzeug.security import check_password_hash, generate_password_hash -from yamlable import YamlAble, yaml_info, Y - -from linguard.common.models.encrypted_yamlable import EncryptedYamlAble -from linguard.common.models.enhanced_dict import EnhancedDict, K, V - - -@yaml_info(yaml_tag='user') -class User(UserMixin, YamlAble): - HASHING_METHOD = "pbkdf2:sha256" - login_date: datetime - - def __init__(self, name: str): - self.id = gen_uuid().hex - self.name = name - self.__password = None - self.__authenticated = False - - def __str__(self): - return { - "id": self.id, - "name": self.name, - "authenticated": self.__authenticated - }.__str__() - - @property - def password(self): - return self.__password - - @password.setter - def password(self, value: str): - self.__password = generate_password_hash(str(value), self.HASHING_METHOD) - - def __to_yaml_dict__(self): - """ Called when you call yaml.dump()""" - return { - "id": self.id, - "name": self.name, - "password": self.password, - } - - @classmethod - def __from_yaml_dict__(cls, # type: Type[Y] - dct, # type: Dict[str, Any] - yaml_tag # type: str - ): # type: (...) -> Y - u = User(dct["name"]) - u.id = dct["id"] - u.__password = str(dct["password"]) - return u - - def login(self, password: str) -> bool: - if self.is_authenticated: - return True - self.__authenticated = self.check_password(password) - if self.__authenticated: - self.login_date = datetime.now() - return self.__authenticated - - def check_password(self, password: str) -> bool: - """Check if the specified password matches the user's password without triggering a proper login.""" - return check_password_hash(self.password, password) - - def logout(self): - self.__authenticated = False - return logout_user() - - @property - def is_authenticated(self): - return self.__authenticated - - -@yaml_info(yaml_tag='users') -class UserDict(EnhancedDict, EncryptedYamlAble, Mapping[K, V]): - - def __to_yaml_dict__(self): # type: (...) -> Dict[str, Any] - return self - - @classmethod - def __from_yaml_dict__(cls, # type: Type[Y] - dct, # type: Dict[str, Any] - yaml_tag # type: str - ): # type: (...) -> Y - u = UserDict() - u.update(dct) - return u - - def sort(self, order_by=lambda pair: pair[1].name): - super(UserDict, self).sort(order_by) - - -users: UserDict[str, User] -users = UserDict() diff --git a/linguard/common/properties.py b/linguard/common/properties.py deleted file mode 100644 index 1c48d53..0000000 --- a/linguard/common/properties.py +++ /dev/null @@ -1,30 +0,0 @@ -import os - - -class Properties: - - def __init__(self): - self.dev_env = False - self.workdir = "" - self.setup_required = True - self.setup_filename = ".setup" - - def join_workdir(self, path: str) -> str: - """ - Prepend the current workdir to the given path. - - :param path: - :return: - """ - return os.path.join(self.workdir, path) - - @property - def setup_filepath(self): - return self.join_workdir(self.setup_filename) - - def setup_file_exists(self): - return os.path.exists(self.setup_filepath) - - -global_properties = Properties() - diff --git a/linguard/common/utils/encryption.py b/linguard/common/utils/encryption.py deleted file mode 100644 index c332830..0000000 --- a/linguard/common/utils/encryption.py +++ /dev/null @@ -1,28 +0,0 @@ -import base64 -import random - -from cryptography.fernet import Fernet - -import string - - -class CryptoUtils: - - __magic = "Alonso" - KEY_LEN = 32 - - def __init__(self): - self.__magic = "Alonso" - - def encrypt(self, data: bytes, key: str) -> bytes: - return self.__magic.encode() + Fernet(base64.b64encode(key.encode())).encrypt(data) - - def decrypt(self, data: bytes, key: str) -> bytes: - return Fernet(base64.b64encode(key.encode())).decrypt(data[len(self.__magic):]) - - def is_encrypted(self, data: bytes): - return data[:len(self.__magic)] != self.__magic - - @classmethod - def generate_key(cls) -> str: - return ''.join(random.choices(string.ascii_letters + string.digits + string.punctuation, k=cls.KEY_LEN)) diff --git a/linguard/common/utils/file.py b/linguard/common/utils/file.py deleted file mode 100644 index 33b065c..0000000 --- a/linguard/common/utils/file.py +++ /dev/null @@ -1,11 +0,0 @@ -import os - - -def write_lines(content: str, path: str): - with open(path, "w") as file: - file.writelines(content) - - -def get_filename_without_extension(path: str) -> str: - filename, extension = os.path.splitext(path) - return os.path.basename(filename) diff --git a/linguard/common/utils/logs.py b/linguard/common/utils/logs.py deleted file mode 100644 index 8127e5d..0000000 --- a/linguard/common/utils/logs.py +++ /dev/null @@ -1,11 +0,0 @@ -import traceback -from logging import fatal, error, debug - - -def log_exception(e: Exception, is_fatal: bool = False): - error_msg = str(e) or f"{e.__class__.__name__} exception thrown by {e.__class__.__module__}" - if is_fatal: - fatal(error_msg) - else: - error(error_msg) - debug(f"{traceback.format_exc()}") diff --git a/linguard/common/utils/network.py b/linguard/common/utils/network.py deleted file mode 100644 index 679014a..0000000 --- a/linguard/common/utils/network.py +++ /dev/null @@ -1,29 +0,0 @@ -import json -from typing import List, Dict, Any - -from linguard.common.utils.strings import list_to_str -from linguard.common.utils.system import Command -from linguard.web.static.assets.resources import EMPTY_FIELD - - -def get_system_interfaces() -> Dict[str, Any]: - ifaces = {} - for iface in json.loads(Command("ip -json address").run().output): - ifaces[iface["ifname"]] = iface - return ifaces - - -def get_default_gateway() -> str: - return Command("ip route | head -1 | xargs | cut -d ' ' -f 5").run().output - - -def get_routing_table() -> List[Dict[str, Any]]: - table = json.loads(Command("ip -json route").run().output) - for entry in table: - for key in entry: - value = entry[key] - if not value: - entry[key] = EMPTY_FIELD - elif isinstance(value, list): - entry[key] = list_to_str(value) - return table diff --git a/linguard/common/utils/strings.py b/linguard/common/utils/strings.py deleted file mode 100644 index 0d71cd9..0000000 --- a/linguard/common/utils/strings.py +++ /dev/null @@ -1,22 +0,0 @@ -from typing import List - - -def list_to_str(_list: list, separator=", ") -> str: - length = len(_list) - text = "" - count = 0 - for item in _list: - if count < length - 1: - text += item + separator - else: - text += item - count += 1 - return text - - -def str_to_list(string: str, separator: str = "\n") -> List[str]: - chunks = string.strip().split(separator) - lst = [] - for cmd in chunks: - lst.append(cmd) - return lst diff --git a/linguard/common/utils/system.py b/linguard/common/utils/system.py deleted file mode 100644 index 9a90567..0000000 --- a/linguard/common/utils/system.py +++ /dev/null @@ -1,53 +0,0 @@ -import os -from logging import debug, error -from subprocess import run, PIPE - - -class CommandResult: - """Represents the result of a command execution.""" - - def __init__(self, code: int, output: str, err: str): - self.code = code - self.output = output - self.err = err - self.successful = (code < 1) - - -class Command: - """ - Represents an interface to interact with a binary, executable file. - """ - - def __init__(self, cmd): - self.cmd = cmd - - def run(self, as_root: bool = False) -> CommandResult: - """ - Execute the command and return information about the execution. - :param as_root: Run the command as root (using sudo) - :return: A CommandResult object containing information about how the execution went. - """ - cmd = self.cmd - if as_root: - cmd = f"sudo {cmd}" - debug(f"Running '{cmd}'...") - proc = run(cmd, shell=True, check=False, stdout=PIPE, stderr=PIPE) - result = CommandResult(proc.returncode, proc.stdout.decode('utf-8').strip(), - proc.stderr.decode('utf-8').strip()) - if not result.successful: - error(f"Failed to run '{cmd}': err={result.err} | out={result.output} | code={result.code}") - return result - - def run_as_root(self) -> CommandResult: - return self.run(True) - - -def try_makedir(path: str): - try: - os.makedirs(path) - debug(f"Created folder ({path})...") - except FileExistsError: - pass - except Exception as e: - error(f"Unable to create folder: {e}.") - raise diff --git a/linguard/common/utils/time.py b/linguard/common/utils/time.py deleted file mode 100644 index d616d79..0000000 --- a/linguard/common/utils/time.py +++ /dev/null @@ -1,24 +0,0 @@ -from datetime import datetime - - -def get_time_ago(reference: datetime): - delta = datetime.now() - reference - days = delta.days - if days: - if days > 1: - return f"{days} days ago" - return "1 day ago" - hours, remainder = divmod(delta.seconds, 3600) - if hours: - if hours > 1: - return f"{hours} hours ago" - return "1 hour ago" - minutes, seconds = divmod(remainder, 60) - if minutes: - if minutes > 1: - return f"{minutes} minutes ago" - return "1 minute ago" - if seconds: - if seconds > 1: - return f"{seconds} seconds ago" - return "a moment ago" diff --git a/linguard/core/Configuration/Configuration.cs b/linguard/core/Configuration/Configuration.cs new file mode 100644 index 0000000..f628bf9 --- /dev/null +++ b/linguard/core/Configuration/Configuration.cs @@ -0,0 +1,18 @@ +namespace Linguard.Core.Configuration; + +public class Configuration : IConfiguration { + + public IWireguardConfiguration Wireguard { get; set; } = new WireguardConfiguration(); + public ILoggingConfiguration Logging { get; set; } = new LoggingConfiguration(); + public IWebConfiguration Web { get; set; } = new WebConfiguration(); + public ITrafficConfiguration Traffic { get; set; } = new TrafficConfiguration(); + + public object Clone() { + var clone = (IConfiguration) MemberwiseClone(); + clone.Wireguard = (IWireguardConfiguration) Wireguard.Clone(); + clone.Logging = (ILoggingConfiguration) Logging.Clone(); + clone.Web = (IWebConfiguration) Web.Clone(); + clone.Traffic = (ITrafficConfiguration) Traffic.Clone(); + return clone; + } +} \ No newline at end of file diff --git a/linguard/core/Configuration/Exceptions/ConfigurationNotLoadedError.cs b/linguard/core/Configuration/Exceptions/ConfigurationNotLoadedError.cs new file mode 100644 index 0000000..45d3185 --- /dev/null +++ b/linguard/core/Configuration/Exceptions/ConfigurationNotLoadedError.cs @@ -0,0 +1,9 @@ +namespace Linguard.Core.Configuration.Exceptions; + +/// +/// Signals an error while loading the configuration of the application. +/// +public class ConfigurationNotLoadedError : Exception { + public ConfigurationNotLoadedError(string message) : base(message) {} + public ConfigurationNotLoadedError(string message, Exception e) : base(message, e) {} +} \ No newline at end of file diff --git a/linguard/core/Configuration/Exceptions/ConfigurationNotSavedError.cs b/linguard/core/Configuration/Exceptions/ConfigurationNotSavedError.cs new file mode 100644 index 0000000..3080e5e --- /dev/null +++ b/linguard/core/Configuration/Exceptions/ConfigurationNotSavedError.cs @@ -0,0 +1,9 @@ +namespace Linguard.Core.Configuration.Exceptions; + +/// +/// Signals an error while loading the configuration of the application. +/// +public class ConfigurationNotSavedError : Exception { + public ConfigurationNotSavedError(string message) : base(message) {} + public ConfigurationNotSavedError(string message, Exception e) : base(message, e) {} +} \ No newline at end of file diff --git a/linguard/core/Configuration/IConfiguration.cs b/linguard/core/Configuration/IConfiguration.cs new file mode 100644 index 0000000..ad73f84 --- /dev/null +++ b/linguard/core/Configuration/IConfiguration.cs @@ -0,0 +1,23 @@ +namespace Linguard.Core.Configuration; + +/// +/// Represents all configurable settings. +/// +public interface IConfiguration : ICloneable { + /// + /// Wireguard related settings. + /// + IWireguardConfiguration Wireguard { get; set; } + /// + /// Logging related settings. + /// + ILoggingConfiguration Logging { get; set; } + /// + /// Web related settings. + /// + IWebConfiguration Web { get; set; } + /// + /// Traffic related settings. + /// + ITrafficConfiguration Traffic { get; set; } +} \ No newline at end of file diff --git a/linguard/core/Configuration/ILoggingConfiguration.cs b/linguard/core/Configuration/ILoggingConfiguration.cs new file mode 100644 index 0000000..8c3b4c2 --- /dev/null +++ b/linguard/core/Configuration/ILoggingConfiguration.cs @@ -0,0 +1,8 @@ +using Linguard.Log; + +namespace Linguard.Core.Configuration; + +public interface ILoggingConfiguration : ICloneable { + public LogLevel Level { get; set; } + public bool Overwrite { get; set; } +} \ No newline at end of file diff --git a/linguard/core/Configuration/ITrafficConfiguration.cs b/linguard/core/Configuration/ITrafficConfiguration.cs new file mode 100644 index 0000000..26803af --- /dev/null +++ b/linguard/core/Configuration/ITrafficConfiguration.cs @@ -0,0 +1,8 @@ +using Linguard.Core.Drivers.TrafficStorage; + +namespace Linguard.Core.Configuration; + +public interface ITrafficConfiguration : ICloneable { + public bool Enabled { get; set; } + public ITrafficStorageDriver StorageDriver { get; set; } +} \ No newline at end of file diff --git a/linguard/core/Configuration/IWebConfiguration.cs b/linguard/core/Configuration/IWebConfiguration.cs new file mode 100644 index 0000000..4513971 --- /dev/null +++ b/linguard/core/Configuration/IWebConfiguration.cs @@ -0,0 +1,9 @@ +using Linguard.Core.Models; + +namespace Linguard.Core.Configuration; + +public interface IWebConfiguration : ICloneable { + public int LoginAttempts { get; set; } + public string SecretKey { get; set; } + public Style Style { get; set; } +} \ No newline at end of file diff --git a/linguard/core/Configuration/IWireguardConfiguration.cs b/linguard/core/Configuration/IWireguardConfiguration.cs new file mode 100644 index 0000000..5a25582 --- /dev/null +++ b/linguard/core/Configuration/IWireguardConfiguration.cs @@ -0,0 +1,31 @@ +using Linguard.Core.Models.Wireguard; + +namespace Linguard.Core.Configuration; + +public interface IWireguardConfiguration : ICloneable { + public HashSet Interfaces { get; set; } + /// + /// Path to the iptables binary file. + /// + public string IptablesBin { get; set; } + /// + /// Path to the wg binary file. + /// + public string WireguardBin { get; set; } + /// + /// Path to the wg-quick binary file. + /// + public string WireguardQuickBin { get; set; } + /// + /// Default primary DNS for all peers if none specified at interface level. + /// + public Uri? PrimaryDns { get; set; } + /// + /// Default secondary DNS for all peers if none specified at interface level. + /// + public Uri? SecondaryDns { get; set; } + /// + /// Default endpoint for all peers if none specified at interface level. + /// + public Uri? Endpoint { get; set; } +} \ No newline at end of file diff --git a/linguard/core/Configuration/IWorkingDirectory.cs b/linguard/core/Configuration/IWorkingDirectory.cs new file mode 100644 index 0000000..4dda5f0 --- /dev/null +++ b/linguard/core/Configuration/IWorkingDirectory.cs @@ -0,0 +1,11 @@ +using Linguard.Core.Models.Wireguard; + +namespace Linguard.Core.Configuration; + +/// +/// The root directory for the application, used to store and read data. +/// +public interface IWorkingDirectory { + DirectoryInfo BaseDirectory { get; set; } + FileInfo GetInterfaceConfigurationFile(Interface @interface); +} \ No newline at end of file diff --git a/linguard/core/Configuration/LoggingConfiguration.cs b/linguard/core/Configuration/LoggingConfiguration.cs new file mode 100644 index 0000000..67854e9 --- /dev/null +++ b/linguard/core/Configuration/LoggingConfiguration.cs @@ -0,0 +1,12 @@ +using Linguard.Log; + +namespace Linguard.Core.Configuration; + +public class LoggingConfiguration : ILoggingConfiguration{ + public LogLevel Level { get; set; } = LogLevel.Info; + public bool Overwrite { get; set; } + + public object Clone() { + return MemberwiseClone(); + } +} \ No newline at end of file diff --git a/linguard/core/Configuration/Serialization/IConfigurationSerializer.cs b/linguard/core/Configuration/Serialization/IConfigurationSerializer.cs new file mode 100644 index 0000000..ea8aeab --- /dev/null +++ b/linguard/core/Configuration/Serialization/IConfigurationSerializer.cs @@ -0,0 +1,9 @@ +namespace Linguard.Core.Configuration.Serialization; + +/// +/// Represents a class capable of serializing and deserializing the configuration of the application. +/// +public interface IConfigurationSerializer { + string Serialize(IConfiguration configuration); + IConfiguration Deserialize(string text); +} \ No newline at end of file diff --git a/linguard/core/Configuration/Serialization/IPAddressCidrTypeConverter.cs b/linguard/core/Configuration/Serialization/IPAddressCidrTypeConverter.cs new file mode 100644 index 0000000..093c415 --- /dev/null +++ b/linguard/core/Configuration/Serialization/IPAddressCidrTypeConverter.cs @@ -0,0 +1,23 @@ +using YamlDotNet.Core; +using YamlDotNet.Core.Events; +using YamlDotNet.Serialization; + +namespace Linguard.Core.Configuration.Serialization; + +public class IPAddressCidrTypeConverter : IYamlTypeConverter { + + public bool Accepts(Type type) { + return type == typeof(IPAddressCidr); + } + + public object? ReadYaml(IParser parser, Type type) { + var value = (parser.Current as Scalar)?.Value; + parser.MoveNext(); + return string.IsNullOrEmpty(value) ? default : IPAddressCidr.Parse(value); + } + + public void WriteYaml(IEmitter emitter, object? value, Type type) { + var address = (value as IPAddressCidr)?.ToString(); + emitter.Emit(new Scalar(null, address ?? string.Empty)); + } +} \ No newline at end of file diff --git a/linguard/core/Configuration/Serialization/NetworkInterfaceTypeConverter.cs b/linguard/core/Configuration/Serialization/NetworkInterfaceTypeConverter.cs new file mode 100644 index 0000000..2a77cc7 --- /dev/null +++ b/linguard/core/Configuration/Serialization/NetworkInterfaceTypeConverter.cs @@ -0,0 +1,26 @@ +using System.Net.NetworkInformation; +using YamlDotNet.Core; +using YamlDotNet.Core.Events; +using YamlDotNet.Serialization; + +namespace Linguard.Core.Configuration.Serialization; + +public class NetworkInterfaceTypeConverter : IYamlTypeConverter { + public bool Accepts(Type type) { + return type == typeof(NetworkInterface) || type.BaseType == typeof(NetworkInterface); + } + + public object? ReadYaml(IParser parser, Type type) { + var value = (parser.Current as Scalar)?.Value; + parser.MoveNext(); + return string.IsNullOrEmpty(value) + ? default + : NetworkInterface.GetAllNetworkInterfaces() + .First(i => i.Name == value); + } + + public void WriteYaml(IEmitter emitter, object? value, Type type) { + var @interface = (value as NetworkInterface)?.Name; + emitter.Emit(new Scalar(null, @interface ?? string.Empty)); + } +} \ No newline at end of file diff --git a/linguard/core/Configuration/Serialization/StyleTypeConverter.cs b/linguard/core/Configuration/Serialization/StyleTypeConverter.cs new file mode 100644 index 0000000..88d00a4 --- /dev/null +++ b/linguard/core/Configuration/Serialization/StyleTypeConverter.cs @@ -0,0 +1,23 @@ +using Linguard.Core.Models; +using YamlDotNet.Core; +using YamlDotNet.Core.Events; +using YamlDotNet.Serialization; + +namespace Linguard.Core.Configuration.Serialization; + +public class StyleTypeConverter : IYamlTypeConverter { + public bool Accepts(Type type) { + return type == typeof(Style); + } + + public object? ReadYaml(IParser parser, Type type) { + var value = (parser.Current as Scalar)?.Value; + var style = string.IsNullOrEmpty(value) ? default : Enum.Parseerror-404-monochrome \ No newline at end of file diff --git a/linguard/web/static/assets/resources.py b/linguard/web/static/assets/resources.py deleted file mode 100644 index 1cc72b1..0000000 --- a/linguard/web/static/assets/resources.py +++ /dev/null @@ -1,2 +0,0 @@ -APP_NAME = "Linguard" -EMPTY_FIELD = "None" diff --git a/linguard/web/static/css/styles.css b/linguard/web/static/css/styles.css deleted file mode 100644 index 4947065..0000000 --- a/linguard/web/static/css/styles.css +++ /dev/null @@ -1,10257 +0,0 @@ -@charset "UTF-8"; -/*! -* Start Bootstrap - {{ app_name }} v6.0.2 (https://startbootstrap.com/template/sb-admin) -* Copyright 2013-2020 Start Bootstrap -* Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-sb-admin/blob/master/LICENSE) -*/ -/*! - * Bootstrap v4.5.3 (https://getbootstrap.com/) - * Copyright 2011-2020 The Bootstrap Authors - * Copyright 2011-2020 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */ -:root { - --blue: #007bff; - --indigo: #6610f2; - --purple: #6f42c1; - --pink: #e83e8c; - --red: #dc3545; - --orange: #fd7e14; - --yellow: #ffc107; - --green: #50a765; - --teal: #20c997; - --cyan: #17a2b8; - --white: #fff; - --gray: #6c757d; - --gray-dark: #343a40; - --primary: #007bff; - --secondary: #6c757d; - --success: #50a765; - --info: #17a2b8; - --warning: #ffc107; - --danger: #dc3545; - --light: #f8f9fa; - --dark: #343a40; - --breakpoint-xs: 0; - --breakpoint-sm: 576px; - --breakpoint-md: 768px; - --breakpoint-lg: 992px; - --breakpoint-xl: 1200px; - --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; - --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; -} - -*, -*::before, -*::after { - box-sizing: border-box; -} - -html { - font-family: sans-serif; - line-height: 1.15; - -webkit-text-size-adjust: 100%; - -webkit-tap-highlight-color: rgba(0, 0, 0, 0); -} - -article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { - display: block; -} - -body { - margin: 0; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #212529; - text-align: left; - background-color: #fff; -} - -[tabindex="-1"]:focus:not(:focus-visible) { - outline: 0 !important; -} - -hr { - box-sizing: content-box; - height: 0; - overflow: visible; -} - -h1, h2, h3, h4, h5, h6 { - margin-top: 0; - margin-bottom: 0.5rem; -} - -p { - margin-top: 0; - margin-bottom: 1rem; -} - -abbr[title], -abbr[data-original-title] { - text-decoration: underline; - -webkit-text-decoration: underline dotted; - text-decoration: underline dotted; - cursor: help; - border-bottom: 0; - -webkit-text-decoration-skip-ink: none; - text-decoration-skip-ink: none; -} - -address { - margin-bottom: 1rem; - font-style: normal; - line-height: inherit; -} - -ol, -ul, -dl { - margin-top: 0; - margin-bottom: 1rem; -} - -ol ol, -ul ul, -ol ul, -ul ol { - margin-bottom: 0; -} - -dt { - font-weight: 700; -} - -dd { - margin-bottom: 0.5rem; - margin-left: 0; -} - -blockquote { - margin: 0 0 1rem; -} - -b, -strong { - font-weight: bolder; -} - -small { - font-size: 80%; -} - -sub, -sup { - position: relative; - font-size: 75%; - line-height: 0; - vertical-align: baseline; -} - -sub { - bottom: -0.25em; -} - -sup { - top: -0.5em; -} - -a { - color: #007bff; - text-decoration: none; - background-color: transparent; -} -a:hover { - color: #0056b3; - text-decoration: underline; -} - -a:not([href]):not([class]) { - color: inherit; - text-decoration: none; -} -a:not([href]):not([class]):hover { - color: inherit; - text-decoration: none; -} - -pre, -code, -kbd, -samp { - font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; - font-size: 1em; -} - -pre { - margin-top: 0; - margin-bottom: 1rem; - overflow: auto; - -ms-overflow-style: scrollbar; -} - -figure { - margin: 0 0 1rem; -} - -img { - vertical-align: middle; - border-style: none; -} - -svg { - overflow: hidden; - vertical-align: middle; -} - -table { - border-collapse: collapse; -} - -caption { - padding-top: 0.75rem; - padding-bottom: 0.75rem; - color: #6c757d; - text-align: left; - caption-side: bottom; -} - -th { - text-align: inherit; - text-align: -webkit-match-parent; -} - -label { - display: inline-block; - margin-bottom: 0.5rem; -} - -button { - border-radius: 0; -} - -button:focus { - outline: 1px dotted; - outline: 5px auto -webkit-focus-ring-color; -} - -input, -button, -select, -optgroup, -textarea { - margin: 0; - font-family: inherit; - font-size: inherit; - line-height: inherit; -} - -button, -input { - overflow: visible; -} - -button, -select { - text-transform: none; -} - -[role=button] { - cursor: pointer; -} - -select { - word-wrap: normal; -} - -button, -[type=button], -[type=reset], -[type=submit] { - -webkit-appearance: button; -} - -button:not(:disabled), -[type=button]:not(:disabled), -[type=reset]:not(:disabled), -[type=submit]:not(:disabled) { - cursor: pointer; -} - -button::-moz-focus-inner, -[type=button]::-moz-focus-inner, -[type=reset]::-moz-focus-inner, -[type=submit]::-moz-focus-inner { - padding: 0; - border-style: none; -} - -input[type=radio], -input[type=checkbox] { - box-sizing: border-box; - padding: 0; -} - -textarea { - overflow: auto; - resize: vertical; -} - -fieldset { - min-width: 0; - padding: 0; - margin: 0; - border: 0; -} - -legend { - display: block; - width: 100%; - max-width: 100%; - padding: 0; - margin-bottom: 0.5rem; - font-size: 1.5rem; - line-height: inherit; - color: inherit; - white-space: normal; -} - -progress { - vertical-align: baseline; -} - -[type=number]::-webkit-inner-spin-button, -[type=number]::-webkit-outer-spin-button { - height: auto; -} - -[type=search] { - outline-offset: -2px; - -webkit-appearance: none; -} - -[type=search]::-webkit-search-decoration { - -webkit-appearance: none; -} - -::-webkit-file-upload-button { - font: inherit; - -webkit-appearance: button; -} - -output { - display: inline-block; -} - -summary { - display: list-item; - cursor: pointer; -} - -template { - display: none; -} - -[hidden] { - display: none !important; -} - -h1, h2, h3, h4, h5, h6, -.h1, .h2, .h3, .h4, .h5, .h6 { - margin-bottom: 0.5rem; - font-weight: 500; - line-height: 1.2; -} - -h1, .h1 { - font-size: 2.5rem; -} - -h2, .h2 { - font-size: 2rem; -} - -h3, .h3 { - font-size: 1.75rem; -} - -h4, .h4 { - font-size: 1.5rem; -} - -h5, .h5 { - font-size: 1.25rem; -} - -h6, .h6 { - font-size: 1rem; -} - -.lead { - font-size: 1.25rem; - font-weight: 300; -} - -.display-1 { - font-size: 6rem; - font-weight: 300; - line-height: 1.2; -} - -.display-2 { - font-size: 5.5rem; - font-weight: 300; - line-height: 1.2; -} - -.display-3 { - font-size: 4.5rem; - font-weight: 300; - line-height: 1.2; -} - -.display-4 { - font-size: 3.5rem; - font-weight: 300; - line-height: 1.2; -} - -hr { - margin-top: 1rem; - margin-bottom: 1rem; - border: 0; - border-top: 1px solid rgba(0, 0, 0, 0.1); -} - -small, -.small { - font-size: 80%; - font-weight: 400; -} - -mark, -.mark { - padding: 0.2em; - background-color: #fcf8e3; -} - -.list-unstyled { - padding-left: 0; - list-style: none; -} - -.list-inline { - padding-left: 0; - list-style: none; -} - -.list-inline-item { - display: inline-block; -} -.list-inline-item:not(:last-child) { - margin-right: 0.5rem; -} - -.initialism { - font-size: 90%; - text-transform: uppercase; -} - -.blockquote { - margin-bottom: 1rem; - font-size: 1.25rem; -} - -.blockquote-footer { - display: block; - font-size: 80%; - color: #6c757d; -} -.blockquote-footer::before { - content: "— "; -} - -.img-fluid { - max-width: 100%; - height: auto; -} - -.img-thumbnail { - padding: 0.25rem; - background-color: #fff; - border: 1px solid #dee2e6; - border-radius: 0.25rem; - max-width: 100%; - height: auto; -} - -.figure { - display: inline-block; -} - -.figure-img { - margin-bottom: 0.5rem; - line-height: 1; -} - -.figure-caption { - font-size: 90%; - color: #6c757d; -} - -code { - font-size: 87.5%; - color: #e83e8c; - word-wrap: break-word; -} -a > code { - color: inherit; -} - -kbd { - padding: 0.2rem 0.4rem; - font-size: 87.5%; - color: #fff; - background-color: #212529; - border-radius: 0.2rem; -} -kbd kbd { - padding: 0; - font-size: 100%; - font-weight: 700; -} - -pre { - display: block; - font-size: 87.5%; - color: #212529; -} -pre code { - font-size: inherit; - color: inherit; - word-break: normal; -} - -.pre-scrollable { - max-height: 340px; - overflow-y: scroll; -} - -.container, -.container-fluid, -.container-xl, -.container-lg, -.container-md, -.container-sm { - width: 100%; - padding-right: 0.75rem; - padding-left: 0.75rem; - margin-right: auto; - margin-left: auto; -} - -@media (min-width: 576px) { - .container-sm, .container { - max-width: 540px; - } -} -@media (min-width: 768px) { - .container-md, .container-sm, .container { - max-width: 720px; - } -} -@media (min-width: 992px) { - .container-lg, .container-md, .container-sm, .container { - max-width: 960px; - } -} -@media (min-width: 1200px) { - .container-xl, .container-lg, .container-md, .container-sm, .container { - max-width: 1140px; - } -} -.row { - display: flex; - flex-wrap: wrap; - margin-right: -0.75rem; - margin-left: -0.75rem; -} - -.no-gutters { - margin-right: 0; - margin-left: 0; -} -.no-gutters > .col, -.no-gutters > [class*=col-] { - padding-right: 0; - padding-left: 0; -} - -.col-xl, -.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg, -.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md, -.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .col-sm, -.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col, -.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 { - position: relative; - width: 100%; - padding-right: 0.75rem; - padding-left: 0.75rem; -} - -.col { - flex-basis: 0; - flex-grow: 1; - max-width: 100%; -} - -.row-cols-1 > * { - flex: 0 0 100%; - max-width: 100%; -} - -.row-cols-2 > * { - flex: 0 0 50%; - max-width: 50%; -} - -.row-cols-3 > * { - flex: 0 0 33.3333333333%; - max-width: 33.3333333333%; -} - -.row-cols-4 > * { - flex: 0 0 25%; - max-width: 25%; -} - -.row-cols-5 > * { - flex: 0 0 20%; - max-width: 20%; -} - -.row-cols-6 > * { - flex: 0 0 16.6666666667%; - max-width: 16.6666666667%; -} - -.col-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; -} - -.col-1 { - flex: 0 0 8.3333333333%; - max-width: 8.3333333333%; -} - -.col-2 { - flex: 0 0 16.6666666667%; - max-width: 16.6666666667%; -} - -.col-3 { - flex: 0 0 25%; - max-width: 25%; -} - -.col-4 { - flex: 0 0 33.3333333333%; - max-width: 33.3333333333%; -} - -.col-5 { - flex: 0 0 41.6666666667%; - max-width: 41.6666666667%; -} - -.col-6 { - flex: 0 0 50%; - max-width: 50%; -} - -.col-7 { - flex: 0 0 58.3333333333%; - max-width: 58.3333333333%; -} - -.col-8 { - flex: 0 0 66.6666666667%; - max-width: 66.6666666667%; -} - -.col-9 { - flex: 0 0 75%; - max-width: 75%; -} - -.col-10 { - flex: 0 0 83.3333333333%; - max-width: 83.3333333333%; -} - -.col-11 { - flex: 0 0 91.6666666667%; - max-width: 91.6666666667%; -} - -.col-12 { - flex: 0 0 100%; - max-width: 100%; -} - -.order-first { - order: -1; -} - -.order-last { - order: 13; -} - -.order-0 { - order: 0; -} - -.order-1 { - order: 1; -} - -.order-2 { - order: 2; -} - -.order-3 { - order: 3; -} - -.order-4 { - order: 4; -} - -.order-5 { - order: 5; -} - -.order-6 { - order: 6; -} - -.order-7 { - order: 7; -} - -.order-8 { - order: 8; -} - -.order-9 { - order: 9; -} - -.order-10 { - order: 10; -} - -.order-11 { - order: 11; -} - -.order-12 { - order: 12; -} - -.offset-1 { - margin-left: 8.3333333333%; -} - -.offset-2 { - margin-left: 16.6666666667%; -} - -.offset-3 { - margin-left: 25%; -} - -.offset-4 { - margin-left: 33.3333333333%; -} - -.offset-5 { - margin-left: 41.6666666667%; -} - -.offset-6 { - margin-left: 50%; -} - -.offset-7 { - margin-left: 58.3333333333%; -} - -.offset-8 { - margin-left: 66.6666666667%; -} - -.offset-9 { - margin-left: 75%; -} - -.offset-10 { - margin-left: 83.3333333333%; -} - -.offset-11 { - margin-left: 91.6666666667%; -} - -@media (min-width: 576px) { - .col-sm { - flex-basis: 0; - flex-grow: 1; - max-width: 100%; - } - - .row-cols-sm-1 > * { - flex: 0 0 100%; - max-width: 100%; - } - - .row-cols-sm-2 > * { - flex: 0 0 50%; - max-width: 50%; - } - - .row-cols-sm-3 > * { - flex: 0 0 33.3333333333%; - max-width: 33.3333333333%; - } - - .row-cols-sm-4 > * { - flex: 0 0 25%; - max-width: 25%; - } - - .row-cols-sm-5 > * { - flex: 0 0 20%; - max-width: 20%; - } - - .row-cols-sm-6 > * { - flex: 0 0 16.6666666667%; - max-width: 16.6666666667%; - } - - .col-sm-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; - } - - .col-sm-1 { - flex: 0 0 8.3333333333%; - max-width: 8.3333333333%; - } - - .col-sm-2 { - flex: 0 0 16.6666666667%; - max-width: 16.6666666667%; - } - - .col-sm-3 { - flex: 0 0 25%; - max-width: 25%; - } - - .col-sm-4 { - flex: 0 0 33.3333333333%; - max-width: 33.3333333333%; - } - - .col-sm-5 { - flex: 0 0 41.6666666667%; - max-width: 41.6666666667%; - } - - .col-sm-6 { - flex: 0 0 50%; - max-width: 50%; - } - - .col-sm-7 { - flex: 0 0 58.3333333333%; - max-width: 58.3333333333%; - } - - .col-sm-8 { - flex: 0 0 66.6666666667%; - max-width: 66.6666666667%; - } - - .col-sm-9 { - flex: 0 0 75%; - max-width: 75%; - } - - .col-sm-10 { - flex: 0 0 83.3333333333%; - max-width: 83.3333333333%; - } - - .col-sm-11 { - flex: 0 0 91.6666666667%; - max-width: 91.6666666667%; - } - - .col-sm-12 { - flex: 0 0 100%; - max-width: 100%; - } - - .order-sm-first { - order: -1; - } - - .order-sm-last { - order: 13; - } - - .order-sm-0 { - order: 0; - } - - .order-sm-1 { - order: 1; - } - - .order-sm-2 { - order: 2; - } - - .order-sm-3 { - order: 3; - } - - .order-sm-4 { - order: 4; - } - - .order-sm-5 { - order: 5; - } - - .order-sm-6 { - order: 6; - } - - .order-sm-7 { - order: 7; - } - - .order-sm-8 { - order: 8; - } - - .order-sm-9 { - order: 9; - } - - .order-sm-10 { - order: 10; - } - - .order-sm-11 { - order: 11; - } - - .order-sm-12 { - order: 12; - } - - .offset-sm-0 { - margin-left: 0; - } - - .offset-sm-1 { - margin-left: 8.3333333333%; - } - - .offset-sm-2 { - margin-left: 16.6666666667%; - } - - .offset-sm-3 { - margin-left: 25%; - } - - .offset-sm-4 { - margin-left: 33.3333333333%; - } - - .offset-sm-5 { - margin-left: 41.6666666667%; - } - - .offset-sm-6 { - margin-left: 50%; - } - - .offset-sm-7 { - margin-left: 58.3333333333%; - } - - .offset-sm-8 { - margin-left: 66.6666666667%; - } - - .offset-sm-9 { - margin-left: 75%; - } - - .offset-sm-10 { - margin-left: 83.3333333333%; - } - - .offset-sm-11 { - margin-left: 91.6666666667%; - } -} -@media (min-width: 768px) { - .col-md { - flex-basis: 0; - flex-grow: 1; - max-width: 100%; - } - - .row-cols-md-1 > * { - flex: 0 0 100%; - max-width: 100%; - } - - .row-cols-md-2 > * { - flex: 0 0 50%; - max-width: 50%; - } - - .row-cols-md-3 > * { - flex: 0 0 33.3333333333%; - max-width: 33.3333333333%; - } - - .row-cols-md-4 > * { - flex: 0 0 25%; - max-width: 25%; - } - - .row-cols-md-5 > * { - flex: 0 0 20%; - max-width: 20%; - } - - .row-cols-md-6 > * { - flex: 0 0 16.6666666667%; - max-width: 16.6666666667%; - } - - .col-md-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; - } - - .col-md-1 { - flex: 0 0 8.3333333333%; - max-width: 8.3333333333%; - } - - .col-md-2 { - flex: 0 0 16.6666666667%; - max-width: 16.6666666667%; - } - - .col-md-3 { - flex: 0 0 25%; - max-width: 25%; - } - - .col-md-4 { - flex: 0 0 33.3333333333%; - max-width: 33.3333333333%; - } - - .col-md-5 { - flex: 0 0 41.6666666667%; - max-width: 41.6666666667%; - } - - .col-md-6 { - flex: 0 0 50%; - max-width: 50%; - } - - .col-md-7 { - flex: 0 0 58.3333333333%; - max-width: 58.3333333333%; - } - - .col-md-8 { - flex: 0 0 66.6666666667%; - max-width: 66.6666666667%; - } - - .col-md-9 { - flex: 0 0 75%; - max-width: 75%; - } - - .col-md-10 { - flex: 0 0 83.3333333333%; - max-width: 83.3333333333%; - } - - .col-md-11 { - flex: 0 0 91.6666666667%; - max-width: 91.6666666667%; - } - - .col-md-12 { - flex: 0 0 100%; - max-width: 100%; - } - - .order-md-first { - order: -1; - } - - .order-md-last { - order: 13; - } - - .order-md-0 { - order: 0; - } - - .order-md-1 { - order: 1; - } - - .order-md-2 { - order: 2; - } - - .order-md-3 { - order: 3; - } - - .order-md-4 { - order: 4; - } - - .order-md-5 { - order: 5; - } - - .order-md-6 { - order: 6; - } - - .order-md-7 { - order: 7; - } - - .order-md-8 { - order: 8; - } - - .order-md-9 { - order: 9; - } - - .order-md-10 { - order: 10; - } - - .order-md-11 { - order: 11; - } - - .order-md-12 { - order: 12; - } - - .offset-md-0 { - margin-left: 0; - } - - .offset-md-1 { - margin-left: 8.3333333333%; - } - - .offset-md-2 { - margin-left: 16.6666666667%; - } - - .offset-md-3 { - margin-left: 25%; - } - - .offset-md-4 { - margin-left: 33.3333333333%; - } - - .offset-md-5 { - margin-left: 41.6666666667%; - } - - .offset-md-6 { - margin-left: 50%; - } - - .offset-md-7 { - margin-left: 58.3333333333%; - } - - .offset-md-8 { - margin-left: 66.6666666667%; - } - - .offset-md-9 { - margin-left: 75%; - } - - .offset-md-10 { - margin-left: 83.3333333333%; - } - - .offset-md-11 { - margin-left: 91.6666666667%; - } -} -@media (min-width: 992px) { - .col-lg { - flex-basis: 0; - flex-grow: 1; - max-width: 100%; - } - - .row-cols-lg-1 > * { - flex: 0 0 100%; - max-width: 100%; - } - - .row-cols-lg-2 > * { - flex: 0 0 50%; - max-width: 50%; - } - - .row-cols-lg-3 > * { - flex: 0 0 33.3333333333%; - max-width: 33.3333333333%; - } - - .row-cols-lg-4 > * { - flex: 0 0 25%; - max-width: 25%; - } - - .row-cols-lg-5 > * { - flex: 0 0 20%; - max-width: 20%; - } - - .row-cols-lg-6 > * { - flex: 0 0 16.6666666667%; - max-width: 16.6666666667%; - } - - .col-lg-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; - } - - .col-lg-1 { - flex: 0 0 8.3333333333%; - max-width: 8.3333333333%; - } - - .col-lg-2 { - flex: 0 0 16.6666666667%; - max-width: 16.6666666667%; - } - - .col-lg-3 { - flex: 0 0 25%; - max-width: 25%; - } - - .col-lg-4 { - flex: 0 0 33.3333333333%; - max-width: 33.3333333333%; - } - - .col-lg-5 { - flex: 0 0 41.6666666667%; - max-width: 41.6666666667%; - } - - .col-lg-6 { - flex: 0 0 50%; - max-width: 50%; - } - - .col-lg-7 { - flex: 0 0 58.3333333333%; - max-width: 58.3333333333%; - } - - .col-lg-8 { - flex: 0 0 66.6666666667%; - max-width: 66.6666666667%; - } - - .col-lg-9 { - flex: 0 0 75%; - max-width: 75%; - } - - .col-lg-10 { - flex: 0 0 83.3333333333%; - max-width: 83.3333333333%; - } - - .col-lg-11 { - flex: 0 0 91.6666666667%; - max-width: 91.6666666667%; - } - - .col-lg-12 { - flex: 0 0 100%; - max-width: 100%; - } - - .order-lg-first { - order: -1; - } - - .order-lg-last { - order: 13; - } - - .order-lg-0 { - order: 0; - } - - .order-lg-1 { - order: 1; - } - - .order-lg-2 { - order: 2; - } - - .order-lg-3 { - order: 3; - } - - .order-lg-4 { - order: 4; - } - - .order-lg-5 { - order: 5; - } - - .order-lg-6 { - order: 6; - } - - .order-lg-7 { - order: 7; - } - - .order-lg-8 { - order: 8; - } - - .order-lg-9 { - order: 9; - } - - .order-lg-10 { - order: 10; - } - - .order-lg-11 { - order: 11; - } - - .order-lg-12 { - order: 12; - } - - .offset-lg-0 { - margin-left: 0; - } - - .offset-lg-1 { - margin-left: 8.3333333333%; - } - - .offset-lg-2 { - margin-left: 16.6666666667%; - } - - .offset-lg-3 { - margin-left: 25%; - } - - .offset-lg-4 { - margin-left: 33.3333333333%; - } - - .offset-lg-5 { - margin-left: 41.6666666667%; - } - - .offset-lg-6 { - margin-left: 50%; - } - - .offset-lg-7 { - margin-left: 58.3333333333%; - } - - .offset-lg-8 { - margin-left: 66.6666666667%; - } - - .offset-lg-9 { - margin-left: 75%; - } - - .offset-lg-10 { - margin-left: 83.3333333333%; - } - - .offset-lg-11 { - margin-left: 91.6666666667%; - } -} -@media (min-width: 1200px) { - .col-xl { - flex-basis: 0; - flex-grow: 1; - max-width: 100%; - } - - .row-cols-xl-1 > * { - flex: 0 0 100%; - max-width: 100%; - } - - .row-cols-xl-2 > * { - flex: 0 0 50%; - max-width: 50%; - } - - .row-cols-xl-3 > * { - flex: 0 0 33.3333333333%; - max-width: 33.3333333333%; - } - - .row-cols-xl-4 > * { - flex: 0 0 25%; - max-width: 25%; - } - - .row-cols-xl-5 > * { - flex: 0 0 20%; - max-width: 20%; - } - - .row-cols-xl-6 > * { - flex: 0 0 16.6666666667%; - max-width: 16.6666666667%; - } - - .col-xl-auto { - flex: 0 0 auto; - width: auto; - max-width: 100%; - } - - .col-xl-1 { - flex: 0 0 8.3333333333%; - max-width: 8.3333333333%; - } - - .col-xl-2 { - flex: 0 0 16.6666666667%; - max-width: 16.6666666667%; - } - - .col-xl-3 { - flex: 0 0 25%; - max-width: 25%; - } - - .col-xl-4 { - flex: 0 0 33.3333333333%; - max-width: 33.3333333333%; - } - - .col-xl-5 { - flex: 0 0 41.6666666667%; - max-width: 41.6666666667%; - } - - .col-xl-6 { - flex: 0 0 50%; - max-width: 50%; - } - - .col-xl-7 { - flex: 0 0 58.3333333333%; - max-width: 58.3333333333%; - } - - .col-xl-8 { - flex: 0 0 66.6666666667%; - max-width: 66.6666666667%; - } - - .col-xl-9 { - flex: 0 0 75%; - max-width: 75%; - } - - .col-xl-10 { - flex: 0 0 83.3333333333%; - max-width: 83.3333333333%; - } - - .col-xl-11 { - flex: 0 0 91.6666666667%; - max-width: 91.6666666667%; - } - - .col-xl-12 { - flex: 0 0 100%; - max-width: 100%; - } - - .order-xl-first { - order: -1; - } - - .order-xl-last { - order: 13; - } - - .order-xl-0 { - order: 0; - } - - .order-xl-1 { - order: 1; - } - - .order-xl-2 { - order: 2; - } - - .order-xl-3 { - order: 3; - } - - .order-xl-4 { - order: 4; - } - - .order-xl-5 { - order: 5; - } - - .order-xl-6 { - order: 6; - } - - .order-xl-7 { - order: 7; - } - - .order-xl-8 { - order: 8; - } - - .order-xl-9 { - order: 9; - } - - .order-xl-10 { - order: 10; - } - - .order-xl-11 { - order: 11; - } - - .order-xl-12 { - order: 12; - } - - .offset-xl-0 { - margin-left: 0; - } - - .offset-xl-1 { - margin-left: 8.3333333333%; - } - - .offset-xl-2 { - margin-left: 16.6666666667%; - } - - .offset-xl-3 { - margin-left: 25%; - } - - .offset-xl-4 { - margin-left: 33.3333333333%; - } - - .offset-xl-5 { - margin-left: 41.6666666667%; - } - - .offset-xl-6 { - margin-left: 50%; - } - - .offset-xl-7 { - margin-left: 58.3333333333%; - } - - .offset-xl-8 { - margin-left: 66.6666666667%; - } - - .offset-xl-9 { - margin-left: 75%; - } - - .offset-xl-10 { - margin-left: 83.3333333333%; - } - - .offset-xl-11 { - margin-left: 91.6666666667%; - } -} -.table { - width: 100%; - margin-bottom: 1rem; - color: #212529; -} -.table th, -.table td { - padding: 0.75rem; - vertical-align: top; - border-top: 1px solid #dee2e6; -} -.table thead th { - vertical-align: bottom; - border-bottom: 2px solid #dee2e6; -} -.table tbody + tbody { - border-top: 2px solid #dee2e6; -} - -.table-sm th, -.table-sm td { - padding: 0.3rem; -} - -.table-bordered { - border: 1px solid #dee2e6; -} -.table-bordered th, -.table-bordered td { - border: 1px solid #dee2e6; -} -.table-bordered thead th, -.table-bordered thead td { - border-bottom-width: 2px; -} - -.table-borderless th, -.table-borderless td, -.table-borderless thead th, -.table-borderless tbody + tbody { - border: 0; -} - -.table-striped tbody tr:nth-of-type(odd) { - background-color: rgba(0, 0, 0, 0.05); -} - -.table-hover tbody tr:hover { - color: #212529; - background-color: rgba(0, 0, 0, 0.075); -} - -.table-primary, -.table-primary > th, -.table-primary > td { - background-color: #b8daff; -} -.table-primary th, -.table-primary td, -.table-primary thead th, -.table-primary tbody + tbody { - border-color: #7abaff; -} - -.table-hover .table-primary:hover { - background-color: #9fcdff; -} -.table-hover .table-primary:hover > td, -.table-hover .table-primary:hover > th { - background-color: #9fcdff; -} - -.table-secondary, -.table-secondary > th, -.table-secondary > td { - background-color: #d6d8db; -} -.table-secondary th, -.table-secondary td, -.table-secondary thead th, -.table-secondary tbody + tbody { - border-color: #b3b7bb; -} - -.table-hover .table-secondary:hover { - background-color: #c8cbcf; -} -.table-hover .table-secondary:hover > td, -.table-hover .table-secondary:hover > th { - background-color: #c8cbcf; -} - -.table-success, -.table-success > th, -.table-success > td { - background-color: #c3e6cb; -} -.table-success th, -.table-success td, -.table-success thead th, -.table-success tbody + tbody { - border-color: #8fd19e; -} - -.table-hover .table-success:hover { - background-color: #b1dfbb; -} -.table-hover .table-success:hover > td, -.table-hover .table-success:hover > th { - background-color: #b1dfbb; -} - -.table-info, -.table-info > th, -.table-info > td { - background-color: #bee5eb; -} -.table-info th, -.table-info td, -.table-info thead th, -.table-info tbody + tbody { - border-color: #86cfda; -} - -.table-hover .table-info:hover { - background-color: #abdde5; -} -.table-hover .table-info:hover > td, -.table-hover .table-info:hover > th { - background-color: #abdde5; -} - -.table-warning, -.table-warning > th, -.table-warning > td { - background-color: #ffeeba; -} -.table-warning th, -.table-warning td, -.table-warning thead th, -.table-warning tbody + tbody { - border-color: #ffdf7e; -} - -.table-hover .table-warning:hover { - background-color: #ffe8a1; -} -.table-hover .table-warning:hover > td, -.table-hover .table-warning:hover > th { - background-color: #ffe8a1; -} - -.table-danger, -.table-danger > th, -.table-danger > td { - background-color: #f5c6cb; -} -.table-danger th, -.table-danger td, -.table-danger thead th, -.table-danger tbody + tbody { - border-color: #ed969e; -} - -.table-hover .table-danger:hover { - background-color: #f1b0b7; -} -.table-hover .table-danger:hover > td, -.table-hover .table-danger:hover > th { - background-color: #f1b0b7; -} - -.table-light, -.table-light > th, -.table-light > td { - background-color: #fdfdfe; -} -.table-light th, -.table-light td, -.table-light thead th, -.table-light tbody + tbody { - border-color: #fbfcfc; -} - -.table-hover .table-light:hover { - background-color: #ececf6; -} -.table-hover .table-light:hover > td, -.table-hover .table-light:hover > th { - background-color: #ececf6; -} - -.table-dark, -.table-dark > th, -.table-dark > td { - background-color: #c6c8ca; -} -.table-dark th, -.table-dark td, -.table-dark thead th, -.table-dark tbody + tbody { - border-color: #95999c; -} - -.table-hover .table-dark:hover { - background-color: #b9bbbe; -} -.table-hover .table-dark:hover > td, -.table-hover .table-dark:hover > th { - background-color: #b9bbbe; -} - -.table-active, -.table-active > th, -.table-active > td { - background-color: rgba(0, 0, 0, 0.075); -} - -.table-hover .table-active:hover { - background-color: rgba(0, 0, 0, 0.075); -} -.table-hover .table-active:hover > td, -.table-hover .table-active:hover > th { - background-color: rgba(0, 0, 0, 0.075); -} - -.table .thead-dark th { - color: #fff; - background-color: #343a40; - border-color: #454d55; -} -.table .thead-light th { - color: #495057; - background-color: #e9ecef; - border-color: #dee2e6; -} - -.table-dark { - color: #fff; - background-color: #343a40; -} -.table-dark th, -.table-dark td, -.table-dark thead th { - border-color: #454d55; -} -.table-dark.table-bordered { - border: 0; -} -.table-dark.table-striped tbody tr:nth-of-type(odd) { - background-color: rgba(255, 255, 255, 0.05); -} -.table-dark.table-hover tbody tr:hover { - color: #fff; - background-color: rgba(255, 255, 255, 0.075); -} - -@media (max-width: 575.98px) { - .table-responsive-sm { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - } - .table-responsive-sm > .table-bordered { - border: 0; - } -} -@media (max-width: 767.98px) { - .table-responsive-md { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - } - .table-responsive-md > .table-bordered { - border: 0; - } -} -@media (max-width: 991.98px) { - .table-responsive-lg { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - } - .table-responsive-lg > .table-bordered { - border: 0; - } -} -@media (max-width: 1199.98px) { - .table-responsive-xl { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; - } - .table-responsive-xl > .table-bordered { - border: 0; - } -} -.table-responsive { - display: block; - width: 100%; - overflow-x: auto; - -webkit-overflow-scrolling: touch; -} -.table-responsive > .table-bordered { - border: 0; -} - -.form-control { - display: block; - width: 100%; - height: calc(1.5em + 0.75rem + 2px); - padding: 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - background-color: #fff; - background-clip: padding-box; - border: 1px solid #ced4da; - border-radius: 0.25rem; - transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .form-control { - transition: none; - } -} -.form-control::-ms-expand { - background-color: transparent; - border: 0; -} -.form-control:-moz-focusring { - color: transparent; - text-shadow: 0 0 0 #495057; -} -.form-control:focus { - color: #495057; - background-color: #fff; - border-color: #80bdff; - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} -.form-control::-webkit-input-placeholder { - color: #6c757d; - opacity: 1; -} -.form-control::-moz-placeholder { - color: #6c757d; - opacity: 1; -} -.form-control:-ms-input-placeholder { - color: #6c757d; - opacity: 1; -} -.form-control::-ms-input-placeholder { - color: #6c757d; - opacity: 1; -} -.form-control::placeholder { - color: #6c757d; - opacity: 1; -} -.form-control:disabled, .form-control[readonly] { - background-color: #e9ecef; - opacity: 1; -} - -input[type=date].form-control, -input[type=time].form-control, -input[type=datetime-local].form-control, -input[type=month].form-control { - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; -} - -select.form-control:focus::-ms-value { - color: #495057; - background-color: #fff; -} - -.form-control-file, -.form-control-range { - display: block; - width: 100%; -} - -.col-form-label { - padding-top: calc(0.375rem + 1px); - padding-bottom: calc(0.375rem + 1px); - margin-bottom: 0; - font-size: inherit; - line-height: 1.5; -} - -.col-form-label-lg { - padding-top: calc(0.5rem + 1px); - padding-bottom: calc(0.5rem + 1px); - font-size: 1.25rem; - line-height: 1.5; -} - -.col-form-label-sm { - padding-top: calc(0.25rem + 1px); - padding-bottom: calc(0.25rem + 1px); - font-size: 0.875rem; - line-height: 1.5; -} - -.form-control-plaintext { - display: block; - width: 100%; - padding: 0.375rem 0; - margin-bottom: 0; - font-size: 1rem; - line-height: 1.5; - color: #212529; - background-color: transparent; - border: solid transparent; - border-width: 1px 0; -} -.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { - padding-right: 0; - padding-left: 0; -} - -.form-control-sm { - height: calc(1.5em + 0.5rem + 2px); - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.5; - border-radius: 0.2rem; -} - -.form-control-lg { - height: calc(1.5em + 1rem + 2px); - padding: 0.5rem 1rem; - font-size: 1.25rem; - line-height: 1.5; - border-radius: 0.3rem; -} - -select.form-control[size], select.form-control[multiple] { - height: auto; -} - -textarea.form-control { - height: auto; -} - -.form-group { - margin-bottom: 1rem; -} - -.form-text { - display: block; - margin-top: 0.25rem; -} - -.form-row { - display: flex; - flex-wrap: wrap; - margin-right: -5px; - margin-left: -5px; -} -.form-row > .col, -.form-row > [class*=col-] { - padding-right: 5px; - padding-left: 5px; -} - -.form-check { - position: relative; - display: block; - padding-left: 1.25rem; -} - -.form-check-input { - position: absolute; - margin-top: 0.3rem; - margin-left: -1.25rem; -} -.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label { - color: #6c757d; -} - -.form-check-label { - margin-bottom: 0; -} - -.form-check-inline { - display: inline-flex; - align-items: center; - padding-left: 0; - margin-right: 0.75rem; -} -.form-check-inline .form-check-input { - position: static; - margin-top: 0; - margin-right: 0.3125rem; - margin-left: 0; -} - -.valid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 80%; - color: #50a765; -} - -.valid-tooltip { - position: absolute; - top: 100%; - left: 0; - z-index: 5; - display: none; - max-width: 100%; - padding: 0.25rem 0.5rem; - margin-top: 0.1rem; - font-size: 0.875rem; - line-height: 1.5; - color: #fff; - background-color: rgba(40, 167, 69, 0.9); - border-radius: 0.25rem; -} - -.was-validated :valid ~ .valid-feedback, -.was-validated :valid ~ .valid-tooltip, -.is-valid ~ .valid-feedback, -.is-valid ~ .valid-tooltip { - display: block; -} - -.was-validated .form-control:valid, .form-control.is-valid { - border-color: #50a765; - padding-right: calc(1.5em + 0.75rem); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2350a765' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); - background-repeat: no-repeat; - background-position: right calc(0.375em + 0.1875rem) center; - background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); -} -.was-validated .form-control:valid:focus, .form-control.is-valid:focus { - border-color: #50a765; - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); -} - -.was-validated textarea.form-control:valid, textarea.form-control.is-valid { - padding-right: calc(1.5em + 0.75rem); - background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); -} - -.was-validated .custom-select:valid, .custom-select.is-valid { - border-color: #50a765; - padding-right: calc(0.75em + 2.3125rem); - background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2350a765' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); -} -.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus { - border-color: #50a765; - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); -} - -.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { - color: #50a765; -} -.was-validated .form-check-input:valid ~ .valid-feedback, -.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback, -.form-check-input.is-valid ~ .valid-tooltip { - display: block; -} - -.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label { - color: #50a765; -} -.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before { - border-color: #50a765; -} -.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before { - border-color: #34ce57; - background-color: #34ce57; -} -.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before { - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); -} -.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before { - border-color: #50a765; -} - -.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label { - border-color: #50a765; -} -.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label { - border-color: #50a765; - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); -} - -.invalid-feedback { - display: none; - width: 100%; - margin-top: 0.25rem; - font-size: 80%; - color: #dc3545; -} - -.invalid-tooltip { - position: absolute; - top: 100%; - left: 0; - z-index: 5; - display: none; - max-width: 100%; - padding: 0.25rem 0.5rem; - margin-top: 0.1rem; - font-size: 0.875rem; - line-height: 1.5; - color: #fff; - background-color: rgba(220, 53, 69, 0.9); - border-radius: 0.25rem; -} - -.was-validated :invalid ~ .invalid-feedback, -.was-validated :invalid ~ .invalid-tooltip, -.is-invalid ~ .invalid-feedback, -.is-invalid ~ .invalid-tooltip { - display: block; -} - -.was-validated .form-control:invalid, .form-control.is-invalid { - border-color: #dc3545; - padding-right: calc(1.5em + 0.75rem); - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e"); - background-repeat: no-repeat; - background-position: right calc(0.375em + 0.1875rem) center; - background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); -} -.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus { - border-color: #dc3545; - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); -} - -.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid { - padding-right: calc(1.5em + 0.75rem); - background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem); -} - -.was-validated .custom-select:invalid, .custom-select.is-invalid { - border-color: #dc3545; - padding-right: calc(0.75em + 2.3125rem); - background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); -} -.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus { - border-color: #dc3545; - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); -} - -.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { - color: #dc3545; -} -.was-validated .form-check-input:invalid ~ .invalid-feedback, -.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, -.form-check-input.is-invalid ~ .invalid-tooltip { - display: block; -} - -.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label { - color: #dc3545; -} -.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before { - border-color: #dc3545; -} -.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before { - border-color: #e4606d; - background-color: #e4606d; -} -.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before { - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); -} -.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before { - border-color: #dc3545; -} - -.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label { - border-color: #dc3545; -} -.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label { - border-color: #dc3545; - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); -} - -.form-inline { - display: flex; - flex-flow: row wrap; - align-items: center; -} -.form-inline .form-check { - width: 100%; -} -@media (min-width: 576px) { - .form-inline label { - display: flex; - align-items: center; - justify-content: center; - margin-bottom: 0; - } - .form-inline .form-group { - display: flex; - flex: 0 0 auto; - flex-flow: row wrap; - align-items: center; - margin-bottom: 0; - } - .form-inline .form-control { - display: inline-block; - width: auto; - vertical-align: middle; - } - .form-inline .form-control-plaintext { - display: inline-block; - } - .form-inline .input-group, -.form-inline .custom-select { - width: auto; - } - .form-inline .form-check { - display: flex; - align-items: center; - justify-content: center; - width: auto; - padding-left: 0; - } - .form-inline .form-check-input { - position: relative; - flex-shrink: 0; - margin-top: 0; - margin-right: 0.25rem; - margin-left: 0; - } - .form-inline .custom-control { - align-items: center; - justify-content: center; - } - .form-inline .custom-control-label { - margin-bottom: 0; - } -} - -.btn { - display: inline-block; - font-weight: 400; - color: #212529; - text-align: center; - vertical-align: middle; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - background-color: transparent; - border: 1px solid transparent; - padding: 0.375rem 0.75rem; - font-size: 1rem; - line-height: 1.5; - border-radius: 0.25rem; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .btn { - transition: none; - } -} -.btn:hover { - color: #212529; - text-decoration: none; -} -.btn:focus, .btn.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} -.btn.disabled, .btn:disabled { - opacity: 0.65; -} -.btn:not(:disabled):not(.disabled) { - cursor: pointer; -} -a.btn.disabled, -fieldset:disabled a.btn { - pointer-events: none; -} - -.btn-primary { - color: #fff; - background-color: #007bff; - border-color: #007bff; -} -.btn-primary:hover { - color: #fff; - background-color: #0069d9; - border-color: #0062cc; -} -.btn-primary:focus, .btn-primary.focus { - color: #fff; - background-color: #0069d9; - border-color: #0062cc; - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); -} -.btn-primary.disabled, .btn-primary:disabled { - color: #fff; - background-color: #007bff; - border-color: #007bff; -} -.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle { - color: #fff; - background-color: #0062cc; - border-color: #005cbf; -} -.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5); -} - -.btn-secondary { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; -} -.btn-secondary:hover { - color: #fff; - background-color: #5a6268; - border-color: #545b62; -} -.btn-secondary:focus, .btn-secondary.focus { - color: #fff; - background-color: #5a6268; - border-color: #545b62; - box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); -} -.btn-secondary.disabled, .btn-secondary:disabled { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; -} -.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle { - color: #fff; - background-color: #545b62; - border-color: #4e555b; -} -.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5); -} - -.btn-success { - color: #fff; - background-color: #50a765; - border-color: #50a765; -} -.btn-success:hover { - color: #fff; - background-color: #218838; - border-color: #1e7e34; -} -.btn-success:focus, .btn-success.focus { - color: #fff; - background-color: #218838; - border-color: #1e7e34; - box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); -} -.btn-success.disabled, .btn-success:disabled { - color: #fff; - background-color: #50a765; - border-color: #50a765; -} -.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle { - color: #fff; - background-color: #1e7e34; - border-color: #1c7430; -} -.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(72, 180, 97, 0.5); -} - -.btn-info { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; -} -.btn-info:hover { - color: #fff; - background-color: #138496; - border-color: #117a8b; -} -.btn-info:focus, .btn-info.focus { - color: #fff; - background-color: #138496; - border-color: #117a8b; - box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); -} -.btn-info.disabled, .btn-info:disabled { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; -} -.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle { - color: #fff; - background-color: #117a8b; - border-color: #10707f; -} -.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5); -} - -.btn-warning { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; -} -.btn-warning:hover { - color: #212529; - background-color: #e0a800; - border-color: #d39e00; -} -.btn-warning:focus, .btn-warning.focus { - color: #212529; - background-color: #e0a800; - border-color: #d39e00; - box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); -} -.btn-warning.disabled, .btn-warning:disabled { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; -} -.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle { - color: #212529; - background-color: #d39e00; - border-color: #c69500; -} -.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5); -} - -.btn-danger { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; -} -.btn-danger:hover { - color: #fff; - background-color: #c82333; - border-color: #bd2130; -} -.btn-danger:focus, .btn-danger.focus { - color: #fff; - background-color: #c82333; - border-color: #bd2130; - box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); -} -.btn-danger.disabled, .btn-danger:disabled { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; -} -.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle { - color: #fff; - background-color: #bd2130; - border-color: #b21f2d; -} -.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5); -} - -.btn-light { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; -} -.btn-light:hover { - color: #212529; - background-color: #e2e6ea; - border-color: #dae0e5; -} -.btn-light:focus, .btn-light.focus { - color: #212529; - background-color: #e2e6ea; - border-color: #dae0e5; - box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); -} -.btn-light.disabled, .btn-light:disabled { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; -} -.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle { - color: #212529; - background-color: #dae0e5; - border-color: #d3d9df; -} -.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5); -} - -.btn-dark { - color: #fff; - background-color: #343a40; - border-color: #343a40; -} -.btn-dark:hover { - color: #fff; - background-color: #23272b; - border-color: #1d2124; -} -.btn-dark:focus, .btn-dark.focus { - color: #fff; - background-color: #23272b; - border-color: #1d2124; - box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); -} -.btn-dark.disabled, .btn-dark:disabled { - color: #fff; - background-color: #343a40; - border-color: #343a40; -} -.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle { - color: #fff; - background-color: #1d2124; - border-color: #171a1d; -} -.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5); -} - -.btn-outline-primary { - color: #007bff; - border-color: #007bff; -} -.btn-outline-primary:hover { - color: #fff; - background-color: #007bff; - border-color: #007bff; -} -.btn-outline-primary:focus, .btn-outline-primary.focus { - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); -} -.btn-outline-primary.disabled, .btn-outline-primary:disabled { - color: #007bff; - background-color: transparent; -} -.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle { - color: #fff; - background-color: #007bff; - border-color: #007bff; -} -.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); -} - -.btn-outline-secondary { - color: #6c757d; - border-color: #6c757d; -} -.btn-outline-secondary:hover { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; -} -.btn-outline-secondary:focus, .btn-outline-secondary.focus { - box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); -} -.btn-outline-secondary.disabled, .btn-outline-secondary:disabled { - color: #6c757d; - background-color: transparent; -} -.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle { - color: #fff; - background-color: #6c757d; - border-color: #6c757d; -} -.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); -} - -.btn-outline-success { - color: #50a765; - border-color: #50a765; -} -.btn-outline-success:hover { - color: #fff; - background-color: #50a765; - border-color: #50a765; -} -.btn-outline-success:focus, .btn-outline-success.focus { - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); -} -.btn-outline-success.disabled, .btn-outline-success:disabled { - color: #50a765; - background-color: transparent; -} -.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle { - color: #fff; - background-color: #50a765; - border-color: #50a765; -} -.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); -} - -.btn-outline-info { - color: #17a2b8; - border-color: #17a2b8; -} -.btn-outline-info:hover { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; -} -.btn-outline-info:focus, .btn-outline-info.focus { - box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); -} -.btn-outline-info.disabled, .btn-outline-info:disabled { - color: #17a2b8; - background-color: transparent; -} -.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle { - color: #fff; - background-color: #17a2b8; - border-color: #17a2b8; -} -.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); -} - -.btn-outline-warning { - color: #ffc107; - border-color: #ffc107; -} -.btn-outline-warning:hover { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; -} -.btn-outline-warning:focus, .btn-outline-warning.focus { - box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); -} -.btn-outline-warning.disabled, .btn-outline-warning:disabled { - color: #ffc107; - background-color: transparent; -} -.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle { - color: #212529; - background-color: #ffc107; - border-color: #ffc107; -} -.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); -} - -.btn-outline-danger { - color: #dc3545; - border-color: #dc3545; -} -.btn-outline-danger:hover { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; -} -.btn-outline-danger:focus, .btn-outline-danger.focus { - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); -} -.btn-outline-danger.disabled, .btn-outline-danger:disabled { - color: #dc3545; - background-color: transparent; -} -.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle { - color: #fff; - background-color: #dc3545; - border-color: #dc3545; -} -.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); -} - -.btn-outline-light { - color: #f8f9fa; - border-color: #f8f9fa; -} -.btn-outline-light:hover { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; -} -.btn-outline-light:focus, .btn-outline-light.focus { - box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); -} -.btn-outline-light.disabled, .btn-outline-light:disabled { - color: #f8f9fa; - background-color: transparent; -} -.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle { - color: #212529; - background-color: #f8f9fa; - border-color: #f8f9fa; -} -.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); -} - -.btn-outline-dark { - color: #343a40; - border-color: #343a40; -} -.btn-outline-dark:hover { - color: #fff; - background-color: #343a40; - border-color: #343a40; -} -.btn-outline-dark:focus, .btn-outline-dark.focus { - box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); -} -.btn-outline-dark.disabled, .btn-outline-dark:disabled { - color: #343a40; - background-color: transparent; -} -.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle { - color: #fff; - background-color: #343a40; - border-color: #343a40; -} -.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus { - box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); -} - -.btn-link { - font-weight: 400; - color: #007bff; - text-decoration: none; -} -.btn-link:hover { - color: #0056b3; - text-decoration: underline; -} -.btn-link:focus, .btn-link.focus { - text-decoration: underline; -} -.btn-link:disabled, .btn-link.disabled { - color: #6c757d; - pointer-events: none; -} - -.btn-lg, .btn-group-lg > .btn { - padding: 0.5rem 1rem; - font-size: 1.25rem; - line-height: 1.5; - border-radius: 0.3rem; -} - -.btn-sm, .btn-group-sm > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.5; - border-radius: 0.2rem; -} - -.btn-block { - display: block; - width: 100%; -} -.btn-block + .btn-block { - margin-top: 0.5rem; -} - -input[type=submit].btn-block, -input[type=reset].btn-block, -input[type=button].btn-block { - width: 100%; -} - -.fade { - transition: opacity 0.15s linear; -} -@media (prefers-reduced-motion: reduce) { - .fade { - transition: none; - } -} -.fade:not(.show) { - opacity: 0; -} - -.collapse:not(.show) { - display: none; -} - -.collapsing { - position: relative; - height: 0; - overflow: hidden; - transition: height 0.35s ease; -} -@media (prefers-reduced-motion: reduce) { - .collapsing { - transition: none; - } -} - -.dropup, -.dropright, -.dropdown, -.dropleft { - position: relative; -} - -.dropdown-toggle { - white-space: nowrap; -} -.dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid; - border-right: 0.3em solid transparent; - border-bottom: 0; - border-left: 0.3em solid transparent; -} -.dropdown-toggle:empty::after { - margin-left: 0; -} - -.dropdown-menu { - position: absolute; - top: 100%; - left: 0; - z-index: 1000; - display: none; - float: left; - min-width: 10rem; - padding: 0.5rem 0; - margin: 0.125rem 0 0; - font-size: 1rem; - color: #212529; - text-align: left; - list-style: none; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.15); - border-radius: 0.25rem; -} - -.dropdown-menu-left { - right: auto; - left: 0; -} - -.dropdown-menu-right { - right: 0; - left: auto; -} - -@media (min-width: 576px) { - .dropdown-menu-sm-left { - right: auto; - left: 0; - } - - .dropdown-menu-sm-right { - right: 0; - left: auto; - } -} -@media (min-width: 768px) { - .dropdown-menu-md-left { - right: auto; - left: 0; - } - - .dropdown-menu-md-right { - right: 0; - left: auto; - } -} -@media (min-width: 992px) { - .dropdown-menu-lg-left { - right: auto; - left: 0; - } - - .dropdown-menu-lg-right { - right: 0; - left: auto; - } -} -@media (min-width: 1200px) { - .dropdown-menu-xl-left { - right: auto; - left: 0; - } - - .dropdown-menu-xl-right { - right: 0; - left: auto; - } -} -.dropup .dropdown-menu { - top: auto; - bottom: 100%; - margin-top: 0; - margin-bottom: 0.125rem; -} -.dropup .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0; - border-right: 0.3em solid transparent; - border-bottom: 0.3em solid; - border-left: 0.3em solid transparent; -} -.dropup .dropdown-toggle:empty::after { - margin-left: 0; -} - -.dropright .dropdown-menu { - top: 0; - right: auto; - left: 100%; - margin-top: 0; - margin-left: 0.125rem; -} -.dropright .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid transparent; - border-right: 0; - border-bottom: 0.3em solid transparent; - border-left: 0.3em solid; -} -.dropright .dropdown-toggle:empty::after { - margin-left: 0; -} -.dropright .dropdown-toggle::after { - vertical-align: 0; -} - -.dropleft .dropdown-menu { - top: 0; - right: 100%; - left: auto; - margin-top: 0; - margin-right: 0.125rem; -} -.dropleft .dropdown-toggle::after { - display: inline-block; - margin-left: 0.255em; - vertical-align: 0.255em; - content: ""; -} -.dropleft .dropdown-toggle::after { - display: none; -} -.dropleft .dropdown-toggle::before { - display: inline-block; - margin-right: 0.255em; - vertical-align: 0.255em; - content: ""; - border-top: 0.3em solid transparent; - border-right: 0.3em solid; - border-bottom: 0.3em solid transparent; -} -.dropleft .dropdown-toggle:empty::after { - margin-left: 0; -} -.dropleft .dropdown-toggle::before { - vertical-align: 0; -} - -.dropdown-menu[x-placement^=top], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left] { - right: auto; - bottom: auto; -} - -.dropdown-divider { - height: 0; - margin: 0.5rem 0; - overflow: hidden; - border-top: 1px solid #e9ecef; -} - -.dropdown-item { - display: block; - width: 100%; - padding: 0.25rem 1.5rem; - clear: both; - font-weight: 400; - color: #212529; - text-align: inherit; - white-space: nowrap; - background-color: transparent; - border: 0; -} -.dropdown-item:hover, .dropdown-item:focus { - color: #16181b; - text-decoration: none; - background-color: #f8f9fa; -} -.dropdown-item.active, .dropdown-item:active { - color: #fff; - text-decoration: none; - background-color: #007bff; -} -.dropdown-item.disabled, .dropdown-item:disabled { - color: #6c757d; - pointer-events: none; - background-color: transparent; -} - -.dropdown-menu.show { - display: block; -} - -.dropdown-header { - display: block; - padding: 0.5rem 1.5rem; - margin-bottom: 0; - font-size: 0.875rem; - color: #6c757d; - white-space: nowrap; -} - -.dropdown-item-text { - display: block; - padding: 0.25rem 1.5rem; - color: #212529; -} - -.btn-group, -.btn-group-vertical { - position: relative; - display: inline-flex; - vertical-align: middle; -} -.btn-group > .btn, -.btn-group-vertical > .btn { - position: relative; - flex: 1 1 auto; -} -.btn-group > .btn:hover, -.btn-group-vertical > .btn:hover { - z-index: 1; -} -.btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, -.btn-group-vertical > .btn:focus, -.btn-group-vertical > .btn:active, -.btn-group-vertical > .btn.active { - z-index: 1; -} - -.btn-toolbar { - display: flex; - flex-wrap: wrap; - justify-content: flex-start; -} -.btn-toolbar .input-group { - width: auto; -} - -.btn-group > .btn:not(:first-child), -.btn-group > .btn-group:not(:first-child) { - margin-left: -1px; -} -.btn-group > .btn:not(:last-child):not(.dropdown-toggle), -.btn-group > .btn-group:not(:last-child) > .btn { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.btn-group > .btn:not(:first-child), -.btn-group > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.dropdown-toggle-split { - padding-right: 0.5625rem; - padding-left: 0.5625rem; -} -.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after { - margin-left: 0; -} -.dropleft .dropdown-toggle-split::before { - margin-right: 0; -} - -.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { - padding-right: 0.375rem; - padding-left: 0.375rem; -} - -.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { - padding-right: 0.75rem; - padding-left: 0.75rem; -} - -.btn-group-vertical { - flex-direction: column; - align-items: flex-start; - justify-content: center; -} -.btn-group-vertical > .btn, -.btn-group-vertical > .btn-group { - width: 100%; -} -.btn-group-vertical > .btn:not(:first-child), -.btn-group-vertical > .btn-group:not(:first-child) { - margin-top: -1px; -} -.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), -.btn-group-vertical > .btn-group:not(:last-child) > .btn { - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.btn-group-vertical > .btn:not(:first-child), -.btn-group-vertical > .btn-group:not(:first-child) > .btn { - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.btn-group-toggle > .btn, -.btn-group-toggle > .btn-group > .btn { - margin-bottom: 0; -} -.btn-group-toggle > .btn input[type=radio], -.btn-group-toggle > .btn input[type=checkbox], -.btn-group-toggle > .btn-group > .btn input[type=radio], -.btn-group-toggle > .btn-group > .btn input[type=checkbox] { - position: absolute; - clip: rect(0, 0, 0, 0); - pointer-events: none; -} - -.input-group { - position: relative; - display: flex; - flex-wrap: wrap; - align-items: stretch; - width: 100%; -} -.input-group > .form-control, -.input-group > .form-control-plaintext, -.input-group > .custom-select, -.input-group > .custom-file { - position: relative; - flex: 1 1 auto; - width: 1%; - min-width: 0; - margin-bottom: 0; -} -.input-group > .form-control + .form-control, -.input-group > .form-control + .custom-select, -.input-group > .form-control + .custom-file, -.input-group > .form-control-plaintext + .form-control, -.input-group > .form-control-plaintext + .custom-select, -.input-group > .form-control-plaintext + .custom-file, -.input-group > .custom-select + .form-control, -.input-group > .custom-select + .custom-select, -.input-group > .custom-select + .custom-file, -.input-group > .custom-file + .form-control, -.input-group > .custom-file + .custom-select, -.input-group > .custom-file + .custom-file { - margin-left: -1px; -} -.input-group > .form-control:focus, -.input-group > .custom-select:focus, -.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label { - z-index: 3; -} -.input-group > .custom-file .custom-file-input:focus { - z-index: 4; -} -.input-group > .form-control:not(:last-child), -.input-group > .custom-select:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.input-group > .form-control:not(:first-child), -.input-group > .custom-select:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} -.input-group > .custom-file { - display: flex; - align-items: center; -} -.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} -.input-group > .custom-file:not(:first-child) .custom-file-label { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.input-group-prepend, -.input-group-append { - display: flex; -} -.input-group-prepend .btn, -.input-group-append .btn { - position: relative; - z-index: 2; -} -.input-group-prepend .btn:focus, -.input-group-append .btn:focus { - z-index: 3; -} -.input-group-prepend .btn + .btn, -.input-group-prepend .btn + .input-group-text, -.input-group-prepend .input-group-text + .input-group-text, -.input-group-prepend .input-group-text + .btn, -.input-group-append .btn + .btn, -.input-group-append .btn + .input-group-text, -.input-group-append .input-group-text + .input-group-text, -.input-group-append .input-group-text + .btn { - margin-left: -1px; -} - -.input-group-prepend { - margin-right: -1px; -} - -.input-group-append { - margin-left: -1px; -} - -.input-group-text { - display: flex; - align-items: center; - padding: 0.375rem 0.75rem; - margin-bottom: 0; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - text-align: center; - white-space: nowrap; - background-color: #e9ecef; - border: 1px solid #ced4da; - border-radius: 0.25rem; -} -.input-group-text input[type=radio], -.input-group-text input[type=checkbox] { - margin-top: 0; -} - -.input-group-lg > .form-control:not(textarea), -.input-group-lg > .custom-select { - height: calc(1.5em + 1rem + 2px); -} - -.input-group-lg > .form-control, -.input-group-lg > .custom-select, -.input-group-lg > .input-group-prepend > .input-group-text, -.input-group-lg > .input-group-append > .input-group-text, -.input-group-lg > .input-group-prepend > .btn, -.input-group-lg > .input-group-append > .btn { - padding: 0.5rem 1rem; - font-size: 1.25rem; - line-height: 1.5; - border-radius: 0.3rem; -} - -.input-group-sm > .form-control:not(textarea), -.input-group-sm > .custom-select { - height: calc(1.5em + 0.5rem + 2px); -} - -.input-group-sm > .form-control, -.input-group-sm > .custom-select, -.input-group-sm > .input-group-prepend > .input-group-text, -.input-group-sm > .input-group-append > .input-group-text, -.input-group-sm > .input-group-prepend > .btn, -.input-group-sm > .input-group-append > .btn { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.5; - border-radius: 0.2rem; -} - -.input-group-lg > .custom-select, -.input-group-sm > .custom-select { - padding-right: 1.75rem; -} - -.input-group > .input-group-prepend > .btn, -.input-group > .input-group-prepend > .input-group-text, -.input-group > .input-group-append:not(:last-child) > .btn, -.input-group > .input-group-append:not(:last-child) > .input-group-text, -.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), -.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; -} - -.input-group > .input-group-append > .btn, -.input-group > .input-group-append > .input-group-text, -.input-group > .input-group-prepend:not(:first-child) > .btn, -.input-group > .input-group-prepend:not(:first-child) > .input-group-text, -.input-group > .input-group-prepend:first-child > .btn:not(:first-child), -.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; -} - -.custom-control { - position: relative; - z-index: 1; - display: block; - min-height: 1.5rem; - padding-left: 1.5rem; - -webkit-print-color-adjust: exact; - color-adjust: exact; -} - -.custom-control-inline { - display: inline-flex; - margin-right: 1rem; -} - -.custom-control-input { - position: absolute; - left: 0; - z-index: -1; - width: 1rem; - height: 1.25rem; - opacity: 0; -} -.custom-control-input:checked ~ .custom-control-label::before { - color: #fff; - border-color: #007bff; - background-color: #007bff; -} -.custom-control-input:focus ~ .custom-control-label::before { - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} -.custom-control-input:focus:not(:checked) ~ .custom-control-label::before { - border-color: #80bdff; -} -.custom-control-input:not(:disabled):active ~ .custom-control-label::before { - color: #fff; - background-color: #b3d7ff; - border-color: #b3d7ff; -} -.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label { - color: #6c757d; -} -.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before { - background-color: #e9ecef; -} - -.custom-control-label { - position: relative; - margin-bottom: 0; - vertical-align: top; -} -.custom-control-label::before { - position: absolute; - top: 0.25rem; - left: -1.5rem; - display: block; - width: 1rem; - height: 1rem; - pointer-events: none; - content: ""; - background-color: #fff; - border: #adb5bd solid 1px; -} -.custom-control-label::after { - position: absolute; - top: 0.25rem; - left: -1.5rem; - display: block; - width: 1rem; - height: 1rem; - content: ""; - background: no-repeat 50%/50% 50%; -} - -.custom-checkbox .custom-control-label::before { - border-radius: 0.25rem; -} -.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e"); -} -.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before { - border-color: #007bff; - background-color: #007bff; -} -.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e"); -} -.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); -} -.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); -} - -.custom-radio .custom-control-label::before { - border-radius: 50%; -} -.custom-radio .custom-control-input:checked ~ .custom-control-label::after { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); -} -.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); -} - -.custom-switch { - padding-left: 2.25rem; -} -.custom-switch .custom-control-label::before { - left: -2.25rem; - width: 1.75rem; - pointer-events: all; - border-radius: 0.5rem; -} -.custom-switch .custom-control-label::after { - top: calc(0.25rem + 2px); - left: calc(-2.25rem + 2px); - width: calc(1rem - 4px); - height: calc(1rem - 4px); - background-color: #adb5bd; - border-radius: 0.5rem; - transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .custom-switch .custom-control-label::after { - transition: none; - } -} -.custom-switch .custom-control-input:checked ~ .custom-control-label::after { - background-color: #fff; - transform: translateX(0.75rem); -} -.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before { - background-color: rgba(0, 123, 255, 0.5); -} - -.custom-select { - display: inline-block; - width: 100%; - height: calc(1.5em + 0.75rem + 2px); - padding: 0.375rem 1.75rem 0.375rem 0.75rem; - font-size: 1rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - vertical-align: middle; - background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px; - border: 1px solid #ced4da; - border-radius: 0.25rem; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; -} -.custom-select:focus { - border-color: #80bdff; - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} -.custom-select:focus::-ms-value { - color: #495057; - background-color: #fff; -} -.custom-select[multiple], .custom-select[size]:not([size="1"]) { - height: auto; - padding-right: 0.75rem; - background-image: none; -} -.custom-select:disabled { - color: #6c757d; - background-color: #e9ecef; -} -.custom-select::-ms-expand { - display: none; -} -.custom-select:-moz-focusring { - color: transparent; - text-shadow: 0 0 0 #495057; -} - -.custom-select-sm { - height: calc(1.5em + 0.5rem + 2px); - padding-top: 0.25rem; - padding-bottom: 0.25rem; - padding-left: 0.5rem; - font-size: 0.875rem; -} - -.custom-select-lg { - height: calc(1.5em + 1rem + 2px); - padding-top: 0.5rem; - padding-bottom: 0.5rem; - padding-left: 1rem; - font-size: 1.25rem; -} - -.custom-file { - position: relative; - display: inline-block; - width: 100%; - height: calc(1.5em + 0.75rem + 2px); - margin-bottom: 0; -} - -.custom-file-input { - position: relative; - z-index: 2; - width: 100%; - height: calc(1.5em + 0.75rem + 2px); - margin: 0; - opacity: 0; -} -.custom-file-input:focus ~ .custom-file-label { - border-color: #80bdff; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} -.custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label { - background-color: #e9ecef; -} -.custom-file-input:lang(en) ~ .custom-file-label::after { - content: "Browse"; -} -.custom-file-input ~ .custom-file-label[data-browse]::after { - content: attr(data-browse); -} - -.custom-file-label { - position: absolute; - top: 0; - right: 0; - left: 0; - z-index: 1; - height: calc(1.5em + 0.75rem + 2px); - padding: 0.375rem 0.75rem; - font-weight: 400; - line-height: 1.5; - color: #495057; - background-color: #fff; - border: 1px solid #ced4da; - border-radius: 0.25rem; -} -.custom-file-label::after { - position: absolute; - top: 0; - right: 0; - bottom: 0; - z-index: 3; - display: block; - height: calc(1.5em + 0.75rem); - padding: 0.375rem 0.75rem; - line-height: 1.5; - color: #495057; - content: "Browse"; - background-color: #e9ecef; - border-left: inherit; - border-radius: 0 0.25rem 0.25rem 0; -} - -.custom-range { - width: 100%; - height: 1.4rem; - padding: 0; - background-color: transparent; - -webkit-appearance: none; - -moz-appearance: none; - appearance: none; -} -.custom-range:focus { - outline: none; -} -.custom-range:focus::-webkit-slider-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} -.custom-range:focus::-moz-range-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} -.custom-range:focus::-ms-thumb { - box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} -.custom-range::-moz-focus-outer { - border: 0; -} -.custom-range::-webkit-slider-thumb { - width: 1rem; - height: 1rem; - margin-top: -0.25rem; - background-color: #007bff; - border: 0; - border-radius: 1rem; - -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - -webkit-appearance: none; - appearance: none; -} -@media (prefers-reduced-motion: reduce) { - .custom-range::-webkit-slider-thumb { - -webkit-transition: none; - transition: none; - } -} -.custom-range::-webkit-slider-thumb:active { - background-color: #b3d7ff; -} -.custom-range::-webkit-slider-runnable-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: #dee2e6; - border-color: transparent; - border-radius: 1rem; -} -.custom-range::-moz-range-thumb { - width: 1rem; - height: 1rem; - background-color: #007bff; - border: 0; - border-radius: 1rem; - -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - -moz-appearance: none; - appearance: none; -} -@media (prefers-reduced-motion: reduce) { - .custom-range::-moz-range-thumb { - -moz-transition: none; - transition: none; - } -} -.custom-range::-moz-range-thumb:active { - background-color: #b3d7ff; -} -.custom-range::-moz-range-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: #dee2e6; - border-color: transparent; - border-radius: 1rem; -} -.custom-range::-ms-thumb { - width: 1rem; - height: 1rem; - margin-top: 0; - margin-right: 0.2rem; - margin-left: 0.2rem; - background-color: #007bff; - border: 0; - border-radius: 1rem; - -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; - appearance: none; -} -@media (prefers-reduced-motion: reduce) { - .custom-range::-ms-thumb { - -ms-transition: none; - transition: none; - } -} -.custom-range::-ms-thumb:active { - background-color: #b3d7ff; -} -.custom-range::-ms-track { - width: 100%; - height: 0.5rem; - color: transparent; - cursor: pointer; - background-color: transparent; - border-color: transparent; - border-width: 0.5rem; -} -.custom-range::-ms-fill-lower { - background-color: #dee2e6; - border-radius: 1rem; -} -.custom-range::-ms-fill-upper { - margin-right: 15px; - background-color: #dee2e6; - border-radius: 1rem; -} -.custom-range:disabled::-webkit-slider-thumb { - background-color: #adb5bd; -} -.custom-range:disabled::-webkit-slider-runnable-track { - cursor: default; -} -.custom-range:disabled::-moz-range-thumb { - background-color: #adb5bd; -} -.custom-range:disabled::-moz-range-track { - cursor: default; -} -.custom-range:disabled::-ms-thumb { - background-color: #adb5bd; -} - -.custom-control-label::before, -.custom-file-label, -.custom-select { - transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .custom-control-label::before, -.custom-file-label, -.custom-select { - transition: none; - } -} - -.nav { - display: flex; - flex-wrap: wrap; - padding-left: 0; - margin-bottom: 0; - list-style: none; -} - -.nav-link { - display: block; - padding: 0.5rem 1rem; -} -.nav-link:hover, .nav-link:focus { - text-decoration: none; -} -.nav-link.disabled { - color: #6c757d; - pointer-events: none; - cursor: default; -} - -.nav-tabs { - border-bottom: 1px solid #dee2e6; -} -.nav-tabs .nav-item { - margin-bottom: -1px; -} -.nav-tabs .nav-link { - border: 1px solid transparent; - border-top-left-radius: 0.25rem; - border-top-right-radius: 0.25rem; -} -.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { - border-color: #e9ecef #e9ecef #dee2e6; -} -.nav-tabs .nav-link.disabled { - color: #6c757d; - background-color: transparent; - border-color: transparent; -} -.nav-tabs .nav-link.active, -.nav-tabs .nav-item.show .nav-link { - color: #495057; - background-color: #fff; - border-color: #dee2e6 #dee2e6 #fff; -} -.nav-tabs .dropdown-menu { - margin-top: -1px; - border-top-left-radius: 0; - border-top-right-radius: 0; -} - -.nav-pills .nav-link { - border-radius: 0.25rem; -} -.nav-pills .nav-link.active, -.nav-pills .show > .nav-link { - color: #fff; - background-color: #007bff; -} - -.nav-fill > .nav-link, -.nav-fill .nav-item { - flex: 1 1 auto; - text-align: center; -} - -.nav-justified > .nav-link, -.nav-justified .nav-item { - flex-basis: 0; - flex-grow: 1; - text-align: center; -} - -.tab-content > .tab-pane { - display: none; -} -.tab-content > .active { - display: block; -} - -.navbar { - position: relative; - display: flex; - flex-wrap: wrap; - align-items: center; - justify-content: space-between; - padding: 0.5rem 1rem; -} -.navbar .container, -.navbar .container-fluid, -.navbar .container-sm, -.navbar .container-md, -.navbar .container-lg, -.navbar .container-xl { - display: flex; - flex-wrap: wrap; - align-items: center; - justify-content: space-between; -} -.navbar-brand { - display: inline-block; - padding-top: 0.3125rem; - padding-bottom: 0.3125rem; - margin-right: 1rem; - font-size: 1.25rem; - line-height: inherit; - white-space: nowrap; -} -.navbar-brand:hover, .navbar-brand:focus { - text-decoration: none; -} - -.navbar-nav { - display: flex; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - list-style: none; -} -.navbar-nav .nav-link { - padding-right: 0; - padding-left: 0; -} -.navbar-nav .dropdown-menu { - position: static; - float: none; -} - -.navbar-text { - display: inline-block; - padding-top: 0.5rem; - padding-bottom: 0.5rem; -} - -.navbar-collapse { - flex-basis: 100%; - flex-grow: 1; - align-items: center; -} - -.navbar-toggler { - padding: 0.25rem 0.75rem; - font-size: 1.25rem; - line-height: 1; - background-color: transparent; - border: 1px solid transparent; - border-radius: 0.25rem; -} -.navbar-toggler:hover, .navbar-toggler:focus { - text-decoration: none; -} - -.navbar-toggler-icon { - display: inline-block; - width: 1.5em; - height: 1.5em; - vertical-align: middle; - content: ""; - background: no-repeat center center; - background-size: 100% 100%; -} - -@media (max-width: 575.98px) { - .navbar-expand-sm > .container, -.navbar-expand-sm > .container-fluid, -.navbar-expand-sm > .container-sm, -.navbar-expand-sm > .container-md, -.navbar-expand-sm > .container-lg, -.navbar-expand-sm > .container-xl { - padding-right: 0; - padding-left: 0; - } -} -@media (min-width: 576px) { - .navbar-expand-sm { - flex-flow: row nowrap; - justify-content: flex-start; - } - .navbar-expand-sm .navbar-nav { - flex-direction: row; - } - .navbar-expand-sm .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-sm .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-sm > .container, -.navbar-expand-sm > .container-fluid, -.navbar-expand-sm > .container-sm, -.navbar-expand-sm > .container-md, -.navbar-expand-sm > .container-lg, -.navbar-expand-sm > .container-xl { - flex-wrap: nowrap; - } - .navbar-expand-sm .navbar-collapse { - display: flex !important; - flex-basis: auto; - } - .navbar-expand-sm .navbar-toggler { - display: none; - } -} -@media (max-width: 767.98px) { - .navbar-expand-md > .container, -.navbar-expand-md > .container-fluid, -.navbar-expand-md > .container-sm, -.navbar-expand-md > .container-md, -.navbar-expand-md > .container-lg, -.navbar-expand-md > .container-xl { - padding-right: 0; - padding-left: 0; - } -} -@media (min-width: 768px) { - .navbar-expand-md { - flex-flow: row nowrap; - justify-content: flex-start; - } - .navbar-expand-md .navbar-nav { - flex-direction: row; - } - .navbar-expand-md .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-md .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-md > .container, -.navbar-expand-md > .container-fluid, -.navbar-expand-md > .container-sm, -.navbar-expand-md > .container-md, -.navbar-expand-md > .container-lg, -.navbar-expand-md > .container-xl { - flex-wrap: nowrap; - } - .navbar-expand-md .navbar-collapse { - display: flex !important; - flex-basis: auto; - } - .navbar-expand-md .navbar-toggler { - display: none; - } -} -@media (max-width: 991.98px) { - .navbar-expand-lg > .container, -.navbar-expand-lg > .container-fluid, -.navbar-expand-lg > .container-sm, -.navbar-expand-lg > .container-md, -.navbar-expand-lg > .container-lg, -.navbar-expand-lg > .container-xl { - padding-right: 0; - padding-left: 0; - } -} -@media (min-width: 992px) { - .navbar-expand-lg { - flex-flow: row nowrap; - justify-content: flex-start; - } - .navbar-expand-lg .navbar-nav { - flex-direction: row; - } - .navbar-expand-lg .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-lg .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-lg > .container, -.navbar-expand-lg > .container-fluid, -.navbar-expand-lg > .container-sm, -.navbar-expand-lg > .container-md, -.navbar-expand-lg > .container-lg, -.navbar-expand-lg > .container-xl { - flex-wrap: nowrap; - } - .navbar-expand-lg .navbar-collapse { - display: flex !important; - flex-basis: auto; - } - .navbar-expand-lg .navbar-toggler { - display: none; - } -} -@media (max-width: 1199.98px) { - .navbar-expand-xl > .container, -.navbar-expand-xl > .container-fluid, -.navbar-expand-xl > .container-sm, -.navbar-expand-xl > .container-md, -.navbar-expand-xl > .container-lg, -.navbar-expand-xl > .container-xl { - padding-right: 0; - padding-left: 0; - } -} -@media (min-width: 1200px) { - .navbar-expand-xl { - flex-flow: row nowrap; - justify-content: flex-start; - } - .navbar-expand-xl .navbar-nav { - flex-direction: row; - } - .navbar-expand-xl .navbar-nav .dropdown-menu { - position: absolute; - } - .navbar-expand-xl .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; - } - .navbar-expand-xl > .container, -.navbar-expand-xl > .container-fluid, -.navbar-expand-xl > .container-sm, -.navbar-expand-xl > .container-md, -.navbar-expand-xl > .container-lg, -.navbar-expand-xl > .container-xl { - flex-wrap: nowrap; - } - .navbar-expand-xl .navbar-collapse { - display: flex !important; - flex-basis: auto; - } - .navbar-expand-xl .navbar-toggler { - display: none; - } -} -.navbar-expand { - flex-flow: row nowrap; - justify-content: flex-start; -} -.navbar-expand > .container, -.navbar-expand > .container-fluid, -.navbar-expand > .container-sm, -.navbar-expand > .container-md, -.navbar-expand > .container-lg, -.navbar-expand > .container-xl { - padding-right: 0; - padding-left: 0; -} -.navbar-expand .navbar-nav { - flex-direction: row; -} -.navbar-expand .navbar-nav .dropdown-menu { - position: absolute; -} -.navbar-expand .navbar-nav .nav-link { - padding-right: 0.5rem; - padding-left: 0.5rem; -} -.navbar-expand > .container, -.navbar-expand > .container-fluid, -.navbar-expand > .container-sm, -.navbar-expand > .container-md, -.navbar-expand > .container-lg, -.navbar-expand > .container-xl { - flex-wrap: nowrap; -} -.navbar-expand .navbar-collapse { - display: flex !important; - flex-basis: auto; -} -.navbar-expand .navbar-toggler { - display: none; -} - -.navbar-light .navbar-brand { - color: rgba(0, 0, 0, 0.9); -} -.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { - color: rgba(0, 0, 0, 0.9); -} -.navbar-light .navbar-nav .nav-link { - color: rgba(0, 0, 0, 0.5); -} -.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { - color: rgba(0, 0, 0, 0.7); -} -.navbar-light .navbar-nav .nav-link.disabled { - color: rgba(0, 0, 0, 0.3); -} -.navbar-light .navbar-nav .show > .nav-link, -.navbar-light .navbar-nav .active > .nav-link, -.navbar-light .navbar-nav .nav-link.show, -.navbar-light .navbar-nav .nav-link.active { - color: rgba(0, 0, 0, 0.9); -} -.navbar-light .navbar-toggler { - color: rgba(0, 0, 0, 0.5); - border-color: rgba(0, 0, 0, 0.1); -} -.navbar-light .navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); -} -.navbar-light .navbar-text { - color: rgba(0, 0, 0, 0.5); -} -.navbar-light .navbar-text a { - color: rgba(0, 0, 0, 0.9); -} -.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus { - color: rgba(0, 0, 0, 0.9); -} - -.navbar-dark .navbar-brand { - color: #fff; -} -.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { - color: #fff; -} -.navbar-dark .navbar-nav .nav-link { - color: rgba(255, 255, 255, 0.5); -} -.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { - color: rgba(255, 255, 255, 0.75); -} -.navbar-dark .navbar-nav .nav-link.disabled { - color: rgba(255, 255, 255, 0.25); -} -.navbar-dark .navbar-nav .show > .nav-link, -.navbar-dark .navbar-nav .active > .nav-link, -.navbar-dark .navbar-nav .nav-link.show, -.navbar-dark .navbar-nav .nav-link.active { - color: #fff; -} -.navbar-dark .navbar-toggler { - color: rgba(255, 255, 255, 0.5); - border-color: rgba(255, 255, 255, 0.1); -} -.navbar-dark .navbar-toggler-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); -} -.navbar-dark .navbar-text { - color: rgba(255, 255, 255, 0.5); -} -.navbar-dark .navbar-text a { - color: #fff; -} -.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus { - color: #fff; -} - -.card { - position: relative; - display: flex; - flex-direction: column; - min-width: 0; - word-wrap: break-word; - background-color: #fff; - background-clip: border-box; - border: 1px solid rgba(0, 0, 0, 0.125); - border-radius: 0.25rem; -} -.card > hr { - margin-right: 0; - margin-left: 0; -} -.card > .list-group { - border-top: inherit; - border-bottom: inherit; -} -.card > .list-group:first-child { - border-top-width: 0; - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); -} -.card > .list-group:last-child { - border-bottom-width: 0; - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); -} -.card > .card-header + .list-group, -.card > .list-group + .card-footer { - border-top: 0; -} - -.card-body { - flex: 1 1 auto; - min-height: 1px; - padding: 1.25rem; -} - -.card-title { - margin-bottom: 0.75rem; -} - -.card-subtitle { - margin-top: -0.375rem; - margin-bottom: 0; -} - -.card-text:last-child { - margin-bottom: 0; -} - -.card-link:hover { - text-decoration: none; -} -.card-link + .card-link { - margin-left: 1.25rem; -} - -.card-header { - padding: 0.75rem 1.25rem; - margin-bottom: 0; - background-color: rgba(0, 0, 0, 0.03); - border-bottom: 1px solid rgba(0, 0, 0, 0.125); -} -.card-header:first-child { - border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; -} - -.card-footer { - padding: 0.75rem 1.25rem; - background-color: rgba(0, 0, 0, 0.03); - border-top: 1px solid rgba(0, 0, 0, 0.125); -} -.card-footer:last-child { - border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); -} - -.card-header-tabs { - margin-right: -0.625rem; - margin-bottom: -0.75rem; - margin-left: -0.625rem; - border-bottom: 0; -} - -.card-header-pills { - margin-right: -0.625rem; - margin-left: -0.625rem; -} - -.card-img-overlay { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - padding: 1.25rem; - border-radius: calc(0.25rem - 1px); -} - -.card-img, -.card-img-top, -.card-img-bottom { - flex-shrink: 0; - width: 100%; -} - -.card-img, -.card-img-top { - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); -} - -.card-img, -.card-img-bottom { - border-bottom-right-radius: calc(0.25rem - 1px); - border-bottom-left-radius: calc(0.25rem - 1px); -} - -.card-deck .card { - margin-bottom: 15px; -} -@media (min-width: 576px) { - .card-deck { - display: flex; - flex-flow: row wrap; - margin-right: -15px; - margin-left: -15px; - } - .card-deck .card { - flex: 1 0 0%; - margin-right: 15px; - margin-bottom: 0; - margin-left: 15px; - } -} - -.card-group > .card { - margin-bottom: 15px; -} -@media (min-width: 576px) { - .card-group { - display: flex; - flex-flow: row wrap; - } - .card-group > .card { - flex: 1 0 0%; - margin-bottom: 0; - } - .card-group > .card + .card { - margin-left: 0; - border-left: 0; - } - .card-group > .card:not(:last-child) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - } - .card-group > .card:not(:last-child) .card-img-top, -.card-group > .card:not(:last-child) .card-header { - border-top-right-radius: 0; - } - .card-group > .card:not(:last-child) .card-img-bottom, -.card-group > .card:not(:last-child) .card-footer { - border-bottom-right-radius: 0; - } - .card-group > .card:not(:first-child) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - } - .card-group > .card:not(:first-child) .card-img-top, -.card-group > .card:not(:first-child) .card-header { - border-top-left-radius: 0; - } - .card-group > .card:not(:first-child) .card-img-bottom, -.card-group > .card:not(:first-child) .card-footer { - border-bottom-left-radius: 0; - } -} - -.card-columns .card { - margin-bottom: 0.75rem; -} -@media (min-width: 576px) { - .card-columns { - -moz-column-count: 3; - column-count: 3; - -moz-column-gap: 1.25rem; - column-gap: 1.25rem; - orphans: 1; - widows: 1; - } - .card-columns .card { - display: inline-block; - width: 100%; - } -} - -.accordion { - overflow-anchor: none; -} -.accordion > .card { - overflow: hidden; -} -.accordion > .card:not(:last-of-type) { - border-bottom: 0; - border-bottom-right-radius: 0; - border-bottom-left-radius: 0; -} -.accordion > .card:not(:first-of-type) { - border-top-left-radius: 0; - border-top-right-radius: 0; -} -.accordion > .card > .card-header { - border-radius: 0; - margin-bottom: -1px; -} - -.breadcrumb { - display: flex; - flex-wrap: wrap; - padding: 0.75rem 1rem; - margin-bottom: 1rem; - list-style: none; - background-color: #e9ecef; - border-radius: 0.25rem; -} - -.breadcrumb-item { - display: flex; -} -.breadcrumb-item + .breadcrumb-item { - padding-left: 0.5rem; -} -.breadcrumb-item + .breadcrumb-item::before { - display: inline-block; - padding-right: 0.5rem; - color: #6c757d; - content: "/"; -} -.breadcrumb-item + .breadcrumb-item:hover::before { - text-decoration: underline; -} -.breadcrumb-item + .breadcrumb-item:hover::before { - text-decoration: none; -} -.breadcrumb-item.active { - color: #6c757d; -} - -.pagination { - display: flex; - padding-left: 0; - list-style: none; - border-radius: 0.25rem; -} - -.page-link { - position: relative; - display: block; - padding: 0.5rem 0.75rem; - margin-left: -1px; - line-height: 1.25; - color: #007bff; - background-color: #fff; - border: 1px solid #dee2e6; -} -.page-link:hover { - z-index: 2; - color: #0056b3; - text-decoration: none; - background-color: #e9ecef; - border-color: #dee2e6; -} -.page-link:focus { - z-index: 3; - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); -} - -.page-item:first-child .page-link { - margin-left: 0; - border-top-left-radius: 0.25rem; - border-bottom-left-radius: 0.25rem; -} -.page-item:last-child .page-link { - border-top-right-radius: 0.25rem; - border-bottom-right-radius: 0.25rem; -} -.page-item.active .page-link { - z-index: 3; - color: #fff; - background-color: #007bff; - border-color: #007bff; -} -.page-item.disabled .page-link { - color: #6c757d; - pointer-events: none; - cursor: auto; - background-color: #fff; - border-color: #dee2e6; -} - -.pagination-lg .page-link { - padding: 0.75rem 1.5rem; - font-size: 1.25rem; - line-height: 1.5; -} -.pagination-lg .page-item:first-child .page-link { - border-top-left-radius: 0.3rem; - border-bottom-left-radius: 0.3rem; -} -.pagination-lg .page-item:last-child .page-link { - border-top-right-radius: 0.3rem; - border-bottom-right-radius: 0.3rem; -} - -.pagination-sm .page-link { - padding: 0.25rem 0.5rem; - font-size: 0.875rem; - line-height: 1.5; -} -.pagination-sm .page-item:first-child .page-link { - border-top-left-radius: 0.2rem; - border-bottom-left-radius: 0.2rem; -} -.pagination-sm .page-item:last-child .page-link { - border-top-right-radius: 0.2rem; - border-bottom-right-radius: 0.2rem; -} - -.badge { - display: inline-block; - padding: 0.25em 0.4em; - font-size: 75%; - font-weight: 700; - line-height: 1; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - border-radius: 0.25rem; - transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .badge { - transition: none; - } -} -a.badge:hover, a.badge:focus { - text-decoration: none; -} - -.badge:empty { - display: none; -} - -.btn .badge { - position: relative; - top: -1px; -} - -.badge-pill { - padding-right: 0.6em; - padding-left: 0.6em; - border-radius: 10rem; -} - -.badge-primary { - color: #fff; - background-color: #007bff; -} -a.badge-primary:hover, a.badge-primary:focus { - color: #fff; - background-color: #0062cc; -} -a.badge-primary:focus, a.badge-primary.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5); -} - -.badge-secondary { - color: #fff; - background-color: #6c757d; -} -a.badge-secondary:hover, a.badge-secondary:focus { - color: #fff; - background-color: #545b62; -} -a.badge-secondary:focus, a.badge-secondary.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5); -} - -.badge-success { - color: #fff; - background-color: #50a765; -} -a.badge-success:hover, a.badge-success:focus { - color: #fff; - background-color: #1e7e34; -} -a.badge-success:focus, a.badge-success.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5); -} - -.badge-info { - color: #fff; - background-color: #17a2b8; -} -a.badge-info:hover, a.badge-info:focus { - color: #fff; - background-color: #117a8b; -} -a.badge-info:focus, a.badge-info.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); -} - -.badge-warning { - color: #212529; - background-color: #ffc107; -} -a.badge-warning:hover, a.badge-warning:focus { - color: #212529; - background-color: #d39e00; -} -a.badge-warning:focus, a.badge-warning.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); -} - -.badge-danger { - color: #fff; - background-color: #dc3545; -} -a.badge-danger:hover, a.badge-danger:focus { - color: #fff; - background-color: #bd2130; -} -a.badge-danger:focus, a.badge-danger.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5); -} - -.badge-light { - color: #212529; - background-color: #f8f9fa; -} -a.badge-light:hover, a.badge-light:focus { - color: #212529; - background-color: #dae0e5; -} -a.badge-light:focus, a.badge-light.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); -} - -.badge-dark { - color: #fff; - background-color: #343a40; -} -a.badge-dark:hover, a.badge-dark:focus { - color: #fff; - background-color: #1d2124; -} -a.badge-dark:focus, a.badge-dark.focus { - outline: 0; - box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); -} - -.jumbotron { - padding: 2rem 1rem; - margin-bottom: 2rem; - background-color: #e9ecef; - border-radius: 0.3rem; -} -@media (min-width: 576px) { - .jumbotron { - padding: 4rem 2rem; - } -} - -.jumbotron-fluid { - padding-right: 0; - padding-left: 0; - border-radius: 0; -} - -.alert { - position: relative; - padding: 0.75rem 1.25rem; - margin-bottom: 1rem; - border: 1px solid transparent; - border-radius: 0.25rem; -} - -.alert-heading { - color: inherit; -} - -.alert-link { - font-weight: 700; -} - -.alert-dismissible { - padding-right: 4rem; -} -.alert-dismissible .close { - position: absolute; - top: 0; - right: 0; - z-index: 2; - padding: 0.75rem 1.25rem; - color: inherit; -} - -.alert-primary { - color: #004085; - background-color: #cce5ff; - border-color: #b8daff; -} -.alert-primary hr { - border-top-color: #9fcdff; -} -.alert-primary .alert-link { - color: #002752; -} - -.alert-secondary { - color: #383d41; - background-color: #e2e3e5; - border-color: #d6d8db; -} -.alert-secondary hr { - border-top-color: #c8cbcf; -} -.alert-secondary .alert-link { - color: #202326; -} - -.alert-success { - color: #155724; - background-color: #d4edda; - border-color: #c3e6cb; -} -.alert-success hr { - border-top-color: #b1dfbb; -} -.alert-success .alert-link { - color: #0b2e13; -} - -.alert-info { - color: #0c5460; - background-color: #d1ecf1; - border-color: #bee5eb; -} -.alert-info hr { - border-top-color: #abdde5; -} -.alert-info .alert-link { - color: #062c33; -} - -.alert-warning { - color: #856404; - background-color: #fff3cd; - border-color: #ffeeba; -} -.alert-warning hr { - border-top-color: #ffe8a1; -} -.alert-warning .alert-link { - color: #533f03; -} - -.alert-danger { - color: #721c24; - background-color: #f8d7da; - border-color: #f5c6cb; -} -.alert-danger hr { - border-top-color: #f1b0b7; -} -.alert-danger .alert-link { - color: #491217; -} - -.alert-light { - color: #818182; - background-color: #fefefe; - border-color: #fdfdfe; -} -.alert-light hr { - border-top-color: #ececf6; -} -.alert-light .alert-link { - color: #686868; -} - -.alert-dark { - color: #1b1e21; - background-color: #d6d8d9; - border-color: #c6c8ca; -} -.alert-dark hr { - border-top-color: #b9bbbe; -} -.alert-dark .alert-link { - color: #040505; -} - -@-webkit-keyframes progress-bar-stripes { - from { - background-position: 1rem 0; - } - to { - background-position: 0 0; - } -} - -@keyframes progress-bar-stripes { - from { - background-position: 1rem 0; - } - to { - background-position: 0 0; - } -} -.progress { - display: flex; - height: 1rem; - overflow: hidden; - line-height: 0; - font-size: 0.75rem; - background-color: #e9ecef; - border-radius: 0.25rem; -} - -.progress-bar { - display: flex; - flex-direction: column; - justify-content: center; - overflow: hidden; - color: #fff; - text-align: center; - white-space: nowrap; - background-color: #007bff; - transition: width 0.6s ease; -} -@media (prefers-reduced-motion: reduce) { - .progress-bar { - transition: none; - } -} - -.progress-bar-striped { - background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); - background-size: 1rem 1rem; -} - -.progress-bar-animated { - -webkit-animation: progress-bar-stripes 1s linear infinite; - animation: progress-bar-stripes 1s linear infinite; -} -@media (prefers-reduced-motion: reduce) { - .progress-bar-animated { - -webkit-animation: none; - animation: none; - } -} - -.media { - display: flex; - align-items: flex-start; -} - -.media-body { - flex: 1; -} - -.list-group { - display: flex; - flex-direction: column; - padding-left: 0; - margin-bottom: 0; - border-radius: 0.25rem; -} - -.list-group-item-action { - width: 100%; - color: #495057; - text-align: inherit; -} -.list-group-item-action:hover, .list-group-item-action:focus { - z-index: 1; - color: #495057; - text-decoration: none; - background-color: #f8f9fa; -} -.list-group-item-action:active { - color: #212529; - background-color: #e9ecef; -} - -.list-group-item { - position: relative; - display: block; - padding: 0.75rem 1.25rem; - background-color: #fff; - border: 1px solid rgba(0, 0, 0, 0.125); -} -.list-group-item:first-child { - border-top-left-radius: inherit; - border-top-right-radius: inherit; -} -.list-group-item:last-child { - border-bottom-right-radius: inherit; - border-bottom-left-radius: inherit; -} -.list-group-item.disabled, .list-group-item:disabled { - color: #6c757d; - pointer-events: none; - background-color: #fff; -} -.list-group-item.active { - z-index: 2; - color: #fff; - background-color: #007bff; - border-color: #007bff; -} -.list-group-item + .list-group-item { - border-top-width: 0; -} -.list-group-item + .list-group-item.active { - margin-top: -1px; - border-top-width: 1px; -} - -.list-group-horizontal { - flex-direction: row; -} -.list-group-horizontal > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; -} -.list-group-horizontal > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; -} -.list-group-horizontal > .list-group-item.active { - margin-top: 0; -} -.list-group-horizontal > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; -} -.list-group-horizontal > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; -} - -@media (min-width: 576px) { - .list-group-horizontal-sm { - flex-direction: row; - } - .list-group-horizontal-sm > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; - } - .list-group-horizontal-sm > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; - } - .list-group-horizontal-sm > .list-group-item.active { - margin-top: 0; - } - .list-group-horizontal-sm > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; - } - .list-group-horizontal-sm > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; - } -} -@media (min-width: 768px) { - .list-group-horizontal-md { - flex-direction: row; - } - .list-group-horizontal-md > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; - } - .list-group-horizontal-md > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; - } - .list-group-horizontal-md > .list-group-item.active { - margin-top: 0; - } - .list-group-horizontal-md > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; - } - .list-group-horizontal-md > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; - } -} -@media (min-width: 992px) { - .list-group-horizontal-lg { - flex-direction: row; - } - .list-group-horizontal-lg > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; - } - .list-group-horizontal-lg > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; - } - .list-group-horizontal-lg > .list-group-item.active { - margin-top: 0; - } - .list-group-horizontal-lg > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; - } - .list-group-horizontal-lg > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; - } -} -@media (min-width: 1200px) { - .list-group-horizontal-xl { - flex-direction: row; - } - .list-group-horizontal-xl > .list-group-item:first-child { - border-bottom-left-radius: 0.25rem; - border-top-right-radius: 0; - } - .list-group-horizontal-xl > .list-group-item:last-child { - border-top-right-radius: 0.25rem; - border-bottom-left-radius: 0; - } - .list-group-horizontal-xl > .list-group-item.active { - margin-top: 0; - } - .list-group-horizontal-xl > .list-group-item + .list-group-item { - border-top-width: 1px; - border-left-width: 0; - } - .list-group-horizontal-xl > .list-group-item + .list-group-item.active { - margin-left: -1px; - border-left-width: 1px; - } -} -.list-group-flush { - border-radius: 0; -} -.list-group-flush > .list-group-item { - border-width: 0 0 1px; -} -.list-group-flush > .list-group-item:last-child { - border-bottom-width: 0; -} - -.list-group-item-primary { - color: #004085; - background-color: #b8daff; -} -.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { - color: #004085; - background-color: #9fcdff; -} -.list-group-item-primary.list-group-item-action.active { - color: #fff; - background-color: #004085; - border-color: #004085; -} - -.list-group-item-secondary { - color: #383d41; - background-color: #d6d8db; -} -.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { - color: #383d41; - background-color: #c8cbcf; -} -.list-group-item-secondary.list-group-item-action.active { - color: #fff; - background-color: #383d41; - border-color: #383d41; -} - -.list-group-item-success { - color: #155724; - background-color: #c3e6cb; -} -.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { - color: #155724; - background-color: #b1dfbb; -} -.list-group-item-success.list-group-item-action.active { - color: #fff; - background-color: #155724; - border-color: #155724; -} - -.list-group-item-info { - color: #0c5460; - background-color: #bee5eb; -} -.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { - color: #0c5460; - background-color: #abdde5; -} -.list-group-item-info.list-group-item-action.active { - color: #fff; - background-color: #0c5460; - border-color: #0c5460; -} - -.list-group-item-warning { - color: #856404; - background-color: #ffeeba; -} -.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { - color: #856404; - background-color: #ffe8a1; -} -.list-group-item-warning.list-group-item-action.active { - color: #fff; - background-color: #856404; - border-color: #856404; -} - -.list-group-item-danger { - color: #721c24; - background-color: #f5c6cb; -} -.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { - color: #721c24; - background-color: #f1b0b7; -} -.list-group-item-danger.list-group-item-action.active { - color: #fff; - background-color: #721c24; - border-color: #721c24; -} - -.list-group-item-light { - color: #818182; - background-color: #fdfdfe; -} -.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { - color: #818182; - background-color: #ececf6; -} -.list-group-item-light.list-group-item-action.active { - color: #fff; - background-color: #818182; - border-color: #818182; -} - -.list-group-item-dark { - color: #1b1e21; - background-color: #c6c8ca; -} -.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { - color: #1b1e21; - background-color: #b9bbbe; -} -.list-group-item-dark.list-group-item-action.active { - color: #fff; - background-color: #1b1e21; - border-color: #1b1e21; -} - -.close { - float: right; - font-size: 1.5rem; - font-weight: 700; - line-height: 1; - color: #000; - text-shadow: 0 1px 0 #fff; - opacity: 0.5; -} -.close:hover { - color: #000; - text-decoration: none; -} -.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus { - opacity: 0.75; -} - -button.close { - padding: 0; - background-color: transparent; - border: 0; -} - -a.close.disabled { - pointer-events: none; -} - -.toast { - flex-basis: 350px; - max-width: 350px; - font-size: 0.875rem; - background-color: rgba(255, 255, 255, 0.85); - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.1); - box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1); - opacity: 0; - border-radius: 0.25rem; -} -.toast:not(:last-child) { - margin-bottom: 0.75rem; -} -.toast.showing { - opacity: 1; -} -.toast.show { - display: block; - opacity: 1; -} -.toast.hide { - display: none; -} - -.toast-header { - display: flex; - align-items: center; - padding: 0.25rem 0.75rem; - color: #6c757d; - background-color: rgba(255, 255, 255, 0.85); - background-clip: padding-box; - border-bottom: 1px solid rgba(0, 0, 0, 0.05); - border-top-left-radius: calc(0.25rem - 1px); - border-top-right-radius: calc(0.25rem - 1px); -} - -.toast-body { - padding: 0.75rem; -} - -.modal-open { - overflow: hidden; -} -.modal-open .modal { - overflow-x: hidden; - overflow-y: auto; -} - -.modal { - position: fixed; - top: 0; - left: 0; - z-index: 1050; - display: none; - width: 100%; - height: 100%; - overflow: hidden; - outline: 0; -} - -.modal-dialog { - position: relative; - width: auto; - margin: 0.5rem; - pointer-events: none; -} -.modal.fade .modal-dialog { - transition: transform 0.3s ease-out; - transform: translate(0, -50px); -} -@media (prefers-reduced-motion: reduce) { - .modal.fade .modal-dialog { - transition: none; - } -} -.modal.show .modal-dialog { - transform: none; -} -.modal.modal-static .modal-dialog { - transform: scale(1.02); -} - -.modal-dialog-scrollable { - display: flex; - max-height: calc(100% - 1rem); -} -.modal-dialog-scrollable .modal-content { - max-height: calc(100vh - 1rem); - overflow: hidden; -} -.modal-dialog-scrollable .modal-header, -.modal-dialog-scrollable .modal-footer { - flex-shrink: 0; -} -.modal-dialog-scrollable .modal-body { - overflow-y: auto; -} - -.modal-dialog-centered { - display: flex; - align-items: center; - min-height: calc(100% - 1rem); -} -.modal-dialog-centered::before { - display: block; - height: calc(100vh - 1rem); - height: -webkit-min-content; - height: -moz-min-content; - height: min-content; - content: ""; -} -.modal-dialog-centered.modal-dialog-scrollable { - flex-direction: column; - justify-content: center; - height: 100%; -} -.modal-dialog-centered.modal-dialog-scrollable .modal-content { - max-height: none; -} -.modal-dialog-centered.modal-dialog-scrollable::before { - content: none; -} - -.modal-content { - position: relative; - display: flex; - flex-direction: column; - width: 100%; - pointer-events: auto; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 0.3rem; - outline: 0; -} - -.modal-backdrop { - position: fixed; - top: 0; - left: 0; - z-index: 1040; - width: 100vw; - height: 100vh; - background-color: #000; -} -.modal-backdrop.fade { - opacity: 0; -} -.modal-backdrop.show { - opacity: 0.5; -} - -.modal-header { - display: flex; - align-items: flex-start; - justify-content: space-between; - padding: 1rem 1rem; - border-bottom: 1px solid #dee2e6; - border-top-left-radius: calc(0.3rem - 1px); - border-top-right-radius: calc(0.3rem - 1px); -} -.modal-header .close { - padding: 1rem 1rem; - margin: -1rem -1rem -1rem auto; -} - -.modal-title { - margin-bottom: 0; - line-height: 1.5; -} - -.modal-body { - position: relative; - flex: 1 1 auto; - padding: 1rem; -} - -.modal-footer { - display: flex; - flex-wrap: wrap; - align-items: center; - justify-content: flex-end; - padding: 0.75rem; - border-top: 1px solid #dee2e6; - border-bottom-right-radius: calc(0.3rem - 1px); - border-bottom-left-radius: calc(0.3rem - 1px); -} -.modal-footer > * { - margin: 0.25rem; -} - -.modal-scrollbar-measure { - position: absolute; - top: -9999px; - width: 50px; - height: 50px; - overflow: scroll; -} - -@media (min-width: 576px) { - .modal-dialog { - max-width: 500px; - margin: 1.75rem auto; - } - - .modal-dialog-scrollable { - max-height: calc(100% - 3.5rem); - } - .modal-dialog-scrollable .modal-content { - max-height: calc(100vh - 3.5rem); - } - - .modal-dialog-centered { - min-height: calc(100% - 3.5rem); - } - .modal-dialog-centered::before { - height: calc(100vh - 3.5rem); - height: -webkit-min-content; - height: -moz-min-content; - height: min-content; - } - - .modal-sm { - max-width: 300px; - } -} -@media (min-width: 992px) { - .modal-lg, -.modal-xl { - max-width: 800px; - } -} -@media (min-width: 1200px) { - .modal-xl { - max-width: 1140px; - } -} -.tooltip { - position: absolute; - z-index: 1070; - display: block; - margin: 0; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.875rem; - word-wrap: break-word; - opacity: 0; -} -.tooltip.show { - opacity: 0.9; -} -.tooltip .arrow { - position: absolute; - display: block; - width: 0.8rem; - height: 0.4rem; -} -.tooltip .arrow::before { - position: absolute; - content: ""; - border-color: transparent; - border-style: solid; -} - -.bs-tooltip-top, .bs-tooltip-auto[x-placement^=top] { - padding: 0.4rem 0; -} -.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=top] .arrow { - bottom: 0; -} -.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=top] .arrow::before { - top: 0; - border-width: 0.4rem 0.4rem 0; - border-top-color: #000; -} - -.bs-tooltip-right, .bs-tooltip-auto[x-placement^=right] { - padding: 0 0.4rem; -} -.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=right] .arrow { - left: 0; - width: 0.4rem; - height: 0.8rem; -} -.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=right] .arrow::before { - right: 0; - border-width: 0.4rem 0.4rem 0.4rem 0; - border-right-color: #000; -} - -.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=bottom] { - padding: 0.4rem 0; -} -.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=bottom] .arrow { - top: 0; -} -.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=bottom] .arrow::before { - bottom: 0; - border-width: 0 0.4rem 0.4rem; - border-bottom-color: #000; -} - -.bs-tooltip-left, .bs-tooltip-auto[x-placement^=left] { - padding: 0 0.4rem; -} -.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=left] .arrow { - right: 0; - width: 0.4rem; - height: 0.8rem; -} -.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=left] .arrow::before { - left: 0; - border-width: 0.4rem 0 0.4rem 0.4rem; - border-left-color: #000; -} - -.tooltip-inner { - max-width: 200px; - padding: 0.25rem 0.5rem; - color: #fff; - text-align: center; - background-color: #000; - border-radius: 0.25rem; -} - -.popover { - position: absolute; - top: 0; - left: 0; - z-index: 1060; - display: block; - max-width: 276px; - font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; - font-style: normal; - font-weight: 400; - line-height: 1.5; - text-align: left; - text-align: start; - text-decoration: none; - text-shadow: none; - text-transform: none; - letter-spacing: normal; - word-break: normal; - word-spacing: normal; - white-space: normal; - line-break: auto; - font-size: 0.875rem; - word-wrap: break-word; - background-color: #fff; - background-clip: padding-box; - border: 1px solid rgba(0, 0, 0, 0.2); - border-radius: 0.3rem; -} -.popover .arrow { - position: absolute; - display: block; - width: 1rem; - height: 0.5rem; - margin: 0 0.3rem; -} -.popover .arrow::before, .popover .arrow::after { - position: absolute; - display: block; - content: ""; - border-color: transparent; - border-style: solid; -} - -.bs-popover-top, .bs-popover-auto[x-placement^=top] { - margin-bottom: 0.5rem; -} -.bs-popover-top > .arrow, .bs-popover-auto[x-placement^=top] > .arrow { - bottom: calc(-0.5rem - 1px); -} -.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^=top] > .arrow::before { - bottom: 0; - border-width: 0.5rem 0.5rem 0; - border-top-color: rgba(0, 0, 0, 0.25); -} -.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^=top] > .arrow::after { - bottom: 1px; - border-width: 0.5rem 0.5rem 0; - border-top-color: #fff; -} - -.bs-popover-right, .bs-popover-auto[x-placement^=right] { - margin-left: 0.5rem; -} -.bs-popover-right > .arrow, .bs-popover-auto[x-placement^=right] > .arrow { - left: calc(-0.5rem - 1px); - width: 0.5rem; - height: 1rem; - margin: 0.3rem 0; -} -.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^=right] > .arrow::before { - left: 0; - border-width: 0.5rem 0.5rem 0.5rem 0; - border-right-color: rgba(0, 0, 0, 0.25); -} -.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^=right] > .arrow::after { - left: 1px; - border-width: 0.5rem 0.5rem 0.5rem 0; - border-right-color: #fff; -} - -.bs-popover-bottom, .bs-popover-auto[x-placement^=bottom] { - margin-top: 0.5rem; -} -.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^=bottom] > .arrow { - top: calc(-0.5rem - 1px); -} -.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^=bottom] > .arrow::before { - top: 0; - border-width: 0 0.5rem 0.5rem 0.5rem; - border-bottom-color: rgba(0, 0, 0, 0.25); -} -.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^=bottom] > .arrow::after { - top: 1px; - border-width: 0 0.5rem 0.5rem 0.5rem; - border-bottom-color: #fff; -} -.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=bottom] .popover-header::before { - position: absolute; - top: 0; - left: 50%; - display: block; - width: 1rem; - margin-left: -0.5rem; - content: ""; - border-bottom: 1px solid #f7f7f7; -} - -.bs-popover-left, .bs-popover-auto[x-placement^=left] { - margin-right: 0.5rem; -} -.bs-popover-left > .arrow, .bs-popover-auto[x-placement^=left] > .arrow { - right: calc(-0.5rem - 1px); - width: 0.5rem; - height: 1rem; - margin: 0.3rem 0; -} -.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^=left] > .arrow::before { - right: 0; - border-width: 0.5rem 0 0.5rem 0.5rem; - border-left-color: rgba(0, 0, 0, 0.25); -} -.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^=left] > .arrow::after { - right: 1px; - border-width: 0.5rem 0 0.5rem 0.5rem; - border-left-color: #fff; -} - -.popover-header { - padding: 0.5rem 0.75rem; - margin-bottom: 0; - font-size: 1rem; - background-color: #f7f7f7; - border-bottom: 1px solid #ebebeb; - border-top-left-radius: calc(0.3rem - 1px); - border-top-right-radius: calc(0.3rem - 1px); -} -.popover-header:empty { - display: none; -} - -.popover-body { - padding: 0.5rem 0.75rem; - color: #212529; -} - -.carousel { - position: relative; -} - -.carousel.pointer-event { - touch-action: pan-y; -} - -.carousel-inner { - position: relative; - width: 100%; - overflow: hidden; -} -.carousel-inner::after { - display: block; - clear: both; - content: ""; -} - -.carousel-item { - position: relative; - display: none; - float: left; - width: 100%; - margin-right: -100%; - -webkit-backface-visibility: hidden; - backface-visibility: hidden; - transition: transform 0.6s ease-in-out; -} -@media (prefers-reduced-motion: reduce) { - .carousel-item { - transition: none; - } -} - -.carousel-item.active, -.carousel-item-next, -.carousel-item-prev { - display: block; -} - -.carousel-item-next:not(.carousel-item-left), -.active.carousel-item-right { - transform: translateX(100%); -} - -.carousel-item-prev:not(.carousel-item-right), -.active.carousel-item-left { - transform: translateX(-100%); -} - -.carousel-fade .carousel-item { - opacity: 0; - transition-property: opacity; - transform: none; -} -.carousel-fade .carousel-item.active, -.carousel-fade .carousel-item-next.carousel-item-left, -.carousel-fade .carousel-item-prev.carousel-item-right { - z-index: 1; - opacity: 1; -} -.carousel-fade .active.carousel-item-left, -.carousel-fade .active.carousel-item-right { - z-index: 0; - opacity: 0; - transition: opacity 0s 0.6s; -} -@media (prefers-reduced-motion: reduce) { - .carousel-fade .active.carousel-item-left, -.carousel-fade .active.carousel-item-right { - transition: none; - } -} - -.carousel-control-prev, -.carousel-control-next { - position: absolute; - top: 0; - bottom: 0; - z-index: 1; - display: flex; - align-items: center; - justify-content: center; - width: 15%; - color: #fff; - text-align: center; - opacity: 0.5; - transition: opacity 0.15s ease; -} -@media (prefers-reduced-motion: reduce) { - .carousel-control-prev, -.carousel-control-next { - transition: none; - } -} -.carousel-control-prev:hover, .carousel-control-prev:focus, -.carousel-control-next:hover, -.carousel-control-next:focus { - color: #fff; - text-decoration: none; - outline: 0; - opacity: 0.9; -} - -.carousel-control-prev { - left: 0; -} - -.carousel-control-next { - right: 0; -} - -.carousel-control-prev-icon, -.carousel-control-next-icon { - display: inline-block; - width: 20px; - height: 20px; - background: no-repeat 50%/100% 100%; -} - -.carousel-control-prev-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e"); -} - -.carousel-control-next-icon { - background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e"); -} - -.carousel-indicators { - position: absolute; - right: 0; - bottom: 0; - left: 0; - z-index: 15; - display: flex; - justify-content: center; - padding-left: 0; - margin-right: 15%; - margin-left: 15%; - list-style: none; -} -.carousel-indicators li { - box-sizing: content-box; - flex: 0 1 auto; - width: 30px; - height: 3px; - margin-right: 3px; - margin-left: 3px; - text-indent: -999px; - cursor: pointer; - background-color: #fff; - background-clip: padding-box; - border-top: 10px solid transparent; - border-bottom: 10px solid transparent; - opacity: 0.5; - transition: opacity 0.6s ease; -} -@media (prefers-reduced-motion: reduce) { - .carousel-indicators li { - transition: none; - } -} -.carousel-indicators .active { - opacity: 1; -} - -.carousel-caption { - position: absolute; - right: 15%; - bottom: 20px; - left: 15%; - z-index: 10; - padding-top: 20px; - padding-bottom: 20px; - color: #fff; - text-align: center; -} - -@-webkit-keyframes spinner-border { - to { - transform: rotate(360deg); - } -} - -@keyframes spinner-border { - to { - transform: rotate(360deg); - } -} -.spinner-border { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: text-bottom; - border: 0.25em solid currentColor; - border-right-color: transparent; - border-radius: 50%; - -webkit-animation: spinner-border 0.75s linear infinite; - animation: spinner-border 0.75s linear infinite; -} - -.spinner-border-sm { - width: 1rem; - height: 1rem; - border-width: 0.2em; -} - -@-webkit-keyframes spinner-grow { - 0% { - transform: scale(0); - } - 50% { - opacity: 1; - transform: none; - } -} - -@keyframes spinner-grow { - 0% { - transform: scale(0); - } - 50% { - opacity: 1; - transform: none; - } -} -.spinner-grow { - display: inline-block; - width: 2rem; - height: 2rem; - vertical-align: text-bottom; - background-color: currentColor; - border-radius: 50%; - opacity: 0; - -webkit-animation: spinner-grow 0.75s linear infinite; - animation: spinner-grow 0.75s linear infinite; -} - -.spinner-grow-sm { - width: 1rem; - height: 1rem; -} - -.align-baseline { - vertical-align: baseline !important; -} - -.align-top { - vertical-align: top !important; -} - -.align-middle { - vertical-align: middle !important; -} - -.align-bottom { - vertical-align: bottom !important; -} - -.align-text-bottom { - vertical-align: text-bottom !important; -} - -.align-text-top { - vertical-align: text-top !important; -} - -.bg-primary { - background-color: #007bff !important; -} - -a.bg-primary:hover, a.bg-primary:focus, -button.bg-primary:hover, -button.bg-primary:focus { - background-color: #0062cc !important; -} - -.bg-secondary { - background-color: #6c757d !important; -} - -a.bg-secondary:hover, a.bg-secondary:focus, -button.bg-secondary:hover, -button.bg-secondary:focus { - background-color: #545b62 !important; -} - -.bg-success { - background-color: #50a765 !important; -} - -a.bg-success:hover, a.bg-success:focus, -button.bg-success:hover, -button.bg-success:focus { - background-color: #1e7e34 !important; -} - -.bg-info { - background-color: #17a2b8 !important; -} - -a.bg-info:hover, a.bg-info:focus, -button.bg-info:hover, -button.bg-info:focus { - background-color: #117a8b !important; -} - -.bg-warning { - background-color: #ffc107 !important; -} - -a.bg-warning:hover, a.bg-warning:focus, -button.bg-warning:hover, -button.bg-warning:focus { - background-color: #d39e00 !important; -} - -.bg-danger { - background-color: #dc3545 !important; -} - -a.bg-danger:hover, a.bg-danger:focus, -button.bg-danger:hover, -button.bg-danger:focus { - background-color: #bd2130 !important; -} - -.bg-light { - background-color: #f8f9fa !important; -} - -a.bg-light:hover, a.bg-light:focus, -button.bg-light:hover, -button.bg-light:focus { - background-color: #dae0e5 !important; -} - -.bg-dark { - background-color: #343a40 !important; -} - -a.bg-dark:hover, a.bg-dark:focus, -button.bg-dark:hover, -button.bg-dark:focus { - background-color: #1d2124 !important; -} - -.bg-white { - background-color: #fff !important; -} - -.bg-transparent { - background-color: transparent !important; -} - -.border { - border: 1px solid #dee2e6 !important; -} - -.border-top { - border-top: 1px solid #dee2e6 !important; -} - -.border-right { - border-right: 1px solid #dee2e6 !important; -} - -.border-bottom { - border-bottom: 1px solid #dee2e6 !important; -} - -.border-left { - border-left: 1px solid #dee2e6 !important; -} - -.border-0 { - border: 0 !important; -} - -.border-top-0 { - border-top: 0 !important; -} - -.border-right-0 { - border-right: 0 !important; -} - -.border-bottom-0 { - border-bottom: 0 !important; -} - -.border-left-0 { - border-left: 0 !important; -} - -.border-primary { - border-color: #007bff !important; -} - -.border-secondary { - border-color: #6c757d !important; -} - -.border-success { - border-color: #50a765 !important; -} - -.border-info { - border-color: #17a2b8 !important; -} - -.border-warning { - border-color: #ffc107 !important; -} - -.border-danger { - border-color: #dc3545 !important; -} - -.border-light { - border-color: #f8f9fa !important; -} - -.border-dark { - border-color: #343a40 !important; -} - -.border-white { - border-color: #fff !important; -} - -.rounded-sm { - border-radius: 0.2rem !important; -} - -.rounded { - border-radius: 0.25rem !important; -} - -.rounded-top { - border-top-left-radius: 0.25rem !important; - border-top-right-radius: 0.25rem !important; -} - -.rounded-right { - border-top-right-radius: 0.25rem !important; - border-bottom-right-radius: 0.25rem !important; -} - -.rounded-bottom { - border-bottom-right-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; -} - -.rounded-left { - border-top-left-radius: 0.25rem !important; - border-bottom-left-radius: 0.25rem !important; -} - -.rounded-lg { - border-radius: 0.3rem !important; -} - -.rounded-circle { - border-radius: 50% !important; -} - -.rounded-pill { - border-radius: 50rem !important; -} - -.rounded-0 { - border-radius: 0 !important; -} - -.clearfix::after { - display: block; - clear: both; - content: ""; -} - -.d-none { - display: none !important; -} - -.d-inline { - display: inline !important; -} - -.d-inline-block { - display: inline-block !important; -} - -.d-block { - display: block !important; -} - -.d-table { - display: table !important; -} - -.d-table-row { - display: table-row !important; -} - -.d-table-cell { - display: table-cell !important; -} - -.d-flex { - display: flex !important; -} - -.d-inline-flex { - display: inline-flex !important; -} - -@media (min-width: 576px) { - .d-sm-none { - display: none !important; - } - - .d-sm-inline { - display: inline !important; - } - - .d-sm-inline-block { - display: inline-block !important; - } - - .d-sm-block { - display: block !important; - } - - .d-sm-table { - display: table !important; - } - - .d-sm-table-row { - display: table-row !important; - } - - .d-sm-table-cell { - display: table-cell !important; - } - - .d-sm-flex { - display: flex !important; - } - - .d-sm-inline-flex { - display: inline-flex !important; - } -} -@media (min-width: 768px) { - .d-md-none { - display: none !important; - } - - .d-md-inline { - display: inline !important; - } - - .d-md-inline-block { - display: inline-block !important; - } - - .d-md-block { - display: block !important; - } - - .d-md-table { - display: table !important; - } - - .d-md-table-row { - display: table-row !important; - } - - .d-md-table-cell { - display: table-cell !important; - } - - .d-md-flex { - display: flex !important; - } - - .d-md-inline-flex { - display: inline-flex !important; - } -} -@media (min-width: 992px) { - .d-lg-none { - display: none !important; - } - - .d-lg-inline { - display: inline !important; - } - - .d-lg-inline-block { - display: inline-block !important; - } - - .d-lg-block { - display: block !important; - } - - .d-lg-table { - display: table !important; - } - - .d-lg-table-row { - display: table-row !important; - } - - .d-lg-table-cell { - display: table-cell !important; - } - - .d-lg-flex { - display: flex !important; - } - - .d-lg-inline-flex { - display: inline-flex !important; - } -} -@media (min-width: 1200px) { - .d-xl-none { - display: none !important; - } - - .d-xl-inline { - display: inline !important; - } - - .d-xl-inline-block { - display: inline-block !important; - } - - .d-xl-block { - display: block !important; - } - - .d-xl-table { - display: table !important; - } - - .d-xl-table-row { - display: table-row !important; - } - - .d-xl-table-cell { - display: table-cell !important; - } - - .d-xl-flex { - display: flex !important; - } - - .d-xl-inline-flex { - display: inline-flex !important; - } -} -@media print { - .d-print-none { - display: none !important; - } - - .d-print-inline { - display: inline !important; - } - - .d-print-inline-block { - display: inline-block !important; - } - - .d-print-block { - display: block !important; - } - - .d-print-table { - display: table !important; - } - - .d-print-table-row { - display: table-row !important; - } - - .d-print-table-cell { - display: table-cell !important; - } - - .d-print-flex { - display: flex !important; - } - - .d-print-inline-flex { - display: inline-flex !important; - } -} -.embed-responsive { - position: relative; - display: block; - width: 100%; - padding: 0; - overflow: hidden; -} -.embed-responsive::before { - display: block; - content: ""; -} -.embed-responsive .embed-responsive-item, -.embed-responsive iframe, -.embed-responsive embed, -.embed-responsive object, -.embed-responsive video { - position: absolute; - top: 0; - bottom: 0; - left: 0; - width: 100%; - height: 100%; - border: 0; -} - -.embed-responsive-21by9::before { - padding-top: 42.8571428571%; -} - -.embed-responsive-16by9::before { - padding-top: 56.25%; -} - -.embed-responsive-4by3::before { - padding-top: 75%; -} - -.embed-responsive-1by1::before { - padding-top: 100%; -} - -.embed-responsive-21by9::before { - padding-top: 42.8571428571%; -} - -.embed-responsive-16by9::before { - padding-top: 56.25%; -} - -.embed-responsive-4by3::before { - padding-top: 75%; -} - -.embed-responsive-1by1::before { - padding-top: 100%; -} - -.flex-row { - flex-direction: row !important; -} - -.flex-column { - flex-direction: column !important; -} - -.flex-row-reverse { - flex-direction: row-reverse !important; -} - -.flex-column-reverse { - flex-direction: column-reverse !important; -} - -.flex-wrap { - flex-wrap: wrap !important; -} - -.flex-nowrap { - flex-wrap: nowrap !important; -} - -.flex-wrap-reverse { - flex-wrap: wrap-reverse !important; -} - -.flex-fill { - flex: 1 1 auto !important; -} - -.flex-grow-0 { - flex-grow: 0 !important; -} - -.flex-grow-1 { - flex-grow: 1 !important; -} - -.flex-shrink-0 { - flex-shrink: 0 !important; -} - -.flex-shrink-1 { - flex-shrink: 1 !important; -} - -.justify-content-start { - justify-content: flex-start !important; -} - -.justify-content-end { - justify-content: flex-end !important; -} - -.justify-content-center { - justify-content: center !important; -} - -.justify-content-between { - justify-content: space-between !important; -} - -.justify-content-around { - justify-content: space-around !important; -} - -.align-items-start { - align-items: flex-start !important; -} - -.align-items-end { - align-items: flex-end !important; -} - -.align-items-center { - align-items: center !important; -} - -.align-items-baseline { - align-items: baseline !important; -} - -.align-items-stretch { - align-items: stretch !important; -} - -.align-content-start { - align-content: flex-start !important; -} - -.align-content-end { - align-content: flex-end !important; -} - -.align-content-center { - align-content: center !important; -} - -.align-content-between { - align-content: space-between !important; -} - -.align-content-around { - align-content: space-around !important; -} - -.align-content-stretch { - align-content: stretch !important; -} - -.align-self-auto { - align-self: auto !important; -} - -.align-self-start { - align-self: flex-start !important; -} - -.align-self-end { - align-self: flex-end !important; -} - -.align-self-center { - align-self: center !important; -} - -.align-self-baseline { - align-self: baseline !important; -} - -.align-self-stretch { - align-self: stretch !important; -} - -@media (min-width: 576px) { - .flex-sm-row { - flex-direction: row !important; - } - - .flex-sm-column { - flex-direction: column !important; - } - - .flex-sm-row-reverse { - flex-direction: row-reverse !important; - } - - .flex-sm-column-reverse { - flex-direction: column-reverse !important; - } - - .flex-sm-wrap { - flex-wrap: wrap !important; - } - - .flex-sm-nowrap { - flex-wrap: nowrap !important; - } - - .flex-sm-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - - .flex-sm-fill { - flex: 1 1 auto !important; - } - - .flex-sm-grow-0 { - flex-grow: 0 !important; - } - - .flex-sm-grow-1 { - flex-grow: 1 !important; - } - - .flex-sm-shrink-0 { - flex-shrink: 0 !important; - } - - .flex-sm-shrink-1 { - flex-shrink: 1 !important; - } - - .justify-content-sm-start { - justify-content: flex-start !important; - } - - .justify-content-sm-end { - justify-content: flex-end !important; - } - - .justify-content-sm-center { - justify-content: center !important; - } - - .justify-content-sm-between { - justify-content: space-between !important; - } - - .justify-content-sm-around { - justify-content: space-around !important; - } - - .align-items-sm-start { - align-items: flex-start !important; - } - - .align-items-sm-end { - align-items: flex-end !important; - } - - .align-items-sm-center { - align-items: center !important; - } - - .align-items-sm-baseline { - align-items: baseline !important; - } - - .align-items-sm-stretch { - align-items: stretch !important; - } - - .align-content-sm-start { - align-content: flex-start !important; - } - - .align-content-sm-end { - align-content: flex-end !important; - } - - .align-content-sm-center { - align-content: center !important; - } - - .align-content-sm-between { - align-content: space-between !important; - } - - .align-content-sm-around { - align-content: space-around !important; - } - - .align-content-sm-stretch { - align-content: stretch !important; - } - - .align-self-sm-auto { - align-self: auto !important; - } - - .align-self-sm-start { - align-self: flex-start !important; - } - - .align-self-sm-end { - align-self: flex-end !important; - } - - .align-self-sm-center { - align-self: center !important; - } - - .align-self-sm-baseline { - align-self: baseline !important; - } - - .align-self-sm-stretch { - align-self: stretch !important; - } -} -@media (min-width: 768px) { - .flex-md-row { - flex-direction: row !important; - } - - .flex-md-column { - flex-direction: column !important; - } - - .flex-md-row-reverse { - flex-direction: row-reverse !important; - } - - .flex-md-column-reverse { - flex-direction: column-reverse !important; - } - - .flex-md-wrap { - flex-wrap: wrap !important; - } - - .flex-md-nowrap { - flex-wrap: nowrap !important; - } - - .flex-md-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - - .flex-md-fill { - flex: 1 1 auto !important; - } - - .flex-md-grow-0 { - flex-grow: 0 !important; - } - - .flex-md-grow-1 { - flex-grow: 1 !important; - } - - .flex-md-shrink-0 { - flex-shrink: 0 !important; - } - - .flex-md-shrink-1 { - flex-shrink: 1 !important; - } - - .justify-content-md-start { - justify-content: flex-start !important; - } - - .justify-content-md-end { - justify-content: flex-end !important; - } - - .justify-content-md-center { - justify-content: center !important; - } - - .justify-content-md-between { - justify-content: space-between !important; - } - - .justify-content-md-around { - justify-content: space-around !important; - } - - .align-items-md-start { - align-items: flex-start !important; - } - - .align-items-md-end { - align-items: flex-end !important; - } - - .align-items-md-center { - align-items: center !important; - } - - .align-items-md-baseline { - align-items: baseline !important; - } - - .align-items-md-stretch { - align-items: stretch !important; - } - - .align-content-md-start { - align-content: flex-start !important; - } - - .align-content-md-end { - align-content: flex-end !important; - } - - .align-content-md-center { - align-content: center !important; - } - - .align-content-md-between { - align-content: space-between !important; - } - - .align-content-md-around { - align-content: space-around !important; - } - - .align-content-md-stretch { - align-content: stretch !important; - } - - .align-self-md-auto { - align-self: auto !important; - } - - .align-self-md-start { - align-self: flex-start !important; - } - - .align-self-md-end { - align-self: flex-end !important; - } - - .align-self-md-center { - align-self: center !important; - } - - .align-self-md-baseline { - align-self: baseline !important; - } - - .align-self-md-stretch { - align-self: stretch !important; - } -} -@media (min-width: 992px) { - .flex-lg-row { - flex-direction: row !important; - } - - .flex-lg-column { - flex-direction: column !important; - } - - .flex-lg-row-reverse { - flex-direction: row-reverse !important; - } - - .flex-lg-column-reverse { - flex-direction: column-reverse !important; - } - - .flex-lg-wrap { - flex-wrap: wrap !important; - } - - .flex-lg-nowrap { - flex-wrap: nowrap !important; - } - - .flex-lg-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - - .flex-lg-fill { - flex: 1 1 auto !important; - } - - .flex-lg-grow-0 { - flex-grow: 0 !important; - } - - .flex-lg-grow-1 { - flex-grow: 1 !important; - } - - .flex-lg-shrink-0 { - flex-shrink: 0 !important; - } - - .flex-lg-shrink-1 { - flex-shrink: 1 !important; - } - - .justify-content-lg-start { - justify-content: flex-start !important; - } - - .justify-content-lg-end { - justify-content: flex-end !important; - } - - .justify-content-lg-center { - justify-content: center !important; - } - - .justify-content-lg-between { - justify-content: space-between !important; - } - - .justify-content-lg-around { - justify-content: space-around !important; - } - - .align-items-lg-start { - align-items: flex-start !important; - } - - .align-items-lg-end { - align-items: flex-end !important; - } - - .align-items-lg-center { - align-items: center !important; - } - - .align-items-lg-baseline { - align-items: baseline !important; - } - - .align-items-lg-stretch { - align-items: stretch !important; - } - - .align-content-lg-start { - align-content: flex-start !important; - } - - .align-content-lg-end { - align-content: flex-end !important; - } - - .align-content-lg-center { - align-content: center !important; - } - - .align-content-lg-between { - align-content: space-between !important; - } - - .align-content-lg-around { - align-content: space-around !important; - } - - .align-content-lg-stretch { - align-content: stretch !important; - } - - .align-self-lg-auto { - align-self: auto !important; - } - - .align-self-lg-start { - align-self: flex-start !important; - } - - .align-self-lg-end { - align-self: flex-end !important; - } - - .align-self-lg-center { - align-self: center !important; - } - - .align-self-lg-baseline { - align-self: baseline !important; - } - - .align-self-lg-stretch { - align-self: stretch !important; - } -} -@media (min-width: 1200px) { - .flex-xl-row { - flex-direction: row !important; - } - - .flex-xl-column { - flex-direction: column !important; - } - - .flex-xl-row-reverse { - flex-direction: row-reverse !important; - } - - .flex-xl-column-reverse { - flex-direction: column-reverse !important; - } - - .flex-xl-wrap { - flex-wrap: wrap !important; - } - - .flex-xl-nowrap { - flex-wrap: nowrap !important; - } - - .flex-xl-wrap-reverse { - flex-wrap: wrap-reverse !important; - } - - .flex-xl-fill { - flex: 1 1 auto !important; - } - - .flex-xl-grow-0 { - flex-grow: 0 !important; - } - - .flex-xl-grow-1 { - flex-grow: 1 !important; - } - - .flex-xl-shrink-0 { - flex-shrink: 0 !important; - } - - .flex-xl-shrink-1 { - flex-shrink: 1 !important; - } - - .justify-content-xl-start { - justify-content: flex-start !important; - } - - .justify-content-xl-end { - justify-content: flex-end !important; - } - - .justify-content-xl-center { - justify-content: center !important; - } - - .justify-content-xl-between { - justify-content: space-between !important; - } - - .justify-content-xl-around { - justify-content: space-around !important; - } - - .align-items-xl-start { - align-items: flex-start !important; - } - - .align-items-xl-end { - align-items: flex-end !important; - } - - .align-items-xl-center { - align-items: center !important; - } - - .align-items-xl-baseline { - align-items: baseline !important; - } - - .align-items-xl-stretch { - align-items: stretch !important; - } - - .align-content-xl-start { - align-content: flex-start !important; - } - - .align-content-xl-end { - align-content: flex-end !important; - } - - .align-content-xl-center { - align-content: center !important; - } - - .align-content-xl-between { - align-content: space-between !important; - } - - .align-content-xl-around { - align-content: space-around !important; - } - - .align-content-xl-stretch { - align-content: stretch !important; - } - - .align-self-xl-auto { - align-self: auto !important; - } - - .align-self-xl-start { - align-self: flex-start !important; - } - - .align-self-xl-end { - align-self: flex-end !important; - } - - .align-self-xl-center { - align-self: center !important; - } - - .align-self-xl-baseline { - align-self: baseline !important; - } - - .align-self-xl-stretch { - align-self: stretch !important; - } -} -.float-left { - float: left !important; -} - -.float-right { - float: right !important; -} - -.float-none { - float: none !important; -} - -@media (min-width: 576px) { - .float-sm-left { - float: left !important; - } - - .float-sm-right { - float: right !important; - } - - .float-sm-none { - float: none !important; - } -} -@media (min-width: 768px) { - .float-md-left { - float: left !important; - } - - .float-md-right { - float: right !important; - } - - .float-md-none { - float: none !important; - } -} -@media (min-width: 992px) { - .float-lg-left { - float: left !important; - } - - .float-lg-right { - float: right !important; - } - - .float-lg-none { - float: none !important; - } -} -@media (min-width: 1200px) { - .float-xl-left { - float: left !important; - } - - .float-xl-right { - float: right !important; - } - - .float-xl-none { - float: none !important; - } -} -.user-select-all { - -webkit-user-select: all !important; - -moz-user-select: all !important; - -ms-user-select: all !important; - user-select: all !important; -} - -.user-select-auto { - -webkit-user-select: auto !important; - -moz-user-select: auto !important; - -ms-user-select: auto !important; - user-select: auto !important; -} - -.user-select-none { - -webkit-user-select: none !important; - -moz-user-select: none !important; - -ms-user-select: none !important; - user-select: none !important; -} - -.overflow-auto { - overflow: auto !important; -} - -.overflow-hidden { - overflow: hidden !important; -} - -.position-static { - position: static !important; -} - -.position-relative { - position: relative !important; -} - -.position-absolute { - position: absolute !important; -} - -.position-fixed { - position: fixed !important; -} - -.position-sticky { - position: -webkit-sticky !important; - position: sticky !important; -} - -.fixed-top, .sb-nav-fixed #layoutSidenav #layoutSidenav_nav, .sb-nav-fixed .sb-topnav { - position: fixed; - top: 0; - right: 0; - left: 0; - z-index: 1030; -} - -.fixed-bottom { - position: fixed; - right: 0; - bottom: 0; - left: 0; - z-index: 1030; -} - -@supports ((position: -webkit-sticky) or (position: sticky)) { - .sticky-top { - position: -webkit-sticky; - position: sticky; - top: 0; - z-index: 1020; - } -} - -.sr-only { - position: absolute; - width: 1px; - height: 1px; - padding: 0; - margin: -1px; - overflow: hidden; - clip: rect(0, 0, 0, 0); - white-space: nowrap; - border: 0; -} - -.sr-only-focusable:active, .sr-only-focusable:focus { - position: static; - width: auto; - height: auto; - overflow: visible; - clip: auto; - white-space: normal; -} - -.shadow-sm { - box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; -} - -.shadow { - box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; -} - -.shadow-lg { - box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; -} - -.shadow-none { - box-shadow: none !important; -} - -.w-25 { - width: 25% !important; -} - -.w-50 { - width: 50% !important; -} - -.w-75 { - width: 75% !important; -} - -.w-100 { - width: 100% !important; -} - -.w-auto { - width: auto !important; -} - -.h-25 { - height: 25% !important; -} - -.h-50 { - height: 50% !important; -} - -.h-75 { - height: 75% !important; -} - -.h-100 { - height: 100% !important; -} - -.h-auto { - height: auto !important; -} - -.mw-100 { - max-width: 100% !important; -} - -.mh-100 { - max-height: 100% !important; -} - -.min-vw-100 { - min-width: 100vw !important; -} - -.min-vh-100 { - min-height: 100vh !important; -} - -.vw-100 { - width: 100vw !important; -} - -.vh-100 { - height: 100vh !important; -} - -.m-0 { - margin: 0 !important; -} - -.mt-0, -.my-0 { - margin-top: 0 !important; -} - -.mr-0, -.mx-0 { - margin-right: 0 !important; -} - -.mb-0, -.my-0 { - margin-bottom: 0 !important; -} - -.ml-0, -.mx-0 { - margin-left: 0 !important; -} - -.m-1 { - margin: 0.25rem !important; -} - -.mt-1, -.my-1 { - margin-top: 0.25rem !important; -} - -.mr-1, -.mx-1 { - margin-right: 0.25rem !important; -} - -.mb-1, -.my-1 { - margin-bottom: 0.25rem !important; -} - -.ml-1, -.mx-1 { - margin-left: 0.25rem !important; -} - -.m-2 { - margin: 0.5rem !important; -} - -.mt-2, -.my-2 { - margin-top: 0.5rem !important; -} - -.mr-2, -.mx-2 { - margin-right: 0.5rem !important; -} - -.mb-2, -.my-2 { - margin-bottom: 0.5rem !important; -} - -.ml-2, -.mx-2 { - margin-left: 0.5rem !important; -} - -.m-3 { - margin: 1rem !important; -} - -.mt-3, -.my-3 { - margin-top: 1rem !important; -} - -.mr-3, -.mx-3 { - margin-right: 1rem !important; -} - -.mb-3, -.my-3 { - margin-bottom: 1rem !important; -} - -.ml-3, -.mx-3 { - margin-left: 1rem !important; -} - -.m-4 { - margin: 1.5rem !important; -} - -.mt-4, -.my-4 { - margin-top: 1.5rem !important; -} - -.mr-4, -.mx-4 { - margin-right: 1.5rem !important; -} - -.mb-4, -.my-4 { - margin-bottom: 1.5rem !important; -} - -.ml-4, -.mx-4 { - margin-left: 1.5rem !important; -} - -.m-5 { - margin: 3rem !important; -} - -.mt-5, -.my-5 { - margin-top: 3rem !important; -} - -.mr-5, -.mx-5 { - margin-right: 3rem !important; -} - -.mb-5, -.my-5 { - margin-bottom: 3rem !important; -} - -.ml-5, -.mx-5 { - margin-left: 3rem !important; -} - -.p-0 { - padding: 0 !important; -} - -.pt-0, -.py-0 { - padding-top: 0 !important; -} - -.pr-0, -.px-0 { - padding-right: 0 !important; -} - -.pb-0, -.py-0 { - padding-bottom: 0 !important; -} - -.pl-0, -.px-0 { - padding-left: 0 !important; -} - -.p-1 { - padding: 0.25rem !important; -} - -.pt-1, -.py-1 { - padding-top: 0.25rem !important; -} - -.pr-1, -.px-1 { - padding-right: 0.25rem !important; -} - -.pb-1, -.py-1 { - padding-bottom: 0.25rem !important; -} - -.pl-1, -.px-1 { - padding-left: 0.25rem !important; -} - -.p-2 { - padding: 0.5rem !important; -} - -.pt-2, -.py-2 { - padding-top: 0.5rem !important; -} - -.pr-2, -.px-2 { - padding-right: 0.5rem !important; -} - -.pb-2, -.py-2 { - padding-bottom: 0.5rem !important; -} - -.pl-2, -.px-2 { - padding-left: 0.5rem !important; -} - -.p-3 { - padding: 1rem !important; -} - -.pt-3, -.py-3 { - padding-top: 1rem !important; -} - -.pr-3, -.px-3 { - padding-right: 1rem !important; -} - -.pb-3, -.py-3 { - padding-bottom: 1rem !important; -} - -.pl-3, -.px-3 { - padding-left: 1rem !important; -} - -.p-4 { - padding: 1.5rem !important; -} - -.pt-4, -.py-4 { - padding-top: 1.5rem !important; -} - -.pr-4, -.px-4 { - padding-right: 1.5rem !important; -} - -.pb-4, -.py-4 { - padding-bottom: 1.5rem !important; -} - -.pl-4, -.px-4 { - padding-left: 1.5rem !important; -} - -.p-5 { - padding: 3rem !important; -} - -.pt-5, -.py-5 { - padding-top: 3rem !important; -} - -.pr-5, -.px-5 { - padding-right: 3rem !important; -} - -.pb-5, -.py-5 { - padding-bottom: 3rem !important; -} - -.pl-5, -.px-5 { - padding-left: 3rem !important; -} - -.m-n1 { - margin: -0.25rem !important; -} - -.mt-n1, -.my-n1 { - margin-top: -0.25rem !important; -} - -.mr-n1, -.mx-n1 { - margin-right: -0.25rem !important; -} - -.mb-n1, -.my-n1 { - margin-bottom: -0.25rem !important; -} - -.ml-n1, -.mx-n1 { - margin-left: -0.25rem !important; -} - -.m-n2 { - margin: -0.5rem !important; -} - -.mt-n2, -.my-n2 { - margin-top: -0.5rem !important; -} - -.mr-n2, -.mx-n2 { - margin-right: -0.5rem !important; -} - -.mb-n2, -.my-n2 { - margin-bottom: -0.5rem !important; -} - -.ml-n2, -.mx-n2 { - margin-left: -0.5rem !important; -} - -.m-n3 { - margin: -1rem !important; -} - -.mt-n3, -.my-n3 { - margin-top: -1rem !important; -} - -.mr-n3, -.mx-n3 { - margin-right: -1rem !important; -} - -.mb-n3, -.my-n3 { - margin-bottom: -1rem !important; -} - -.ml-n3, -.mx-n3 { - margin-left: -1rem !important; -} - -.m-n4 { - margin: -1.5rem !important; -} - -.mt-n4, -.my-n4 { - margin-top: -1.5rem !important; -} - -.mr-n4, -.mx-n4 { - margin-right: -1.5rem !important; -} - -.mb-n4, -.my-n4 { - margin-bottom: -1.5rem !important; -} - -.ml-n4, -.mx-n4 { - margin-left: -1.5rem !important; -} - -.m-n5 { - margin: -3rem !important; -} - -.mt-n5, -.my-n5 { - margin-top: -3rem !important; -} - -.mr-n5, -.mx-n5 { - margin-right: -3rem !important; -} - -.mb-n5, -.my-n5 { - margin-bottom: -3rem !important; -} - -.ml-n5, -.mx-n5 { - margin-left: -3rem !important; -} - -.m-auto { - margin: auto !important; -} - -.mt-auto, -.my-auto { - margin-top: auto !important; -} - -.mr-auto, -.mx-auto { - margin-right: auto !important; -} - -.mb-auto, -.my-auto { - margin-bottom: auto !important; -} - -.ml-auto, -.mx-auto { - margin-left: auto !important; -} - -@media (min-width: 576px) { - .m-sm-0 { - margin: 0 !important; - } - - .mt-sm-0, -.my-sm-0 { - margin-top: 0 !important; - } - - .mr-sm-0, -.mx-sm-0 { - margin-right: 0 !important; - } - - .mb-sm-0, -.my-sm-0 { - margin-bottom: 0 !important; - } - - .ml-sm-0, -.mx-sm-0 { - margin-left: 0 !important; - } - - .m-sm-1 { - margin: 0.25rem !important; - } - - .mt-sm-1, -.my-sm-1 { - margin-top: 0.25rem !important; - } - - .mr-sm-1, -.mx-sm-1 { - margin-right: 0.25rem !important; - } - - .mb-sm-1, -.my-sm-1 { - margin-bottom: 0.25rem !important; - } - - .ml-sm-1, -.mx-sm-1 { - margin-left: 0.25rem !important; - } - - .m-sm-2 { - margin: 0.5rem !important; - } - - .mt-sm-2, -.my-sm-2 { - margin-top: 0.5rem !important; - } - - .mr-sm-2, -.mx-sm-2 { - margin-right: 0.5rem !important; - } - - .mb-sm-2, -.my-sm-2 { - margin-bottom: 0.5rem !important; - } - - .ml-sm-2, -.mx-sm-2 { - margin-left: 0.5rem !important; - } - - .m-sm-3 { - margin: 1rem !important; - } - - .mt-sm-3, -.my-sm-3 { - margin-top: 1rem !important; - } - - .mr-sm-3, -.mx-sm-3 { - margin-right: 1rem !important; - } - - .mb-sm-3, -.my-sm-3 { - margin-bottom: 1rem !important; - } - - .ml-sm-3, -.mx-sm-3 { - margin-left: 1rem !important; - } - - .m-sm-4 { - margin: 1.5rem !important; - } - - .mt-sm-4, -.my-sm-4 { - margin-top: 1.5rem !important; - } - - .mr-sm-4, -.mx-sm-4 { - margin-right: 1.5rem !important; - } - - .mb-sm-4, -.my-sm-4 { - margin-bottom: 1.5rem !important; - } - - .ml-sm-4, -.mx-sm-4 { - margin-left: 1.5rem !important; - } - - .m-sm-5 { - margin: 3rem !important; - } - - .mt-sm-5, -.my-sm-5 { - margin-top: 3rem !important; - } - - .mr-sm-5, -.mx-sm-5 { - margin-right: 3rem !important; - } - - .mb-sm-5, -.my-sm-5 { - margin-bottom: 3rem !important; - } - - .ml-sm-5, -.mx-sm-5 { - margin-left: 3rem !important; - } - - .p-sm-0 { - padding: 0 !important; - } - - .pt-sm-0, -.py-sm-0 { - padding-top: 0 !important; - } - - .pr-sm-0, -.px-sm-0 { - padding-right: 0 !important; - } - - .pb-sm-0, -.py-sm-0 { - padding-bottom: 0 !important; - } - - .pl-sm-0, -.px-sm-0 { - padding-left: 0 !important; - } - - .p-sm-1 { - padding: 0.25rem !important; - } - - .pt-sm-1, -.py-sm-1 { - padding-top: 0.25rem !important; - } - - .pr-sm-1, -.px-sm-1 { - padding-right: 0.25rem !important; - } - - .pb-sm-1, -.py-sm-1 { - padding-bottom: 0.25rem !important; - } - - .pl-sm-1, -.px-sm-1 { - padding-left: 0.25rem !important; - } - - .p-sm-2 { - padding: 0.5rem !important; - } - - .pt-sm-2, -.py-sm-2 { - padding-top: 0.5rem !important; - } - - .pr-sm-2, -.px-sm-2 { - padding-right: 0.5rem !important; - } - - .pb-sm-2, -.py-sm-2 { - padding-bottom: 0.5rem !important; - } - - .pl-sm-2, -.px-sm-2 { - padding-left: 0.5rem !important; - } - - .p-sm-3 { - padding: 1rem !important; - } - - .pt-sm-3, -.py-sm-3 { - padding-top: 1rem !important; - } - - .pr-sm-3, -.px-sm-3 { - padding-right: 1rem !important; - } - - .pb-sm-3, -.py-sm-3 { - padding-bottom: 1rem !important; - } - - .pl-sm-3, -.px-sm-3 { - padding-left: 1rem !important; - } - - .p-sm-4 { - padding: 1.5rem !important; - } - - .pt-sm-4, -.py-sm-4 { - padding-top: 1.5rem !important; - } - - .pr-sm-4, -.px-sm-4 { - padding-right: 1.5rem !important; - } - - .pb-sm-4, -.py-sm-4 { - padding-bottom: 1.5rem !important; - } - - .pl-sm-4, -.px-sm-4 { - padding-left: 1.5rem !important; - } - - .p-sm-5 { - padding: 3rem !important; - } - - .pt-sm-5, -.py-sm-5 { - padding-top: 3rem !important; - } - - .pr-sm-5, -.px-sm-5 { - padding-right: 3rem !important; - } - - .pb-sm-5, -.py-sm-5 { - padding-bottom: 3rem !important; - } - - .pl-sm-5, -.px-sm-5 { - padding-left: 3rem !important; - } - - .m-sm-n1 { - margin: -0.25rem !important; - } - - .mt-sm-n1, -.my-sm-n1 { - margin-top: -0.25rem !important; - } - - .mr-sm-n1, -.mx-sm-n1 { - margin-right: -0.25rem !important; - } - - .mb-sm-n1, -.my-sm-n1 { - margin-bottom: -0.25rem !important; - } - - .ml-sm-n1, -.mx-sm-n1 { - margin-left: -0.25rem !important; - } - - .m-sm-n2 { - margin: -0.5rem !important; - } - - .mt-sm-n2, -.my-sm-n2 { - margin-top: -0.5rem !important; - } - - .mr-sm-n2, -.mx-sm-n2 { - margin-right: -0.5rem !important; - } - - .mb-sm-n2, -.my-sm-n2 { - margin-bottom: -0.5rem !important; - } - - .ml-sm-n2, -.mx-sm-n2 { - margin-left: -0.5rem !important; - } - - .m-sm-n3 { - margin: -1rem !important; - } - - .mt-sm-n3, -.my-sm-n3 { - margin-top: -1rem !important; - } - - .mr-sm-n3, -.mx-sm-n3 { - margin-right: -1rem !important; - } - - .mb-sm-n3, -.my-sm-n3 { - margin-bottom: -1rem !important; - } - - .ml-sm-n3, -.mx-sm-n3 { - margin-left: -1rem !important; - } - - .m-sm-n4 { - margin: -1.5rem !important; - } - - .mt-sm-n4, -.my-sm-n4 { - margin-top: -1.5rem !important; - } - - .mr-sm-n4, -.mx-sm-n4 { - margin-right: -1.5rem !important; - } - - .mb-sm-n4, -.my-sm-n4 { - margin-bottom: -1.5rem !important; - } - - .ml-sm-n4, -.mx-sm-n4 { - margin-left: -1.5rem !important; - } - - .m-sm-n5 { - margin: -3rem !important; - } - - .mt-sm-n5, -.my-sm-n5 { - margin-top: -3rem !important; - } - - .mr-sm-n5, -.mx-sm-n5 { - margin-right: -3rem !important; - } - - .mb-sm-n5, -.my-sm-n5 { - margin-bottom: -3rem !important; - } - - .ml-sm-n5, -.mx-sm-n5 { - margin-left: -3rem !important; - } - - .m-sm-auto { - margin: auto !important; - } - - .mt-sm-auto, -.my-sm-auto { - margin-top: auto !important; - } - - .mr-sm-auto, -.mx-sm-auto { - margin-right: auto !important; - } - - .mb-sm-auto, -.my-sm-auto { - margin-bottom: auto !important; - } - - .ml-sm-auto, -.mx-sm-auto { - margin-left: auto !important; - } -} -@media (min-width: 768px) { - .m-md-0 { - margin: 0 !important; - } - - .mt-md-0, -.my-md-0 { - margin-top: 0 !important; - } - - .mr-md-0, -.mx-md-0 { - margin-right: 0 !important; - } - - .mb-md-0, -.my-md-0 { - margin-bottom: 0 !important; - } - - .ml-md-0, -.mx-md-0 { - margin-left: 0 !important; - } - - .m-md-1 { - margin: 0.25rem !important; - } - - .mt-md-1, -.my-md-1 { - margin-top: 0.25rem !important; - } - - .mr-md-1, -.mx-md-1 { - margin-right: 0.25rem !important; - } - - .mb-md-1, -.my-md-1 { - margin-bottom: 0.25rem !important; - } - - .ml-md-1, -.mx-md-1 { - margin-left: 0.25rem !important; - } - - .m-md-2 { - margin: 0.5rem !important; - } - - .mt-md-2, -.my-md-2 { - margin-top: 0.5rem !important; - } - - .mr-md-2, -.mx-md-2 { - margin-right: 0.5rem !important; - } - - .mb-md-2, -.my-md-2 { - margin-bottom: 0.5rem !important; - } - - .ml-md-2, -.mx-md-2 { - margin-left: 0.5rem !important; - } - - .m-md-3 { - margin: 1rem !important; - } - - .mt-md-3, -.my-md-3 { - margin-top: 1rem !important; - } - - .mr-md-3, -.mx-md-3 { - margin-right: 1rem !important; - } - - .mb-md-3, -.my-md-3 { - margin-bottom: 1rem !important; - } - - .ml-md-3, -.mx-md-3 { - margin-left: 1rem !important; - } - - .m-md-4 { - margin: 1.5rem !important; - } - - .mt-md-4, -.my-md-4 { - margin-top: 1.5rem !important; - } - - .mr-md-4, -.mx-md-4 { - margin-right: 1.5rem !important; - } - - .mb-md-4, -.my-md-4 { - margin-bottom: 1.5rem !important; - } - - .ml-md-4, -.mx-md-4 { - margin-left: 1.5rem !important; - } - - .m-md-5 { - margin: 3rem !important; - } - - .mt-md-5, -.my-md-5 { - margin-top: 3rem !important; - } - - .mr-md-5, -.mx-md-5 { - margin-right: 3rem !important; - } - - .mb-md-5, -.my-md-5 { - margin-bottom: 3rem !important; - } - - .ml-md-5, -.mx-md-5 { - margin-left: 3rem !important; - } - - .p-md-0 { - padding: 0 !important; - } - - .pt-md-0, -.py-md-0 { - padding-top: 0 !important; - } - - .pr-md-0, -.px-md-0 { - padding-right: 0 !important; - } - - .pb-md-0, -.py-md-0 { - padding-bottom: 0 !important; - } - - .pl-md-0, -.px-md-0 { - padding-left: 0 !important; - } - - .p-md-1 { - padding: 0.25rem !important; - } - - .pt-md-1, -.py-md-1 { - padding-top: 0.25rem !important; - } - - .pr-md-1, -.px-md-1 { - padding-right: 0.25rem !important; - } - - .pb-md-1, -.py-md-1 { - padding-bottom: 0.25rem !important; - } - - .pl-md-1, -.px-md-1 { - padding-left: 0.25rem !important; - } - - .p-md-2 { - padding: 0.5rem !important; - } - - .pt-md-2, -.py-md-2 { - padding-top: 0.5rem !important; - } - - .pr-md-2, -.px-md-2 { - padding-right: 0.5rem !important; - } - - .pb-md-2, -.py-md-2 { - padding-bottom: 0.5rem !important; - } - - .pl-md-2, -.px-md-2 { - padding-left: 0.5rem !important; - } - - .p-md-3 { - padding: 1rem !important; - } - - .pt-md-3, -.py-md-3 { - padding-top: 1rem !important; - } - - .pr-md-3, -.px-md-3 { - padding-right: 1rem !important; - } - - .pb-md-3, -.py-md-3 { - padding-bottom: 1rem !important; - } - - .pl-md-3, -.px-md-3 { - padding-left: 1rem !important; - } - - .p-md-4 { - padding: 1.5rem !important; - } - - .pt-md-4, -.py-md-4 { - padding-top: 1.5rem !important; - } - - .pr-md-4, -.px-md-4 { - padding-right: 1.5rem !important; - } - - .pb-md-4, -.py-md-4 { - padding-bottom: 1.5rem !important; - } - - .pl-md-4, -.px-md-4 { - padding-left: 1.5rem !important; - } - - .p-md-5 { - padding: 3rem !important; - } - - .pt-md-5, -.py-md-5 { - padding-top: 3rem !important; - } - - .pr-md-5, -.px-md-5 { - padding-right: 3rem !important; - } - - .pb-md-5, -.py-md-5 { - padding-bottom: 3rem !important; - } - - .pl-md-5, -.px-md-5 { - padding-left: 3rem !important; - } - - .m-md-n1 { - margin: -0.25rem !important; - } - - .mt-md-n1, -.my-md-n1 { - margin-top: -0.25rem !important; - } - - .mr-md-n1, -.mx-md-n1 { - margin-right: -0.25rem !important; - } - - .mb-md-n1, -.my-md-n1 { - margin-bottom: -0.25rem !important; - } - - .ml-md-n1, -.mx-md-n1 { - margin-left: -0.25rem !important; - } - - .m-md-n2 { - margin: -0.5rem !important; - } - - .mt-md-n2, -.my-md-n2 { - margin-top: -0.5rem !important; - } - - .mr-md-n2, -.mx-md-n2 { - margin-right: -0.5rem !important; - } - - .mb-md-n2, -.my-md-n2 { - margin-bottom: -0.5rem !important; - } - - .ml-md-n2, -.mx-md-n2 { - margin-left: -0.5rem !important; - } - - .m-md-n3 { - margin: -1rem !important; - } - - .mt-md-n3, -.my-md-n3 { - margin-top: -1rem !important; - } - - .mr-md-n3, -.mx-md-n3 { - margin-right: -1rem !important; - } - - .mb-md-n3, -.my-md-n3 { - margin-bottom: -1rem !important; - } - - .ml-md-n3, -.mx-md-n3 { - margin-left: -1rem !important; - } - - .m-md-n4 { - margin: -1.5rem !important; - } - - .mt-md-n4, -.my-md-n4 { - margin-top: -1.5rem !important; - } - - .mr-md-n4, -.mx-md-n4 { - margin-right: -1.5rem !important; - } - - .mb-md-n4, -.my-md-n4 { - margin-bottom: -1.5rem !important; - } - - .ml-md-n4, -.mx-md-n4 { - margin-left: -1.5rem !important; - } - - .m-md-n5 { - margin: -3rem !important; - } - - .mt-md-n5, -.my-md-n5 { - margin-top: -3rem !important; - } - - .mr-md-n5, -.mx-md-n5 { - margin-right: -3rem !important; - } - - .mb-md-n5, -.my-md-n5 { - margin-bottom: -3rem !important; - } - - .ml-md-n5, -.mx-md-n5 { - margin-left: -3rem !important; - } - - .m-md-auto { - margin: auto !important; - } - - .mt-md-auto, -.my-md-auto { - margin-top: auto !important; - } - - .mr-md-auto, -.mx-md-auto { - margin-right: auto !important; - } - - .mb-md-auto, -.my-md-auto { - margin-bottom: auto !important; - } - - .ml-md-auto, -.mx-md-auto { - margin-left: auto !important; - } -} -@media (min-width: 992px) { - .m-lg-0 { - margin: 0 !important; - } - - .mt-lg-0, -.my-lg-0 { - margin-top: 0 !important; - } - - .mr-lg-0, -.mx-lg-0 { - margin-right: 0 !important; - } - - .mb-lg-0, -.my-lg-0 { - margin-bottom: 0 !important; - } - - .ml-lg-0, -.mx-lg-0 { - margin-left: 0 !important; - } - - .m-lg-1 { - margin: 0.25rem !important; - } - - .mt-lg-1, -.my-lg-1 { - margin-top: 0.25rem !important; - } - - .mr-lg-1, -.mx-lg-1 { - margin-right: 0.25rem !important; - } - - .mb-lg-1, -.my-lg-1 { - margin-bottom: 0.25rem !important; - } - - .ml-lg-1, -.mx-lg-1 { - margin-left: 0.25rem !important; - } - - .m-lg-2 { - margin: 0.5rem !important; - } - - .mt-lg-2, -.my-lg-2 { - margin-top: 0.5rem !important; - } - - .mr-lg-2, -.mx-lg-2 { - margin-right: 0.5rem !important; - } - - .mb-lg-2, -.my-lg-2 { - margin-bottom: 0.5rem !important; - } - - .ml-lg-2, -.mx-lg-2 { - margin-left: 0.5rem !important; - } - - .m-lg-3 { - margin: 1rem !important; - } - - .mt-lg-3, -.my-lg-3 { - margin-top: 1rem !important; - } - - .mr-lg-3, -.mx-lg-3 { - margin-right: 1rem !important; - } - - .mb-lg-3, -.my-lg-3 { - margin-bottom: 1rem !important; - } - - .ml-lg-3, -.mx-lg-3 { - margin-left: 1rem !important; - } - - .m-lg-4 { - margin: 1.5rem !important; - } - - .mt-lg-4, -.my-lg-4 { - margin-top: 1.5rem !important; - } - - .mr-lg-4, -.mx-lg-4 { - margin-right: 1.5rem !important; - } - - .mb-lg-4, -.my-lg-4 { - margin-bottom: 1.5rem !important; - } - - .ml-lg-4, -.mx-lg-4 { - margin-left: 1.5rem !important; - } - - .m-lg-5 { - margin: 3rem !important; - } - - .mt-lg-5, -.my-lg-5 { - margin-top: 3rem !important; - } - - .mr-lg-5, -.mx-lg-5 { - margin-right: 3rem !important; - } - - .mb-lg-5, -.my-lg-5 { - margin-bottom: 3rem !important; - } - - .ml-lg-5, -.mx-lg-5 { - margin-left: 3rem !important; - } - - .p-lg-0 { - padding: 0 !important; - } - - .pt-lg-0, -.py-lg-0 { - padding-top: 0 !important; - } - - .pr-lg-0, -.px-lg-0 { - padding-right: 0 !important; - } - - .pb-lg-0, -.py-lg-0 { - padding-bottom: 0 !important; - } - - .pl-lg-0, -.px-lg-0 { - padding-left: 0 !important; - } - - .p-lg-1 { - padding: 0.25rem !important; - } - - .pt-lg-1, -.py-lg-1 { - padding-top: 0.25rem !important; - } - - .pr-lg-1, -.px-lg-1 { - padding-right: 0.25rem !important; - } - - .pb-lg-1, -.py-lg-1 { - padding-bottom: 0.25rem !important; - } - - .pl-lg-1, -.px-lg-1 { - padding-left: 0.25rem !important; - } - - .p-lg-2 { - padding: 0.5rem !important; - } - - .pt-lg-2, -.py-lg-2 { - padding-top: 0.5rem !important; - } - - .pr-lg-2, -.px-lg-2 { - padding-right: 0.5rem !important; - } - - .pb-lg-2, -.py-lg-2 { - padding-bottom: 0.5rem !important; - } - - .pl-lg-2, -.px-lg-2 { - padding-left: 0.5rem !important; - } - - .p-lg-3 { - padding: 1rem !important; - } - - .pt-lg-3, -.py-lg-3 { - padding-top: 1rem !important; - } - - .pr-lg-3, -.px-lg-3 { - padding-right: 1rem !important; - } - - .pb-lg-3, -.py-lg-3 { - padding-bottom: 1rem !important; - } - - .pl-lg-3, -.px-lg-3 { - padding-left: 1rem !important; - } - - .p-lg-4 { - padding: 1.5rem !important; - } - - .pt-lg-4, -.py-lg-4 { - padding-top: 1.5rem !important; - } - - .pr-lg-4, -.px-lg-4 { - padding-right: 1.5rem !important; - } - - .pb-lg-4, -.py-lg-4 { - padding-bottom: 1.5rem !important; - } - - .pl-lg-4, -.px-lg-4 { - padding-left: 1.5rem !important; - } - - .p-lg-5 { - padding: 3rem !important; - } - - .pt-lg-5, -.py-lg-5 { - padding-top: 3rem !important; - } - - .pr-lg-5, -.px-lg-5 { - padding-right: 3rem !important; - } - - .pb-lg-5, -.py-lg-5 { - padding-bottom: 3rem !important; - } - - .pl-lg-5, -.px-lg-5 { - padding-left: 3rem !important; - } - - .m-lg-n1 { - margin: -0.25rem !important; - } - - .mt-lg-n1, -.my-lg-n1 { - margin-top: -0.25rem !important; - } - - .mr-lg-n1, -.mx-lg-n1 { - margin-right: -0.25rem !important; - } - - .mb-lg-n1, -.my-lg-n1 { - margin-bottom: -0.25rem !important; - } - - .ml-lg-n1, -.mx-lg-n1 { - margin-left: -0.25rem !important; - } - - .m-lg-n2 { - margin: -0.5rem !important; - } - - .mt-lg-n2, -.my-lg-n2 { - margin-top: -0.5rem !important; - } - - .mr-lg-n2, -.mx-lg-n2 { - margin-right: -0.5rem !important; - } - - .mb-lg-n2, -.my-lg-n2 { - margin-bottom: -0.5rem !important; - } - - .ml-lg-n2, -.mx-lg-n2 { - margin-left: -0.5rem !important; - } - - .m-lg-n3 { - margin: -1rem !important; - } - - .mt-lg-n3, -.my-lg-n3 { - margin-top: -1rem !important; - } - - .mr-lg-n3, -.mx-lg-n3 { - margin-right: -1rem !important; - } - - .mb-lg-n3, -.my-lg-n3 { - margin-bottom: -1rem !important; - } - - .ml-lg-n3, -.mx-lg-n3 { - margin-left: -1rem !important; - } - - .m-lg-n4 { - margin: -1.5rem !important; - } - - .mt-lg-n4, -.my-lg-n4 { - margin-top: -1.5rem !important; - } - - .mr-lg-n4, -.mx-lg-n4 { - margin-right: -1.5rem !important; - } - - .mb-lg-n4, -.my-lg-n4 { - margin-bottom: -1.5rem !important; - } - - .ml-lg-n4, -.mx-lg-n4 { - margin-left: -1.5rem !important; - } - - .m-lg-n5 { - margin: -3rem !important; - } - - .mt-lg-n5, -.my-lg-n5 { - margin-top: -3rem !important; - } - - .mr-lg-n5, -.mx-lg-n5 { - margin-right: -3rem !important; - } - - .mb-lg-n5, -.my-lg-n5 { - margin-bottom: -3rem !important; - } - - .ml-lg-n5, -.mx-lg-n5 { - margin-left: -3rem !important; - } - - .m-lg-auto { - margin: auto !important; - } - - .mt-lg-auto, -.my-lg-auto { - margin-top: auto !important; - } - - .mr-lg-auto, -.mx-lg-auto { - margin-right: auto !important; - } - - .mb-lg-auto, -.my-lg-auto { - margin-bottom: auto !important; - } - - .ml-lg-auto, -.mx-lg-auto { - margin-left: auto !important; - } -} -@media (min-width: 1200px) { - .m-xl-0 { - margin: 0 !important; - } - - .mt-xl-0, -.my-xl-0 { - margin-top: 0 !important; - } - - .mr-xl-0, -.mx-xl-0 { - margin-right: 0 !important; - } - - .mb-xl-0, -.my-xl-0 { - margin-bottom: 0 !important; - } - - .ml-xl-0, -.mx-xl-0 { - margin-left: 0 !important; - } - - .m-xl-1 { - margin: 0.25rem !important; - } - - .mt-xl-1, -.my-xl-1 { - margin-top: 0.25rem !important; - } - - .mr-xl-1, -.mx-xl-1 { - margin-right: 0.25rem !important; - } - - .mb-xl-1, -.my-xl-1 { - margin-bottom: 0.25rem !important; - } - - .ml-xl-1, -.mx-xl-1 { - margin-left: 0.25rem !important; - } - - .m-xl-2 { - margin: 0.5rem !important; - } - - .mt-xl-2, -.my-xl-2 { - margin-top: 0.5rem !important; - } - - .mr-xl-2, -.mx-xl-2 { - margin-right: 0.5rem !important; - } - - .mb-xl-2, -.my-xl-2 { - margin-bottom: 0.5rem !important; - } - - .ml-xl-2, -.mx-xl-2 { - margin-left: 0.5rem !important; - } - - .m-xl-3 { - margin: 1rem !important; - } - - .mt-xl-3, -.my-xl-3 { - margin-top: 1rem !important; - } - - .mr-xl-3, -.mx-xl-3 { - margin-right: 1rem !important; - } - - .mb-xl-3, -.my-xl-3 { - margin-bottom: 1rem !important; - } - - .ml-xl-3, -.mx-xl-3 { - margin-left: 1rem !important; - } - - .m-xl-4 { - margin: 1.5rem !important; - } - - .mt-xl-4, -.my-xl-4 { - margin-top: 1.5rem !important; - } - - .mr-xl-4, -.mx-xl-4 { - margin-right: 1.5rem !important; - } - - .mb-xl-4, -.my-xl-4 { - margin-bottom: 1.5rem !important; - } - - .ml-xl-4, -.mx-xl-4 { - margin-left: 1.5rem !important; - } - - .m-xl-5 { - margin: 3rem !important; - } - - .mt-xl-5, -.my-xl-5 { - margin-top: 3rem !important; - } - - .mr-xl-5, -.mx-xl-5 { - margin-right: 3rem !important; - } - - .mb-xl-5, -.my-xl-5 { - margin-bottom: 3rem !important; - } - - .ml-xl-5, -.mx-xl-5 { - margin-left: 3rem !important; - } - - .p-xl-0 { - padding: 0 !important; - } - - .pt-xl-0, -.py-xl-0 { - padding-top: 0 !important; - } - - .pr-xl-0, -.px-xl-0 { - padding-right: 0 !important; - } - - .pb-xl-0, -.py-xl-0 { - padding-bottom: 0 !important; - } - - .pl-xl-0, -.px-xl-0 { - padding-left: 0 !important; - } - - .p-xl-1 { - padding: 0.25rem !important; - } - - .pt-xl-1, -.py-xl-1 { - padding-top: 0.25rem !important; - } - - .pr-xl-1, -.px-xl-1 { - padding-right: 0.25rem !important; - } - - .pb-xl-1, -.py-xl-1 { - padding-bottom: 0.25rem !important; - } - - .pl-xl-1, -.px-xl-1 { - padding-left: 0.25rem !important; - } - - .p-xl-2 { - padding: 0.5rem !important; - } - - .pt-xl-2, -.py-xl-2 { - padding-top: 0.5rem !important; - } - - .pr-xl-2, -.px-xl-2 { - padding-right: 0.5rem !important; - } - - .pb-xl-2, -.py-xl-2 { - padding-bottom: 0.5rem !important; - } - - .pl-xl-2, -.px-xl-2 { - padding-left: 0.5rem !important; - } - - .p-xl-3 { - padding: 1rem !important; - } - - .pt-xl-3, -.py-xl-3 { - padding-top: 1rem !important; - } - - .pr-xl-3, -.px-xl-3 { - padding-right: 1rem !important; - } - - .pb-xl-3, -.py-xl-3 { - padding-bottom: 1rem !important; - } - - .pl-xl-3, -.px-xl-3 { - padding-left: 1rem !important; - } - - .p-xl-4 { - padding: 1.5rem !important; - } - - .pt-xl-4, -.py-xl-4 { - padding-top: 1.5rem !important; - } - - .pr-xl-4, -.px-xl-4 { - padding-right: 1.5rem !important; - } - - .pb-xl-4, -.py-xl-4 { - padding-bottom: 1.5rem !important; - } - - .pl-xl-4, -.px-xl-4 { - padding-left: 1.5rem !important; - } - - .p-xl-5 { - padding: 3rem !important; - } - - .pt-xl-5, -.py-xl-5 { - padding-top: 3rem !important; - } - - .pr-xl-5, -.px-xl-5 { - padding-right: 3rem !important; - } - - .pb-xl-5, -.py-xl-5 { - padding-bottom: 3rem !important; - } - - .pl-xl-5, -.px-xl-5 { - padding-left: 3rem !important; - } - - .m-xl-n1 { - margin: -0.25rem !important; - } - - .mt-xl-n1, -.my-xl-n1 { - margin-top: -0.25rem !important; - } - - .mr-xl-n1, -.mx-xl-n1 { - margin-right: -0.25rem !important; - } - - .mb-xl-n1, -.my-xl-n1 { - margin-bottom: -0.25rem !important; - } - - .ml-xl-n1, -.mx-xl-n1 { - margin-left: -0.25rem !important; - } - - .m-xl-n2 { - margin: -0.5rem !important; - } - - .mt-xl-n2, -.my-xl-n2 { - margin-top: -0.5rem !important; - } - - .mr-xl-n2, -.mx-xl-n2 { - margin-right: -0.5rem !important; - } - - .mb-xl-n2, -.my-xl-n2 { - margin-bottom: -0.5rem !important; - } - - .ml-xl-n2, -.mx-xl-n2 { - margin-left: -0.5rem !important; - } - - .m-xl-n3 { - margin: -1rem !important; - } - - .mt-xl-n3, -.my-xl-n3 { - margin-top: -1rem !important; - } - - .mr-xl-n3, -.mx-xl-n3 { - margin-right: -1rem !important; - } - - .mb-xl-n3, -.my-xl-n3 { - margin-bottom: -1rem !important; - } - - .ml-xl-n3, -.mx-xl-n3 { - margin-left: -1rem !important; - } - - .m-xl-n4 { - margin: -1.5rem !important; - } - - .mt-xl-n4, -.my-xl-n4 { - margin-top: -1.5rem !important; - } - - .mr-xl-n4, -.mx-xl-n4 { - margin-right: -1.5rem !important; - } - - .mb-xl-n4, -.my-xl-n4 { - margin-bottom: -1.5rem !important; - } - - .ml-xl-n4, -.mx-xl-n4 { - margin-left: -1.5rem !important; - } - - .m-xl-n5 { - margin: -3rem !important; - } - - .mt-xl-n5, -.my-xl-n5 { - margin-top: -3rem !important; - } - - .mr-xl-n5, -.mx-xl-n5 { - margin-right: -3rem !important; - } - - .mb-xl-n5, -.my-xl-n5 { - margin-bottom: -3rem !important; - } - - .ml-xl-n5, -.mx-xl-n5 { - margin-left: -3rem !important; - } - - .m-xl-auto { - margin: auto !important; - } - - .mt-xl-auto, -.my-xl-auto { - margin-top: auto !important; - } - - .mr-xl-auto, -.mx-xl-auto { - margin-right: auto !important; - } - - .mb-xl-auto, -.my-xl-auto { - margin-bottom: auto !important; - } - - .ml-xl-auto, -.mx-xl-auto { - margin-left: auto !important; - } -} -.stretched-link::after { - position: absolute; - top: 0; - right: 0; - bottom: 0; - left: 0; - z-index: 1; - pointer-events: auto; - content: ""; - background-color: rgba(0, 0, 0, 0); -} - -.text-monospace { - font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; -} - -.text-justify { - text-align: justify !important; -} - -.text-wrap { - white-space: normal !important; -} - -.text-nowrap { - white-space: nowrap !important; -} - -.text-truncate { - overflow: hidden; - text-overflow: ellipsis; - white-space: nowrap; -} - -.text-left { - text-align: left !important; -} - -.text-right { - text-align: right !important; -} - -.text-center { - text-align: center !important; -} - -@media (min-width: 576px) { - .text-sm-left { - text-align: left !important; - } - - .text-sm-right { - text-align: right !important; - } - - .text-sm-center { - text-align: center !important; - } -} -@media (min-width: 768px) { - .text-md-left { - text-align: left !important; - } - - .text-md-right { - text-align: right !important; - } - - .text-md-center { - text-align: center !important; - } -} -@media (min-width: 992px) { - .text-lg-left { - text-align: left !important; - } - - .text-lg-right { - text-align: right !important; - } - - .text-lg-center { - text-align: center !important; - } -} -@media (min-width: 1200px) { - .text-xl-left { - text-align: left !important; - } - - .text-xl-right { - text-align: right !important; - } - - .text-xl-center { - text-align: center !important; - } -} -.text-lowercase { - text-transform: lowercase !important; -} - -.text-uppercase { - text-transform: uppercase !important; -} - -.text-capitalize { - text-transform: capitalize !important; -} - -.font-weight-light { - font-weight: 300 !important; -} - -.font-weight-lighter { - font-weight: lighter !important; -} - -.font-weight-normal { - font-weight: 400 !important; -} - -.font-weight-bold { - font-weight: 700 !important; -} - -.font-weight-bolder { - font-weight: bolder !important; -} - -.font-italic { - font-style: italic !important; -} - -.text-white { - color: #fff !important; -} - -.text-primary { - color: #007bff !important; -} - -a.text-primary:hover, a.text-primary:focus { - color: #0056b3 !important; -} - -.text-secondary { - color: #6c757d !important; -} - -a.text-secondary:hover, a.text-secondary:focus { - color: #494f54 !important; -} - -.text-success { - color: #50a765 !important; -} - -a.text-success:hover, a.text-success:focus { - color: #19692c !important; -} - -.text-info { - color: #17a2b8 !important; -} - -a.text-info:hover, a.text-info:focus { - color: #0f6674 !important; -} - -.text-warning { - color: #ffc107 !important; -} - -a.text-warning:hover, a.text-warning:focus { - color: #ba8b00 !important; -} - -.text-danger { - color: #dc3545 !important; -} - -a.text-danger:hover, a.text-danger:focus { - color: #a71d2a !important; -} - -.text-light { - color: #f8f9fa !important; -} - -a.text-light:hover, a.text-light:focus { - color: #cbd3da !important; -} - -.text-dark { - color: #343a40 !important; -} - -a.text-dark:hover, a.text-dark:focus { - color: #121416 !important; -} - -.text-body { - color: #212529 !important; -} - -.text-muted { - color: #6c757d !important; -} - -.text-black-50 { - color: rgba(0, 0, 0, 0.5) !important; -} - -.text-white-50 { - color: rgba(255, 255, 255, 0.5) !important; -} - -.text-hide { - font: 0/0 a; - color: transparent; - text-shadow: none; - background-color: transparent; - border: 0; -} - -.text-decoration-none { - text-decoration: none !important; -} - -.text-break { - word-break: break-word !important; - word-wrap: break-word !important; -} - -.text-reset { - color: inherit !important; -} - -.visible { - visibility: visible !important; -} - -.invisible { - visibility: hidden !important; -} - -@media print { - *, -*::before, -*::after { - text-shadow: none !important; - box-shadow: none !important; - } - - a:not(.btn) { - text-decoration: underline; - } - - abbr[title]::after { - content: " (" attr(title) ")"; - } - - pre { - white-space: pre-wrap !important; - } - - pre, -blockquote { - border: 1px solid #adb5bd; - page-break-inside: avoid; - } - - thead { - display: table-header-group; - } - - tr, -img { - page-break-inside: avoid; - } - - p, -h2, -h3 { - orphans: 3; - widows: 3; - } - - h2, -h3 { - page-break-after: avoid; - } - - @page { - size: a3; - } - body { - min-width: 992px !important; - } - - .container { - min-width: 992px !important; - } - - .navbar { - display: none; - } - - .badge { - border: 1px solid #000; - } - - .table { - border-collapse: collapse !important; - } - .table td, -.table th { - background-color: #fff !important; - } - - .table-bordered th, -.table-bordered td { - border: 1px solid #dee2e6 !important; - } - - .table-dark { - color: inherit; - } - .table-dark th, -.table-dark td, -.table-dark thead th, -.table-dark tbody + tbody { - border-color: #dee2e6; - } - - .table .thead-dark th { - color: inherit; - border-color: #dee2e6; - } -} -html, -body { - height: 100%; -} - -.container, -.container-fluid, -.container-sm, -.container-md, -.container-lg, -.container-xl { - padding-left: 1.5rem; - padding-right: 1.5rem; -} - -#layoutAuthentication { - display: flex; - flex-direction: column; - min-height: 100vh; -} -#layoutAuthentication #layoutAuthentication_content { - min-width: 0; - flex-grow: 1; -} -#layoutAuthentication #layoutAuthentication_footer { - min-width: 0; -} - -#layoutSidenav { - display: flex; -} -#layoutSidenav #layoutSidenav_nav { - flex-basis: 225px; - flex-shrink: 0; - transition: transform 0.15s ease-in-out; - z-index: 1038; - transform: translateX(-225px); -} -#layoutSidenav #layoutSidenav_content { - position: relative; - display: flex; - flex-direction: column; - justify-content: space-between; - min-width: 0; - flex-grow: 1; - min-height: calc(100vh - 56px); - margin-left: -225px; -} - -.sb-sidenav-toggled #layoutSidenav #layoutSidenav_nav { - transform: translateX(0); -} -.sb-sidenav-toggled #layoutSidenav #layoutSidenav_content:before { - content: ""; - display: block; - position: absolute; - top: 0; - left: 0; - width: 100%; - height: 100%; - background: #000; - z-index: 1037; - opacity: 0.5; - transition: opacity 0.3s ease-in-out; -} - -@media (min-width: 992px) { - #layoutSidenav #layoutSidenav_nav { - transform: translateX(0); - } - #layoutSidenav #layoutSidenav_content { - margin-left: 0; - transition: margin 0.15s ease-in-out; - } - - .sb-sidenav-toggled #layoutSidenav #layoutSidenav_nav { - transform: translateX(-225px); - } - .sb-sidenav-toggled #layoutSidenav #layoutSidenav_content { - margin-left: -225px; - } - .sb-sidenav-toggled #layoutSidenav #layoutSidenav_content:before { - display: none; - } -} -.sb-nav-fixed .sb-topnav { - z-index: 1039; -} -.sb-nav-fixed #layoutSidenav #layoutSidenav_nav { - width: 225px; - height: 100vh; - z-index: 1038; -} -.sb-nav-fixed #layoutSidenav #layoutSidenav_nav .sb-sidenav { - padding-top: 56px; -} -.sb-nav-fixed #layoutSidenav #layoutSidenav_nav .sb-sidenav .sb-sidenav-menu { - overflow-y: auto; -} -.sb-nav-fixed #layoutSidenav #layoutSidenav_content { - padding-left: 225px; - top: 56px; -} - -#layoutError { - display: flex; - flex-direction: column; - min-height: 100vh; -} -#layoutError #layoutError_content { - min-width: 0; - flex-grow: 1; -} -#layoutError #layoutError_footer { - min-width: 0; -} - -.img-error { - max-width: 20rem; -} - -.nav .nav-link .sb-nav-link-icon, -.sb-sidenav-menu .nav-link .sb-nav-link-icon { - margin-right: 0.5rem; -} - -.sb-topnav { - padding-left: 0; - height: 56px; - z-index: 1039; -} -.sb-topnav .navbar-brand { - width: 225px; - padding-left: 1rem; - padding-right: 1rem; - margin: 0; -} -.sb-topnav.navbar-dark #sidebarToggle { - color: rgba(255, 255, 255, 0.5); -} -.sb-topnav.navbar-light #sidebarToggle { - color: #212529; -} - -.sb-sidenav { - display: flex; - flex-direction: column; - height: 100%; - flex-wrap: nowrap; -} -.sb-sidenav .sb-sidenav-menu { - flex-grow: 1; -} -.sb-sidenav .sb-sidenav-menu .nav { - flex-direction: column; - flex-wrap: nowrap; -} -.sb-sidenav .sb-sidenav-menu .nav .sb-sidenav-menu-heading { - padding: 1.75rem 1rem 0.75rem; - font-size: 0.75rem; - font-weight: bold; - text-transform: uppercase; -} -.sb-sidenav .sb-sidenav-menu .nav .nav-link { - display: flex; - align-items: center; - padding-top: 0.75rem; - padding-bottom: 0.75rem; - position: relative; -} -.sb-sidenav .sb-sidenav-menu .nav .nav-link .sb-nav-link-icon { - font-size: 0.9rem; -} -.sb-sidenav .sb-sidenav-menu .nav .nav-link .sb-sidenav-collapse-arrow { - display: inline-block; - margin-left: auto; - transition: transform 0.15s ease; -} -.sb-sidenav .sb-sidenav-menu .nav .nav-link.collapsed .sb-sidenav-collapse-arrow { - transform: rotate(-90deg); -} -.sb-sidenav .sb-sidenav-menu .nav .sb-sidenav-menu-nested { - margin-left: 1.5rem; - flex-direction: column; -} -.sb-sidenav .sb-sidenav-footer { - padding: 0.75rem; - flex-shrink: 0; -} - -.sb-sidenav-dark { - background-color: #212529; - color: rgba(255, 255, 255, 0.5); -} -.sb-sidenav-dark .sb-sidenav-menu .sb-sidenav-menu-heading { - color: rgba(255, 255, 255, 0.25); -} -.sb-sidenav-dark .sb-sidenav-menu .nav-link { - color: rgba(255, 255, 255, 0.5); -} -.sb-sidenav-dark .sb-sidenav-menu .nav-link .sb-nav-link-icon { - color: rgba(255, 255, 255, 0.25); -} -.sb-sidenav-dark .sb-sidenav-menu .nav-link .sb-sidenav-collapse-arrow { - color: rgba(255, 255, 255, 0.25); -} -.sb-sidenav-dark .sb-sidenav-menu .nav-link:hover { - color: #fff; -} -.sb-sidenav-dark .sb-sidenav-menu .nav-link.active { - color: #fff; -} -.sb-sidenav-dark .sb-sidenav-menu .nav-link.active .sb-nav-link-icon { - color: #fff; -} -.sb-sidenav-dark .sb-sidenav-footer { - background-color: #343a40; -} - -.sb-sidenav-light { - background-color: #f8f9fa; - color: #212529; -} -.sb-sidenav-light .sb-sidenav-menu .sb-sidenav-menu-heading { - color: #adb5bd; -} -.sb-sidenav-light .sb-sidenav-menu .nav-link { - color: #212529; -} -.sb-sidenav-light .sb-sidenav-menu .nav-link .sb-nav-link-icon { - color: #adb5bd; -} -.sb-sidenav-light .sb-sidenav-menu .nav-link .sb-sidenav-collapse-arrow { - color: #adb5bd; -} -.sb-sidenav-light .sb-sidenav-menu .nav-link:hover { - color: #007bff; -} -.sb-sidenav-light .sb-sidenav-menu .nav-link.active { - color: #007bff; -} -.sb-sidenav-light .sb-sidenav-menu .nav-link.active .sb-nav-link-icon { - color: #007bff; -} -.sb-sidenav-light .sb-sidenav-footer { - background-color: #e9ecef; -} - -.removal-link { - color: #dc3545 !important; -} - -.removal-link:hover { - color: #a12632 !important; -} diff --git a/linguard/web/static/js/libs/chartUtils.js b/linguard/web/static/js/libs/chartUtils.js deleted file mode 100644 index d22e32f..0000000 --- a/linguard/web/static/js/libs/chartUtils.js +++ /dev/null @@ -1,70 +0,0 @@ -Chart.defaults.font.family = '-apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif'; -Chart.defaults.color = '#292b2c'; - -function getRandomInt(min, max) { - return Math.floor(Math.random() * (max - min)) + min; -} - -class ChartUtils { - - /** - * - * @param nColors Desired amount of colors for the palette. - * @param schemeType mono, triade, tetrade, analogic - * @param variation default, soft, pastel, light, hard, pale - * @returns {[]} - */ - getRandomColorPalette(nColors, schemeType = "triade", variation = "pastel") { - const colors = []; - let previousSeed = -1, seed = -1; - const MAX_TRIES = 10; - while (colors.length < nColors) { - let tries = -1; - while (tries < MAX_TRIES && previousSeed === seed) { - seed = getRandomInt(0, 361); - } - let scheme = new ColorScheme; - scheme.from_hue(seed) - .scheme(schemeType) - .variation(variation); - for (let color of scheme.colors().slice(2)) { - colors.push("#"+color); - } - } - return colors; - } - - filesizeCallback(value, max) { - if (max > 1024*1024*1024*1024*1024) { - return (value / 1024 / 1024 / 1024 / 1024 / 1024).toFixed(1) + " PB"; - } - if (max > 1024*1024*1024*1024) { - return (value/1024/1024/1024/1024).toFixed(1) + " TB"; - } - if (max > 1024*1024*1024) { - return (value/1024/1024/1024).toFixed(1) + " GB"; - } - if (max > 1024*1024) { - return (value/1024/1024).toFixed(1) + " MB"; - } - if (max > 1024) { - return (value / 1024).toFixed(1) + " KB"; - } - return (value) + " B"; - } - - ticksFilesizeCallback(value, max) { - return this.filesizeCallback(value, max); - } - - tooltipFilesizeCallback(context) { - let max = context.chart.scales.y.max; - let value = context.dataset.data[context.dataIndex]; - return this.filesizeCallback(value, max); - } -} -let chartUtils = new ChartUtils(); - -if (typeof module === "object" && module.exports) { - module.exports = chartUtils -} diff --git a/linguard/web/static/js/libs/color-scheme.min.js b/linguard/web/static/js/libs/color-scheme.min.js deleted file mode 100644 index 00229b0..0000000 --- a/linguard/web/static/js/libs/color-scheme.min.js +++ /dev/null @@ -1 +0,0 @@ -(function(){var t,e=[].slice;t=function(){function t(){var e,n;for(e=[],n=1;n<=4;n++)e.push(new t.mutablecolor(60));this.col=e,this._scheme="mono",this._distance=.5,this._web_safe=!1,this._add_complement=!1}var n,r,o,a,i,u;for(i=Array.isArray||function(t){return"[object Array]"==={}.toString.call(t)},t.SCHEMES={},a="mono monochromatic contrast triade tetrade analogic".split(/\s+/),r=0,o=a.length;r=u;n=0<=u?++o:--o)for(r=a=0;a<=3;r=++a)i[4*n+r]=this.col[n].get_hex(this._web_safe,r);return i},t.prototype.colorset=function(){var t,e;for(t=n(this.colors()),e=[];t.length>0;)e.push(t.splice(0,4));return e},t.prototype.from_hue=function(t){if(null==t)throw"from_hue needs an argument";return this.col[0].set_hue(t),this},t.prototype.rgb2ryb=function(){var t,n,r,o,a,u,s,h,l;return s=1<=arguments.length?e.call(arguments,0):[],null!=s[0]&&i(s[0])&&(s=s[0]),u=s[0],n=s[1],t=s[2],h=Math.min(u,n,t),u-=h,n-=h,t-=h,o=Math.max(u,n,t),l=Math.min(u,n),u-=l,n-=l,t>0&&n>0&&(t/=2,n/=2),l+=n,t+=n,a=Math.max(u,l,t),a>0&&(r=o/a,u*=r,l*=r,t*=r),u+=h,l+=h,t+=h,[Math.floor(u),Math.floor(l),Math.floor(t)]},t.prototype.rgb2hsv=function(){var t,n,r,o,a,u,s,h,l,c;return h=1<=arguments.length?e.call(arguments,0):[],null!=h[0]&&i(h[0])&&(h=h[0]),s=h[0],r=h[1],t=h[2],s/=255,r/=255,t/=255,u=Math.min.apply(Math,[s,r,t]),a=Math.max.apply(Math,[s,r,t]),n=a-u,c=a,n>0?(l=n/a,o=s===a?(r-t)/n:r===a?2+(t-s)/n:4+(s-r)/n,o*=60,o%=360,[o,l,c]):[0,0,c]},t.prototype.rgbToHsv=function(){var t,n,r,o,a,u,s,h,l,c;if(h=1<=arguments.length?e.call(arguments,0):[],null!=h[0]&&i(h[0])&&(h=h[0]),s=h[0],r=h[1],t=h[2],s/=255,r/=255,t/=255,a=Math.max(s,r,t),u=Math.min(s,r,t),o=void 0,l=void 0,c=a,n=a-u,l=0===a?0:n/a,a===u)o=0;else{switch(a){case s:o=(r-t)/n+(r= 0";if(t>1)throw"distance("+t+") - argument must be <= 1";return this._distance=t,this},t.prototype.scheme=function(e){if(null==e)return this._scheme;if(null==t.SCHEMES[e])throw"'"+e+"' isn't a valid scheme name";return this._scheme=e,this},t.prototype.variation=function(e){if(null==e)throw"variation needs an argument";if(null==t.PRESETS[e])throw"'$v' isn't a valid variation name";return this._set_variant_preset(t.PRESETS[e]),this},t.prototype._set_variant_preset=function(t){var e,n,r;for(r=[],e=n=0;n<=3;e=++n)r.push(this.col[e].set_variant_preset(t));return r},n=function(t){var e,r,o;if(null==t||"object"!=typeof t)return t;if(t instanceof Date)return new Date(t.getTime());if(t instanceof RegExp)return e="",null!=t.global&&(e+="g"),null!=t.ignoreCase&&(e+="i"),null!=t.multiline&&(e+="m"),null!=t.sticky&&(e+="y"),new RegExp(t.source,e);o=new t.constructor;for(r in t)o[r]=n(t[r]);return o},t.mutablecolor=function(){function e(e){if(null==e)throw"No hue specified";this.saturation=[],this.value=[],this.base_red=0,this.base_green=0,this.base_blue=0,this.base_saturation=0,this.base_value=0,this.set_hue(e),this.set_variant_preset(t.PRESETS.default)}return e.prototype.hue=0,e.prototype.saturation=[],e.prototype.value=[],e.prototype.base_red=0,e.prototype.base_green=0,e.prototype.base_saturation=0,e.prototype.base_value=0,e.prototype.get_hue=function(){return this.hue},e.prototype.set_hue=function(e){var n,r,o,a,i,u,s,h,l,c;n=function(t,e,n){return t+Math.round((e-t)*n)},this.hue=Math.round(e%360),i=this.hue%15+(this.hue-Math.floor(this.hue)),c=i/15,u=this.hue-Math.floor(i),s=(u+15)%360,360===u&&(u=0),360===s&&(s=0),o=t.COLOR_WHEEL[u],a=t.COLOR_WHEEL[s],h={red:0,green:1,blue:2,value:3};for(r in h)l=h[r],this["base_"+r]=n(o[l],a[l],c);return this.base_saturation=n(100,100,c)/100,this.base_value/=100},e.prototype.rotate=function(t){var e;return e=(this.hue+t)%360,this.set_hue(e)},e.prototype.get_saturation=function(t){var e,n;return n=this.saturation[t],e=n<0?-n*this.base_saturation:n,e>1&&(e=1),e<0&&(e=0),e},e.prototype.get_value=function(t){var e,n;return n=this.value[t],e=n<0?-n*this.base_value:n,e>1&&(e=1),e<0&&(e=0),e},e.prototype.set_variant=function(t,e,n){return this.saturation[t]=e,this.value[t]=n},e.prototype.set_variant_preset=function(t){var e,n,r;for(r=[],e=n=0;n<=3;e=++n)r.push(this.set_variant(e,t[2*e],t[2*e+1]));return r},e.prototype.get_hex=function(t,e){var n,r,o,a,i,u,s,h,l,c,f,p,_,m,d,v;for(l=Math.max.apply(Math,function(){var t,e,n,o;for(n=["red","green","blue"],o=[],e=0,t=n.length;e0?v/l:0,p=[],f=["red","green","blue"],h=0,u=f.length;hOops, something went wrong: " + resp["responseText"], - alertType); - $("#removeModal").modal("toggle"); - }, - }); - }); -} - -const downloadBtn = $(".downloadBtn"); -downloadBtn.click(function (e) { - let item = e.target.id.split("-")[1]; - if (!item) { - item = e.target.farthestViewportElement.id.split("-")[1]; - } - const url = "/wireguard/peers/"+item+"/download"; - location.replace(url); -}); \ No newline at end of file diff --git a/linguard/web/static/js/modules/settings.mjs b/linguard/web/static/js/modules/settings.mjs deleted file mode 100644 index e4dbcf1..0000000 --- a/linguard/web/static/js/modules/settings.mjs +++ /dev/null @@ -1,17 +0,0 @@ -document.getElementById('web_secret_key').setAttribute('type', "password"); - -document.getElementById("toggleSecretKey").addEventListener("click", function () { - const icon = document.getElementById('toggleSecretKeyIcon') - const field = document.getElementById('web_secret_key'); - const type = field.getAttribute('type') === 'password' ? 'text' : 'password'; - field.setAttribute('type', type); - if (type === "password") { - icon.classList.add('fa-eye-slash'); - icon.classList.remove('fa-eye'); - } - else { - icon.classList.add('fa-eye'); - icon.classList.remove('fa-eye-slash'); - } -}, false); - diff --git a/linguard/web/static/js/modules/utils.mjs b/linguard/web/static/js/modules/utils.mjs deleted file mode 100644 index f34041e..0000000 --- a/linguard/web/static/js/modules/utils.mjs +++ /dev/null @@ -1,137 +0,0 @@ -(function($) { - $("[data-toggle=popover]").popover(); - // Add active state to sidebar nav links - const path = window.location.href; // because the 'href' property of the DOM element is the absolute path - $("#layoutSidenav_nav .sb-sidenav a.nav-link").each(function() { - if (this.href === path) { - $(this).addClass("active"); - } - }); - // Toggle the side navigation - $("#sidebarToggle").on("click", function(e) { - e.preventDefault(); - $("body").toggleClass("sb-sidenav-toggled"); - }); -})(jQuery); - -export const AlertType = Object.freeze({ - "DANGER": "danger", - "WARN": "warning", - "SUCCESS": "success", - "INFO": "info", -}); - -/** - * Perform a POST request to a given url and display an alert if the server returns a non-successful HTTP code. - * This request may include JSON data. - * @param url URL where the request will be sent. - * @param alertContainer Id of the HTML element where to place an alert if something goes wrong. - * @param alertType Type of the boostrap alert to be shown if anything goes wrong (danger, warning, info...). - * @param loadFeedback Id of the HTML element to be used as visual feedback (a loading circle or bar, for example). - * @param jsonData [Optional] JSON data to post. - */ -export function postJSON(url, alertContainer, alertType = AlertType.DANGER, loadFeedback, jsonData = null) { - const loadItem = $("#"+loadFeedback); - $.ajax({ - type: "post", - url: url, - data: jsonData, - dataType: 'json', - contentType: 'application/json', - beforeSend : function () { - loadItem.show(); - }, - success: function () { - location.reload(); - }, - error: function(resp) { - prependAlert(alertContainer, "Oops, something went wrong: " + resp["responseText"], - alertType); - }, - complete: function () { - loadItem.hide(); - }, - }); -} - -let previousAlert; - -/** - * Prepend a bootstrap alert to a given HTML object. - * @param prependTo Id of the HTML object to prepend the alert. - * @param text Text of the alert. - * @param alertType Type of the alert: danger, warning, info... - * @param delay Amount of time (millis) before automatically closing the alert. Use 0 to avoid auto close. - * @param unique - * @param onEnd - */ -export function prependAlert(prependTo, text, alertType = AlertType.DANGER, delay=7000, unique = false, onEnd) { - const salt = getRndInteger(); - const alertId = "alert-"+salt; - const closeId = "close-"+salt; - - let iconClass = "fas fa-exclamation-circle"; - switch (alertType) { - case AlertType.WARN: - iconClass = "fas fa-exclamation-triangle" - break; - case AlertType.SUCCESS: - iconClass = "fas fa-check-circle" - break; - case AlertType.INFO: - iconClass = "fas fa-info-circle" - break; - default: - break; - } - let icon = '' - - const alert = "
" + icon + text +"\n" + - " \n" + - "
" - const container = $("#"+prependTo); - if (unique && previousAlert !== undefined && previousAlert.type !== AlertType.DANGER) { - fadeHTMLElement(previousAlert.id, 0, 200, 500, onEnd); - } - - previousAlert = {"id": alertId, "type": alertType}; - $(alert).prependTo(container).hide().slideDown(); - $("#"+closeId).click(function (e) { - fadeHTMLElement(alertId, 0, 200, 500, onEnd); - }); - if (delay > 0) { - fadeHTMLElement(alertId, delay, 500, 500, onEnd); - } -} - -/** - * Generate a random integer between min and max (both included). - * @param min - * @param max - * @returns {number} - */ -function getRndInteger(min=0, max=9999999) { - return Math.floor(Math.random() * (max - min + 1) ) + min; -} - -/** - * Fade out an html element and remove it. - * @param id Id of the element. - * @param delay Time (millis) before fade out. - * @param fadeDuration Duration (millis) of the fade effect. - * @param slideDuration Duration (millis) of the slide effect. - * @param onEnd Function to be called once the alert is gone and removed. - */ -function fadeHTMLElement(id, delay, fadeDuration = 500, slideDuration = 500, onEnd = null) { - setTimeout(function() { - $("#"+id).fadeTo(fadeDuration, 0).slideUp(slideDuration, function(){ - $(this).remove(); - if (typeof(onEnd) === "function") { - onEnd(); - } - }); - }, delay); -} diff --git a/linguard/web/static/js/modules/wireguard-iface.mjs b/linguard/web/static/js/modules/wireguard-iface.mjs deleted file mode 100644 index f85110a..0000000 --- a/linguard/web/static/js/modules/wireguard-iface.mjs +++ /dev/null @@ -1,92 +0,0 @@ -import {postJSON, prependAlert} from "./utils.mjs"; - -const ifaceName = $("#name"); -const gwIface = $("#gateway"); -const onUp = $("#on_up") -const onDown = $("#on_down") -const alertContainer = "alerts"; - -let oldName = ifaceName.val(); -let oldGw = gwIface.val(); - -function replaceOnUpDownComands(oldVal, newVal) { - let value = onUp.val(); - value = value.replaceAll(oldVal, newVal); - onUp.val(value); - - value = onDown.val(); - value = value.replaceAll(oldVal, newVal); - onDown.val(value); -} - -ifaceName.focusout(function () { - const newName = ifaceName.val(); - if (!newName) return; - replaceOnUpDownComands(oldName, newName); - oldName = newName; -}); - -gwIface.change(function () { - const newGw = gwIface.val(); - if (!newGw) return; - replaceOnUpDownComands(oldGw, newGw); - oldGw = newGw; -}); - -document.getElementById('private_key').setAttribute('type', "password"); - -document.getElementById("togglePrivateKey").addEventListener("click", function () { - const icon = document.getElementById('togglePrivateKeyIcon') - const field = document.getElementById('private_key'); - const type = field.getAttribute('type') === 'password' ? 'text' : 'password'; - field.setAttribute('type', type); - if (type === "password") { - icon.classList.add('fa-eye-slash'); - icon.classList.remove('fa-eye'); - } - else { - icon.classList.add('fa-eye'); - icon.classList.remove('fa-eye-slash'); - } -}, false); - -const removeIfaceBtn = $(".removeIfaceBtn"); -removeItem(removeIfaceBtn, "interface", function () { - location.replace(document.referrer); -}); - -const removePeerBtn = $(".removePeerBtn"); -removeItem(removePeerBtn, "peer", function () { - location.reload(); -}); - -function removeItem(removeBtn, itemType, onSuccess) { - removeBtn.click(function (e) { - const item = e.target.id.split("-")[1]; - const url = "/wireguard/"+itemType+"s/"+item; - const alertType = "danger"; - $.ajax({ - type: "delete", - url: url, - success: onSuccess, - error: function(resp) { - prependAlert(alertContainer, "Oops, something went wrong: " + resp["responseText"], - alertType); - $("#removeModal").modal("toggle"); - }, - }); - }); -} - -const startOrStopIfaceBtn = $(".startOrStopIfaceBtn"); -startOrStopIfaceBtn.click(function (e) { - const button = e.target; - const iface = button.value; - const action = button.innerText; - - const url = `/wireguard/interfaces/${iface}/${action}`; - const alertType = "danger"; - const loadFeedback = "wgIface-" + iface + "-loading" - - postJSON(url, alertContainer, alertType, loadFeedback); -}); \ No newline at end of file diff --git a/linguard/web/static/js/modules/wireguard-peer.mjs b/linguard/web/static/js/modules/wireguard-peer.mjs deleted file mode 100644 index 495d214..0000000 --- a/linguard/web/static/js/modules/wireguard-peer.mjs +++ /dev/null @@ -1,36 +0,0 @@ -import {prependAlert} from "./utils.mjs"; - -const alertContainer = "alerts"; - -document.getElementById('private_key').setAttribute('type', "password"); - -document.getElementById("togglePrivateKey").addEventListener("click", function () { - const icon = document.getElementById('togglePrivateKeyIcon') - const field = document.getElementById('private_key'); - const type = field.getAttribute('type') === 'password' ? 'text' : 'password'; - field.setAttribute('type', type); - if (type === "password") { - icon.classList.add('fa-eye-slash'); - icon.classList.remove('fa-eye'); - } - else { - icon.classList.add('fa-eye'); - icon.classList.remove('fa-eye-slash'); - } -}, false); - -document.getElementById("removePeer").addEventListener("click", function () { - const alertType = "danger"; - $.ajax({ - type: "delete", - url: location.href, - success: function (resp) { - location.replace("/wireguard"); - }, - error: function(resp) { - prependAlert(alertContainer, "Oops, something went wrong: " + resp["responseText"], - alertType); - $("#removeModal").modal("toggle"); - }, - }); -}); \ No newline at end of file diff --git a/linguard/web/static/js/modules/wireguard.mjs b/linguard/web/static/js/modules/wireguard.mjs deleted file mode 100644 index f135c7c..0000000 --- a/linguard/web/static/js/modules/wireguard.mjs +++ /dev/null @@ -1,87 +0,0 @@ -import {postJSON, prependAlert} from "./utils.mjs"; - -const startOrStopIfaceBtn = $(".startOrStopIfaceBtn"); -startOrStopIfaceBtn.click(function (e) { - const button = e.target; - const iface = button.value; - const action = button.innerText; - - const url = `/wireguard/interfaces/${iface}/${action}`; - const alertContainer = "wgIfacesHeader"; - const alertType = "danger"; - const loadFeedback = "wgIface-" + iface + "-loading" - - postJSON(url, alertContainer, alertType, loadFeedback); -}); - -const restartIfaceBtn = $(".restartIfaceBtn"); -restartIfaceBtn.click(function (e) { - const iface = e.target.value; - const action = "restart"; - - const url = `/wireguard/interfaces/${iface}/${action}`; - const alertContainer = "wgIfacesHeader"; - const alertType = "danger"; - const loadFeedback = "wgIface-" + iface + "-loading" - - postJSON(url, alertContainer, alertType, loadFeedback); -}); - -const startAllBtn = $("#startAllBtn"); -startAllBtn.click(function (e) { - const action = "start"; - const url = `/wireguard/${action}`; - const alertContainer = "wgIfacesHeader"; - const alertType = "danger"; - const loadFeedback = "wgIfacesLoading"; - - postJSON(url, alertContainer, alertType, loadFeedback); -}); - -const stopAllBtn = $("#stopAllBtn"); -stopAllBtn.click(function (e) { - const action = "stop"; - const url = `/wireguard/${action}`; - const alertContainer = "wgIfacesHeader"; - const alertType = "danger"; - const loadFeedback = "wgIfacesLoading"; - - postJSON(url, alertContainer, alertType, loadFeedback); -}); - -const removeIfaceBtn = $(".removeIfaceBtn"); -removeItem(removeIfaceBtn, "interface"); - -const removePeerBtn = $(".removePeerBtn"); -removeItem(removePeerBtn, "peer"); - -function removeItem(removeBtn, itemType) { - removeBtn.click(function (e) { - const item = e.target.id.split("-")[1]; - const url = "/wireguard/"+itemType+"s/"+item+""; - const alertContainer = "wgIfacesHeader"; - const alertType = "danger"; - $.ajax({ - type: "delete", - url: url, - success: function () { - location.reload(); - }, - error: function(resp) { - prependAlert(alertContainer, "Oops, something went wrong: " + resp["responseText"], - alertType); - $("#removeModal").modal("toggle"); - }, - }); - }); -} - -const downloadBtn = $(".downloadBtn"); -downloadBtn.click(function (e) { - let item = e.target.id.split("-")[1]; - if (!item) { - item = e.target.farthestViewportElement.id.split("-")[1]; - } - const url = "/wireguard/peers/"+item+"/download"; - location.replace(url); -}); \ No newline at end of file diff --git a/linguard/web/templates/base.html b/linguard/web/templates/base.html deleted file mode 100644 index e34dc23..0000000 --- a/linguard/web/templates/base.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - - - - - {% block additional_metas %} - {% endblock %} - - - {{ app_name }} | {{ title }} - - - - - {% block additional_styles %} - {% endblock %} - - - {% block additional_prioritary_scripts %} - {% endblock %} - - - {% block body_content %} - {% endblock %} - - {% block footer %} - {% endblock %} - - {% block scripts %} - {% endblock %} - - diff --git a/linguard/web/templates/error/error-base.html b/linguard/web/templates/error/error-base.html deleted file mode 100644 index 32d916b..0000000 --- a/linguard/web/templates/error/error-base.html +++ /dev/null @@ -1,18 +0,0 @@ -{% extends 'main.html' %} - -{% set footer_id = "layoutError_footer" %} - -{% block body_content %} -
-
- {% block content %} - {% endblock %} -
- {% include "footer.html" %} -
-{% endblock %} - -{% block scripts %} - - -{% endblock %} \ No newline at end of file diff --git a/linguard/web/templates/error/error-img.html b/linguard/web/templates/error/error-img.html deleted file mode 100644 index cfc74fd..0000000 --- a/linguard/web/templates/error/error-img.html +++ /dev/null @@ -1,5 +0,0 @@ -{% extends "error/error-main.html" %} - -{% block additional_info %} - -{% endblock %} \ No newline at end of file diff --git a/linguard/web/templates/error/error-main.html b/linguard/web/templates/error/error-main.html deleted file mode 100644 index 7f9b85b..0000000 --- a/linguard/web/templates/error/error-main.html +++ /dev/null @@ -1,23 +0,0 @@ -{% extends 'error/error-base.html' %} - -{% block content %} -
-
-
-
-
-

{{ error_code }}

-

{{ error_msg }}

- {% block additional_info %} - {% endblock %} -
- - - Return to Dashboard - -
-
-
-
-
-{% endblock %} \ No newline at end of file diff --git a/linguard/web/templates/footer.html b/linguard/web/templates/footer.html deleted file mode 100644 index b02b19f..0000000 --- a/linguard/web/templates/footer.html +++ /dev/null @@ -1,26 +0,0 @@ - \ No newline at end of file diff --git a/linguard/web/templates/main.html b/linguard/web/templates/main.html deleted file mode 100644 index 3020bc6..0000000 --- a/linguard/web/templates/main.html +++ /dev/null @@ -1,20 +0,0 @@ -{% extends 'base.html' %} - -{% block additional_metas %} -{% endblock %} - -{% block title %} - {{ app_name }} | {{ title }} -{% endblock %} - -{% block additional_styles %} -{% endblock %} - -{% block additional_prioritary_scripts %} -{% endblock %} - -{% block body_content %} -{% endblock %} - -{% block scripts %} -{% endblock %} \ No newline at end of file diff --git a/linguard/web/templates/web/about.html b/linguard/web/templates/web/about.html deleted file mode 100644 index 9a7bfa4..0000000 --- a/linguard/web/templates/web/about.html +++ /dev/null @@ -1,61 +0,0 @@ -{% extends "web/web-main.html" %} - -{% block content %} -
-
-
- - Back - -

{{ title }}

-
-
- {% if success %} - - {% if warning %} - - {% endif %} - {% elif error %} - - {% endif %} -
- - -
-
-
- - Version -
-
-
-
- - -
-
- - -
-
-
-
-
-
-
-{% endblock %} \ No newline at end of file diff --git a/linguard/web/templates/web/index.html b/linguard/web/templates/web/index.html deleted file mode 100644 index b6b98ed..0000000 --- a/linguard/web/templates/web/index.html +++ /dev/null @@ -1,326 +0,0 @@ -{% extends 'web/web-main.html' %} - -{% block additional_prioritary_scripts %} - - - -{% endblock %} - -{% block additional_styles %} - -{% endblock %} - -{% block content %} -
-
-

{{ title }}

-
- -
-
-
-
- - Interfaces' traffic -
-
- - -
- -
-
-
-
-
- - Peers' traffic -
-
- - -
- -
-
-
- -
-
- - Interfaces - -
-
-
-
- - - - - - - - - - - - - - {% for iface in interfaces.values() %} - - - {% if iface.description %} - - {% else %} - - {% endif %} - - - - - - - {% endfor %} - -
NameDescriptionIPv4Listen portPeersStatusActions
- {{ iface.name }} - {{ iface.description }}{{ EMPTY_FIELD | safe }}{{ iface.ipv4_address }}{{ iface.listen_port}}{{ iface.peers | length}}{{ iface.status}} - - - - - - - - - - -
-
-
-
- -
- -
-
- - Peers - -
-
-
-
- - - - - - - - - - - - - - {% for iface in interfaces.values() %} - {% for peer in iface.peers.values() %} - - - - {% if peer.description %} - - {% else %} - - {% endif %} - {% if peer.ipv4_address %} - - {% else %} - - {% endif %} - - {% if peer.dns2 %} - - {% else %} - - {% endif %} - - - {% endfor %} - {% endfor %} - -
NameInterfaceDescriptionIPv4Primary DNSSecondary DNSActions
- {{ peer.name }} - {{ iface.name }}{{ peer.description }}{{ EMPTY_FIELD | safe }}{{ peer.ipv4_address }}{{ EMPTY_FIELD | safe }}{{ peer.dns1}}{{ peer.dns2 }}{{ EMPTY_FIELD | safe }} - - - - - - - - - - -
-
-
-
- -
-
-
-{% endblock %} - -{% block additional_scripts %} - - - - - -{% endblock %} \ No newline at end of file diff --git a/linguard/web/templates/web/login.html b/linguard/web/templates/web/login.html deleted file mode 100644 index da081dd..0000000 --- a/linguard/web/templates/web/login.html +++ /dev/null @@ -1,64 +0,0 @@ -{% extends "main.html" %} - -{% set footer_id = "layoutAuthentication_footer" %} - -{% block body_content %} -
-
-
-
-
-
-
-
-

Login

-
-
- {{ form.hidden_tag() }} -
- {{ form.username.label(class="small") }} -
- {% for error in form.username.errors %} - {{ error }} - {% endfor %} - {{ form.username(size=64, class="form-control py-4 mt-1") }} -
-
- {{ form.password.label(class="small") }} -
- {% for error in form.password.errors %} - {{ error }} - {% endfor %} - {{ form.password(class="form-control py-4 mt-1") }} -
-
- {{ form.remember_me(class="custom-control-input") }} - {{ form.remember_me.label(class="custom-control-label") }} -
- -
- - {% if banned_for %} - Too many failed attempts to log in. You may try again in {{ banned_for }} seconds. - {% else %} - {{ form.submit(class="btn btn-primary") }} - {% endif %} -
-
-
-
-
-
-
-
-
- {% include "footer.html" %} -
-
-{% endblock %} - -{% block scripts %} - - - -{% endblock %} \ No newline at end of file diff --git a/linguard/web/templates/web/network.html b/linguard/web/templates/web/network.html deleted file mode 100644 index e4b86d7..0000000 --- a/linguard/web/templates/web/network.html +++ /dev/null @@ -1,126 +0,0 @@ -{% extends "web/web-main.html" %} - -{% block content %} -
-
-

{{ title }}

-
-
- - Interfaces -
-
-
- {% for iface in interfaces.values() %} - {% set iface_status = iface.status %} -
-
-
-
{{ iface.name }}
-
- - - - - {% if iface_status == "up" %} - {% set status_color = "bg-success" %} - {% elif iface_status == "down" %} - {% set status_color = "bg-danger" %} - {% else %} - {% set status_color = "bg-warning" %} - {% endif %} - - - - - - - - - - - - - - - - - - - -
Status {{ iface_status }}
IPv4{{ iface.ipv4 | safe }}
IPv6{{ iface.ipv6 | safe }}
MAC{{ iface.mac | safe}}
Flags{{ iface.flags | safe }}
-
-
- {% if iface.editable == True %} - - {% endif %} -
-
- {% endfor %} -
-
- -
- -
-
- - Routing table -
-
-
- - - - - - - - - - - - - - {% for route in routes %} - - - {% if route.gateway %} - - {% else %} - - {% endif %} - - {% if route.protocol %} - - {% else %} - - {% endif %} - {% if route.scope %} - - {% else %} - - {% endif %} - {% if route.metric %} - - {% else %} - - {% endif %} - - - {% endfor %} - -
DestinationGatewayDeviceProtocolScopeMetricFlags
{{ route.dst }}{{ route.gateway }}default{{ route.dev }}{{ route.protocol }}{{ EMPTY_FIELD | safe }}{{ route.scope }}{{ EMPTY_FIELD | safe }}{{ route.metric }}{{ EMPTY_FIELD | safe }}{{ route.flags | safe }}
-
-
- -
-
-
-{% endblock %} \ No newline at end of file diff --git a/linguard/web/templates/web/profile.html b/linguard/web/templates/web/profile.html deleted file mode 100644 index 1439a48..0000000 --- a/linguard/web/templates/web/profile.html +++ /dev/null @@ -1,125 +0,0 @@ -{% extends "web/web-main.html" %} - -{% block content %} -
-
-
- - Back - -

{{ title }}

- -
-
- {% if success %} - - {% if warning %} - - {% endif %} - {% elif error %} - - {% endif %} -
- - -
- {{ profile_form.hidden_tag() }} - -
-
- - Basic info -
-
-
- {% for error in profile_form.username.errors %} - - {% endfor %} -
-
-
- {{ profile_form.username.label() }} - {{ profile_form.username(class="form-control") }} -
-
-
- {{ profile_form.submit(class="btn btn-warning") }} -
-
-
- -
- - -
- {{ password_reset_form.hidden_tag() }} - -
-
- - Reset password -
-
-
- {% for error in password_reset_form.old_password.errors %} - - {% endfor %} - {% for error in password_reset_form.new_password.errors %} - - {% endfor %} - {% for error in password_reset_form.confirm.errors %} - - {% endfor %} -
-
-
- {{ password_reset_form.old_password.label() }} - {{ password_reset_form.old_password(class="form-control") }} -
-
-
-
- {{ password_reset_form.new_password.label() }} - {{ password_reset_form.new_password(class="form-control") }} -
-
-
-
- {{ password_reset_form.confirm.label() }} - {{ password_reset_form.confirm(class="form-control") }} -
-
-
- {{ password_reset_form.submit(class="btn btn-warning") }} -
-
-
-
-
-
-{% endblock %} \ No newline at end of file diff --git a/linguard/web/templates/web/settings.html b/linguard/web/templates/web/settings.html deleted file mode 100644 index f25c1ed..0000000 --- a/linguard/web/templates/web/settings.html +++ /dev/null @@ -1,307 +0,0 @@ -{% extends "web/web-main.html" %} - -{% block content %} -
-
-
- - Back - -

{{ title }}

-
-
- {% if success %} - - {% if warning %} - - {% endif %} - {% elif error %} - - {% endif %} -
-
- {{ form.hidden_tag() }} - - - -
-
- - Web -
-
-
- {% for error in form.web_login_attempts.errors %} - - {% endfor %} - {% for error in form.web_login_ban_time.errors %} - - {% endfor %} - {% for error in form.web_secret_key.errors %} - - {% endfor %} - {% for error in form.web_credentials_file.errors %} - - {% endfor %} -
-
-
- {{ form.web_login_attempts.label() }} - - - - {{ form.web_login_attempts(class="form-control") }} -
-
- {{ form.web_login_ban_time.label() }} - - - - {{ form.web_login_ban_time(class="form-control") }} -
-
- {{ form.web_secret_key.label() }} - - - - - - - {{ form.web_secret_key(class="form-control") }} -
-
- {{ form.web_credentials_file.label() }} - - - - {{ form.web_credentials_file(class="form-control") }} -
-
-
-
- - - -
-
- - Wireguard -
-
-
- {% for error in form.app_endpoint.errors %} - - {% endfor %} - {% for error in form.app_interfaces_folder.errors %} - - {% endfor %} - {% for error in form.app_config_file.errors %} - - {% endfor %} - {% for error in form.app_wg_bin.errors %} - - {% endfor %} - {% for error in form.app_wg_quick_bin.errors %} - - {% endfor %} - {% for error in form.app_iptables_bin.errors %} - - {% endfor %} -
-
-
- {{ form.app_endpoint.label() }} -
- {{ form.app_endpoint(class="form-control") }} -
-
- {{ form.app_interfaces_folder.label() }} -
- {{ form.app_interfaces_folder(class="form-control") }} -
-
- {{ form.app_config_file.label() }} -
- {{ form.app_config_file(class="form-control") }} -
-
-
-
- {{ form.app_wg_bin.label() }} -
- {{ form.app_wg_bin(class="form-control") }} -
-
- {{ form.app_wg_quick_bin.label() }} -
- {{ form.app_wg_quick_bin(class="form-control") }} -
-
- {{ form.app_iptables_bin.label() }} -
- {{ form.app_iptables_bin(class="form-control") }} -
-
-
-
- - -
-
- - Logging -
-
-
- {% for error in form.log_overwrite.errors %} - - {% endfor %} - {% for error in form.log_file.errors %} - - {% endfor %} - {% for error in form.log_level.errors %} - - {% endfor %} -
-
-
- {{ form.log_file.label() }} - {{ form.log_file(class="form-control") }} -
-
- {{ form.log_level.label() }} - {{ form.log_level(class="form-control") }} -
-
-
-
-
- {{ form.log_overwrite(class="custom-control-input") }} - {{ form.log_overwrite.label(class="custom-control-label") }} - - - -
-
-
-
-
- - -
-
- - Traffic data collection -
-
-
- {% for error in form.traffic_enabled.errors %} - - {% endfor %} - {% for error in form.traffic_driver.errors %} - - {% endfor %} - {% for error in form.traffic_driver_options.errors %} - - {% endfor %} -
-
-
-
- {{ form.traffic_enabled(class="custom-control-input") }} - {{ form.traffic_enabled.label(class="custom-control-label") }} - - - -
-
-
-
-
- {{ form.traffic_driver.label() }} - {{ form.traffic_driver(class="form-control") }} -
-
-
-
- {{ form.traffic_driver_options.label() }} - {{ form.traffic_driver_options(class="form-control", rows=5) }} -
-
-
-
- -
- {{ form.submit(class="btn btn-warning") }} -
-
-
-
-
-{% endblock %} - -{% block additional_scripts %} - -{% endblock %} \ No newline at end of file diff --git a/linguard/web/templates/web/setup.html b/linguard/web/templates/web/setup.html deleted file mode 100644 index b677d01..0000000 --- a/linguard/web/templates/web/setup.html +++ /dev/null @@ -1,164 +0,0 @@ -{% extends "main.html" %} - -{% block body_content %} -
-
-
-
-
-
-
-
-

{{ title }}

-
-
- {% if error %} - - {% endif %} -
-
- {{ form.hidden_tag() }} - -
-
- - Wireguard -
-
-
- {% for error in form.app_endpoint.errors %} - - {% endfor %} - {% for error in form.app_wg_bin.errors %} - - {% endfor %} - {% for error in form.app_wg_quick_bin.errors %} - - {% endfor %} - {% for error in form.app_iptables_bin.errors %} - - {% endfor %} -
-
-
- {{ form.app_endpoint.label() }} -
- {{ form.app_endpoint(class="form-control") }} -
-
-
-
- {{ form.app_wg_bin.label() }} -
- {{ form.app_wg_bin(class="form-control") }} -
-
- {{ form.app_wg_quick_bin.label() }} -
- {{ form.app_wg_quick_bin(class="form-control") }} -
-
- {{ form.app_iptables_bin.label() }} -
- {{ form.app_iptables_bin(class="form-control") }} -
-
-
-
- - -
-
- - Logging -
-
-
- {% for error in form.log_overwrite.errors %} - - {% endfor %} -
-
-
-
- {{ form.log_overwrite(class="custom-control-input") }} - {{ form.log_overwrite.label(class="custom-control-label") }} - - - -
-
-
-
-
- - -
-
- - Traffic data collection -
-
-
- {% for error in form.traffic_enabled.errors %} - - {% endfor %} -
-
-
-
- {{ form.traffic_enabled(class="custom-control-input") }} - {{ form.traffic_enabled.label(class="custom-control-label") }} - - - -
-
-
-
-
- -
- {{ form.submit(class="btn btn-warning") }} -
-
-
-
-
-
-
-
-
-
-
-
- {% include "footer.html" %} -{% endblock %} - -{% block scripts %} - - - -{% endblock %} \ No newline at end of file diff --git a/linguard/web/templates/web/side-nav.html b/linguard/web/templates/web/side-nav.html deleted file mode 100644 index 90bdae0..0000000 --- a/linguard/web/templates/web/side-nav.html +++ /dev/null @@ -1,38 +0,0 @@ -
- -
\ No newline at end of file diff --git a/linguard/web/templates/web/signup.html b/linguard/web/templates/web/signup.html deleted file mode 100644 index 4320bb6..0000000 --- a/linguard/web/templates/web/signup.html +++ /dev/null @@ -1,63 +0,0 @@ -{% extends "main.html" %} - -{% set footer_id = "layoutAuthentication_footer" %} - -{% block body_content %} -
-
-
-
-
-
-
-
-

{{ title }}

-
-
- {{ form.hidden_tag() }} -
- {{ form.username.label(class="small") }} -
- {% for error in form.username.errors %} - {{ error }} - {% endfor %} - {{ form.username(size=64, class="form-control py-4 mt-1") }} -
-
- {{ form.password.label(class="small") }} -
- {% for error in form.password.errors %} - {{ error }} - {% endfor %} - {{ form.password(class="form-control py-4 mt-1") }} -
-
- {{ form.confirm.label(class="small") }} -
- {% for error in form.confirm.errors %} - {{ error }} - {% endfor %} - {{ form.confirm(class="form-control py-4 mt-1") }} -
- -
- {{ form.submit(class="btn btn-primary btn-block") }} -
-
-
-
-
-
-
-
-
- {% include "footer.html" %} -
-
-{% endblock %} - -{% block scripts %} - - - -{% endblock %} \ No newline at end of file diff --git a/linguard/web/templates/web/themes.html b/linguard/web/templates/web/themes.html deleted file mode 100644 index e495771..0000000 --- a/linguard/web/templates/web/themes.html +++ /dev/null @@ -1,16 +0,0 @@ -{% extends "web/web-main.html" %} - -{% block content %} - -
-
-

{{ title }}

-
-
- Coming soon! -
-
-
-
- -{% endblock %} \ No newline at end of file diff --git a/linguard/web/templates/web/top-nav.html b/linguard/web/templates/web/top-nav.html deleted file mode 100644 index af308e0..0000000 --- a/linguard/web/templates/web/top-nav.html +++ /dev/null @@ -1,21 +0,0 @@ - \ No newline at end of file diff --git a/linguard/web/templates/web/web-base.html b/linguard/web/templates/web/web-base.html deleted file mode 100644 index 51db502..0000000 --- a/linguard/web/templates/web/web-base.html +++ /dev/null @@ -1,23 +0,0 @@ -{% extends 'main.html' %} - -{% block body_content %} - {% block top_nav %} - {% endblock %} -
- {% block side_nav %} - {% endblock %} -
- {% block content %} - {% endblock %} -
-
- {% include "footer.html" %} -{% endblock %} - -{% block scripts %} - - - - {% block additional_scripts %} - {% endblock %} -{% endblock %} \ No newline at end of file diff --git a/linguard/web/templates/web/web-main.html b/linguard/web/templates/web/web-main.html deleted file mode 100644 index 5224bff..0000000 --- a/linguard/web/templates/web/web-main.html +++ /dev/null @@ -1,15 +0,0 @@ -{% extends 'web/web-base.html' %} - -{% block top_nav %} - {% include "web/top-nav.html" %} -{% endblock %} - -{% block side_nav %} - {% include "web/side-nav.html" %} -{% endblock %} - -{% block content %} -{% endblock %} - -{% block additional_scripts %} -{% endblock %} \ No newline at end of file diff --git a/linguard/web/templates/web/wireguard-add-iface.html b/linguard/web/templates/web/wireguard-add-iface.html deleted file mode 100644 index 1a790d5..0000000 --- a/linguard/web/templates/web/wireguard-add-iface.html +++ /dev/null @@ -1,136 +0,0 @@ -{% extends "web/web-main.html" %} - -{% block content %} -
-
-
- - Back - -

{{ title }}

-
- {% if error %} - - {% endif %} -
- {{ form.hidden_tag() }} -
-
- - Configuration -
-
-
- {% for error in form.name.errors %} - - {% endfor %} - {% for error in form.auto.errors %} - - {% endfor %} - {% for error in form.description.errors %} - - {% endfor %} - {% for error in form.gateway.errors %} - - {% endfor %} - {% for error in form.ipv4.errors %} - - {% endfor %} - {% for error in form.port.errors %} - - {% endfor %} - {% for error in form.on_up.errors %} - - {% endfor %} - {% for error in form.on_down.errors %} - - {% endfor %} -
-
-
- {{ form.name.label() }} - {{ form.name(class="form-control") }} -
-
-
-
- {{ form.description.label() }} - {{ form.description(class="form-control") }} -
-
-
-
- {{ form.gateway.label() }} - {{ form.gateway(class="form-control") }} -
-
-
-
- {{ form.ipv4.label() }} - {{ form.ipv4(class="form-control") }} -
-
- {{ form.port.label() }} - {{ form.port(class="form-control") }} -
-
-
-
- {{ form.on_up.label() }} - {{ form.on_up(class="form-control", rows='5') }} -
-
- {{ form.on_down.label() }} - {{ form.on_down(class="form-control", rows='5') }} -
-
-
-
-
- {{ form.auto(class="custom-control-input") }} - {{ form.auto.label(class="custom-control-label") }} - - - -
-
-
-
-
- -
- {{ form.submit(class="btn btn-warning") }} -
-
-
-
-
-{% endblock %} - -{% block additional_scripts %} - -{% endblock %} \ No newline at end of file diff --git a/linguard/web/templates/web/wireguard-add-peer.html b/linguard/web/templates/web/wireguard-add-peer.html deleted file mode 100644 index 8987363..0000000 --- a/linguard/web/templates/web/wireguard-add-peer.html +++ /dev/null @@ -1,124 +0,0 @@ -{% extends "web/web-main.html" %} - -{% block content %} -
-
-
- - Back - -

{{ title }}

-
- {% if error %} - - {% endif %} -
- {{ form.hidden_tag() }} -
-
- - Configuration -
-
-
- {% for error in form.name.errors %} - - {% endfor %} - {% for error in form.nat.errors %} - - {% endfor %} - {% for error in form.description.errors %} - - {% endfor %} - {% for error in form.interface.errors %} - - {% endfor %} - {% for error in form.ipv4.errors %} - - {% endfor %} - {% for error in form.dns1.errors %} - - {% endfor %} - {% for error in form.dns2.errors %} - - {% endfor %} -
-
-
- {{ form.name.label() }} - {{ form.name(class="form-control") }} -
-
-
-
- {{ form.description.label() }} - {{ form.description(class="form-control") }} -
-
-
-
- {{ form.interface.label() }} - {{ form.interface(class="form-control") }} -
-
- {{ form.ipv4.label() }} - {{ form.ipv4(class="form-control") }} -
-
-
-
- {{ form.dns1.label() }} - {{ form.dns1(class="form-control") }} -
-
- {{ form.dns2.label() }} - {{ form.dns2(class="form-control") }} -
-
-
-
-
- {{ form.nat(class="custom-control-input") }} - {{ form.nat.label(class="custom-control-label") }} - - - -
-
-
-
-
- -
- {{ form.submit(class="btn btn-warning") }} -
-
-
-
-
-{% endblock %} - -{% block additional_scripts %} - -{% endblock %} \ No newline at end of file diff --git a/linguard/web/templates/web/wireguard-iface.html b/linguard/web/templates/web/wireguard-iface.html deleted file mode 100644 index 4ed9a24..0000000 --- a/linguard/web/templates/web/wireguard-iface.html +++ /dev/null @@ -1,534 +0,0 @@ -{% extends "web/web-main.html" %} - -{% block additional_prioritary_scripts %} - - - - - -{% endblock %} - -{% block additional_styles %} - -{% endblock %} - -{% block content %} - {% set iface_status = iface.status %} -
-
-
- {% if iface_status == "up" %} -

up

- {% else %} -

down

- {% endif %} -

{{ title }}

-
-
- {% if success %} - - {% if warning %} - - {% endif %} - {% elif error %} - - {% endif %} -
- -
-
- - Actions -
-
- {% if iface_status == "up" %} - {% set button_action = "Stop" %} - {% set btn_class = "danger" %} - {% elif iface_status == "down" %} - {% set button_action = "Start" %} - {% set btn_class = "success" %} - {% endif %} - -
-
- -
- {{ form.hidden_tag() }} -
-
- - Configuration -
-
-
- {% for error in form.name.errors %} - - {% endfor %} - {% for error in form.auto.errors %} - - {% endfor %} - {% for error in form.description.errors %} - - {% endfor %} - {% for error in form.gateway.errors %} - - {% endfor %} - {% for error in form.ipv4.errors %} - - {% endfor %} - {% for error in form.port.errors %} - - {% endfor %} - {% for error in form.on_up.errors %} - - {% endfor %} - {% for error in form.on_down.errors %} - - {% endfor %} - {% for error in form.public_key.errors %} - - {% endfor %} - {% for error in form.private_key.errors %} - - {% endfor %} -
-
-
- {{ form.name.label() }} - {{ form.name(class="form-control") }} -
-
-
-
- {{ form.description.label() }} - {{ form.description(class="form-control") }} -
-
-
-
- {{ form.gateway.label() }} - {{ form.gateway(class="form-control") }} -
-
-
-
- {{ form.ipv4.label() }} - {{ form.ipv4(class="form-control") }} -
-
- {{ form.port.label() }} - {{ form.port(class="form-control") }} -
-
-
-
- {{ form.on_up.label() }} - {{ form.on_up(class="form-control", rows='5') }} -
-
- {{ form.on_down.label() }} - {{ form.on_down(class="form-control", rows='5') }} -
-
-
-
- {{ form.public_key.label() }} - {{ form.public_key(class="form-control") }} -
-
- {{ form.private_key.label() }} - - - - {{ form.private_key(class="form-control") }} -
-
-
-
-
- {{ form.auto(class="custom-control-input") }} - {{ form.auto.label(class="custom-control-label") }} - - - -
-
-
-
- {{ form.submit(class="btn btn-warning") }} - Download - - -
-
- -
-
- -
-
- - Peers - -
-
-
-
- - - - - - - - - - - - - - - {% for peer in iface.peers.values() %} - - - {% if peer.description %} - - {% else %} - - {% endif %} - {% if peer.ipv4_address %} - - {% else %} - - {% endif %} - - {% if peer.dns2 %} - - {% else %} - - {% endif %} - {% if peer.nat %} - - {% else %} - - {% endif %} - {% if peer.name in session_traffic and session_traffic[peer.name].last_handshake %} - - {% else %} - - {% endif %} - - - {% endfor %} - -
NameDescriptionIPv4Primary DNSSecondary DNSNATLast handshakeActions
{{ peer.name }}{{ peer.description }}{{ EMPTY_FIELD | safe }}{{ peer.ipv4_address }}{{ EMPTY_FIELD | safe }}{{ peer.dns1}}{{ peer.dns2 }}{{ EMPTY_FIELD | safe }}YesNo{{ session_traffic[peer.name].last_handshake.strftime("%H:%M:%S, %d/%m/%Y") }}{{ EMPTY_FIELD | safe }} - - - - - - - - - -
-
-
-
- -
- -
-
-
-
- - Received and transmitted data in this session -
-
- - -
- -
-
-
-
-
- - History of received and transmitted data -
- {% if traffic_config.enabled %} -
- - -
- - {% else %} -
- Data collection is not enabled! Enable it in settings. -
- {% endif %} -
-
-
- - - -
-
-{% endblock %} - -{% block additional_scripts %} - - - - - -{% endblock %} \ No newline at end of file diff --git a/linguard/web/templates/web/wireguard-peer.html b/linguard/web/templates/web/wireguard-peer.html deleted file mode 100644 index 36f4b38..0000000 --- a/linguard/web/templates/web/wireguard-peer.html +++ /dev/null @@ -1,398 +0,0 @@ -{% extends "web/web-main.html" %} - -{% block additional_prioritary_scripts %} - - - - - -{% endblock %} - -{% block content %} -
-
-

{{ title }}

- -
- {% if success %} - - {% if warning %} - - {% endif %} - {% elif error %} - - {% endif %} -
- -
- {{ form.hidden_tag() }} -
-
- - Configuration -
-
-
- {% for error in form.name.errors %} - - {% endfor %} - {% for error in form.nat.errors %} - - {% endfor %} - {% for error in form.description.errors %} - - {% endfor %} - {% for error in form.interface.errors %} - - {% endfor %} - {% for error in form.ipv4.errors %} - - {% endfor %} - {% for error in form.dns1.errors %} - - {% endfor %} - {% for error in form.dns2.errors %} - - {% endfor %} - {% for error in form.public_key.errors %} - - {% endfor %} - {% for error in form.private_key.errors %} - - {% endfor %} -
-
-
- {{ form.name.label() }} - {{ form.name(class="form-control") }} -
-
-
-
- {{ form.description.label() }} - {{ form.description(class="form-control") }} -
-
-
-
- {{ form.interface.label() }} - {{ form.interface(class="form-control") }} -
-
- {{ form.ipv4.label() }} - {{ form.ipv4(class="form-control") }} -
-
-
-
- {{ form.dns1.label() }} - {{ form.dns1(class="form-control") }} -
-
- {{ form.dns2.label() }} - {{ form.dns2(class="form-control") }} -
-
-
-
- {{ form.public_key.label() }} - {{ form.public_key(class="form-control") }} -
-
- {{ form.private_key.label() }} - - - - {{ form.private_key(class="form-control") }} -
-
-
-
-
- {{ form.nat(class="custom-control-input") }} - {{ form.nat.label(class="custom-control-label") }} - - - -
-
-
-
- {{ form.submit(class="btn btn-warning") }} - Download - - -
-
- -
-
- -
-
-
-
- - Received and transmitted data in this session -
-
- - -
- -
-
-
-
-
- - History of received and transmitted data -
- {% if traffic_config.enabled %} -
- - -
- - {% else %} -
- Data collection is not enabled! Enable it in settings. -
- {% endif %} -
-
-
- - - -
-
-{% endblock %} - -{% block additional_scripts %} - -{% endblock %} \ No newline at end of file diff --git a/linguard/web/templates/web/wireguard.html b/linguard/web/templates/web/wireguard.html deleted file mode 100644 index d409075..0000000 --- a/linguard/web/templates/web/wireguard.html +++ /dev/null @@ -1,241 +0,0 @@ -{% extends "web/web-main.html" %} - -{% block additional_styles %} - -{% endblock %} - -{% block content %} -
-
-

{{ title }}

-
-
- - Interfaces - -
-
-
- {% if interfaces | length < 1 %} -
- There are no interfaces available yet, why don't you add one? -
- {% else %} - {% for iface in interfaces.values() %} - {% set iface_status = iface.status %} -
-
-
-
{{ iface.name }}
-
- - - - - {% if iface_status == "up" %} - {% set status_color = "bg-success" %} - {% elif iface_status == "down" %} - {% set status_color = "bg-danger" %} - {% else %} - {% set status_color = "bg-warning" %} - {% endif %} - - - - - {% if iface.description %} - - {% else %} - - {% endif %} - - - - {% if iface.ipv4_address %} - - {% else %} - - {% endif %} - - - - {% if iface.listen_port %} - - {% else %} - - {% endif %} - - - - - - -
Status {{ iface_status }}
Description{{ iface.description }}{{ EMPTY_FIELD | safe }}
IPv4{{ iface.ipv4_address }}{{ EMPTY_FIELD | safe }}
Listen port{{ iface.listen_port }}{{ EMPTY_FIELD | safe }}
Peers{{ iface.peers | length }}
-
- {% if iface_status == "up" %} - - {% elif iface_status == "down" %} - - {% endif %} - - -
- -
-
- {% endfor %} - {% endif %} -
- {% if interfaces | length > 0 %} - - - - {% endif %} -
- -
-
-
- - Peers - {% if interfaces | length > 0 %} - - {% endif %} -
-
-
-
- - - - - - - - - - - - - - {% for iface in interfaces.values() %} - {% for peer in iface.peers.values() %} - - - - {% if peer.description %} - - {% else %} - - {% endif %} - {% if peer.ipv4_address %} - - {% else %} - - {% endif %} - - {% if peer.dns2 %} - - {% else %} - - {% endif %} - - - {% endfor %} - {% endfor %} - -
NameInterfaceDescriptionIPv4Primary DNSSecondary DNSActions
- {{ peer.name }} - {{ iface.name }}{{ peer.description }}{{ EMPTY_FIELD | safe }}{{ peer.ipv4_address }}{{ EMPTY_FIELD | safe }}{{ peer.dns1}}{{ peer.dns2 }}{{ EMPTY_FIELD | safe }} - - - - - - - - - - -
-
-
-
- -
-
-
-{% endblock %} - -{% block additional_scripts %} - - - - - -{% endblock %} \ No newline at end of file diff --git a/linguard/web/utils.py b/linguard/web/utils.py deleted file mode 100644 index 170dc51..0000000 --- a/linguard/web/utils.py +++ /dev/null @@ -1,23 +0,0 @@ -from datetime import datetime -from typing import Any - -import faker -from flask import templating - -from linguard.__version__ import commit, release -from linguard.common.properties import global_properties -from linguard.web.static.assets.resources import APP_NAME - -fake = faker.Faker() - - -def render_template(template_path: str, **variables: Any): - context = { - "app_name": APP_NAME, - "year": datetime.now().strftime("%Y"), - "version_info": {"release": release, "commit": commit}, - "dev_env": global_properties.dev_env - } - if variables: - context.update(variables) - return templating.render_template(template_path, **context) diff --git a/linguard/web/validators.py b/linguard/web/validators.py deleted file mode 100644 index 7164e89..0000000 --- a/linguard/web/validators.py +++ /dev/null @@ -1,200 +0,0 @@ -import ipaddress -import json -import os.path -import re -from logging import error - -from flask_login import current_user -from wtforms.validators import StopValidation - -from linguard.common.models.user import users -from linguard.common.utils.encryption import CryptoUtils -from linguard.core.config.web import config -from linguard.core.models import Interface, Peer, interfaces - - -def stop_validation(field, error_msg): - error(f"Unable to validate field '{field.label.text}': {error_msg}") - raise StopValidation(error_msg) - - -class LoginUsernameValidator: - def __call__(self, form, field): - u = users.get_value_by_attr("name", field.data) - if not u: - msg = "User not found" - error(f"Unable to log in: {msg}") - raise StopValidation(msg) - - -class LoginPasswordValidator: - def __call__(self, form, field): - u = users.get_value_by_attr("name", form.username.data) - if u and not u.login(field.data): - msg = "Invalid credentials" - error(f"Unable to log in: {msg}") - raise StopValidation(msg) - - -class SignupUsernameValidator: - def __call__(self, form, field): - u = users.get_value_by_attr("name", field.data) - if u: - msg = "Username already in use" - error(f"Unable to sign up: {msg}") - raise StopValidation(msg) - - -class SignupPasswordValidator: - def __call__(self, form, field): - if field.data != form.password.data: - msg = "Passwords do not match" - error(f"Unable to sign up: {msg}") - raise StopValidation(msg) - - -class SettingsSecretKeyValidator: - def __call__(self, form, field): - if not field.data: - return - if len(field.data) != CryptoUtils.KEY_LEN: - msg = f"must be a {CryptoUtils.KEY_LEN} characters long string." - stop_validation(field, msg) - - -class PositiveIntegerValidator: - def __call__(self, form, field): - if type(field.data) is not int: - return - if field.data and field.data < 0: - stop_validation(field, "must be an integer value equal to or greater than 0.") - - -class InterfaceNameValidator: - def __call__(self, form, field): - if not Interface.is_name_valid(field.data): - msg = f"can only contain alphanumeric characters, underscores (_) and " \ - f"hyphens (-). It must also begin with a letter and be between {Interface.MIN_NAME_LENGTH} and " \ - f"{Interface.MAX_NAME_LENGTH} characters long." - stop_validation(field, msg) - if Interface.is_name_in_use(field.data, form.iface): - stop_validation(field, "already in use!") - - -class InterfaceIpValidator: - def __call__(self, form, field): - if len(field.data.split("/")) != 2: - return stop_validation(field, "must be valid IPv4 interface. Follow the format 'X.X.X.X/Y'.") - try: - ip = ipaddress.IPv4Interface(field.data) - except ValueError: - return stop_validation(field, "must be valid IPv4 interface. Follow the format 'X.X.X.X/Y'.") - if Interface.is_ip_in_use(str(ip), form.iface): - return stop_validation(field, "address already in use!") - if Interface.is_network_in_use(ip, form.iface): - return stop_validation(field, f"network {ip.network} already has a wireguard interface!") - if ip.ip == ip.network.broadcast_address or ip.ip == ip.network.network_address: - return stop_validation(field, f"unable to use a reserved address") - - -class InterfacePortValidator: - def __call__(self, form, field): - if type(field.data) is not int: - return - if field.data and field.data < config.MIN_PORT or field.data > config.MAX_PORT: - msg = f"must be an integer value between {config.MIN_PORT} and {config.MAX_PORT}." - stop_validation(field, msg) - if Interface.is_port_in_use(field.data, form.iface): - stop_validation(field, "port already in use!") - - -class PeerNameValidator: - def __call__(self, form, field): - if not Peer.is_name_valid(field.data): - msg = (f"can only contain alphanumeric characters, underscores (_), hyphens (-) and whitespaces. " - f"It must also begin with a letter and be between {Peer.MIN_NAME_LENGTH} and " - f"{Peer.MAX_NAME_LENGTH} characters long.") - stop_validation(field, msg) - - -class PeerIpValidator: - def __call__(self, form, field): - try: - ipaddress.IPv4Interface(field.data) - except ValueError: - msg = "must be valid IPv4 address. Follow the format 'X.X.X.X'." - return stop_validation(field, msg) - iface = interfaces.get_value_by_attr("name", form.interface.data) - if not iface: - return stop_validation(field, "unknown interface") - iface_network = ipaddress.IPv4Interface(iface.ipv4_address).network - peer_ip = ipaddress.IPv4Interface(f"{field.data.split('/')[0]}/{iface_network.prefixlen}") - if Peer.is_ip_in_use(str(peer_ip), form.peer): - return stop_validation(field, "address already in use!") - if peer_ip not in iface_network: - return stop_validation(field, f"address must belong to network {iface_network}") - if peer_ip.ip == iface_network.broadcast_address or peer_ip.ip == iface_network.network_address: - return stop_validation(field, f"unable to use a reserved address") - - -class PeerPrimaryDnsValidator: - def __call__(self, form, field): - try: - ipaddress.IPv4Address(field.data) - except ValueError: - msg = "must be valid IPv4 address. Follow the format 'X.X.X.X'." - stop_validation(field, msg) - - -class PeerSecondaryDnsValidator: - def __call__(self, form, field): - if not field.data: - return - try: - ipaddress.IPv4Address(field.data) - except ValueError: - msg = "must be valid IPv4 address. Follow the format 'X.X.X.X'." - stop_validation(field, msg) - - -class NewPasswordValidator: - def __call__(self, form, field): - if field.data != form.confirm.data: - msg = "passwords do not match" - raise StopValidation(msg) - if current_user.check_password(field.data): - stop_validation(field, "the new password cannot be the same as the old one!") - - -class OldPasswordValidator: - def __call__(self, form, field): - if not current_user.check_password(field.data): - stop_validation(field, "wrong password") - - -class JsonDataValidator: - def __call__(self, form, field): - try: - json.loads(field.data.replace("\'", "\"")) - except Exception: - stop_validation(field, "invalid format, must be JSON data") - - -class PathExistsValidator: - def __call__(self, form, field): - if not os.path.exists(field.data): - stop_validation(field, f"{field.data} does not exist") - - -# https://stackoverflow.com/a/3809435 -URL_REGEX = re.compile(r"[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)") - - -class EndpointValidator: - def __call__(self, form, field): - try: - ipaddress.IPv4Address(field.data) - except ValueError: - if not URL_REGEX.match(field.data): - stop_validation(field, "must be valid url or IPv4 address. " - "Follow the format 'X.X.X.X' or 'vpn.example.com'.") diff --git a/linguard/web/wwwroot/css/bootstrap/bootstrap.min.css b/linguard/web/wwwroot/css/bootstrap/bootstrap.min.css new file mode 100644 index 0000000..02ae65b --- /dev/null +++ b/linguard/web/wwwroot/css/bootstrap/bootstrap.min.css @@ -0,0 +1,7 @@ +@charset "UTF-8";/*! + * Bootstrap v5.1.0 (https://getbootstrap.com/) + * Copyright 2011-2021 The Bootstrap Authors + * Copyright 2011-2021 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-body-rgb:33,37,41;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-bg:#fff}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#6c757d}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-right:var(--bs-gutter-x,.75rem);padding-left:var(--bs-gutter-x,.75rem);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(var(--bs-gutter-y) * -1);margin-right:calc(var(--bs-gutter-x) * -.5);margin-left:calc(var(--bs-gutter-x) * -.5)}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-bg:transparent;--bs-table-accent-bg:transparent;--bs-table-striped-color:#212529;--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:#212529;--bs-table-active-bg:rgba(0, 0, 0, 0.1);--bs-table-hover-color:#212529;--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#dee2e6}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:last-child)>:last-child>*{border-bottom-color:currentColor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-striped>tbody>tr:nth-of-type(odd){--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-bg:#cfe2ff;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:#000;border-color:#bacbe6}.table-secondary{--bs-table-bg:#e2e3e5;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:#000;border-color:#cbccce}.table-success{--bs-table-bg:#d1e7dd;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:#000;border-color:#bcd0c7}.table-info{--bs-table-bg:#cff4fc;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:#000;border-color:#badce3}.table-warning{--bs-table-bg:#fff3cd;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:#000;border-color:#e6dbb9}.table-danger{--bs-table-bg:#f8d7da;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:#000;border-color:#dfc2c4}.table-light{--bs-table-bg:#f8f9fa;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:#000;border-color:#dfe0e1}.table-dark{--bs-table-bg:#212529;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:#fff;border-color:#373b3e}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:#6c757d}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + 2px)}textarea.form-control-sm{min-height:calc(1.5em + .5rem + 2px)}textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}.form-control-color{width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.5em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.25rem}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(0.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#e9ecef}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #212529}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem .75rem}.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(25,135,84,.9);border-radius:.25rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:#198754}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#198754}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#198754}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#198754}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group .form-control.is-valid,.input-group .form-select.is-valid,.was-validated .input-group .form-control:valid,.was-validated .input-group .form-select:valid{z-index:1}.input-group .form-control.is-valid:focus,.input-group .form-select.is-valid:focus,.was-validated .input-group .form-control:valid:focus,.was-validated .input-group .form-select:valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:#dc3545}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#dc3545}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#dc3545}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group .form-control.is-invalid,.input-group .form-select.is-invalid,.was-validated .input-group .form-control:invalid,.was-validated .input-group .form-select:invalid{z-index:2}.input-group .form-control.is-invalid:focus,.input-group .form-select.is-invalid:focus,.was-validated .input-group .form-control:invalid:focus,.was-validated .input-group .form-select:invalid:focus{z-index:3}.btn{display:inline-block;font-weight:400;line-height:1.5;color:#212529;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-primary{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-primary:hover{color:#fff;background-color:#0b5ed7;border-color:#0a58ca}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#0b5ed7;border-color:#0a58ca;box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-secondary:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-success{color:#fff;background-color:#198754;border-color:#198754}.btn-success:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+.btn-success,.btn-success:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#198754;border-color:#198754}.btn-info{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-info:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+.btn-info,.btn-info:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-info.disabled,.btn-info:disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-warning{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-light{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-light,.btn-light:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-light.disabled,.btn-light:disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-dark{color:#fff;background-color:#212529;border-color:#212529}.btn-dark:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#212529;border-color:#212529}.btn-outline-primary{color:#0d6efd;border-color:#0d6efd}.btn-outline-primary:hover{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary:active{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:active+.btn-outline-primary:focus,.btn-check:checked+.btn-outline-primary:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#0d6efd;background-color:transparent}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary:active{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:active+.btn-outline-secondary:focus,.btn-check:checked+.btn-outline-secondary:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-success{color:#198754;border-color:#198754}.btn-outline-success:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success:active{color:#fff;background-color:#198754;border-color:#198754}.btn-check:active+.btn-outline-success:focus,.btn-check:checked+.btn-outline-success:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#198754;background-color:transparent}.btn-outline-info{color:#0dcaf0;border-color:#0dcaf0}.btn-outline-info:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info:active{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:active+.btn-outline-info:focus,.btn-check:checked+.btn-outline-info:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#0dcaf0;background-color:transparent}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning:active{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:active+.btn-outline-warning:focus,.btn-check:checked+.btn-outline-warning:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger:active{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:active+.btn-outline-danger:focus,.btn-check:checked+.btn-outline-danger:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light:active{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:active+.btn-outline-light:focus,.btn-check:checked+.btn-outline-light:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-dark{color:#212529;border-color:#212529}.btn-outline-dark:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark:active{color:#fff;background-color:#212529;border-color:#212529}.btn-check:active+.btn-outline-dark:focus,.btn-check:checked+.btn-outline-dark:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#212529;background-color:transparent}.btn-link{font-weight:400;color:#0d6efd;text-decoration:underline}.btn-link:hover{color:#0a58ca}.btn-link.disabled,.btn-link:disabled{color:#6c757d}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropend,.dropstart,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:.125rem}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#212529;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#1e2125;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#0d6efd}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1rem;color:#212529}.dropdown-menu-dark{color:#dee2e6;background-color:#343a40;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#dee2e6}.dropdown-menu-dark .dropdown-item:focus,.dropdown-menu-dark .dropdown-item:hover{color:#fff;background-color:rgba(255,255,255,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#0d6efd}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#adb5bd}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#dee2e6}.dropdown-menu-dark .dropdown-header{color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#0d6efd;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:#0a58ca}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;background:0 0;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6;isolation:isolate}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:0 0;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#0d6efd}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas-header{display:none}.navbar-expand-sm .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-sm .offcanvas-bottom,.navbar-expand-sm .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas-header{display:none}.navbar-expand-md .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-md .offcanvas-bottom,.navbar-expand-md .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas-header{display:none}.navbar-expand-lg .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-lg .offcanvas-bottom,.navbar-expand-lg .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas-header{display:none}.navbar-expand-xl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xl .offcanvas-bottom,.navbar-expand-xl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xxl .offcanvas-bottom,.navbar-expand-xxl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas-header{display:none}.navbar-expand .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand .offcanvas-bottom,.navbar-expand .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.55)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.55)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.55);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1rem 1rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:1rem}.card-header{padding:.5rem 1rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer{padding:.5rem 1rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.5rem;margin-bottom:-.5rem;margin-left:-.5rem;border-bottom:0}.card-header-pills{margin-right:-.5rem;margin-left:-.5rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-group>.card{margin-bottom:.75rem}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1rem 1.25rem;font-size:1rem;color:#212529;text-align:left;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#0c63e4;background-color:#e7f1ff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed)::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(-180deg)}.accordion-button::after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.accordion-header{margin-bottom:0}.accordion-item{background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-body{padding:1rem 1.25rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}.breadcrumb{display:flex;flex-wrap:wrap;padding:0 0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6c757d;content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:#6c757d}.pagination{display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;color:#0d6efd;text-decoration:none;background-color:#fff;border:1px solid #dee2e6;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#0a58ca;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;color:#0a58ca;background-color:#e9ecef;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;background-color:#fff;border-color:#dee2e6}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1rem 1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{color:#084298;background-color:#cfe2ff;border-color:#b6d4fe}.alert-primary .alert-link{color:#06357a}.alert-secondary{color:#41464b;background-color:#e2e3e5;border-color:#d3d6d8}.alert-secondary .alert-link{color:#34383c}.alert-success{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}.alert-success .alert-link{color:#0c4128}.alert-info{color:#055160;background-color:#cff4fc;border-color:#b6effb}.alert-info .alert-link{color:#04414d}.alert-warning{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}.alert-warning .alert-link{color:#523e02}.alert-danger{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}.alert-danger .alert-link{color:#6a1a21}.alert-light{color:#636464;background-color:#fefefe;border-color:#fdfdfe}.alert-light .alert-link{color:#4f5050}.alert-dark{color:#141619;background-color:#d3d3d4;border-color:#bcbebf}.alert-dark .alert-link{color:#101214}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:1rem}}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#0d6efd;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#212529;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#084298;background-color:#cfe2ff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#084298;background-color:#bacbe6}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}.list-group-item-secondary{color:#41464b;background-color:#e2e3e5}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#41464b;background-color:#cbccce}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}.list-group-item-success{color:#0f5132;background-color:#d1e7dd}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#0f5132;background-color:#bcd0c7}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}.list-group-item-info{color:#055160;background-color:#cff4fc}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#055160;background-color:#badce3}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}.list-group-item-warning{color:#664d03;background-color:#fff3cd}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#664d03;background-color:#e6dbb9}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}.list-group-item-danger{color:#842029;background-color:#f8d7da}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#842029;background-color:#dfc2c4}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}.list-group-item-light{color:#636464;background-color:#fefefe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#636464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}.list-group-item-dark{color:#141619;background-color:#d3d3d4}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#141619;background-color:#bebebf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .5rem 1rem rgba(0,0,0,.15);border-radius:.25rem}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.toast-header .btn-close{margin-right:-.375rem;margin-left:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;left:0;z-index:1055;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1050;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .btn-close{padding:.5rem .5rem;margin:-.5rem -.5rem -.5rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[data-popper-placement^=right],.bs-tooltip-end{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[data-popper-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[data-popper-placement^=left],.bs-tooltip-start{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f0f0f0}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem 1rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@-webkit-keyframes spinner-border{to{transform:rotate(360deg)}}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.offcanvas{position:fixed;bottom:0;z-index:1045;display:flex;flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:1rem 1rem}.offcanvas-header .btn-close{padding:.5rem .5rem;margin-top:-.5rem;margin-right:-.5rem;margin-bottom:-.5rem}.offcanvas-title{margin-bottom:0;line-height:1.5}.offcanvas-body{flex-grow:1;padding:1rem 1rem;overflow-y:auto}.offcanvas-start{top:0;left:0;width:400px;border-right:1px solid rgba(0,0,0,.2);transform:translateX(-100%)}.offcanvas-end{top:0;right:0;width:400px;border-left:1px solid rgba(0,0,0,.2);transform:translateX(100%)}.offcanvas-top{top:0;right:0;left:0;height:30vh;max-height:100%;border-bottom:1px solid rgba(0,0,0,.2);transform:translateY(-100%)}.offcanvas-bottom{right:0;left:0;height:30vh;max-height:100%;border-top:1px solid rgba(0,0,0,.2);transform:translateY(100%)}.offcanvas.show{transform:none}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentColor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{-webkit-animation:placeholder-glow 2s ease-in-out infinite;animation:placeholder-glow 2s ease-in-out infinite}@-webkit-keyframes placeholder-glow{50%{opacity:.2}}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;-webkit-animation:placeholder-wave 2s linear infinite;animation:placeholder-wave 2s linear infinite}@-webkit-keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.link-primary{color:#0d6efd}.link-primary:focus,.link-primary:hover{color:#0a58ca}.link-secondary{color:#6c757d}.link-secondary:focus,.link-secondary:hover{color:#565e64}.link-success{color:#198754}.link-success:focus,.link-success:hover{color:#146c43}.link-info{color:#0dcaf0}.link-info:focus,.link-info:hover{color:#3dd5f3}.link-warning{color:#ffc107}.link-warning:focus,.link-warning:hover{color:#ffcd39}.link-danger{color:#dc3545}.link-danger:focus,.link-danger:hover{color:#b02a37}.link-light{color:#f8f9fa}.link-light:focus,.link-light:hover{color:#f9fafb}.link-dark{color:#212529}.link-dark:focus,.link-dark:hover{color:#1a1e21}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:calc(3 / 4 * 100%)}.ratio-16x9{--bs-aspect-ratio:calc(9 / 16 * 100%)}.ratio-21x9{--bs-aspect-ratio:calc(9 / 21 * 100%)}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentColor;opacity:.25}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.opacity-0{opacity:0!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:1px solid #dee2e6!important}.border-0{border:0!important}.border-top{border-top:1px solid #dee2e6!important}.border-top-0{border-top:0!important}.border-end{border-right:1px solid #dee2e6!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:1px solid #dee2e6!important}.border-start-0{border-left:0!important}.border-primary{border-color:#0d6efd!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#198754!important}.border-info{border-color:#0dcaf0!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#212529!important}.border-white{border-color:#fff!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-body{--bs-text-opacity:1;color:rgba(var(--bs-body-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:#6c757d!important}.text-black-50{--bs-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--bs-text-opacity:1;color:rgba(255,255,255,.5)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{--bs-bg-opacity:1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{--bs-bg-opacity:1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-dark{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-black{--bs-bg-opacity:1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-body{--bs-bg-opacity:1;background-color:rgba(var(--bs-body-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:.25rem!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:.2rem!important}.rounded-2{border-radius:.25rem!important}.rounded-3{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-end{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-start{border-bottom-left-radius:.25rem!important;border-top-left-radius:.25rem!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}} +/*# sourceMappingURL=bootstrap.min.css.map */ \ No newline at end of file diff --git a/linguard/web/wwwroot/css/bootstrap/bootstrap.min.css.map b/linguard/web/wwwroot/css/bootstrap/bootstrap.min.css.map new file mode 100644 index 0000000..afcd9e3 --- /dev/null +++ b/linguard/web/wwwroot/css/bootstrap/bootstrap.min.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["../../scss/bootstrap.scss","../../scss/_root.scss","../../scss/_reboot.scss","dist/css/bootstrap.css","../../scss/vendor/_rfs.scss","../../scss/mixins/_border-radius.scss","../../scss/_type.scss","../../scss/mixins/_lists.scss","../../scss/_images.scss","../../scss/mixins/_image.scss","../../scss/_containers.scss","../../scss/mixins/_container.scss","../../scss/mixins/_breakpoints.scss","../../scss/_grid.scss","../../scss/mixins/_grid.scss","../../scss/_tables.scss","../../scss/mixins/_table-variants.scss","../../scss/forms/_labels.scss","../../scss/forms/_form-text.scss","../../scss/forms/_form-control.scss","../../scss/mixins/_transition.scss","../../scss/mixins/_gradients.scss","../../scss/forms/_form-select.scss","../../scss/forms/_form-check.scss","../../scss/forms/_form-range.scss","../../scss/forms/_floating-labels.scss","../../scss/forms/_input-group.scss","../../scss/mixins/_forms.scss","../../scss/_buttons.scss","../../scss/mixins/_buttons.scss","../../scss/_transitions.scss","../../scss/_dropdown.scss","../../scss/mixins/_caret.scss","../../scss/_button-group.scss","../../scss/_nav.scss","../../scss/_navbar.scss","../../scss/_card.scss","../../scss/_accordion.scss","../../scss/_breadcrumb.scss","../../scss/_pagination.scss","../../scss/mixins/_pagination.scss","../../scss/_badge.scss","../../scss/_alert.scss","../../scss/mixins/_alert.scss","../../scss/_progress.scss","../../scss/_list-group.scss","../../scss/mixins/_list-group.scss","../../scss/_close.scss","../../scss/_toasts.scss","../../scss/_modal.scss","../../scss/mixins/_backdrop.scss","../../scss/_tooltip.scss","../../scss/mixins/_reset-text.scss","../../scss/_popover.scss","../../scss/_carousel.scss","../../scss/mixins/_clearfix.scss","../../scss/_spinners.scss","../../scss/_offcanvas.scss","../../scss/_placeholders.scss","../../scss/helpers/_colored-links.scss","../../scss/helpers/_ratio.scss","../../scss/helpers/_position.scss","../../scss/helpers/_stacks.scss","../../scss/helpers/_visually-hidden.scss","../../scss/mixins/_visually-hidden.scss","../../scss/helpers/_stretched-link.scss","../../scss/helpers/_text-truncation.scss","../../scss/mixins/_text-truncate.scss","../../scss/helpers/_vr.scss","../../scss/mixins/_utilities.scss","../../scss/utilities/_api.scss"],"names":[],"mappings":"iBAAA;;;;;ACAA,MAQI,UAAA,QAAA,YAAA,QAAA,YAAA,QAAA,UAAA,QAAA,SAAA,QAAA,YAAA,QAAA,YAAA,QAAA,WAAA,QAAA,UAAA,QAAA,UAAA,QAAA,WAAA,KAAA,UAAA,QAAA,eAAA,QAIA,cAAA,QAAA,cAAA,QAAA,cAAA,QAAA,cAAA,QAAA,cAAA,QAAA,cAAA,QAAA,cAAA,QAAA,cAAA,QAAA,cAAA,QAIA,aAAA,QAAA,eAAA,QAAA,aAAA,QAAA,UAAA,QAAA,aAAA,QAAA,YAAA,QAAA,WAAA,QAAA,UAAA,QAIA,iBAAA,EAAA,CAAA,GAAA,CAAA,IAAA,mBAAA,GAAA,CAAA,GAAA,CAAA,IAAA,iBAAA,EAAA,CAAA,GAAA,CAAA,GAAA,cAAA,EAAA,CAAA,GAAA,CAAA,IAAA,iBAAA,GAAA,CAAA,GAAA,CAAA,EAAA,gBAAA,GAAA,CAAA,EAAA,CAAA,GAAA,eAAA,GAAA,CAAA,GAAA,CAAA,IAAA,cAAA,EAAA,CAAA,EAAA,CAAA,GAGF,eAAA,GAAA,CAAA,GAAA,CAAA,IACA,eAAA,CAAA,CAAA,CAAA,CAAA,EACA,cAAA,EAAA,CAAA,EAAA,CAAA,GAMA,qBAAA,SAAA,CAAA,aAAA,CAAA,UAAA,CAAA,MAAA,CAAA,gBAAA,CAAA,KAAA,CAAA,WAAA,CAAA,iBAAA,CAAA,UAAA,CAAA,mBAAA,CAAA,gBAAA,CAAA,iBAAA,CAAA,mBACA,oBAAA,cAAA,CAAA,KAAA,CAAA,MAAA,CAAA,QAAA,CAAA,iBAAA,CAAA,aAAA,CAAA,UACA,cAAA,2EAQA,sBAAA,0BACA,oBAAA,KACA,sBAAA,IACA,sBAAA,IACA,gBAAA,QAIA,aAAA,KClCF,EC+CA,QADA,SD3CE,WAAA,WAeE,8CANJ,MAOM,gBAAA,QAcN,KACE,OAAA,EACA,YAAA,2BEmPI,UAAA,yBFjPJ,YAAA,2BACA,YAAA,2BACA,MAAA,qBACA,WAAA,0BACA,iBAAA,kBACA,yBAAA,KACA,4BAAA,YAUF,GACE,OAAA,KAAA,EACA,MAAA,QACA,iBAAA,aACA,OAAA,EACA,QAAA,IAGF,eACE,OAAA,IAUF,IAAA,IAAA,IAAA,IAAA,IAAA,IAAA,GAAA,GAAA,GAAA,GAAA,GAAA,GACE,WAAA,EACA,cAAA,MAGA,YAAA,IACA,YAAA,IAIF,IAAA,GEwMQ,UAAA,uBAlKJ,0BFtCJ,IAAA,GE+MQ,UAAA,QF1MR,IAAA,GEmMQ,UAAA,sBAlKJ,0BFjCJ,IAAA,GE0MQ,UAAA,MFrMR,IAAA,GE8LQ,UAAA,oBAlKJ,0BF5BJ,IAAA,GEqMQ,UAAA,SFhMR,IAAA,GEyLQ,UAAA,sBAlKJ,0BFvBJ,IAAA,GEgMQ,UAAA,QF3LR,IAAA,GEgLM,UAAA,QF3KN,IAAA,GE2KM,UAAA,KFhKN,EACE,WAAA,EACA,cAAA,KCmBF,6BDRA,YAEE,wBAAA,UAAA,OAAA,gBAAA,UAAA,OACA,OAAA,KACA,iCAAA,KAAA,yBAAA,KAMF,QACE,cAAA,KACA,WAAA,OACA,YAAA,QAMF,GCIA,GDFE,aAAA,KCQF,GDLA,GCIA,GDDE,WAAA,EACA,cAAA,KAGF,MCKA,MACA,MAFA,MDAE,cAAA,EAGF,GACE,YAAA,IAKF,GACE,cAAA,MACA,YAAA,EAMF,WACE,OAAA,EAAA,EAAA,KAQF,ECNA,ODQE,YAAA,OAQF,OAAA,ME4EM,UAAA,OFrEN,MAAA,KACE,QAAA,KACA,iBAAA,QASF,ICpBA,IDsBE,SAAA,SEwDI,UAAA,MFtDJ,YAAA,EACA,eAAA,SAGF,IAAM,OAAA,OACN,IAAM,IAAA,MAKN,EACE,MAAA,QACA,gBAAA,UAEA,QACE,MAAA,QAWF,2BAAA,iCAEE,MAAA,QACA,gBAAA,KCxBJ,KACA,ID8BA,IC7BA,KDiCE,YAAA,yBEcI,UAAA,IFZJ,UAAA,IACA,aAAA,cAOF,IACE,QAAA,MACA,WAAA,EACA,cAAA,KACA,SAAA,KEAI,UAAA,OFKJ,SELI,UAAA,QFOF,MAAA,QACA,WAAA,OAIJ,KEZM,UAAA,OFcJ,MAAA,QACA,UAAA,WAGA,OACE,MAAA,QAIJ,IACE,QAAA,MAAA,MExBI,UAAA,OF0BJ,MAAA,KACA,iBAAA,QG7SE,cAAA,MHgTF,QACE,QAAA,EE/BE,UAAA,IFiCF,YAAA,IASJ,OACE,OAAA,EAAA,EAAA,KAMF,ICjDA,IDmDE,eAAA,OAQF,MACE,aAAA,OACA,gBAAA,SAGF,QACE,YAAA,MACA,eAAA,MACA,MAAA,QACA,WAAA,KAOF,GAEE,WAAA,QACA,WAAA,qBCxDF,MAGA,GAFA,MAGA,GDuDA,MCzDA,GD+DE,aAAA,QACA,aAAA,MACA,aAAA,EAQF,MACE,QAAA,aAMF,OAEE,cAAA,EAQF,iCACE,QAAA,ECtEF,OD2EA,MCzEA,SADA,OAEA,SD6EE,OAAA,EACA,YAAA,QE9HI,UAAA,QFgIJ,YAAA,QAIF,OC5EA,OD8EE,eAAA,KAKF,cACE,OAAA,QAGF,OAGE,UAAA,OAGA,gBACE,QAAA,EAOJ,0CACE,QAAA,KClFF,cACA,aACA,cDwFA,OAIE,mBAAA,OCxFF,6BACA,4BACA,6BDyFI,sBACE,OAAA,QAON,mBACE,QAAA,EACA,aAAA,KAKF,SACE,OAAA,SAUF,SACE,UAAA,EACA,QAAA,EACA,OAAA,EACA,OAAA,EAQF,OACE,MAAA,KACA,MAAA,KACA,QAAA,EACA,cAAA,MEnNM,UAAA,sBFsNN,YAAA,QExXE,0BFiXJ,OExMQ,UAAA,QFiNN,SACE,MAAA,KChGJ,kCDuGA,uCCxGA,mCADA,+BAGA,oCAJA,6BAKA,mCD4GE,QAAA,EAGF,4BACE,OAAA,KASF,cACE,eAAA,KACA,mBAAA,UAmBF,4BACE,mBAAA,KAKF,+BACE,QAAA,EAMF,uBACE,KAAA,QAMF,6BACE,KAAA,QACA,mBAAA,OAKF,OACE,QAAA,aAKF,OACE,OAAA,EAOF,QACE,QAAA,UACA,OAAA,QAQF,SACE,eAAA,SAQF,SACE,QAAA,eInlBF,MFyQM,UAAA,QEvQJ,YAAA,IAKA,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,ME7QN,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,QE7QN,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,ME7QN,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,QE7QN,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,ME7QN,WFsQM,UAAA,uBEpQJ,YAAA,IACA,YAAA,IFiGA,0BEpGF,WF6QM,UAAA,QEvPR,eCrDE,aAAA,EACA,WAAA,KDyDF,aC1DE,aAAA,EACA,WAAA,KD4DF,kBACE,QAAA,aAEA,mCACE,aAAA,MAUJ,YFsNM,UAAA,OEpNJ,eAAA,UAIF,YACE,cAAA,KF+MI,UAAA,QE5MJ,wBACE,cAAA,EAIJ,mBACE,WAAA,MACA,cAAA,KFqMI,UAAA,OEnMJ,MAAA,QAEA,2BACE,QAAA,KE9FJ,WCIE,UAAA,KAGA,OAAA,KDDF,eACE,QAAA,OACA,iBAAA,KACA,OAAA,IAAA,MAAA,QHGE,cAAA,OIRF,UAAA,KAGA,OAAA,KDcF,QAEE,QAAA,aAGF,YACE,cAAA,MACA,YAAA,EAGF,gBJ+PM,UAAA,OI7PJ,MAAA,QElCA,WPqmBF,iBAGA,cACA,cACA,cAHA,cADA,eQzmBE,MAAA,KACA,cAAA,0BACA,aAAA,0BACA,aAAA,KACA,YAAA,KCwDE,yBF5CE,WAAA,cACE,UAAA,OE2CJ,yBF5CE,WAAA,cAAA,cACE,UAAA,OE2CJ,yBF5CE,WAAA,cAAA,cAAA,cACE,UAAA,OE2CJ,0BF5CE,WAAA,cAAA,cAAA,cAAA,cACE,UAAA,QE2CJ,0BF5CE,WAAA,cAAA,cAAA,cAAA,cAAA,eACE,UAAA,QGfN,KCAA,cAAA,OACA,cAAA,EACA,QAAA,KACA,UAAA,KACA,WAAA,8BACA,aAAA,+BACA,YAAA,+BDHE,OCYF,YAAA,EACA,MAAA,KACA,UAAA,KACA,cAAA,8BACA,aAAA,8BACA,WAAA,mBA+CI,KACE,KAAA,EAAA,EAAA,GAGF,iBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,cACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,cACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,UAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,OAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,QAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,UAxDV,YAAA,YAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,IAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,IAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,aAwDU,UAxDV,YAAA,IAwDU,WAxDV,YAAA,aAwDU,WAxDV,YAAA,aAmEM,KXusBR,MWrsBU,cAAA,EAGF,KXusBR,MWrsBU,cAAA,EAPF,KXitBR,MW/sBU,cAAA,QAGF,KXitBR,MW/sBU,cAAA,QAPF,KX2tBR,MWztBU,cAAA,OAGF,KX2tBR,MWztBU,cAAA,OAPF,KXquBR,MWnuBU,cAAA,KAGF,KXquBR,MWnuBU,cAAA,KAPF,KX+uBR,MW7uBU,cAAA,OAGF,KX+uBR,MW7uBU,cAAA,OAPF,KXyvBR,MWvvBU,cAAA,KAGF,KXyvBR,MWvvBU,cAAA,KFzDN,yBESE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,YAAA,EAwDU,aAxDV,YAAA,YAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAmEM,QX45BR,SW15BU,cAAA,EAGF,QX45BR,SW15BU,cAAA,EAPF,QXs6BR,SWp6BU,cAAA,QAGF,QXs6BR,SWp6BU,cAAA,QAPF,QXg7BR,SW96BU,cAAA,OAGF,QXg7BR,SW96BU,cAAA,OAPF,QX07BR,SWx7BU,cAAA,KAGF,QX07BR,SWx7BU,cAAA,KAPF,QXo8BR,SWl8BU,cAAA,OAGF,QXo8BR,SWl8BU,cAAA,OAPF,QX88BR,SW58BU,cAAA,KAGF,QX88BR,SW58BU,cAAA,MFzDN,yBESE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,YAAA,EAwDU,aAxDV,YAAA,YAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAmEM,QXinCR,SW/mCU,cAAA,EAGF,QXinCR,SW/mCU,cAAA,EAPF,QX2nCR,SWznCU,cAAA,QAGF,QX2nCR,SWznCU,cAAA,QAPF,QXqoCR,SWnoCU,cAAA,OAGF,QXqoCR,SWnoCU,cAAA,OAPF,QX+oCR,SW7oCU,cAAA,KAGF,QX+oCR,SW7oCU,cAAA,KAPF,QXypCR,SWvpCU,cAAA,OAGF,QXypCR,SWvpCU,cAAA,OAPF,QXmqCR,SWjqCU,cAAA,KAGF,QXmqCR,SWjqCU,cAAA,MFzDN,yBESE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,YAAA,EAwDU,aAxDV,YAAA,YAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAmEM,QXs0CR,SWp0CU,cAAA,EAGF,QXs0CR,SWp0CU,cAAA,EAPF,QXg1CR,SW90CU,cAAA,QAGF,QXg1CR,SW90CU,cAAA,QAPF,QX01CR,SWx1CU,cAAA,OAGF,QX01CR,SWx1CU,cAAA,OAPF,QXo2CR,SWl2CU,cAAA,KAGF,QXo2CR,SWl2CU,cAAA,KAPF,QX82CR,SW52CU,cAAA,OAGF,QX82CR,SW52CU,cAAA,OAPF,QXw3CR,SWt3CU,cAAA,KAGF,QXw3CR,SWt3CU,cAAA,MFzDN,0BESE,QACE,KAAA,EAAA,EAAA,GAGF,oBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,iBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,aAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,UAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,aAxDV,YAAA,EAwDU,aAxDV,YAAA,YAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,aAwDU,aAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAmEM,QX2hDR,SWzhDU,cAAA,EAGF,QX2hDR,SWzhDU,cAAA,EAPF,QXqiDR,SWniDU,cAAA,QAGF,QXqiDR,SWniDU,cAAA,QAPF,QX+iDR,SW7iDU,cAAA,OAGF,QX+iDR,SW7iDU,cAAA,OAPF,QXyjDR,SWvjDU,cAAA,KAGF,QXyjDR,SWvjDU,cAAA,KAPF,QXmkDR,SWjkDU,cAAA,OAGF,QXmkDR,SWjkDU,cAAA,OAPF,QX6kDR,SW3kDU,cAAA,KAGF,QX6kDR,SW3kDU,cAAA,MFzDN,0BESE,SACE,KAAA,EAAA,EAAA,GAGF,qBApCJ,KAAA,EAAA,EAAA,KACA,MAAA,KAcA,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,KAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,eAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,IAFF,kBACE,KAAA,EAAA,EAAA,KACA,MAAA,eA+BE,cAhDJ,KAAA,EAAA,EAAA,KACA,MAAA,KAqDQ,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,YA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,WAhEN,KAAA,EAAA,EAAA,KACA,MAAA,IA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,aA+DM,YAhEN,KAAA,EAAA,EAAA,KACA,MAAA,KAuEQ,cAxDV,YAAA,EAwDU,cAxDV,YAAA,YAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,IAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,aAwDU,cAxDV,YAAA,IAwDU,eAxDV,YAAA,aAwDU,eAxDV,YAAA,aAmEM,SXgvDR,UW9uDU,cAAA,EAGF,SXgvDR,UW9uDU,cAAA,EAPF,SX0vDR,UWxvDU,cAAA,QAGF,SX0vDR,UWxvDU,cAAA,QAPF,SXowDR,UWlwDU,cAAA,OAGF,SXowDR,UWlwDU,cAAA,OAPF,SX8wDR,UW5wDU,cAAA,KAGF,SX8wDR,UW5wDU,cAAA,KAPF,SXwxDR,UWtxDU,cAAA,OAGF,SXwxDR,UWtxDU,cAAA,OAPF,SXkyDR,UWhyDU,cAAA,KAGF,SXkyDR,UWhyDU,cAAA,MCpHV,OACE,cAAA,YACA,qBAAA,YACA,yBAAA,QACA,sBAAA,oBACA,wBAAA,QACA,qBAAA,mBACA,uBAAA,QACA,oBAAA,qBAEA,MAAA,KACA,cAAA,KACA,MAAA,QACA,eAAA,IACA,aAAA,QAOA,yBACE,QAAA,MAAA,MACA,iBAAA,mBACA,oBAAA,IACA,WAAA,MAAA,EAAA,EAAA,EAAA,OAAA,0BAGF,aACE,eAAA,QAGF,aACE,eAAA,OAIF,uCACE,oBAAA,aASJ,aACE,aAAA,IAUA,4BACE,QAAA,OAAA,OAeF,gCACE,aAAA,IAAA,EAGA,kCACE,aAAA,EAAA,IAOJ,oCACE,oBAAA,EASF,yCACE,qBAAA,2BACA,MAAA,8BAQJ,cACE,qBAAA,0BACA,MAAA,6BAQA,4BACE,qBAAA,yBACA,MAAA,4BCxHF,eAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,iBAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,eAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,YAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,eAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,cAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,aAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QAfF,YAME,cAAA,QACA,sBAAA,QACA,yBAAA,KACA,qBAAA,QACA,wBAAA,KACA,oBAAA,QACA,uBAAA,KAEA,MAAA,KACA,aAAA,QDgIA,kBACE,WAAA,KACA,2BAAA,MHvEF,4BGqEA,qBACE,WAAA,KACA,2BAAA,OHvEF,4BGqEA,qBACE,WAAA,KACA,2BAAA,OHvEF,4BGqEA,qBACE,WAAA,KACA,2BAAA,OHvEF,6BGqEA,qBACE,WAAA,KACA,2BAAA,OHvEF,6BGqEA,sBACE,WAAA,KACA,2BAAA,OE/IN,YACE,cAAA,MASF,gBACE,YAAA,oBACA,eAAA,oBACA,cAAA,EboRI,UAAA,QahRJ,YAAA,IAIF,mBACE,YAAA,kBACA,eAAA,kBb0QI,UAAA,QatQN,mBACE,YAAA,mBACA,eAAA,mBboQI,UAAA,QcjSN,WACE,WAAA,OdgSI,UAAA,Oc5RJ,MAAA,QCLF,cACE,QAAA,MACA,MAAA,KACA,QAAA,QAAA,Of8RI,UAAA,Ke3RJ,YAAA,IACA,YAAA,IACA,MAAA,QACA,iBAAA,KACA,gBAAA,YACA,OAAA,IAAA,MAAA,QACA,mBAAA,KAAA,gBAAA,KAAA,WAAA,KdGE,cAAA,OeHE,WAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAIA,uCDhBN,cCiBQ,WAAA,MDGN,yBACE,SAAA,OAEA,wDACE,OAAA,QAKJ,oBACE,MAAA,QACA,iBAAA,KACA,aAAA,QACA,QAAA,EAKE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAOJ,2CAEE,OAAA,MAIF,gCACE,MAAA,QAEA,QAAA,EAHF,2BACE,MAAA,QAEA,QAAA,EAQF,uBAAA,wBAEE,iBAAA,QAGA,QAAA,EAIF,oCACE,QAAA,QAAA,OACA,OAAA,SAAA,QACA,mBAAA,OAAA,kBAAA,OACA,MAAA,QE3EF,iBAAA,QF6EE,eAAA,KACA,aAAA,QACA,aAAA,MACA,aAAA,EACA,wBAAA,IACA,cAAA,ECtEE,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAIA,uCDuDJ,oCCtDM,WAAA,MDqEN,yEACE,iBAAA,QAGF,0CACE,QAAA,QAAA,OACA,OAAA,SAAA,QACA,mBAAA,OAAA,kBAAA,OACA,MAAA,QE9FF,iBAAA,QFgGE,eAAA,KACA,aAAA,QACA,aAAA,MACA,aAAA,EACA,wBAAA,IACA,cAAA,ECzFE,mBAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAAA,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAIA,uCD0EJ,0CCzEM,mBAAA,KAAA,WAAA,MDwFN,+EACE,iBAAA,QASJ,wBACE,QAAA,MACA,MAAA,KACA,QAAA,QAAA,EACA,cAAA,EACA,YAAA,IACA,MAAA,QACA,iBAAA,YACA,OAAA,MAAA,YACA,aAAA,IAAA,EAEA,wCAAA,wCAEE,cAAA,EACA,aAAA,EAWJ,iBACE,WAAA,0BACA,QAAA,OAAA,MfmJI,UAAA,QClRF,cAAA,McmIF,uCACE,QAAA,OAAA,MACA,OAAA,QAAA,OACA,mBAAA,MAAA,kBAAA,MAGF,6CACE,QAAA,OAAA,MACA,OAAA,QAAA,OACA,mBAAA,MAAA,kBAAA,MAIJ,iBACE,WAAA,yBACA,QAAA,MAAA,KfgII,UAAA,QClRF,cAAA,McsJF,uCACE,QAAA,MAAA,KACA,OAAA,OAAA,MACA,mBAAA,KAAA,kBAAA,KAGF,6CACE,QAAA,MAAA,KACA,OAAA,OAAA,MACA,mBAAA,KAAA,kBAAA,KAQF,sBACE,WAAA,2BAGF,yBACE,WAAA,0BAGF,yBACE,WAAA,yBAKJ,oBACE,MAAA,KACA,OAAA,KACA,QAAA,QAEA,mDACE,OAAA,QAGF,uCACE,OAAA,Md/LA,cAAA,OcmMF,0CACE,OAAA,MdpMA,cAAA,OiBdJ,aACE,QAAA,MACA,MAAA,KACA,QAAA,QAAA,QAAA,QAAA,OAEA,mBAAA,oBlB2RI,UAAA,KkBxRJ,YAAA,IACA,YAAA,IACA,MAAA,QACA,iBAAA,KACA,iBAAA,gOACA,kBAAA,UACA,oBAAA,MAAA,OAAA,OACA,gBAAA,KAAA,KACA,OAAA,IAAA,MAAA,QjBFE,cAAA,OeHE,WAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YESJ,mBAAA,KAAA,gBAAA,KAAA,WAAA,KFLI,uCEfN,aFgBQ,WAAA,MEMN,mBACE,aAAA,QACA,QAAA,EAKE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAIJ,uBAAA,mCAEE,cAAA,OACA,iBAAA,KAGF,sBAEE,iBAAA,QAKF,4BACE,MAAA,YACA,YAAA,EAAA,EAAA,EAAA,QAIJ,gBACE,YAAA,OACA,eAAA,OACA,aAAA,MlByOI,UAAA,QkBrON,gBACE,YAAA,MACA,eAAA,MACA,aAAA,KlBkOI,UAAA,QmBjSN,YACE,QAAA,MACA,WAAA,OACA,aAAA,MACA,cAAA,QAEA,8BACE,MAAA,KACA,YAAA,OAIJ,kBACE,MAAA,IACA,OAAA,IACA,WAAA,MACA,eAAA,IACA,iBAAA,KACA,kBAAA,UACA,oBAAA,OACA,gBAAA,QACA,OAAA,IAAA,MAAA,gBACA,mBAAA,KAAA,gBAAA,KAAA,WAAA,KACA,2BAAA,MAAA,aAAA,MAGA,iClBXE,cAAA,MkBeF,8BAEE,cAAA,IAGF,yBACE,OAAA,gBAGF,wBACE,aAAA,QACA,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAAA,qBAGF,0BACE,iBAAA,QACA,aAAA,QAEA,yCAII,iBAAA,8NAIJ,sCAII,iBAAA,sIAKN,+CACE,iBAAA,QACA,aAAA,QAKE,iBAAA,wNAIJ,2BACE,eAAA,KACA,OAAA,KACA,QAAA,GAOA,6CAAA,8CACE,QAAA,GAcN,aACE,aAAA,MAEA,+BACE,MAAA,IACA,YAAA,OACA,iBAAA,uJACA,oBAAA,KAAA,OlB9FA,cAAA,IeHE,WAAA,oBAAA,KAAA,YAIA,uCGyFJ,+BHxFM,WAAA,MGgGJ,qCACE,iBAAA,yIAGF,uCACE,oBAAA,MAAA,OAKE,iBAAA,sIAMR,mBACE,QAAA,aACA,aAAA,KAGF,WACE,SAAA,SACA,KAAA,cACA,eAAA,KAIE,yBAAA,0BACE,eAAA,KACA,OAAA,KACA,QAAA,IC9IN,YACE,MAAA,KACA,OAAA,OACA,QAAA,EACA,iBAAA,YACA,mBAAA,KAAA,gBAAA,KAAA,WAAA,KAEA,kBACE,QAAA,EAIA,wCAA0B,WAAA,EAAA,EAAA,EAAA,IAAA,IAAA,CAAA,EAAA,EAAA,EAAA,OAAA,qBAC1B,oCAA0B,WAAA,EAAA,EAAA,EAAA,IAAA,IAAA,CAAA,EAAA,EAAA,EAAA,OAAA,qBAG5B,8BACE,OAAA,EAGF,kCACE,MAAA,KACA,OAAA,KACA,WAAA,QHzBF,iBAAA,QG2BE,OAAA,EnBZA,cAAA,KeHE,mBAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAAA,WAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YImBF,mBAAA,KAAA,WAAA,KJfE,uCIMJ,kCJLM,mBAAA,KAAA,WAAA,MIgBJ,yCHjCF,iBAAA,QGsCA,2CACE,MAAA,KACA,OAAA,MACA,MAAA,YACA,OAAA,QACA,iBAAA,QACA,aAAA,YnB7BA,cAAA,KmBkCF,8BACE,MAAA,KACA,OAAA,KHnDF,iBAAA,QGqDE,OAAA,EnBtCA,cAAA,KeHE,gBAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAAA,WAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YI6CF,gBAAA,KAAA,WAAA,KJzCE,uCIiCJ,8BJhCM,gBAAA,KAAA,WAAA,MI0CJ,qCH3DF,iBAAA,QGgEA,8BACE,MAAA,KACA,OAAA,MACA,MAAA,YACA,OAAA,QACA,iBAAA,QACA,aAAA,YnBvDA,cAAA,KmB4DF,qBACE,eAAA,KAEA,2CACE,iBAAA,QAGF,uCACE,iBAAA,QCvFN,eACE,SAAA,SAEA,6BtB+iFF,4BsB7iFI,OAAA,mBACA,YAAA,KAGF,qBACE,SAAA,SACA,IAAA,EACA,KAAA,EACA,OAAA,KACA,QAAA,KAAA,OACA,eAAA,KACA,OAAA,IAAA,MAAA,YACA,iBAAA,EAAA,ELDE,WAAA,QAAA,IAAA,WAAA,CAAA,UAAA,IAAA,YAIA,uCKXJ,qBLYM,WAAA,MKCN,6BACE,QAAA,KAAA,OAEA,+CACE,MAAA,YADF,0CACE,MAAA,YAGF,0DAEE,YAAA,SACA,eAAA,QAHF,mCAAA,qDAEE,YAAA,SACA,eAAA,QAGF,8CACE,YAAA,SACA,eAAA,QAIJ,4BACE,YAAA,SACA,eAAA,QAMA,gEACE,QAAA,IACA,UAAA,WAAA,mBAAA,mBAFF,yCtBmjFJ,2DACA,kCsBnjFM,QAAA,IACA,UAAA,WAAA,mBAAA,mBAKF,oDACE,QAAA,IACA,UAAA,WAAA,mBAAA,mBCtDN,aACE,SAAA,SACA,QAAA,KACA,UAAA,KACA,YAAA,QACA,MAAA,KAEA,2BvB2mFF,0BuBzmFI,SAAA,SACA,KAAA,EAAA,EAAA,KACA,MAAA,GACA,UAAA,EAIF,iCvBymFF,gCuBvmFI,QAAA,EAMF,kBACE,SAAA,SACA,QAAA,EAEA,wBACE,QAAA,EAWN,kBACE,QAAA,KACA,YAAA,OACA,QAAA,QAAA,OtBsPI,UAAA,KsBpPJ,YAAA,IACA,YAAA,IACA,MAAA,QACA,WAAA,OACA,YAAA,OACA,iBAAA,QACA,OAAA,IAAA,MAAA,QrBpCE,cAAA,OFuoFJ,qBuBzlFA,8BvBulFA,6BACA,kCuBplFE,QAAA,MAAA,KtBgOI,UAAA,QClRF,cAAA,MFgpFJ,qBuBzlFA,8BvBulFA,6BACA,kCuBplFE,QAAA,OAAA,MtBuNI,UAAA,QClRF,cAAA,MqBgEJ,6BvBulFA,6BuBrlFE,cAAA,KvB0lFF,uEuB7kFI,8FrB/DA,wBAAA,EACA,2BAAA,EFgpFJ,iEuB3kFI,2FrBtEA,wBAAA,EACA,2BAAA,EqBgFF,0IACE,YAAA,KrBpEA,uBAAA,EACA,0BAAA,EsBzBF,gBACE,QAAA,KACA,MAAA,KACA,WAAA,OvByQE,UAAA,OuBtQF,MAAA,QAGF,eACE,SAAA,SACA,IAAA,KACA,QAAA,EACA,QAAA,KACA,UAAA,KACA,QAAA,OAAA,MACA,WAAA,MvB4PE,UAAA,QuBzPF,MAAA,KACA,iBAAA,mBtB1BA,cAAA,OFmsFJ,0BACA,yBwBrqFI,sCxBmqFJ,qCwBjqFM,QAAA,MA9CF,uBAAA,mCAoDE,aAAA,QAGE,cAAA,qBACA,iBAAA,2OACA,kBAAA,UACA,oBAAA,MAAA,wBAAA,OACA,gBAAA,sBAAA,sBAGF,6BAAA,yCACE,aAAA,QACA,WAAA,EAAA,EAAA,EAAA,OAAA,oBAhEJ,2CAAA,+BAyEI,cAAA,qBACA,oBAAA,IAAA,wBAAA,MAAA,wBA1EJ,sBAAA,kCAiFE,aAAA,QAGE,kDAAA,gDAAA,8DAAA,4DAEE,cAAA,SACA,iBAAA,+NAAA,CAAA,2OACA,oBAAA,MAAA,OAAA,MAAA,CAAA,OAAA,MAAA,QACA,gBAAA,KAAA,IAAA,CAAA,sBAAA,sBAIJ,4BAAA,wCACE,aAAA,QACA,WAAA,EAAA,EAAA,EAAA,OAAA,oBA/FJ,2BAAA,uCAsGE,aAAA,QAEA,mCAAA,+CACE,iBAAA,QAGF,iCAAA,6CACE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAGF,6CAAA,yDACE,MAAA,QAKJ,qDACE,YAAA,KAvHF,oCxBwwFJ,mCwBxwFI,gDxBuwFJ,+CwBxoFQ,QAAA,EAIF,0CxB0oFN,yCwB1oFM,sDxByoFN,qDwBxoFQ,QAAA,EAjHN,kBACE,QAAA,KACA,MAAA,KACA,WAAA,OvByQE,UAAA,OuBtQF,MAAA,QAGF,iBACE,SAAA,SACA,IAAA,KACA,QAAA,EACA,QAAA,KACA,UAAA,KACA,QAAA,OAAA,MACA,WAAA,MvB4PE,UAAA,QuBzPF,MAAA,KACA,iBAAA,mBtB1BA,cAAA,OF4xFJ,8BACA,6BwB9vFI,0CxB4vFJ,yCwB1vFM,QAAA,MA9CF,yBAAA,qCAoDE,aAAA,QAGE,cAAA,qBACA,iBAAA,2TACA,kBAAA,UACA,oBAAA,MAAA,wBAAA,OACA,gBAAA,sBAAA,sBAGF,+BAAA,2CACE,aAAA,QACA,WAAA,EAAA,EAAA,EAAA,OAAA,oBAhEJ,6CAAA,iCAyEI,cAAA,qBACA,oBAAA,IAAA,wBAAA,MAAA,wBA1EJ,wBAAA,oCAiFE,aAAA,QAGE,oDAAA,kDAAA,gEAAA,8DAEE,cAAA,SACA,iBAAA,+NAAA,CAAA,2TACA,oBAAA,MAAA,OAAA,MAAA,CAAA,OAAA,MAAA,QACA,gBAAA,KAAA,IAAA,CAAA,sBAAA,sBAIJ,8BAAA,0CACE,aAAA,QACA,WAAA,EAAA,EAAA,EAAA,OAAA,oBA/FJ,6BAAA,yCAsGE,aAAA,QAEA,qCAAA,iDACE,iBAAA,QAGF,mCAAA,+CACE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAGF,+CAAA,2DACE,MAAA,QAKJ,uDACE,YAAA,KAvHF,sCxBi2FJ,qCwBj2FI,kDxBg2FJ,iDwB/tFQ,QAAA,EAEF,4CxBmuFN,2CwBnuFM,wDxBkuFN,uDwBjuFQ,QAAA,ECtIR,KACE,QAAA,aAEA,YAAA,IACA,YAAA,IACA,MAAA,QACA,WAAA,OACA,gBAAA,KAEA,eAAA,OACA,OAAA,QACA,oBAAA,KAAA,iBAAA,KAAA,YAAA,KACA,iBAAA,YACA,OAAA,IAAA,MAAA,YC8GA,QAAA,QAAA,OzBsKI,UAAA,KClRF,cAAA,OeHE,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAIA,uCQhBN,KRiBQ,WAAA,MQAN,WACE,MAAA,QAIF,sBAAA,WAEE,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAAA,qBAcF,cAAA,cAAA,uBAGE,eAAA,KACA,QAAA,IAYF,aCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,mBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,8BAAA,mBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAIJ,+BAAA,gCAAA,oBAAA,oBAAA,mCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,qCAAA,sCAAA,0BAAA,0BAAA,yCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,oBAKN,sBAAA,sBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,eCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,qBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,gCAAA,qBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAIJ,iCAAA,kCAAA,sBAAA,sBAAA,qCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,uCAAA,wCAAA,4BAAA,4BAAA,2CAKI,WAAA,EAAA,EAAA,EAAA,OAAA,qBAKN,wBAAA,wBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,aCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,mBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,8BAAA,mBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAIJ,+BAAA,gCAAA,oBAAA,oBAAA,mCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,qCAAA,sCAAA,0BAAA,0BAAA,yCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,oBAKN,sBAAA,sBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,UCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,gBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,2BAAA,gBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAIJ,4BAAA,6BAAA,iBAAA,iBAAA,gCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,kCAAA,mCAAA,uBAAA,uBAAA,sCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,oBAKN,mBAAA,mBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,aCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,mBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,8BAAA,mBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,mBAIJ,+BAAA,gCAAA,oBAAA,oBAAA,mCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,qCAAA,sCAAA,0BAAA,0BAAA,yCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,mBAKN,sBAAA,sBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,YCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,kBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,6BAAA,kBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,mBAIJ,8BAAA,+BAAA,mBAAA,mBAAA,kCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,oCAAA,qCAAA,yBAAA,yBAAA,wCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,mBAKN,qBAAA,qBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,WCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,iBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,4BAAA,iBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAIJ,6BAAA,8BAAA,kBAAA,kBAAA,iCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,mCAAA,oCAAA,wBAAA,wBAAA,uCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,qBAKN,oBAAA,oBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDZF,UCvCA,MAAA,KRhBA,iBAAA,QQkBA,aAAA,QAGA,gBACE,MAAA,KRtBF,iBAAA,QQwBE,aAAA,QAGF,2BAAA,gBAEE,MAAA,KR7BF,iBAAA,QQ+BE,aAAA,QAKE,WAAA,EAAA,EAAA,EAAA,OAAA,kBAIJ,4BAAA,6BAAA,iBAAA,iBAAA,gCAKE,MAAA,KACA,iBAAA,QAGA,aAAA,QAEA,kCAAA,mCAAA,uBAAA,uBAAA,sCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,kBAKN,mBAAA,mBAEE,MAAA,KACA,iBAAA,QAGA,aAAA,QDNF,qBCmBA,MAAA,QACA,aAAA,QAEA,2BACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,sCAAA,2BAEE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAGF,uCAAA,wCAAA,4BAAA,0CAAA,4BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,6CAAA,8CAAA,kCAAA,gDAAA,kCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,oBAKN,8BAAA,8BAEE,MAAA,QACA,iBAAA,YDvDF,uBCmBA,MAAA,QACA,aAAA,QAEA,6BACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,wCAAA,6BAEE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAGF,yCAAA,0CAAA,8BAAA,4CAAA,8BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,+CAAA,gDAAA,oCAAA,kDAAA,oCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,qBAKN,gCAAA,gCAEE,MAAA,QACA,iBAAA,YDvDF,qBCmBA,MAAA,QACA,aAAA,QAEA,2BACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,sCAAA,2BAEE,WAAA,EAAA,EAAA,EAAA,OAAA,mBAGF,uCAAA,wCAAA,4BAAA,0CAAA,4BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,6CAAA,8CAAA,kCAAA,gDAAA,kCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,mBAKN,8BAAA,8BAEE,MAAA,QACA,iBAAA,YDvDF,kBCmBA,MAAA,QACA,aAAA,QAEA,wBACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,mCAAA,wBAEE,WAAA,EAAA,EAAA,EAAA,OAAA,oBAGF,oCAAA,qCAAA,yBAAA,uCAAA,yBAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,0CAAA,2CAAA,+BAAA,6CAAA,+BAKI,WAAA,EAAA,EAAA,EAAA,OAAA,oBAKN,2BAAA,2BAEE,MAAA,QACA,iBAAA,YDvDF,qBCmBA,MAAA,QACA,aAAA,QAEA,2BACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,sCAAA,2BAEE,WAAA,EAAA,EAAA,EAAA,OAAA,mBAGF,uCAAA,wCAAA,4BAAA,0CAAA,4BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,6CAAA,8CAAA,kCAAA,gDAAA,kCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,mBAKN,8BAAA,8BAEE,MAAA,QACA,iBAAA,YDvDF,oBCmBA,MAAA,QACA,aAAA,QAEA,0BACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,qCAAA,0BAEE,WAAA,EAAA,EAAA,EAAA,OAAA,mBAGF,sCAAA,uCAAA,2BAAA,yCAAA,2BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,4CAAA,6CAAA,iCAAA,+CAAA,iCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,mBAKN,6BAAA,6BAEE,MAAA,QACA,iBAAA,YDvDF,mBCmBA,MAAA,QACA,aAAA,QAEA,yBACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,oCAAA,yBAEE,WAAA,EAAA,EAAA,EAAA,OAAA,qBAGF,qCAAA,sCAAA,0BAAA,wCAAA,0BAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,2CAAA,4CAAA,gCAAA,8CAAA,gCAKI,WAAA,EAAA,EAAA,EAAA,OAAA,qBAKN,4BAAA,4BAEE,MAAA,QACA,iBAAA,YDvDF,kBCmBA,MAAA,QACA,aAAA,QAEA,wBACE,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,mCAAA,wBAEE,WAAA,EAAA,EAAA,EAAA,OAAA,kBAGF,oCAAA,qCAAA,yBAAA,uCAAA,yBAKE,MAAA,KACA,iBAAA,QACA,aAAA,QAEA,0CAAA,2CAAA,+BAAA,6CAAA,+BAKI,WAAA,EAAA,EAAA,EAAA,OAAA,kBAKN,2BAAA,2BAEE,MAAA,QACA,iBAAA,YD3CJ,UACE,YAAA,IACA,MAAA,QACA,gBAAA,UAEA,gBACE,MAAA,QAQF,mBAAA,mBAEE,MAAA,QAWJ,mBAAA,QCuBE,QAAA,MAAA,KzBsKI,UAAA,QClRF,cAAA,MuByFJ,mBAAA,QCmBE,QAAA,OAAA,MzBsKI,UAAA,QClRF,cAAA,MyBnBJ,MVgBM,WAAA,QAAA,KAAA,OAIA,uCUpBN,MVqBQ,WAAA,MUlBN,iBACE,QAAA,EAMF,qBACE,QAAA,KAIJ,YACE,OAAA,EACA,SAAA,OVDI,WAAA,OAAA,KAAA,KAIA,uCULN,YVMQ,WAAA,MUDN,gCACE,MAAA,EACA,OAAA,KVNE,WAAA,MAAA,KAAA,KAIA,uCUAJ,gCVCM,WAAA,MjBs3GR,UADA,SAEA,W4B34GA,QAIE,SAAA,SAGF,iBACE,YAAA,OCqBE,wBACE,QAAA,aACA,YAAA,OACA,eAAA,OACA,QAAA,GAhCJ,WAAA,KAAA,MACA,aAAA,KAAA,MAAA,YACA,cAAA,EACA,YAAA,KAAA,MAAA,YAqDE,8BACE,YAAA,ED3CN,eACE,SAAA,SACA,QAAA,KACA,QAAA,KACA,UAAA,MACA,QAAA,MAAA,EACA,OAAA,E3B+QI,UAAA,K2B7QJ,MAAA,QACA,WAAA,KACA,WAAA,KACA,iBAAA,KACA,gBAAA,YACA,OAAA,IAAA,MAAA,gB1BVE,cAAA,O0BcF,+BACE,IAAA,KACA,KAAA,EACA,WAAA,QAYA,qBACE,cAAA,MAEA,qCACE,MAAA,KACA,KAAA,EAIJ,mBACE,cAAA,IAEA,mCACE,MAAA,EACA,KAAA,KnBCJ,yBmBfA,wBACE,cAAA,MAEA,wCACE,MAAA,KACA,KAAA,EAIJ,sBACE,cAAA,IAEA,sCACE,MAAA,EACA,KAAA,MnBCJ,yBmBfA,wBACE,cAAA,MAEA,wCACE,MAAA,KACA,KAAA,EAIJ,sBACE,cAAA,IAEA,sCACE,MAAA,EACA,KAAA,MnBCJ,yBmBfA,wBACE,cAAA,MAEA,wCACE,MAAA,KACA,KAAA,EAIJ,sBACE,cAAA,IAEA,sCACE,MAAA,EACA,KAAA,MnBCJ,0BmBfA,wBACE,cAAA,MAEA,wCACE,MAAA,KACA,KAAA,EAIJ,sBACE,cAAA,IAEA,sCACE,MAAA,EACA,KAAA,MnBCJ,0BmBfA,yBACE,cAAA,MAEA,yCACE,MAAA,KACA,KAAA,EAIJ,uBACE,cAAA,IAEA,uCACE,MAAA,EACA,KAAA,MAUN,uCACE,IAAA,KACA,OAAA,KACA,WAAA,EACA,cAAA,QC9CA,gCACE,QAAA,aACA,YAAA,OACA,eAAA,OACA,QAAA,GAzBJ,WAAA,EACA,aAAA,KAAA,MAAA,YACA,cAAA,KAAA,MACA,YAAA,KAAA,MAAA,YA8CE,sCACE,YAAA,ED0BJ,wCACE,IAAA,EACA,MAAA,KACA,KAAA,KACA,WAAA,EACA,YAAA,QC5DA,iCACE,QAAA,aACA,YAAA,OACA,eAAA,OACA,QAAA,GAlBJ,WAAA,KAAA,MAAA,YACA,aAAA,EACA,cAAA,KAAA,MAAA,YACA,YAAA,KAAA,MAuCE,uCACE,YAAA,EDoCF,iCACE,eAAA,EAMJ,0CACE,IAAA,EACA,MAAA,KACA,KAAA,KACA,WAAA,EACA,aAAA,QC7EA,mCACE,QAAA,aACA,YAAA,OACA,eAAA,OACA,QAAA,GAWA,mCACE,QAAA,KAGF,oCACE,QAAA,aACA,aAAA,OACA,eAAA,OACA,QAAA,GA9BN,WAAA,KAAA,MAAA,YACA,aAAA,KAAA,MACA,cAAA,KAAA,MAAA,YAiCE,yCACE,YAAA,EDqDF,oCACE,eAAA,EAON,kBACE,OAAA,EACA,OAAA,MAAA,EACA,SAAA,OACA,WAAA,IAAA,MAAA,gBAMF,eACE,QAAA,MACA,MAAA,KACA,QAAA,OAAA,KACA,MAAA,KACA,YAAA,IACA,MAAA,QACA,WAAA,QACA,gBAAA,KACA,YAAA,OACA,iBAAA,YACA,OAAA,EAcA,qBAAA,qBAEE,MAAA,QVzJF,iBAAA,QU8JA,sBAAA,sBAEE,MAAA,KACA,gBAAA,KVjKF,iBAAA,QUqKA,wBAAA,wBAEE,MAAA,QACA,eAAA,KACA,iBAAA,YAMJ,oBACE,QAAA,MAIF,iBACE,QAAA,MACA,QAAA,MAAA,KACA,cAAA,E3B0GI,UAAA,Q2BxGJ,MAAA,QACA,YAAA,OAIF,oBACE,QAAA,MACA,QAAA,OAAA,KACA,MAAA,QAIF,oBACE,MAAA,QACA,iBAAA,QACA,aAAA,gBAGA,mCACE,MAAA,QAEA,yCAAA,yCAEE,MAAA,KVhNJ,iBAAA,sBUoNE,0CAAA,0CAEE,MAAA,KVtNJ,iBAAA,QU0NE,4CAAA,4CAEE,MAAA,QAIJ,sCACE,aAAA,gBAGF,wCACE,MAAA,QAGF,qCACE,MAAA,QE5OJ,W9B2rHA,oB8BzrHE,SAAA,SACA,QAAA,YACA,eAAA,O9B6rHF,yB8B3rHE,gBACE,SAAA,SACA,KAAA,EAAA,EAAA,K9BmsHJ,4CACA,0CAIA,gCADA,gCADA,+BADA,+B8BhsHE,mC9ByrHF,iCAIA,uBADA,uBADA,sBADA,sB8BprHI,QAAA,EAKJ,aACE,QAAA,KACA,UAAA,KACA,gBAAA,WAEA,0BACE,MAAA,K9BgsHJ,wC8B1rHE,kCAEE,YAAA,K9B4rHJ,4C8BxrHE,uD5BRE,wBAAA,EACA,2BAAA,EFqsHJ,6C8BrrHE,+B9BorHF,iCEvrHI,uBAAA,EACA,0BAAA,E4BqBJ,uBACE,cAAA,SACA,aAAA,SAEA,8BAAA,uCAAA,sCAGE,YAAA,EAGF,0CACE,aAAA,EAIJ,0CAAA,+BACE,cAAA,QACA,aAAA,QAGF,0CAAA,+BACE,cAAA,OACA,aAAA,OAoBF,oBACE,eAAA,OACA,YAAA,WACA,gBAAA,OAEA,yB9BmpHF,+B8BjpHI,MAAA,K9BqpHJ,iD8BlpHE,2CAEE,WAAA,K9BopHJ,qD8BhpHE,gE5BvFE,2BAAA,EACA,0BAAA,EF2uHJ,sD8BhpHE,8B5B1GE,uBAAA,EACA,wBAAA,E6BxBJ,KACE,QAAA,KACA,UAAA,KACA,aAAA,EACA,cAAA,EACA,WAAA,KAGF,UACE,QAAA,MACA,QAAA,MAAA,KAGA,MAAA,QACA,gBAAA,KdHI,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,YAIA,uCcPN,UdQQ,WAAA,McCN,gBAAA,gBAEE,MAAA,QAKF,mBACE,MAAA,QACA,eAAA,KACA,OAAA,QAQJ,UACE,cAAA,IAAA,MAAA,QAEA,oBACE,cAAA,KACA,WAAA,IACA,OAAA,IAAA,MAAA,Y7BlBA,uBAAA,OACA,wBAAA,O6BoBA,0BAAA,0BAEE,aAAA,QAAA,QAAA,QAEA,UAAA,QAGF,6BACE,MAAA,QACA,iBAAA,YACA,aAAA,Y/BixHN,mC+B7wHE,2BAEE,MAAA,QACA,iBAAA,KACA,aAAA,QAAA,QAAA,KAGF,yBAEE,WAAA,K7B5CA,uBAAA,EACA,wBAAA,E6BuDF,qBACE,WAAA,IACA,OAAA,E7BnEA,cAAA,O6BuEF,4B/BmwHF,2B+BjwHI,MAAA,KbxFF,iBAAA,QlB+1HF,oB+B5vHE,oBAEE,KAAA,EAAA,EAAA,KACA,WAAA,O/B+vHJ,yB+B1vHE,yBAEE,WAAA,EACA,UAAA,EACA,WAAA,OAMF,8B/BuvHF,mC+BtvHI,MAAA,KAUF,uBACE,QAAA,KAEF,qBACE,QAAA,MCxHJ,QACE,SAAA,SACA,QAAA,KACA,UAAA,KACA,YAAA,OACA,gBAAA,cACA,YAAA,MAEA,eAAA,MAOA,mBhCs2HF,yBAGA,sBADA,sBADA,sBAGA,sBACA,uBgC12HI,QAAA,KACA,UAAA,QACA,YAAA,OACA,gBAAA,cAoBJ,cACE,YAAA,SACA,eAAA,SACA,aAAA,K/B2OI,UAAA,Q+BzOJ,gBAAA,KACA,YAAA,OAaF,YACE,QAAA,KACA,eAAA,OACA,aAAA,EACA,cAAA,EACA,WAAA,KAEA,sBACE,cAAA,EACA,aAAA,EAGF,2BACE,SAAA,OASJ,aACE,YAAA,MACA,eAAA,MAYF,iBACE,WAAA,KACA,UAAA,EAGA,YAAA,OAIF,gBACE,QAAA,OAAA,O/B6KI,UAAA,Q+B3KJ,YAAA,EACA,iBAAA,YACA,OAAA,IAAA,MAAA,Y9BzGE,cAAA,OeHE,WAAA,WAAA,KAAA,YAIA,uCemGN,gBflGQ,WAAA,Me2GN,sBACE,gBAAA,KAGF,sBACE,gBAAA,KACA,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAMJ,qBACE,QAAA,aACA,MAAA,MACA,OAAA,MACA,eAAA,OACA,kBAAA,UACA,oBAAA,OACA,gBAAA,KAGF,mBACE,WAAA,6BACA,WAAA,KvB1FE,yBuBsGA,kBAEI,UAAA,OACA,gBAAA,WAEA,8BACE,eAAA,IAEA,6CACE,SAAA,SAGF,wCACE,cAAA,MACA,aAAA,MAIJ,qCACE,SAAA,QAGF,mCACE,QAAA,eACA,WAAA,KAGF,kCACE,QAAA,KAGF,oCACE,QAAA,KAGF,6BACE,SAAA,QACA,OAAA,EACA,QAAA,KACA,UAAA,EACA,WAAA,kBACA,iBAAA,YACA,aAAA,EACA,YAAA,EfhMJ,WAAA,KekMI,UAAA,KhC+yHV,oCgC7yHQ,iCAEE,OAAA,KACA,WAAA,EACA,cAAA,EAGF,kCACE,QAAA,KACA,UAAA,EACA,QAAA,EACA,WAAA,SvBhKN,yBuBsGA,kBAEI,UAAA,OACA,gBAAA,WAEA,8BACE,eAAA,IAEA,6CACE,SAAA,SAGF,wCACE,cAAA,MACA,aAAA,MAIJ,qCACE,SAAA,QAGF,mCACE,QAAA,eACA,WAAA,KAGF,kCACE,QAAA,KAGF,oCACE,QAAA,KAGF,6BACE,SAAA,QACA,OAAA,EACA,QAAA,KACA,UAAA,EACA,WAAA,kBACA,iBAAA,YACA,aAAA,EACA,YAAA,EfhMJ,WAAA,KekMI,UAAA,KhCo2HV,oCgCl2HQ,iCAEE,OAAA,KACA,WAAA,EACA,cAAA,EAGF,kCACE,QAAA,KACA,UAAA,EACA,QAAA,EACA,WAAA,SvBhKN,yBuBsGA,kBAEI,UAAA,OACA,gBAAA,WAEA,8BACE,eAAA,IAEA,6CACE,SAAA,SAGF,wCACE,cAAA,MACA,aAAA,MAIJ,qCACE,SAAA,QAGF,mCACE,QAAA,eACA,WAAA,KAGF,kCACE,QAAA,KAGF,oCACE,QAAA,KAGF,6BACE,SAAA,QACA,OAAA,EACA,QAAA,KACA,UAAA,EACA,WAAA,kBACA,iBAAA,YACA,aAAA,EACA,YAAA,EfhMJ,WAAA,KekMI,UAAA,KhCy5HV,oCgCv5HQ,iCAEE,OAAA,KACA,WAAA,EACA,cAAA,EAGF,kCACE,QAAA,KACA,UAAA,EACA,QAAA,EACA,WAAA,SvBhKN,0BuBsGA,kBAEI,UAAA,OACA,gBAAA,WAEA,8BACE,eAAA,IAEA,6CACE,SAAA,SAGF,wCACE,cAAA,MACA,aAAA,MAIJ,qCACE,SAAA,QAGF,mCACE,QAAA,eACA,WAAA,KAGF,kCACE,QAAA,KAGF,oCACE,QAAA,KAGF,6BACE,SAAA,QACA,OAAA,EACA,QAAA,KACA,UAAA,EACA,WAAA,kBACA,iBAAA,YACA,aAAA,EACA,YAAA,EfhMJ,WAAA,KekMI,UAAA,KhC88HV,oCgC58HQ,iCAEE,OAAA,KACA,WAAA,EACA,cAAA,EAGF,kCACE,QAAA,KACA,UAAA,EACA,QAAA,EACA,WAAA,SvBhKN,0BuBsGA,mBAEI,UAAA,OACA,gBAAA,WAEA,+BACE,eAAA,IAEA,8CACE,SAAA,SAGF,yCACE,cAAA,MACA,aAAA,MAIJ,sCACE,SAAA,QAGF,oCACE,QAAA,eACA,WAAA,KAGF,mCACE,QAAA,KAGF,qCACE,QAAA,KAGF,8BACE,SAAA,QACA,OAAA,EACA,QAAA,KACA,UAAA,EACA,WAAA,kBACA,iBAAA,YACA,aAAA,EACA,YAAA,EfhMJ,WAAA,KekMI,UAAA,KhCmgIV,qCgCjgIQ,kCAEE,OAAA,KACA,WAAA,EACA,cAAA,EAGF,mCACE,QAAA,KACA,UAAA,EACA,QAAA,EACA,WAAA,SA1DN,eAEI,UAAA,OACA,gBAAA,WAEA,2BACE,eAAA,IAEA,0CACE,SAAA,SAGF,qCACE,cAAA,MACA,aAAA,MAIJ,kCACE,SAAA,QAGF,gCACE,QAAA,eACA,WAAA,KAGF,+BACE,QAAA,KAGF,iCACE,QAAA,KAGF,0BACE,SAAA,QACA,OAAA,EACA,QAAA,KACA,UAAA,EACA,WAAA,kBACA,iBAAA,YACA,aAAA,EACA,YAAA,EfhMJ,WAAA,KekMI,UAAA,KhCujIV,iCgCrjIQ,8BAEE,OAAA,KACA,WAAA,EACA,cAAA,EAGF,+BACE,QAAA,KACA,UAAA,EACA,QAAA,EACA,WAAA,QAcR,4BACE,MAAA,eAEA,kCAAA,kCAEE,MAAA,eAKF,oCACE,MAAA,gBAEA,0CAAA,0CAEE,MAAA,eAGF,6CACE,MAAA,ehCqiIR,2CgCjiII,0CAEE,MAAA,eAIJ,8BACE,MAAA,gBACA,aAAA,eAGF,mCACE,iBAAA,4OAGF,2BACE,MAAA,gBAEA,6BhC8hIJ,mCADA,mCgC1hIM,MAAA,eAOJ,2BACE,MAAA,KAEA,iCAAA,iCAEE,MAAA,KAKF,mCACE,MAAA,sBAEA,yCAAA,yCAEE,MAAA,sBAGF,4CACE,MAAA,sBhCqhIR,0CgCjhII,yCAEE,MAAA,KAIJ,6BACE,MAAA,sBACA,aAAA,qBAGF,kCACE,iBAAA,kPAGF,0BACE,MAAA,sBACA,4BhC+gIJ,kCADA,kCgC3gIM,MAAA,KCvUN,MACE,SAAA,SACA,QAAA,KACA,eAAA,OACA,UAAA,EAEA,UAAA,WACA,iBAAA,KACA,gBAAA,WACA,OAAA,IAAA,MAAA,iB/BME,cAAA,O+BFF,SACE,aAAA,EACA,YAAA,EAGF,kBACE,WAAA,QACA,cAAA,QAEA,8BACE,iBAAA,E/BCF,uBAAA,mBACA,wBAAA,mB+BEA,6BACE,oBAAA,E/BUF,2BAAA,mBACA,0BAAA,mB+BJF,+BjCk1IF,+BiCh1II,WAAA,EAIJ,WAGE,KAAA,EAAA,EAAA,KACA,QAAA,KAAA,KAIF,YACE,cAAA,MAGF,eACE,WAAA,QACA,cAAA,EAGF,sBACE,cAAA,EAQA,sBACE,YAAA,KAQJ,aACE,QAAA,MAAA,KACA,cAAA,EAEA,iBAAA,gBACA,cAAA,IAAA,MAAA,iBAEA,yB/BpEE,cAAA,mBAAA,mBAAA,EAAA,E+ByEJ,aACE,QAAA,MAAA,KAEA,iBAAA,gBACA,WAAA,IAAA,MAAA,iBAEA,wB/B/EE,cAAA,EAAA,EAAA,mBAAA,mB+ByFJ,kBACE,aAAA,OACA,cAAA,OACA,YAAA,OACA,cAAA,EAUF,mBACE,aAAA,OACA,YAAA,OAIF,kBACE,SAAA,SACA,IAAA,EACA,MAAA,EACA,OAAA,EACA,KAAA,EACA,QAAA,K/BnHE,cAAA,mB+BuHJ,UjCozIA,iBADA,ciChzIE,MAAA,KAGF,UjCmzIA,cEv6II,uBAAA,mBACA,wBAAA,mB+BwHJ,UjCozIA,iBE/5II,2BAAA,mBACA,0BAAA,mB+BuHF,kBACE,cAAA,OxBpGA,yBwBgGJ,YAQI,QAAA,KACA,UAAA,IAAA,KAGA,kBAEE,KAAA,EAAA,EAAA,GACA,cAAA,EAEA,wBACE,YAAA,EACA,YAAA,EAKA,mC/BpJJ,wBAAA,EACA,2BAAA,EF+7IJ,gDiCzyIU,iDAGE,wBAAA,EjC0yIZ,gDiCxyIU,oDAGE,2BAAA,EAIJ,oC/BrJJ,uBAAA,EACA,0BAAA,EF67IJ,iDiCtyIU,kDAGE,uBAAA,EjCuyIZ,iDiCryIU,qDAGE,0BAAA,GC7MZ,kBACE,SAAA,SACA,QAAA,KACA,YAAA,OACA,MAAA,KACA,QAAA,KAAA,QjC4RI,UAAA,KiC1RJ,MAAA,QACA,WAAA,KACA,iBAAA,KACA,OAAA,EhCKE,cAAA,EgCHF,gBAAA,KjBAI,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,WAAA,CAAA,cAAA,KAAA,KAIA,uCiBhBN,kBjBiBQ,WAAA,MiBFN,kCACE,MAAA,QACA,iBAAA,QACA,WAAA,MAAA,EAAA,KAAA,EAAA,iBAEA,yCACE,iBAAA,gRACA,UAAA,gBAKJ,yBACE,YAAA,EACA,MAAA,QACA,OAAA,QACA,YAAA,KACA,QAAA,GACA,iBAAA,gRACA,kBAAA,UACA,gBAAA,QjBvBE,WAAA,UAAA,IAAA,YAIA,uCiBWJ,yBjBVM,WAAA,MiBsBN,wBACE,QAAA,EAGF,wBACE,QAAA,EACA,aAAA,QACA,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAAA,qBAIJ,kBACE,cAAA,EAGF,gBACE,iBAAA,KACA,OAAA,IAAA,MAAA,iBAEA,8BhCnCE,uBAAA,OACA,wBAAA,OgCqCA,gDhCtCA,uBAAA,mBACA,wBAAA,mBgC0CF,oCACE,WAAA,EAIF,6BhClCE,2BAAA,OACA,0BAAA,OgCqCE,yDhCtCF,2BAAA,mBACA,0BAAA,mBgC0CA,iDhC3CA,2BAAA,OACA,0BAAA,OgCgDJ,gBACE,QAAA,KAAA,QASA,qCACE,aAAA,EAGF,iCACE,aAAA,EACA,YAAA,EhCxFA,cAAA,EgC2FA,6CAAgB,WAAA,EAChB,4CAAe,cAAA,EAEf,mDhC9FA,cAAA,EiCnBJ,YACE,QAAA,KACA,UAAA,KACA,QAAA,EAAA,EACA,cAAA,KAEA,WAAA,KAOA,kCACE,aAAA,MAEA,0CACE,MAAA,KACA,cAAA,MACA,MAAA,QACA,QAAA,kCAIJ,wBACE,MAAA,QCzBJ,YACE,QAAA,KhCGA,aAAA,EACA,WAAA,KgCAF,WACE,SAAA,SACA,QAAA,MACA,MAAA,QACA,gBAAA,KACA,iBAAA,KACA,OAAA,IAAA,MAAA,QnBKI,WAAA,MAAA,KAAA,WAAA,CAAA,iBAAA,KAAA,WAAA,CAAA,aAAA,KAAA,WAAA,CAAA,WAAA,KAAA,YAIA,uCmBfN,WnBgBQ,WAAA,MmBPN,iBACE,QAAA,EACA,MAAA,QAEA,iBAAA,QACA,aAAA,QAGF,iBACE,QAAA,EACA,MAAA,QACA,iBAAA,QACA,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAAA,qBAKF,wCACE,YAAA,KAGF,6BACE,QAAA,EACA,MAAA,KlBlCF,iBAAA,QkBoCE,aAAA,QAGF,+BACE,MAAA,QACA,eAAA,KACA,iBAAA,KACA,aAAA,QC3CF,WACE,QAAA,QAAA,OAOI,kCnCqCJ,uBAAA,OACA,0BAAA,OmChCI,iCnCiBJ,wBAAA,OACA,2BAAA,OmChCF,0BACE,QAAA,OAAA,OpCgSE,UAAA,QoCzRE,iDnCqCJ,uBAAA,MACA,0BAAA,MmChCI,gDnCiBJ,wBAAA,MACA,2BAAA,MmChCF,0BACE,QAAA,OAAA,MpCgSE,UAAA,QoCzRE,iDnCqCJ,uBAAA,MACA,0BAAA,MmChCI,gDnCiBJ,wBAAA,MACA,2BAAA,MoC/BJ,OACE,QAAA,aACA,QAAA,MAAA,MrC8RI,UAAA,MqC5RJ,YAAA,IACA,YAAA,EACA,MAAA,KACA,WAAA,OACA,YAAA,OACA,eAAA,SpCKE,cAAA,OoCAF,aACE,QAAA,KAKJ,YACE,SAAA,SACA,IAAA,KCvBF,OACE,SAAA,SACA,QAAA,KAAA,KACA,cAAA,KACA,OAAA,IAAA,MAAA,YrCWE,cAAA,OqCNJ,eAEE,MAAA,QAIF,YACE,YAAA,IAQF,mBACE,cAAA,KAGA,8BACE,SAAA,SACA,IAAA,EACA,MAAA,EACA,QAAA,EACA,QAAA,QAAA,KAeF,eClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,2BACE,MAAA,QD6CF,iBClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,6BACE,MAAA,QD6CF,eClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,2BACE,MAAA,QD6CF,YClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,wBACE,MAAA,QD6CF,eClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,2BACE,MAAA,QD6CF,cClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,0BACE,MAAA,QD6CF,aClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,yBACE,MAAA,QD6CF,YClDA,MAAA,QtBEA,iBAAA,QsBAA,aAAA,QAEA,wBACE,MAAA,QCHF,wCACE,GAAK,sBAAA,MADP,gCACE,GAAK,sBAAA,MAKT,UACE,QAAA,KACA,OAAA,KACA,SAAA,OxCwRI,UAAA,OwCtRJ,iBAAA,QvCIE,cAAA,OuCCJ,cACE,QAAA,KACA,eAAA,OACA,gBAAA,OACA,SAAA,OACA,MAAA,KACA,WAAA,OACA,YAAA,OACA,iBAAA,QxBZI,WAAA,MAAA,IAAA,KAIA,uCwBAN,cxBCQ,WAAA,MwBWR,sBvBYE,iBAAA,iKuBVA,gBAAA,KAAA,KAIA,uBACE,kBAAA,GAAA,OAAA,SAAA,qBAAA,UAAA,GAAA,OAAA,SAAA,qBAGE,uCAJJ,uBAKM,kBAAA,KAAA,UAAA,MCvCR,YACE,QAAA,KACA,eAAA,OAGA,aAAA,EACA,cAAA,ExCSE,cAAA,OwCLJ,qBACE,gBAAA,KACA,cAAA,QAEA,gCAEE,QAAA,uBAAA,KACA,kBAAA,QAUJ,wBACE,MAAA,KACA,MAAA,QACA,WAAA,QAGA,8BAAA,8BAEE,QAAA,EACA,MAAA,QACA,gBAAA,KACA,iBAAA,QAGF,+BACE,MAAA,QACA,iBAAA,QASJ,iBACE,SAAA,SACA,QAAA,MACA,QAAA,MAAA,KACA,MAAA,QACA,gBAAA,KACA,iBAAA,KACA,OAAA,IAAA,MAAA,iBAEA,6BxCrCE,uBAAA,QACA,wBAAA,QwCwCF,4BxC3BE,2BAAA,QACA,0BAAA,QwC8BF,0BAAA,0BAEE,MAAA,QACA,eAAA,KACA,iBAAA,KAIF,wBACE,QAAA,EACA,MAAA,KACA,iBAAA,QACA,aAAA,QAGF,kCACE,iBAAA,EAEA,yCACE,WAAA,KACA,iBAAA,IAcF,uBACE,eAAA,IAGE,oDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,mDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,+CACE,WAAA,EAGF,yDACE,iBAAA,IACA,kBAAA,EAEA,gEACE,YAAA,KACA,kBAAA,IjCpER,yBiC4CA,0BACE,eAAA,IAGE,uDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,sDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,kDACE,WAAA,EAGF,4DACE,iBAAA,IACA,kBAAA,EAEA,mEACE,YAAA,KACA,kBAAA,KjCpER,yBiC4CA,0BACE,eAAA,IAGE,uDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,sDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,kDACE,WAAA,EAGF,4DACE,iBAAA,IACA,kBAAA,EAEA,mEACE,YAAA,KACA,kBAAA,KjCpER,yBiC4CA,0BACE,eAAA,IAGE,uDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,sDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,kDACE,WAAA,EAGF,4DACE,iBAAA,IACA,kBAAA,EAEA,mEACE,YAAA,KACA,kBAAA,KjCpER,0BiC4CA,0BACE,eAAA,IAGE,uDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,sDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,kDACE,WAAA,EAGF,4DACE,iBAAA,IACA,kBAAA,EAEA,mEACE,YAAA,KACA,kBAAA,KjCpER,0BiC4CA,2BACE,eAAA,IAGE,wDxCrCJ,0BAAA,OAZA,wBAAA,EwCsDI,uDxCtDJ,wBAAA,OAYA,0BAAA,EwC+CI,mDACE,WAAA,EAGF,6DACE,iBAAA,IACA,kBAAA,EAEA,oEACE,YAAA,KACA,kBAAA,KAcZ,kBxC9HI,cAAA,EwCiIF,mCACE,aAAA,EAAA,EAAA,IAEA,8CACE,oBAAA,ECpJJ,yBACE,MAAA,QACA,iBAAA,QAGE,sDAAA,sDAEE,MAAA,QACA,iBAAA,QAGF,uDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,2BACE,MAAA,QACA,iBAAA,QAGE,wDAAA,wDAEE,MAAA,QACA,iBAAA,QAGF,yDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,yBACE,MAAA,QACA,iBAAA,QAGE,sDAAA,sDAEE,MAAA,QACA,iBAAA,QAGF,uDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,sBACE,MAAA,QACA,iBAAA,QAGE,mDAAA,mDAEE,MAAA,QACA,iBAAA,QAGF,oDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,yBACE,MAAA,QACA,iBAAA,QAGE,sDAAA,sDAEE,MAAA,QACA,iBAAA,QAGF,uDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,wBACE,MAAA,QACA,iBAAA,QAGE,qDAAA,qDAEE,MAAA,QACA,iBAAA,QAGF,sDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,uBACE,MAAA,QACA,iBAAA,QAGE,oDAAA,oDAEE,MAAA,QACA,iBAAA,QAGF,qDACE,MAAA,KACA,iBAAA,QACA,aAAA,QAdN,sBACE,MAAA,QACA,iBAAA,QAGE,mDAAA,mDAEE,MAAA,QACA,iBAAA,QAGF,oDACE,MAAA,KACA,iBAAA,QACA,aAAA,QCbR,WACE,WAAA,YACA,MAAA,IACA,OAAA,IACA,QAAA,MAAA,MACA,MAAA,KACA,WAAA,YAAA,0TAAA,MAAA,CAAA,IAAA,KAAA,UACA,OAAA,E1COE,cAAA,O0CLF,QAAA,GAGA,iBACE,MAAA,KACA,gBAAA,KACA,QAAA,IAGF,iBACE,QAAA,EACA,WAAA,EAAA,EAAA,EAAA,OAAA,qBACA,QAAA,EAGF,oBAAA,oBAEE,eAAA,KACA,oBAAA,KAAA,iBAAA,KAAA,YAAA,KACA,QAAA,IAIJ,iBACE,OAAA,UAAA,gBAAA,iBCtCF,OACE,MAAA,MACA,UAAA,K5CmSI,UAAA,Q4ChSJ,eAAA,KACA,iBAAA,sBACA,gBAAA,YACA,OAAA,IAAA,MAAA,eACA,WAAA,EAAA,MAAA,KAAA,gB3CUE,cAAA,O2CPF,eACE,QAAA,EAGF,kBACE,QAAA,KAIJ,iBACE,MAAA,oBAAA,MAAA,iBAAA,MAAA,YACA,UAAA,KACA,eAAA,KAEA,mCACE,cAAA,OAIJ,cACE,QAAA,KACA,YAAA,OACA,QAAA,MAAA,OACA,MAAA,QACA,iBAAA,sBACA,gBAAA,YACA,cAAA,IAAA,MAAA,gB3CVE,uBAAA,mBACA,wBAAA,mB2CYF,yBACE,aAAA,SACA,YAAA,OAIJ,YACE,QAAA,OACA,UAAA,WC1CF,OACE,SAAA,MACA,IAAA,EACA,KAAA,EACA,QAAA,KACA,QAAA,KACA,MAAA,KACA,OAAA,KACA,WAAA,OACA,WAAA,KAGA,QAAA,EAOF,cACE,SAAA,SACA,MAAA,KACA,OAAA,MAEA,eAAA,KAGA,0B7BlBI,WAAA,UAAA,IAAA,S6BoBF,UAAA,mB7BhBE,uC6BcJ,0B7BbM,WAAA,M6BiBN,0BACE,UAAA,KAIF,kCACE,UAAA,YAIJ,yBACE,OAAA,kBAEA,wCACE,WAAA,KACA,SAAA,OAGF,qCACE,WAAA,KAIJ,uBACE,QAAA,KACA,YAAA,OACA,WAAA,kBAIF,eACE,SAAA,SACA,QAAA,KACA,eAAA,OACA,MAAA,KAGA,eAAA,KACA,iBAAA,KACA,gBAAA,YACA,OAAA,IAAA,MAAA,e5C3DE,cAAA,M4C+DF,QAAA,EAIF,gBCpFE,SAAA,MACA,IAAA,EACA,KAAA,EACA,QAAA,KACA,MAAA,MACA,OAAA,MACA,iBAAA,KAGA,qBAAS,QAAA,EACT,qBAAS,QAAA,GDgFX,cACE,QAAA,KACA,YAAA,EACA,YAAA,OACA,gBAAA,cACA,QAAA,KAAA,KACA,cAAA,IAAA,MAAA,Q5CtEE,uBAAA,kBACA,wBAAA,kB4CwEF,yBACE,QAAA,MAAA,MACA,OAAA,OAAA,OAAA,OAAA,KAKJ,aACE,cAAA,EACA,YAAA,IAKF,YACE,SAAA,SAGA,KAAA,EAAA,EAAA,KACA,QAAA,KAIF,cACE,QAAA,KACA,UAAA,KACA,YAAA,EACA,YAAA,OACA,gBAAA,SACA,QAAA,OACA,WAAA,IAAA,MAAA,Q5CzFE,2BAAA,kBACA,0BAAA,kB4C8FF,gBACE,OAAA,OrC3EA,yBqCkFF,cACE,UAAA,MACA,OAAA,QAAA,KAGF,yBACE,OAAA,oBAGF,uBACE,WAAA,oBAOF,UAAY,UAAA,OrCnGV,yBqCuGF,U9CywKF,U8CvwKI,UAAA,OrCzGA,0BqC8GF,UAAY,UAAA,QASV,kBACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,iCACE,OAAA,KACA,OAAA,E5C3KJ,cAAA,E4C+KE,gC5C/KF,cAAA,E4CmLE,8BACE,WAAA,KAGF,gC5CvLF,cAAA,EOyDA,4BqC0GA,0BACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,yCACE,OAAA,KACA,OAAA,E5C3KJ,cAAA,E4C+KE,wC5C/KF,cAAA,E4CmLE,sCACE,WAAA,KAGF,wC5CvLF,cAAA,GOyDA,4BqC0GA,0BACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,yCACE,OAAA,KACA,OAAA,E5C3KJ,cAAA,E4C+KE,wC5C/KF,cAAA,E4CmLE,sCACE,WAAA,KAGF,wC5CvLF,cAAA,GOyDA,4BqC0GA,0BACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,yCACE,OAAA,KACA,OAAA,E5C3KJ,cAAA,E4C+KE,wC5C/KF,cAAA,E4CmLE,sCACE,WAAA,KAGF,wC5CvLF,cAAA,GOyDA,6BqC0GA,0BACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,yCACE,OAAA,KACA,OAAA,E5C3KJ,cAAA,E4C+KE,wC5C/KF,cAAA,E4CmLE,sCACE,WAAA,KAGF,wC5CvLF,cAAA,GOyDA,6BqC0GA,2BACE,MAAA,MACA,UAAA,KACA,OAAA,KACA,OAAA,EAEA,0CACE,OAAA,KACA,OAAA,E5C3KJ,cAAA,E4C+KE,yC5C/KF,cAAA,E4CmLE,uCACE,WAAA,KAGF,yC5CvLF,cAAA,G8ClBJ,SACE,SAAA,SACA,QAAA,KACA,QAAA,MACA,OAAA,ECJA,YAAA,0BAEA,WAAA,OACA,YAAA,IACA,YAAA,IACA,WAAA,KACA,WAAA,MACA,gBAAA,KACA,YAAA,KACA,eAAA,KACA,eAAA,OACA,WAAA,OACA,aAAA,OACA,YAAA,OACA,WAAA,KhDsRI,UAAA,Q+C1RJ,UAAA,WACA,QAAA,EAEA,cAAS,QAAA,GAET,wBACE,SAAA,SACA,QAAA,MACA,MAAA,MACA,OAAA,MAEA,gCACE,SAAA,SACA,QAAA,GACA,aAAA,YACA,aAAA,MAKN,6CAAA,gBACE,QAAA,MAAA,EAEA,4DAAA,+BACE,OAAA,EAEA,oEAAA,uCACE,IAAA,KACA,aAAA,MAAA,MAAA,EACA,iBAAA,KAKN,+CAAA,gBACE,QAAA,EAAA,MAEA,8DAAA,+BACE,KAAA,EACA,MAAA,MACA,OAAA,MAEA,sEAAA,uCACE,MAAA,KACA,aAAA,MAAA,MAAA,MAAA,EACA,mBAAA,KAKN,gDAAA,mBACE,QAAA,MAAA,EAEA,+DAAA,kCACE,IAAA,EAEA,uEAAA,0CACE,OAAA,KACA,aAAA,EAAA,MAAA,MACA,oBAAA,KAKN,8CAAA,kBACE,QAAA,EAAA,MAEA,6DAAA,iCACE,MAAA,EACA,MAAA,MACA,OAAA,MAEA,qEAAA,yCACE,KAAA,KACA,aAAA,MAAA,EAAA,MAAA,MACA,kBAAA,KAqBN,eACE,UAAA,MACA,QAAA,OAAA,MACA,MAAA,KACA,WAAA,OACA,iBAAA,K9C7FE,cAAA,OgDnBJ,SACE,SAAA,SACA,IAAA,EACA,KAAA,EACA,QAAA,KACA,QAAA,MACA,UAAA,MDLA,YAAA,0BAEA,WAAA,OACA,YAAA,IACA,YAAA,IACA,WAAA,KACA,WAAA,MACA,gBAAA,KACA,YAAA,KACA,eAAA,KACA,eAAA,OACA,WAAA,OACA,aAAA,OACA,YAAA,OACA,WAAA,KhDsRI,UAAA,QiDzRJ,UAAA,WACA,iBAAA,KACA,gBAAA,YACA,OAAA,IAAA,MAAA,ehDIE,cAAA,MgDAF,wBACE,SAAA,SACA,QAAA,MACA,MAAA,KACA,OAAA,MAEA,+BAAA,gCAEE,SAAA,SACA,QAAA,MACA,QAAA,GACA,aAAA,YACA,aAAA,MAMJ,4DAAA,+BACE,OAAA,mBAEA,oEAAA,uCACE,OAAA,EACA,aAAA,MAAA,MAAA,EACA,iBAAA,gBAGF,mEAAA,sCACE,OAAA,IACA,aAAA,MAAA,MAAA,EACA,iBAAA,KAMJ,8DAAA,+BACE,KAAA,mBACA,MAAA,MACA,OAAA,KAEA,sEAAA,uCACE,KAAA,EACA,aAAA,MAAA,MAAA,MAAA,EACA,mBAAA,gBAGF,qEAAA,sCACE,KAAA,IACA,aAAA,MAAA,MAAA,MAAA,EACA,mBAAA,KAMJ,+DAAA,kCACE,IAAA,mBAEA,uEAAA,0CACE,IAAA,EACA,aAAA,EAAA,MAAA,MAAA,MACA,oBAAA,gBAGF,sEAAA,yCACE,IAAA,IACA,aAAA,EAAA,MAAA,MAAA,MACA,oBAAA,KAKJ,wEAAA,2CACE,SAAA,SACA,IAAA,EACA,KAAA,IACA,QAAA,MACA,MAAA,KACA,YAAA,OACA,QAAA,GACA,cAAA,IAAA,MAAA,QAKF,6DAAA,iCACE,MAAA,mBACA,MAAA,MACA,OAAA,KAEA,qEAAA,yCACE,MAAA,EACA,aAAA,MAAA,EAAA,MAAA,MACA,kBAAA,gBAGF,oEAAA,wCACE,MAAA,IACA,aAAA,MAAA,EAAA,MAAA,MACA,kBAAA,KAqBN,gBACE,QAAA,MAAA,KACA,cAAA,EjDuJI,UAAA,KiDpJJ,iBAAA,QACA,cAAA,IAAA,MAAA,ehDtHE,uBAAA,kBACA,wBAAA,kBgDwHF,sBACE,QAAA,KAIJ,cACE,QAAA,KAAA,KACA,MAAA,QC/IF,UACE,SAAA,SAGF,wBACE,aAAA,MAGF,gBACE,SAAA,SACA,MAAA,KACA,SAAA,OCtBA,uBACE,QAAA,MACA,MAAA,KACA,QAAA,GDuBJ,eACE,SAAA,SACA,QAAA,KACA,MAAA,KACA,MAAA,KACA,aAAA,MACA,4BAAA,OAAA,oBAAA,OlClBI,WAAA,UAAA,IAAA,YAIA,uCkCQN,elCPQ,WAAA,MjBgzLR,oBACA,oBmDhyLA,sBAGE,QAAA,MnDmyLF,0BmD/xLA,8CAEE,UAAA,iBnDkyLF,4BmD/xLA,4CAEE,UAAA,kBAWA,8BACE,QAAA,EACA,oBAAA,QACA,UAAA,KnD0xLJ,uDACA,qDmDxxLE,qCAGE,QAAA,EACA,QAAA,EnDyxLJ,yCmDtxLE,2CAEE,QAAA,EACA,QAAA,ElC/DE,WAAA,QAAA,GAAA,IAIA,uCjBq1LN,yCmD7xLE,2ClCvDM,WAAA,MjB01LR,uBmDtxLA,uBAEE,SAAA,SACA,IAAA,EACA,OAAA,EACA,QAAA,EAEA,QAAA,KACA,YAAA,OACA,gBAAA,OACA,MAAA,IACA,QAAA,EACA,MAAA,KACA,WAAA,OACA,WAAA,IACA,OAAA,EACA,QAAA,GlCzFI,WAAA,QAAA,KAAA,KAIA,uCjB82LN,uBmDzyLA,uBlCpEQ,WAAA,MjBm3LR,6BADA,6BmD1xLE,6BAAA,6BAEE,MAAA,KACA,gBAAA,KACA,QAAA,EACA,QAAA,GAGJ,uBACE,KAAA,EAGF,uBACE,MAAA,EnD8xLF,4BmDzxLA,4BAEE,QAAA,aACA,MAAA,KACA,OAAA,KACA,kBAAA,UACA,oBAAA,IACA,gBAAA,KAAA,KAWF,4BACE,iBAAA,wPAEF,4BACE,iBAAA,yPAQF,qBACE,SAAA,SACA,MAAA,EACA,OAAA,EACA,KAAA,EACA,QAAA,EACA,QAAA,KACA,gBAAA,OACA,QAAA,EAEA,aAAA,IACA,cAAA,KACA,YAAA,IACA,WAAA,KAEA,sCACE,WAAA,YACA,KAAA,EAAA,EAAA,KACA,MAAA,KACA,OAAA,IACA,QAAA,EACA,aAAA,IACA,YAAA,IACA,YAAA,OACA,OAAA,QACA,iBAAA,KACA,gBAAA,YACA,OAAA,EAEA,WAAA,KAAA,MAAA,YACA,cAAA,KAAA,MAAA,YACA,QAAA,GlC5KE,WAAA,QAAA,IAAA,KAIA,uCkCwJJ,sClCvJM,WAAA,MkC2KN,6BACE,QAAA,EASJ,kBACE,SAAA,SACA,MAAA,IACA,OAAA,QACA,KAAA,IACA,YAAA,QACA,eAAA,QACA,MAAA,KACA,WAAA,OnDoxLF,2CmD9wLE,2CAEE,OAAA,UAAA,eAGF,qDACE,iBAAA,KAGF,iCACE,MAAA,KE7NJ,kCACE,GAAK,UAAA,gBADP,0BACE,GAAK,UAAA,gBAIP,gBACE,QAAA,aACA,MAAA,KACA,OAAA,KACA,eAAA,QACA,OAAA,MAAA,MAAA,aACA,mBAAA,YAEA,cAAA,IACA,kBAAA,KAAA,OAAA,SAAA,eAAA,UAAA,KAAA,OAAA,SAAA,eAGF,mBACE,MAAA,KACA,OAAA,KACA,aAAA,KAQF,gCACE,GACE,UAAA,SAEF,IACE,QAAA,EACA,UAAA,MANJ,wBACE,GACE,UAAA,SAEF,IACE,QAAA,EACA,UAAA,MAKJ,cACE,QAAA,aACA,MAAA,KACA,OAAA,KACA,eAAA,QACA,iBAAA,aAEA,cAAA,IACA,QAAA,EACA,kBAAA,KAAA,OAAA,SAAA,aAAA,UAAA,KAAA,OAAA,SAAA,aAGF,iBACE,MAAA,KACA,OAAA,KAIA,uCACE,gBrDo/LJ,cqDl/LM,2BAAA,KAAA,mBAAA,MCjEN,WACE,SAAA,MACA,OAAA,EACA,QAAA,KACA,QAAA,KACA,eAAA,OACA,UAAA,KAEA,WAAA,OACA,iBAAA,KACA,gBAAA,YACA,QAAA,ErCKI,WAAA,UAAA,IAAA,YAIA,uCqCpBN,WrCqBQ,WAAA,MqCLR,oBPdE,SAAA,MACA,IAAA,EACA,KAAA,EACA,QAAA,KACA,MAAA,MACA,OAAA,MACA,iBAAA,KAGA,yBAAS,QAAA,EACT,yBAAS,QAAA,GOQX,kBACE,QAAA,KACA,YAAA,OACA,gBAAA,cACA,QAAA,KAAA,KAEA,6BACE,QAAA,MAAA,MACA,WAAA,OACA,aAAA,OACA,cAAA,OAIJ,iBACE,cAAA,EACA,YAAA,IAGF,gBACE,UAAA,EACA,QAAA,KAAA,KACA,WAAA,KAGF,iBACE,IAAA,EACA,KAAA,EACA,MAAA,MACA,aAAA,IAAA,MAAA,eACA,UAAA,kBAGF,eACE,IAAA,EACA,MAAA,EACA,MAAA,MACA,YAAA,IAAA,MAAA,eACA,UAAA,iBAGF,eACE,IAAA,EACA,MAAA,EACA,KAAA,EACA,OAAA,KACA,WAAA,KACA,cAAA,IAAA,MAAA,eACA,UAAA,kBAGF,kBACE,MAAA,EACA,KAAA,EACA,OAAA,KACA,WAAA,KACA,WAAA,IAAA,MAAA,eACA,UAAA,iBAGF,gBACE,UAAA,KCjFF,aACE,QAAA,aACA,WAAA,IACA,eAAA,OACA,OAAA,KACA,iBAAA,aACA,QAAA,GAEA,yBACE,QAAA,aACA,QAAA,GAKJ,gBACE,WAAA,KAGF,gBACE,WAAA,KAGF,gBACE,WAAA,MAKA,+BACE,kBAAA,iBAAA,GAAA,YAAA,SAAA,UAAA,iBAAA,GAAA,YAAA,SAIJ,oCACE,IACE,QAAA,IAFJ,4BACE,IACE,QAAA,IAIJ,kBACE,mBAAA,8DAAA,WAAA,8DACA,kBAAA,KAAA,KAAA,UAAA,KAAA,KACA,kBAAA,iBAAA,GAAA,OAAA,SAAA,UAAA,iBAAA,GAAA,OAAA,SAGF,oCACE,KACE,sBAAA,MAAA,GAAA,cAAA,MAAA,IAFJ,4BACE,KACE,sBAAA,MAAA,GAAA,cAAA,MAAA,IH9CF,iBACE,QAAA,MACA,MAAA,KACA,QAAA,GIJF,cACE,MAAA,QAGE,oBAAA,oBAEE,MAAA,QANN,gBACE,MAAA,QAGE,sBAAA,sBAEE,MAAA,QANN,cACE,MAAA,QAGE,oBAAA,oBAEE,MAAA,QANN,WACE,MAAA,QAGE,iBAAA,iBAEE,MAAA,QANN,cACE,MAAA,QAGE,oBAAA,oBAEE,MAAA,QANN,aACE,MAAA,QAGE,mBAAA,mBAEE,MAAA,QANN,YACE,MAAA,QAGE,kBAAA,kBAEE,MAAA,QANN,WACE,MAAA,QAGE,iBAAA,iBAEE,MAAA,QCLR,OACE,SAAA,SACA,MAAA,KAEA,eACE,QAAA,MACA,YAAA,uBACA,QAAA,GAGF,SACE,SAAA,SACA,IAAA,EACA,KAAA,EACA,MAAA,KACA,OAAA,KAKF,WACE,kBAAA,KADF,WACE,kBAAA,mBADF,YACE,kBAAA,oBADF,YACE,kBAAA,oBCrBJ,WACE,SAAA,MACA,IAAA,EACA,MAAA,EACA,KAAA,EACA,QAAA,KAGF,cACE,SAAA,MACA,MAAA,EACA,OAAA,EACA,KAAA,EACA,QAAA,KAQE,YACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,KjDqCF,yBiDxCA,eACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,MjDqCF,yBiDxCA,eACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,MjDqCF,yBiDxCA,eACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,MjDqCF,0BiDxCA,eACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,MjDqCF,0BiDxCA,gBACE,SAAA,eAAA,SAAA,OACA,IAAA,EACA,QAAA,MCzBN,QACE,QAAA,KACA,eAAA,IACA,YAAA,OACA,WAAA,QAGF,QACE,QAAA,KACA,KAAA,EAAA,EAAA,KACA,eAAA,OACA,WAAA,QCRF,iB5Dk4MA,0D6D93ME,SAAA,mBACA,MAAA,cACA,OAAA,cACA,QAAA,YACA,OAAA,eACA,SAAA,iBACA,KAAA,wBACA,YAAA,iBACA,OAAA,YCXA,uBACE,SAAA,SACA,IAAA,EACA,MAAA,EACA,OAAA,EACA,KAAA,EACA,QAAA,EACA,QAAA,GCRJ,eCAE,SAAA,OACA,cAAA,SACA,YAAA,OCNF,IACE,QAAA,aACA,WAAA,QACA,MAAA,IACA,WAAA,IACA,iBAAA,aACA,QAAA,ICyDM,gBAOI,eAAA,mBAPJ,WAOI,eAAA,cAPJ,cAOI,eAAA,iBAPJ,cAOI,eAAA,iBAPJ,mBAOI,eAAA,sBAPJ,gBAOI,eAAA,mBAPJ,aAOI,MAAA,eAPJ,WAOI,MAAA,gBAPJ,YAOI,MAAA,eAPJ,WAOI,QAAA,YAPJ,YAOI,QAAA,cAPJ,YAOI,QAAA,aAPJ,YAOI,QAAA,cAPJ,aAOI,QAAA,YAPJ,eAOI,SAAA,eAPJ,iBAOI,SAAA,iBAPJ,kBAOI,SAAA,kBAPJ,iBAOI,SAAA,iBAPJ,UAOI,QAAA,iBAPJ,gBAOI,QAAA,uBAPJ,SAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,SAOI,QAAA,gBAPJ,aAOI,QAAA,oBAPJ,cAOI,QAAA,qBAPJ,QAOI,QAAA,eAPJ,eAOI,QAAA,sBAPJ,QAOI,QAAA,eAPJ,QAOI,WAAA,EAAA,MAAA,KAAA,0BAPJ,WAOI,WAAA,EAAA,QAAA,OAAA,2BAPJ,WAOI,WAAA,EAAA,KAAA,KAAA,2BAPJ,aAOI,WAAA,eAPJ,iBAOI,SAAA,iBAPJ,mBAOI,SAAA,mBAPJ,mBAOI,SAAA,mBAPJ,gBAOI,SAAA,gBAPJ,iBAOI,SAAA,yBAAA,SAAA,iBAPJ,OAOI,IAAA,YAPJ,QAOI,IAAA,cAPJ,SAOI,IAAA,eAPJ,UAOI,OAAA,YAPJ,WAOI,OAAA,cAPJ,YAOI,OAAA,eAPJ,SAOI,KAAA,YAPJ,UAOI,KAAA,cAPJ,WAOI,KAAA,eAPJ,OAOI,MAAA,YAPJ,QAOI,MAAA,cAPJ,SAOI,MAAA,eAPJ,kBAOI,UAAA,+BAPJ,oBAOI,UAAA,2BAPJ,oBAOI,UAAA,2BAPJ,QAOI,OAAA,IAAA,MAAA,kBAPJ,UAOI,OAAA,YAPJ,YAOI,WAAA,IAAA,MAAA,kBAPJ,cAOI,WAAA,YAPJ,YAOI,aAAA,IAAA,MAAA,kBAPJ,cAOI,aAAA,YAPJ,eAOI,cAAA,IAAA,MAAA,kBAPJ,iBAOI,cAAA,YAPJ,cAOI,YAAA,IAAA,MAAA,kBAPJ,gBAOI,YAAA,YAPJ,gBAOI,aAAA,kBAPJ,kBAOI,aAAA,kBAPJ,gBAOI,aAAA,kBAPJ,aAOI,aAAA,kBAPJ,gBAOI,aAAA,kBAPJ,eAOI,aAAA,kBAPJ,cAOI,aAAA,kBAPJ,aAOI,aAAA,kBAPJ,cAOI,aAAA,eAPJ,UAOI,aAAA,cAPJ,UAOI,aAAA,cAPJ,UAOI,aAAA,cAPJ,UAOI,aAAA,cAPJ,UAOI,aAAA,cAPJ,MAOI,MAAA,cAPJ,MAOI,MAAA,cAPJ,MAOI,MAAA,cAPJ,OAOI,MAAA,eAPJ,QAOI,MAAA,eAPJ,QAOI,UAAA,eAPJ,QAOI,MAAA,gBAPJ,YAOI,UAAA,gBAPJ,MAOI,OAAA,cAPJ,MAOI,OAAA,cAPJ,MAOI,OAAA,cAPJ,OAOI,OAAA,eAPJ,QAOI,OAAA,eAPJ,QAOI,WAAA,eAPJ,QAOI,OAAA,gBAPJ,YAOI,WAAA,gBAPJ,WAOI,KAAA,EAAA,EAAA,eAPJ,UAOI,eAAA,cAPJ,aAOI,eAAA,iBAPJ,kBAOI,eAAA,sBAPJ,qBAOI,eAAA,yBAPJ,aAOI,UAAA,YAPJ,aAOI,UAAA,YAPJ,eAOI,YAAA,YAPJ,eAOI,YAAA,YAPJ,WAOI,UAAA,eAPJ,aAOI,UAAA,iBAPJ,mBAOI,UAAA,uBAPJ,OAOI,IAAA,YAPJ,OAOI,IAAA,iBAPJ,OAOI,IAAA,gBAPJ,OAOI,IAAA,eAPJ,OAOI,IAAA,iBAPJ,OAOI,IAAA,eAPJ,uBAOI,gBAAA,qBAPJ,qBAOI,gBAAA,mBAPJ,wBAOI,gBAAA,iBAPJ,yBAOI,gBAAA,wBAPJ,wBAOI,gBAAA,uBAPJ,wBAOI,gBAAA,uBAPJ,mBAOI,YAAA,qBAPJ,iBAOI,YAAA,mBAPJ,oBAOI,YAAA,iBAPJ,sBAOI,YAAA,mBAPJ,qBAOI,YAAA,kBAPJ,qBAOI,cAAA,qBAPJ,mBAOI,cAAA,mBAPJ,sBAOI,cAAA,iBAPJ,uBAOI,cAAA,wBAPJ,sBAOI,cAAA,uBAPJ,uBAOI,cAAA,kBAPJ,iBAOI,WAAA,eAPJ,kBAOI,WAAA,qBAPJ,gBAOI,WAAA,mBAPJ,mBAOI,WAAA,iBAPJ,qBAOI,WAAA,mBAPJ,oBAOI,WAAA,kBAPJ,aAOI,MAAA,aAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,SAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,KAOI,OAAA,YAPJ,KAOI,OAAA,iBAPJ,KAOI,OAAA,gBAPJ,KAOI,OAAA,eAPJ,KAOI,OAAA,iBAPJ,KAOI,OAAA,eAPJ,QAOI,OAAA,eAPJ,MAOI,aAAA,YAAA,YAAA,YAPJ,MAOI,aAAA,iBAAA,YAAA,iBAPJ,MAOI,aAAA,gBAAA,YAAA,gBAPJ,MAOI,aAAA,eAAA,YAAA,eAPJ,MAOI,aAAA,iBAAA,YAAA,iBAPJ,MAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,MAOI,WAAA,YAAA,cAAA,YAPJ,MAOI,WAAA,iBAAA,cAAA,iBAPJ,MAOI,WAAA,gBAAA,cAAA,gBAPJ,MAOI,WAAA,eAAA,cAAA,eAPJ,MAOI,WAAA,iBAAA,cAAA,iBAPJ,MAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,MAOI,WAAA,YAPJ,MAOI,WAAA,iBAPJ,MAOI,WAAA,gBAPJ,MAOI,WAAA,eAPJ,MAOI,WAAA,iBAPJ,MAOI,WAAA,eAPJ,SAOI,WAAA,eAPJ,MAOI,aAAA,YAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,gBAPJ,MAOI,aAAA,eAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,eAPJ,SAOI,aAAA,eAPJ,MAOI,cAAA,YAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,gBAPJ,MAOI,cAAA,eAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,eAPJ,SAOI,cAAA,eAPJ,MAOI,YAAA,YAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,gBAPJ,MAOI,YAAA,eAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,eAPJ,SAOI,YAAA,eAPJ,KAOI,QAAA,YAPJ,KAOI,QAAA,iBAPJ,KAOI,QAAA,gBAPJ,KAOI,QAAA,eAPJ,KAOI,QAAA,iBAPJ,KAOI,QAAA,eAPJ,MAOI,cAAA,YAAA,aAAA,YAPJ,MAOI,cAAA,iBAAA,aAAA,iBAPJ,MAOI,cAAA,gBAAA,aAAA,gBAPJ,MAOI,cAAA,eAAA,aAAA,eAPJ,MAOI,cAAA,iBAAA,aAAA,iBAPJ,MAOI,cAAA,eAAA,aAAA,eAPJ,MAOI,YAAA,YAAA,eAAA,YAPJ,MAOI,YAAA,iBAAA,eAAA,iBAPJ,MAOI,YAAA,gBAAA,eAAA,gBAPJ,MAOI,YAAA,eAAA,eAAA,eAPJ,MAOI,YAAA,iBAAA,eAAA,iBAPJ,MAOI,YAAA,eAAA,eAAA,eAPJ,MAOI,YAAA,YAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,gBAPJ,MAOI,YAAA,eAPJ,MAOI,YAAA,iBAPJ,MAOI,YAAA,eAPJ,MAOI,cAAA,YAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,gBAPJ,MAOI,cAAA,eAPJ,MAOI,cAAA,iBAPJ,MAOI,cAAA,eAPJ,MAOI,eAAA,YAPJ,MAOI,eAAA,iBAPJ,MAOI,eAAA,gBAPJ,MAOI,eAAA,eAPJ,MAOI,eAAA,iBAPJ,MAOI,eAAA,eAPJ,MAOI,aAAA,YAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,gBAPJ,MAOI,aAAA,eAPJ,MAOI,aAAA,iBAPJ,MAOI,aAAA,eAPJ,gBAOI,YAAA,mCAPJ,MAOI,UAAA,iCAPJ,MAOI,UAAA,gCAPJ,MAOI,UAAA,8BAPJ,MAOI,UAAA,gCAPJ,MAOI,UAAA,kBAPJ,MAOI,UAAA,eAPJ,YAOI,WAAA,iBAPJ,YAOI,WAAA,iBAPJ,UAOI,YAAA,cAPJ,YAOI,YAAA,kBAPJ,WAOI,YAAA,cAPJ,SAOI,YAAA,cAPJ,WAOI,YAAA,iBAPJ,MAOI,YAAA,YAPJ,OAOI,YAAA,eAPJ,SAOI,YAAA,cAPJ,OAOI,YAAA,YAPJ,YAOI,WAAA,eAPJ,UAOI,WAAA,gBAPJ,aAOI,WAAA,iBAPJ,sBAOI,gBAAA,eAPJ,2BAOI,gBAAA,oBAPJ,8BAOI,gBAAA,uBAPJ,gBAOI,eAAA,oBAPJ,gBAOI,eAAA,oBAPJ,iBAOI,eAAA,qBAPJ,WAOI,YAAA,iBAPJ,aAOI,YAAA,iBAPJ,YAOI,UAAA,qBAAA,WAAA,qBAPJ,cAIQ,kBAAA,EAGJ,MAAA,6DAPJ,gBAIQ,kBAAA,EAGJ,MAAA,+DAPJ,cAIQ,kBAAA,EAGJ,MAAA,6DAPJ,WAIQ,kBAAA,EAGJ,MAAA,0DAPJ,cAIQ,kBAAA,EAGJ,MAAA,6DAPJ,aAIQ,kBAAA,EAGJ,MAAA,4DAPJ,YAIQ,kBAAA,EAGJ,MAAA,2DAPJ,WAIQ,kBAAA,EAGJ,MAAA,0DAPJ,YAIQ,kBAAA,EAGJ,MAAA,2DAPJ,YAIQ,kBAAA,EAGJ,MAAA,2DAPJ,WAIQ,kBAAA,EAGJ,MAAA,0DAPJ,YAIQ,kBAAA,EAGJ,MAAA,kBAPJ,eAIQ,kBAAA,EAGJ,MAAA,yBAPJ,eAIQ,kBAAA,EAGJ,MAAA,+BAPJ,YAIQ,kBAAA,EAGJ,MAAA,kBAjBJ,iBACE,kBAAA,KADF,iBACE,kBAAA,IADF,iBACE,kBAAA,KADF,kBACE,kBAAA,EASF,YAIQ,gBAAA,EAGJ,iBAAA,2DAPJ,cAIQ,gBAAA,EAGJ,iBAAA,6DAPJ,YAIQ,gBAAA,EAGJ,iBAAA,2DAPJ,SAIQ,gBAAA,EAGJ,iBAAA,wDAPJ,YAIQ,gBAAA,EAGJ,iBAAA,2DAPJ,WAIQ,gBAAA,EAGJ,iBAAA,0DAPJ,UAIQ,gBAAA,EAGJ,iBAAA,yDAPJ,SAIQ,gBAAA,EAGJ,iBAAA,wDAPJ,UAIQ,gBAAA,EAGJ,iBAAA,yDAPJ,UAIQ,gBAAA,EAGJ,iBAAA,yDAPJ,SAIQ,gBAAA,EAGJ,iBAAA,wDAPJ,gBAIQ,gBAAA,EAGJ,iBAAA,sBAjBJ,eACE,gBAAA,IADF,eACE,gBAAA,KADF,eACE,gBAAA,IADF,eACE,gBAAA,KADF,gBACE,gBAAA,EASF,aAOI,iBAAA,6BAPJ,iBAOI,oBAAA,cAAA,iBAAA,cAAA,YAAA,cAPJ,kBAOI,oBAAA,eAAA,iBAAA,eAAA,YAAA,eAPJ,kBAOI,oBAAA,eAAA,iBAAA,eAAA,YAAA,eAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,eAPJ,SAOI,cAAA,iBAPJ,WAOI,cAAA,YAPJ,WAOI,cAAA,gBAPJ,WAOI,cAAA,iBAPJ,WAOI,cAAA,gBAPJ,gBAOI,cAAA,cAPJ,cAOI,cAAA,gBAPJ,aAOI,uBAAA,iBAAA,wBAAA,iBAPJ,aAOI,wBAAA,iBAAA,2BAAA,iBAPJ,gBAOI,2BAAA,iBAAA,0BAAA,iBAPJ,eAOI,0BAAA,iBAAA,uBAAA,iBAPJ,SAOI,WAAA,kBAPJ,WAOI,WAAA,iBzDPR,yByDAI,gBAOI,MAAA,eAPJ,cAOI,MAAA,gBAPJ,eAOI,MAAA,eAPJ,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,UAOI,IAAA,YAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,gBAPJ,UAOI,IAAA,eAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,eAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,aAAA,YAAA,YAAA,YAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,gBAAA,YAAA,gBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,YAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,cAAA,YAAA,aAAA,YAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,gBAAA,aAAA,gBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,eAOI,WAAA,eAPJ,aAOI,WAAA,gBAPJ,gBAOI,WAAA,kBzDPR,yByDAI,gBAOI,MAAA,eAPJ,cAOI,MAAA,gBAPJ,eAOI,MAAA,eAPJ,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,UAOI,IAAA,YAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,gBAPJ,UAOI,IAAA,eAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,eAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,aAAA,YAAA,YAAA,YAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,gBAAA,YAAA,gBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,YAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,cAAA,YAAA,aAAA,YAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,gBAAA,aAAA,gBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,eAOI,WAAA,eAPJ,aAOI,WAAA,gBAPJ,gBAOI,WAAA,kBzDPR,yByDAI,gBAOI,MAAA,eAPJ,cAOI,MAAA,gBAPJ,eAOI,MAAA,eAPJ,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,UAOI,IAAA,YAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,gBAPJ,UAOI,IAAA,eAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,eAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,aAAA,YAAA,YAAA,YAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,gBAAA,YAAA,gBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,YAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,cAAA,YAAA,aAAA,YAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,gBAAA,aAAA,gBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,eAOI,WAAA,eAPJ,aAOI,WAAA,gBAPJ,gBAOI,WAAA,kBzDPR,0ByDAI,gBAOI,MAAA,eAPJ,cAOI,MAAA,gBAPJ,eAOI,MAAA,eAPJ,aAOI,QAAA,iBAPJ,mBAOI,QAAA,uBAPJ,YAOI,QAAA,gBAPJ,WAOI,QAAA,eAPJ,YAOI,QAAA,gBAPJ,gBAOI,QAAA,oBAPJ,iBAOI,QAAA,qBAPJ,WAOI,QAAA,eAPJ,kBAOI,QAAA,sBAPJ,WAOI,QAAA,eAPJ,cAOI,KAAA,EAAA,EAAA,eAPJ,aAOI,eAAA,cAPJ,gBAOI,eAAA,iBAPJ,qBAOI,eAAA,sBAPJ,wBAOI,eAAA,yBAPJ,gBAOI,UAAA,YAPJ,gBAOI,UAAA,YAPJ,kBAOI,YAAA,YAPJ,kBAOI,YAAA,YAPJ,cAOI,UAAA,eAPJ,gBAOI,UAAA,iBAPJ,sBAOI,UAAA,uBAPJ,UAOI,IAAA,YAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,gBAPJ,UAOI,IAAA,eAPJ,UAOI,IAAA,iBAPJ,UAOI,IAAA,eAPJ,0BAOI,gBAAA,qBAPJ,wBAOI,gBAAA,mBAPJ,2BAOI,gBAAA,iBAPJ,4BAOI,gBAAA,wBAPJ,2BAOI,gBAAA,uBAPJ,2BAOI,gBAAA,uBAPJ,sBAOI,YAAA,qBAPJ,oBAOI,YAAA,mBAPJ,uBAOI,YAAA,iBAPJ,yBAOI,YAAA,mBAPJ,wBAOI,YAAA,kBAPJ,wBAOI,cAAA,qBAPJ,sBAOI,cAAA,mBAPJ,yBAOI,cAAA,iBAPJ,0BAOI,cAAA,wBAPJ,yBAOI,cAAA,uBAPJ,0BAOI,cAAA,kBAPJ,oBAOI,WAAA,eAPJ,qBAOI,WAAA,qBAPJ,mBAOI,WAAA,mBAPJ,sBAOI,WAAA,iBAPJ,wBAOI,WAAA,mBAPJ,uBAOI,WAAA,kBAPJ,gBAOI,MAAA,aAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,YAOI,MAAA,YAPJ,eAOI,MAAA,YAPJ,QAOI,OAAA,YAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,gBAPJ,QAOI,OAAA,eAPJ,QAOI,OAAA,iBAPJ,QAOI,OAAA,eAPJ,WAOI,OAAA,eAPJ,SAOI,aAAA,YAAA,YAAA,YAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,gBAAA,YAAA,gBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,aAAA,iBAAA,YAAA,iBAPJ,SAOI,aAAA,eAAA,YAAA,eAPJ,YAOI,aAAA,eAAA,YAAA,eAPJ,SAOI,WAAA,YAAA,cAAA,YAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,gBAAA,cAAA,gBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,iBAAA,cAAA,iBAPJ,SAOI,WAAA,eAAA,cAAA,eAPJ,YAOI,WAAA,eAAA,cAAA,eAPJ,SAOI,WAAA,YAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,gBAPJ,SAOI,WAAA,eAPJ,SAOI,WAAA,iBAPJ,SAOI,WAAA,eAPJ,YAOI,WAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,YAOI,aAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,YAOI,cAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,YAOI,YAAA,eAPJ,QAOI,QAAA,YAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,gBAPJ,QAOI,QAAA,eAPJ,QAOI,QAAA,iBAPJ,QAOI,QAAA,eAPJ,SAOI,cAAA,YAAA,aAAA,YAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,gBAAA,aAAA,gBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,cAAA,iBAAA,aAAA,iBAPJ,SAOI,cAAA,eAAA,aAAA,eAPJ,SAOI,YAAA,YAAA,eAAA,YAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,gBAAA,eAAA,gBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,iBAAA,eAAA,iBAPJ,SAOI,YAAA,eAAA,eAAA,eAPJ,SAOI,YAAA,YAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,gBAPJ,SAOI,YAAA,eAPJ,SAOI,YAAA,iBAPJ,SAOI,YAAA,eAPJ,SAOI,cAAA,YAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,gBAPJ,SAOI,cAAA,eAPJ,SAOI,cAAA,iBAPJ,SAOI,cAAA,eAPJ,SAOI,eAAA,YAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,gBAPJ,SAOI,eAAA,eAPJ,SAOI,eAAA,iBAPJ,SAOI,eAAA,eAPJ,SAOI,aAAA,YAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,gBAPJ,SAOI,aAAA,eAPJ,SAOI,aAAA,iBAPJ,SAOI,aAAA,eAPJ,eAOI,WAAA,eAPJ,aAOI,WAAA,gBAPJ,gBAOI,WAAA,kBzDPR,0ByDAI,iBAOI,MAAA,eAPJ,eAOI,MAAA,gBAPJ,gBAOI,MAAA,eAPJ,cAOI,QAAA,iBAPJ,oBAOI,QAAA,uBAPJ,aAOI,QAAA,gBAPJ,YAOI,QAAA,eAPJ,aAOI,QAAA,gBAPJ,iBAOI,QAAA,oBAPJ,kBAOI,QAAA,qBAPJ,YAOI,QAAA,eAPJ,mBAOI,QAAA,sBAPJ,YAOI,QAAA,eAPJ,eAOI,KAAA,EAAA,EAAA,eAPJ,cAOI,eAAA,cAPJ,iBAOI,eAAA,iBAPJ,sBAOI,eAAA,sBAPJ,yBAOI,eAAA,yBAPJ,iBAOI,UAAA,YAPJ,iBAOI,UAAA,YAPJ,mBAOI,YAAA,YAPJ,mBAOI,YAAA,YAPJ,eAOI,UAAA,eAPJ,iBAOI,UAAA,iBAPJ,uBAOI,UAAA,uBAPJ,WAOI,IAAA,YAPJ,WAOI,IAAA,iBAPJ,WAOI,IAAA,gBAPJ,WAOI,IAAA,eAPJ,WAOI,IAAA,iBAPJ,WAOI,IAAA,eAPJ,2BAOI,gBAAA,qBAPJ,yBAOI,gBAAA,mBAPJ,4BAOI,gBAAA,iBAPJ,6BAOI,gBAAA,wBAPJ,4BAOI,gBAAA,uBAPJ,4BAOI,gBAAA,uBAPJ,uBAOI,YAAA,qBAPJ,qBAOI,YAAA,mBAPJ,wBAOI,YAAA,iBAPJ,0BAOI,YAAA,mBAPJ,yBAOI,YAAA,kBAPJ,yBAOI,cAAA,qBAPJ,uBAOI,cAAA,mBAPJ,0BAOI,cAAA,iBAPJ,2BAOI,cAAA,wBAPJ,0BAOI,cAAA,uBAPJ,2BAOI,cAAA,kBAPJ,qBAOI,WAAA,eAPJ,sBAOI,WAAA,qBAPJ,oBAOI,WAAA,mBAPJ,uBAOI,WAAA,iBAPJ,yBAOI,WAAA,mBAPJ,wBAOI,WAAA,kBAPJ,iBAOI,MAAA,aAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,aAOI,MAAA,YAPJ,gBAOI,MAAA,YAPJ,SAOI,OAAA,YAPJ,SAOI,OAAA,iBAPJ,SAOI,OAAA,gBAPJ,SAOI,OAAA,eAPJ,SAOI,OAAA,iBAPJ,SAOI,OAAA,eAPJ,YAOI,OAAA,eAPJ,UAOI,aAAA,YAAA,YAAA,YAPJ,UAOI,aAAA,iBAAA,YAAA,iBAPJ,UAOI,aAAA,gBAAA,YAAA,gBAPJ,UAOI,aAAA,eAAA,YAAA,eAPJ,UAOI,aAAA,iBAAA,YAAA,iBAPJ,UAOI,aAAA,eAAA,YAAA,eAPJ,aAOI,aAAA,eAAA,YAAA,eAPJ,UAOI,WAAA,YAAA,cAAA,YAPJ,UAOI,WAAA,iBAAA,cAAA,iBAPJ,UAOI,WAAA,gBAAA,cAAA,gBAPJ,UAOI,WAAA,eAAA,cAAA,eAPJ,UAOI,WAAA,iBAAA,cAAA,iBAPJ,UAOI,WAAA,eAAA,cAAA,eAPJ,aAOI,WAAA,eAAA,cAAA,eAPJ,UAOI,WAAA,YAPJ,UAOI,WAAA,iBAPJ,UAOI,WAAA,gBAPJ,UAOI,WAAA,eAPJ,UAOI,WAAA,iBAPJ,UAOI,WAAA,eAPJ,aAOI,WAAA,eAPJ,UAOI,aAAA,YAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,gBAPJ,UAOI,aAAA,eAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,eAPJ,aAOI,aAAA,eAPJ,UAOI,cAAA,YAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,gBAPJ,UAOI,cAAA,eAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,eAPJ,aAOI,cAAA,eAPJ,UAOI,YAAA,YAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,gBAPJ,UAOI,YAAA,eAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,eAPJ,aAOI,YAAA,eAPJ,SAOI,QAAA,YAPJ,SAOI,QAAA,iBAPJ,SAOI,QAAA,gBAPJ,SAOI,QAAA,eAPJ,SAOI,QAAA,iBAPJ,SAOI,QAAA,eAPJ,UAOI,cAAA,YAAA,aAAA,YAPJ,UAOI,cAAA,iBAAA,aAAA,iBAPJ,UAOI,cAAA,gBAAA,aAAA,gBAPJ,UAOI,cAAA,eAAA,aAAA,eAPJ,UAOI,cAAA,iBAAA,aAAA,iBAPJ,UAOI,cAAA,eAAA,aAAA,eAPJ,UAOI,YAAA,YAAA,eAAA,YAPJ,UAOI,YAAA,iBAAA,eAAA,iBAPJ,UAOI,YAAA,gBAAA,eAAA,gBAPJ,UAOI,YAAA,eAAA,eAAA,eAPJ,UAOI,YAAA,iBAAA,eAAA,iBAPJ,UAOI,YAAA,eAAA,eAAA,eAPJ,UAOI,YAAA,YAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,gBAPJ,UAOI,YAAA,eAPJ,UAOI,YAAA,iBAPJ,UAOI,YAAA,eAPJ,UAOI,cAAA,YAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,gBAPJ,UAOI,cAAA,eAPJ,UAOI,cAAA,iBAPJ,UAOI,cAAA,eAPJ,UAOI,eAAA,YAPJ,UAOI,eAAA,iBAPJ,UAOI,eAAA,gBAPJ,UAOI,eAAA,eAPJ,UAOI,eAAA,iBAPJ,UAOI,eAAA,eAPJ,UAOI,aAAA,YAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,gBAPJ,UAOI,aAAA,eAPJ,UAOI,aAAA,iBAPJ,UAOI,aAAA,eAPJ,gBAOI,WAAA,eAPJ,cAOI,WAAA,gBAPJ,iBAOI,WAAA,kBCnDZ,0BD4CQ,MAOI,UAAA,iBAPJ,MAOI,UAAA,eAPJ,MAOI,UAAA,kBAPJ,MAOI,UAAA,kBChCZ,aDyBQ,gBAOI,QAAA,iBAPJ,sBAOI,QAAA,uBAPJ,eAOI,QAAA,gBAPJ,cAOI,QAAA,eAPJ,eAOI,QAAA,gBAPJ,mBAOI,QAAA,oBAPJ,oBAOI,QAAA,qBAPJ,cAOI,QAAA,eAPJ,qBAOI,QAAA,sBAPJ,cAOI,QAAA","sourcesContent":["/*!\n * Bootstrap v5.1.0 (https://getbootstrap.com/)\n * Copyright 2011-2021 The Bootstrap Authors\n * Copyright 2011-2021 Twitter, Inc.\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\n\n// scss-docs-start import-stack\n// Configuration\n@import \"functions\";\n@import \"variables\";\n@import \"mixins\";\n@import \"utilities\";\n\n// Layout & components\n@import \"root\";\n@import \"reboot\";\n@import \"type\";\n@import \"images\";\n@import \"containers\";\n@import \"grid\";\n@import \"tables\";\n@import \"forms\";\n@import \"buttons\";\n@import \"transitions\";\n@import \"dropdown\";\n@import \"button-group\";\n@import \"nav\";\n@import \"navbar\";\n@import \"card\";\n@import \"accordion\";\n@import \"breadcrumb\";\n@import \"pagination\";\n@import \"badge\";\n@import \"alert\";\n@import \"progress\";\n@import \"list-group\";\n@import \"close\";\n@import \"toasts\";\n@import \"modal\";\n@import \"tooltip\";\n@import \"popover\";\n@import \"carousel\";\n@import \"spinners\";\n@import \"offcanvas\";\n@import \"placeholders\";\n\n// Helpers\n@import \"helpers\";\n\n// Utilities\n@import \"utilities/api\";\n// scss-docs-end import-stack\n",":root {\n // Note: Custom variable values only support SassScript inside `#{}`.\n\n // Colors\n //\n // Generate palettes for full colors, grays, and theme colors.\n\n @each $color, $value in $colors {\n --#{$variable-prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $grays {\n --#{$variable-prefix}gray-#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors {\n --#{$variable-prefix}#{$color}: #{$value};\n }\n\n @each $color, $value in $theme-colors-rgb {\n --#{$variable-prefix}#{$color}-rgb: #{$value};\n }\n\n --#{$variable-prefix}white-rgb: #{to-rgb($white)};\n --#{$variable-prefix}black-rgb: #{to-rgb($black)};\n --#{$variable-prefix}body-rgb: #{to-rgb($body-color)};\n\n // Fonts\n\n // Note: Use `inspect` for lists so that quoted items keep the quotes.\n // See https://github.com/sass/sass/issues/2383#issuecomment-336349172\n --#{$variable-prefix}font-sans-serif: #{inspect($font-family-sans-serif)};\n --#{$variable-prefix}font-monospace: #{inspect($font-family-monospace)};\n --#{$variable-prefix}gradient: #{$gradient};\n\n // Root and body\n // stylelint-disable custom-property-empty-line-before\n // scss-docs-start root-body-variables\n @if $font-size-root != null {\n --#{$variable-prefix}root-font-size: #{$font-size-root};\n }\n --#{$variable-prefix}body-font-family: #{$font-family-base};\n --#{$variable-prefix}body-font-size: #{$font-size-base};\n --#{$variable-prefix}body-font-weight: #{$font-weight-base};\n --#{$variable-prefix}body-line-height: #{$line-height-base};\n --#{$variable-prefix}body-color: #{$body-color};\n @if $body-text-align != null {\n --#{$variable-prefix}body-text-align: #{$body-text-align};\n }\n --#{$variable-prefix}body-bg: #{$body-bg};\n // scss-docs-end root-body-variables\n // stylelint-enable custom-property-empty-line-before\n}\n","// stylelint-disable declaration-no-important, selector-no-qualifying-type, property-no-vendor-prefix\n\n\n// Reboot\n//\n// Normalization of HTML elements, manually forked from Normalize.css to remove\n// styles targeting irrelevant browsers while applying new styles.\n//\n// Normalize is licensed MIT. https://github.com/necolas/normalize.css\n\n\n// Document\n//\n// Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`.\n\n*,\n*::before,\n*::after {\n box-sizing: border-box;\n}\n\n\n// Root\n//\n// Ability to the value of the root font sizes, affecting the value of `rem`.\n// null by default, thus nothing is generated.\n\n:root {\n @if $font-size-root != null {\n font-size: var(--#{$variable-prefix}-root-font-size);\n }\n\n @if $enable-smooth-scroll {\n @media (prefers-reduced-motion: no-preference) {\n scroll-behavior: smooth;\n }\n }\n}\n\n\n// Body\n//\n// 1. Remove the margin in all browsers.\n// 2. As a best practice, apply a default `background-color`.\n// 3. Prevent adjustments of font size after orientation changes in iOS.\n// 4. Change the default tap highlight to be completely transparent in iOS.\n\n// scss-docs-start reboot-body-rules\nbody {\n margin: 0; // 1\n font-family: var(--#{$variable-prefix}body-font-family);\n @include font-size(var(--#{$variable-prefix}body-font-size));\n font-weight: var(--#{$variable-prefix}body-font-weight);\n line-height: var(--#{$variable-prefix}body-line-height);\n color: var(--#{$variable-prefix}body-color);\n text-align: var(--#{$variable-prefix}body-text-align);\n background-color: var(--#{$variable-prefix}body-bg); // 2\n -webkit-text-size-adjust: 100%; // 3\n -webkit-tap-highlight-color: rgba($black, 0); // 4\n}\n// scss-docs-end reboot-body-rules\n\n\n// Content grouping\n//\n// 1. Reset Firefox's gray color\n// 2. Set correct height and prevent the `size` attribute to make the `hr` look like an input field\n\nhr {\n margin: $hr-margin-y 0;\n color: $hr-color; // 1\n background-color: currentColor;\n border: 0;\n opacity: $hr-opacity;\n}\n\nhr:not([size]) {\n height: $hr-height; // 2\n}\n\n\n// Typography\n//\n// 1. Remove top margins from headings\n// By default, `

`-`

` all receive top and bottom margins. We nuke the top\n// margin for easier control within type scales as it avoids margin collapsing.\n\n%heading {\n margin-top: 0; // 1\n margin-bottom: $headings-margin-bottom;\n font-family: $headings-font-family;\n font-style: $headings-font-style;\n font-weight: $headings-font-weight;\n line-height: $headings-line-height;\n color: $headings-color;\n}\n\nh1 {\n @extend %heading;\n @include font-size($h1-font-size);\n}\n\nh2 {\n @extend %heading;\n @include font-size($h2-font-size);\n}\n\nh3 {\n @extend %heading;\n @include font-size($h3-font-size);\n}\n\nh4 {\n @extend %heading;\n @include font-size($h4-font-size);\n}\n\nh5 {\n @extend %heading;\n @include font-size($h5-font-size);\n}\n\nh6 {\n @extend %heading;\n @include font-size($h6-font-size);\n}\n\n\n// Reset margins on paragraphs\n//\n// Similarly, the top margin on `

`s get reset. However, we also reset the\n// bottom margin to use `rem` units instead of `em`.\n\np {\n margin-top: 0;\n margin-bottom: $paragraph-margin-bottom;\n}\n\n\n// Abbreviations\n//\n// 1. Duplicate behavior to the data-bs-* attribute for our tooltip plugin\n// 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.\n// 3. Add explicit cursor to indicate changed behavior.\n// 4. Prevent the text-decoration to be skipped.\n\nabbr[title],\nabbr[data-bs-original-title] { // 1\n text-decoration: underline dotted; // 2\n cursor: help; // 3\n text-decoration-skip-ink: none; // 4\n}\n\n\n// Address\n\naddress {\n margin-bottom: 1rem;\n font-style: normal;\n line-height: inherit;\n}\n\n\n// Lists\n\nol,\nul {\n padding-left: 2rem;\n}\n\nol,\nul,\ndl {\n margin-top: 0;\n margin-bottom: 1rem;\n}\n\nol ol,\nul ul,\nol ul,\nul ol {\n margin-bottom: 0;\n}\n\ndt {\n font-weight: $dt-font-weight;\n}\n\n// 1. Undo browser default\n\ndd {\n margin-bottom: .5rem;\n margin-left: 0; // 1\n}\n\n\n// Blockquote\n\nblockquote {\n margin: 0 0 1rem;\n}\n\n\n// Strong\n//\n// Add the correct font weight in Chrome, Edge, and Safari\n\nb,\nstrong {\n font-weight: $font-weight-bolder;\n}\n\n\n// Small\n//\n// Add the correct font size in all browsers\n\nsmall {\n @include font-size($small-font-size);\n}\n\n\n// Mark\n\nmark {\n padding: $mark-padding;\n background-color: $mark-bg;\n}\n\n\n// Sub and Sup\n//\n// Prevent `sub` and `sup` elements from affecting the line height in\n// all browsers.\n\nsub,\nsup {\n position: relative;\n @include font-size($sub-sup-font-size);\n line-height: 0;\n vertical-align: baseline;\n}\n\nsub { bottom: -.25em; }\nsup { top: -.5em; }\n\n\n// Links\n\na {\n color: $link-color;\n text-decoration: $link-decoration;\n\n &:hover {\n color: $link-hover-color;\n text-decoration: $link-hover-decoration;\n }\n}\n\n// And undo these styles for placeholder links/named anchors (without href).\n// It would be more straightforward to just use a[href] in previous block, but that\n// causes specificity issues in many other styles that are too complex to fix.\n// See https://github.com/twbs/bootstrap/issues/19402\n\na:not([href]):not([class]) {\n &,\n &:hover {\n color: inherit;\n text-decoration: none;\n }\n}\n\n\n// Code\n\npre,\ncode,\nkbd,\nsamp {\n font-family: $font-family-code;\n @include font-size(1em); // Correct the odd `em` font sizing in all browsers.\n direction: ltr #{\"/* rtl:ignore */\"};\n unicode-bidi: bidi-override;\n}\n\n// 1. Remove browser default top margin\n// 2. Reset browser default of `1em` to use `rem`s\n// 3. Don't allow content to break outside\n\npre {\n display: block;\n margin-top: 0; // 1\n margin-bottom: 1rem; // 2\n overflow: auto; // 3\n @include font-size($code-font-size);\n color: $pre-color;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n @include font-size(inherit);\n color: inherit;\n word-break: normal;\n }\n}\n\ncode {\n @include font-size($code-font-size);\n color: $code-color;\n word-wrap: break-word;\n\n // Streamline the style when inside anchors to avoid broken underline and more\n a > & {\n color: inherit;\n }\n}\n\nkbd {\n padding: $kbd-padding-y $kbd-padding-x;\n @include font-size($kbd-font-size);\n color: $kbd-color;\n background-color: $kbd-bg;\n @include border-radius($border-radius-sm);\n\n kbd {\n padding: 0;\n @include font-size(1em);\n font-weight: $nested-kbd-font-weight;\n }\n}\n\n\n// Figures\n//\n// Apply a consistent margin strategy (matches our type styles).\n\nfigure {\n margin: 0 0 1rem;\n}\n\n\n// Images and content\n\nimg,\nsvg {\n vertical-align: middle;\n}\n\n\n// Tables\n//\n// Prevent double borders\n\ntable {\n caption-side: bottom;\n border-collapse: collapse;\n}\n\ncaption {\n padding-top: $table-cell-padding-y;\n padding-bottom: $table-cell-padding-y;\n color: $table-caption-color;\n text-align: left;\n}\n\n// 1. Removes font-weight bold by inheriting\n// 2. Matches default `` alignment by inheriting `text-align`.\n// 3. Fix alignment for Safari\n\nth {\n font-weight: $table-th-font-weight; // 1\n text-align: inherit; // 2\n text-align: -webkit-match-parent; // 3\n}\n\nthead,\ntbody,\ntfoot,\ntr,\ntd,\nth {\n border-color: inherit;\n border-style: solid;\n border-width: 0;\n}\n\n\n// Forms\n//\n// 1. Allow labels to use `margin` for spacing.\n\nlabel {\n display: inline-block; // 1\n}\n\n// Remove the default `border-radius` that macOS Chrome adds.\n// See https://github.com/twbs/bootstrap/issues/24093\n\nbutton {\n // stylelint-disable-next-line property-disallowed-list\n border-radius: 0;\n}\n\n// Explicitly remove focus outline in Chromium when it shouldn't be\n// visible (e.g. as result of mouse click or touch tap). It already\n// should be doing this automatically, but seems to currently be\n// confused and applies its very visible two-tone outline anyway.\n\nbutton:focus:not(:focus-visible) {\n outline: 0;\n}\n\n// 1. Remove the margin in Firefox and Safari\n\ninput,\nbutton,\nselect,\noptgroup,\ntextarea {\n margin: 0; // 1\n font-family: inherit;\n @include font-size(inherit);\n line-height: inherit;\n}\n\n// Remove the inheritance of text transform in Firefox\nbutton,\nselect {\n text-transform: none;\n}\n// Set the cursor for non-`