diff --git a/.env b/.env new file mode 100644 index 00000000..eca4b161 --- /dev/null +++ b/.env @@ -0,0 +1,4 @@ +SKIP_PREFLIGHT_CHECK=true +DOMAIN_NAME='https://raw.githubusercontent.com'; +BES_NAMESPACE='Be-Secure' +BES_BRANCH='main' diff --git a/.eslintignore b/.eslintignore new file mode 100644 index 00000000..4f3b2b87 --- /dev/null +++ b/.eslintignore @@ -0,0 +1,3 @@ +node_modules/ +babel.config.js +metro.config.js \ No newline at end of file diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 00000000..b39728ab --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,56 @@ +module.exports = { + root: true, + extends: [ + '@react-native-community/eslint-config', // Default RN config + 'eslint-config-prettier' // Installed in step 3 + ], + parser: '@typescript-eslint/parser', // Installed in step 2 + plugins: [ + '@typescript-eslint', // Installed in step 2 + 'react', // Installed in step 1 + 'react-native' // Installed in step 1 + ], + 'parserOptions': { + 'ecmaFeatures': { + 'jsx': true + }, + 'project': './tsconfig.json' // Required for Standard plugin + }, + 'env': { + 'react-native/react-native': true + }, + 'rules': { + 'prettier/prettier': 'off', // Turn off prettier + // These are the rules that I use + 'react-native/no-unused-styles': 'warn', + 'react-native/no-inline-styles': 'off', + 'react-native/no-raw-text': ['off', { + skip: ['CustomText'] + }], + "react-native/no-single-element-style-arrays": "warn", + 'object-curly-spacing': 'off', + '@typescript-eslint/explicit-function-return-type': 'off', + '@typescript-eslint/strict-boolean-expressions': 'off', + '@typescript-eslint/no-floating-promises': 'off', + '@typescript-eslint/no-unused-vars': 'off', + '@typescript-eslint/require-array-sort-compare': ['error', { + ignoreStringArrays: true + }], + 'react/jsx-curly-spacing': ['error', { + when: 'always', + allowMultiline: true, + children: true + }], + 'eol-last': ['error', 'always'], + 'no-multiple-empty-lines': 'error', + semi: ['error', 'always'], + // Indent with 2 spaces + indent: ['error', 2], + // Indent JSX with 2 spaces + 'react/jsx-indent': ['error', 2], + "no-unused-vars": "error", + // Indent props with 2 spaces + 'react/jsx-indent-props': ['error', 2], + 'react/no-unstable-nested-components' : 'off' + } +}; diff --git a/.github/ISSUE_TEMPLATE/enhancement.yml b/.github/ISSUE_TEMPLATE/enhancement.yml new file mode 100644 index 00000000..1786bb5b --- /dev/null +++ b/.github/ISSUE_TEMPLATE/enhancement.yml @@ -0,0 +1,43 @@ +name: Enhancement request +description: Suggest an idea for this project +title: '[Enhancement]: ' +labels: [enhancement, cyan] +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this enhancement request! + - type: checkboxes + attributes: + label: Contribution guidelines + description: Please read the contribution guidelines before proceeding. + options: + - label: I've read the [contribution guidelines](https://be-secure.github.io/Be-Secure/contribute.html) and wholeheartedly agree + required: true + - type: textarea + id: description + attributes: + label: Description + description: A clear and concise description of what the enhancement is. + value: "Tell us the enhancement." + validations: + required: true + - type: textarea + attributes: + label: Motivation + description: A clear and concise explanation of why this enhancement would be useful and beneficial. + validations: + required: true + - type: textarea + attributes: + label: Expected behaviour + description: A clear and concise description of what you expect to happen if this enhancement is implemented. + validations: + required: true + - type: textarea + id: Additional-context + attributes: + label: Additional context + description: Add any other context or screenshots about the enhancement request here. + render: shell + diff --git a/.github/workflows/ci-workflow.yml b/.github/workflows/ci-workflow.yml new file mode 100644 index 00000000..b3b7c503 --- /dev/null +++ b/.github/workflows/ci-workflow.yml @@ -0,0 +1,47 @@ +# This is a basic workflow + +name: CI + +# Controls when the action will run. Triggers the workflow on push or pull request +# events but only for the main branch +on: + push: + branches: [main] + pull_request: + branches: [main] + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [macos-latest, ubuntu-latest, 'windows-latest'] + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v2 + with: + fetch-depth: 0 + + # Set up Node + - name: Use Node 16.x + uses: actions/setup-node@v1 + with: + node-version: 16.11.0 + + # Run install dependencies + - name: Install dependencies + run: npm i + + # Run install dependencies + - name: Run Lint + run: npm run lint + + # Build extension + - name: Run build + run: npm run build + diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index c16a5679..7e59cc00 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -1,10 +1,10 @@ name: GitHub Pages - + on: push: tags: - '*.*.*' - + jobs: deploy: runs-on: ubuntu-latest @@ -14,46 +14,40 @@ jobs: group: ${{ github.workflow }}-${{ github.ref }} steps: - uses: actions/checkout@v3 - - - name: Setup Python - uses: actions/setup-python@v3 + + - name: Use Node 18.x + uses: actions/setup-node@v1 with: - python-version: '3.8' - - - name: Upgrade pip + node-version: 18.18.2 + + - name: set env run: | - # install pip=>20.1 to use "pip cache dir" - python3 -m pip install --upgrade pip - - - name: Get pip cache dir - id: pip-cache - run: echo "::set-output name=dir::$(pip cache dir)" - - - name: Cache dependencies - uses: actions/cache@v2 - with: - path: ${{ steps.pip-cache.outputs.dir }} - key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} - restore-keys: | - ${{ runner.os }}-pip- - - - name: Install dependencies - run: python3 -m pip install -r ./requirements.txt - - - run: mkdocs build - - run: echo "${{ github.ref }}" - - name: Deploy - uses: peaceiris/actions-gh-pages@v3 + export NODE_OPTIONS=--openssl-legacy-provider + + - name: install dependency + run: npm install + - name: Run Build + run: | + npm run build + - name: Deploy to GitHub Pages + if: | + !contains(github.ref, 'rc') && + !contains(github.ref, 'RC') && + !contains(github.ref, 'alpha') && + !contains(github.ref, 'M') && + !contains(github.ref, 'beta') + uses: JamesIves/github-pages-deploy-action@4.1.0 with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./site + branch: gh-pages + folder: build # Replace "dist" with the output directory of your build release: needs: deploy runs-on: ubuntu-latest + permissions: + contents: write steps: - name: Checkout code uses: actions/checkout@v3 - - name: Create Release id: create_release uses: actions/create-release@v1 @@ -63,4 +57,4 @@ jobs: tag_name: ${{ github.ref }} release_name: Release ${{ github.ref }} draft: false - prerelease: false \ No newline at end of file + prerelease: false \ No newline at end of file diff --git a/.gitignore b/.gitignore index ccbfadbd..4d29575d 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,23 @@ -site/ \ No newline at end of file +# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. + +# dependencies +/node_modules +/.pnp +.pnp.js + +# testing +/coverage + +# production +/build + +# misc +.DS_Store +.env.local +.env.development.local +.env.test.local +.env.production.local + +npm-debug.log* +yarn-debug.log* +yarn-error.log* diff --git a/.prettierrc.json b/.prettierrc.json new file mode 100644 index 00000000..d1039fbc --- /dev/null +++ b/.prettierrc.json @@ -0,0 +1,6 @@ +{ + "trailingComma": "es5", + "tabWidth": 4, + "semi": false, + "singleQuote": true +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..c51743d9 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,6 @@ +{ + "editor.codeActionsOnSave": { + "source.fixAll.eslint": "explicit" + }, + "eslint.validate": ["javascript"] +} \ No newline at end of file diff --git a/CODEOWNERS b/CODEOWNERS new file mode 100644 index 00000000..8adba4cd --- /dev/null +++ b/CODEOWNERS @@ -0,0 +1,19 @@ +# This is a comment. +# Each line is a file pattern followed by one or more owners. +# More on CODEOWNERS files: https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners + +# Entries that are commented out have maintainers that are not in the +# Be-Secure organization and so cannot be automatically added as reviewers. +# +# We retain those as documentation of who agreed to maintain, but they +# cannot be used automatically by GitHub's pull request workflow and would +# make GitHub consider this file invalid if not commented. + +# For any changes, Unless a later match takes precedence, these maintainer will be requested for review +* @sudhirverma @harimohanr @asa1997 + +# For docs and other md files +*.md @sudhirverma @asa1997 @harimohanr @panickervinod + +# For source code changes +src/* @sudhirverma @asa1997 @harimohanr diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 00000000..5cdd7a22 --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,132 @@ + +# Code of Conduct + +## Our Pledge + +We as members, contributors, and leaders pledge to make participation in our +community a harassment-free experience for everyone, regardless of age, body +size, visible or invisible disability, ethnicity, sex characteristics, gender +identity and expression, level of experience, education, socio-economic status, +nationality, personal appearance, race, caste, color, religion, or sexual +identity and orientation. + +We pledge to act and interact in ways that contribute to an open, welcoming, +diverse, inclusive, and healthy community. + +## Our Standards + +Examples of behavior that contributes to a positive environment for our +community include: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior include: + +* The use of sexualized language or imagery, and sexual attention or advances of + any kind +* Trolling, insulting or derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or email address, + without their explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Enforcement Responsibilities + +Community leaders are responsible for clarifying and enforcing our standards of +acceptable behavior and will take appropriate and fair corrective action in +response to any behavior that they deem inappropriate, threatening, offensive, +or harmful. + +Community leaders have the right and responsibility to remove, edit, or reject +comments, commits, code, wiki edits, issues, and other contributions that are +not aligned to this Code of Conduct, and will communicate reasons for moderation +decisions when appropriate. + +## Scope + +This Code of Conduct applies within all community spaces, and also applies when +an individual is officially representing the community in public spaces. +Examples of representing our community include using an official e-mail address, +posting via an official social media account, or acting as an appointed +representative at an online or offline event. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported to the community leaders responsible for enforcement at +sudhir.verma@wipro.com. +All complaints will be reviewed and investigated promptly and fairly. + +All community leaders are obligated to respect the privacy and security of the +reporter of any incident. + +## Enforcement Guidelines + +Community leaders will follow these Community Impact Guidelines in determining +the consequences for any action they deem in violation of this Code of Conduct: + +### 1. Correction + +**Community Impact**: Use of inappropriate language or other behavior deemed +unprofessional or unwelcome in the community. + +**Consequence**: A private, written warning from community leaders, providing +clarity around the nature of the violation and an explanation of why the +behavior was inappropriate. A public apology may be requested. + +### 2. Warning + +**Community Impact**: A violation through a single incident or series of +actions. + +**Consequence**: A warning with consequences for continued behavior. No +interaction with the people involved, including unsolicited interaction with +those enforcing the Code of Conduct, for a specified period of time. This +includes avoiding interactions in community spaces as well as external channels +like social media. Violating these terms may lead to a temporary or permanent +ban. + +### 3. Temporary Ban + +**Community Impact**: A serious violation of community standards, including +sustained inappropriate behavior. + +**Consequence**: A temporary ban from any sort of interaction or public +communication with the community for a specified period of time. No public or +private interaction with the people involved, including unsolicited interaction +with those enforcing the Code of Conduct, is allowed during this period. +Violating these terms may lead to a permanent ban. + +### 4. Permanent Ban + +**Community Impact**: Demonstrating a pattern of violation of community +standards, including sustained inappropriate behavior, harassment of an +individual, or aggression toward or disparagement of classes of individuals. + +**Consequence**: A permanent ban from any sort of public interaction within the +community. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], +version 2.1, available at +[https://www.contributor-covenant.org/version/2/1/code_of_conduct.html][v2.1]. + +Community Impact Guidelines were inspired by +[Mozilla's code of conduct enforcement ladder][Mozilla CoC]. + +For answers to common questions about this code of conduct, see the FAQ at +[https://www.contributor-covenant.org/faq][FAQ]. Translations are available at +[https://www.contributor-covenant.org/translations][translations]. + +[homepage]: https://www.contributor-covenant.org +[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html +[Mozilla CoC]: https://github.com/mozilla/diversity +[FAQ]: https://www.contributor-covenant.org/faq +[translations]: https://www.contributor-covenant.org/translations + diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..a2376c75 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,144 @@ +# Contributing to BeSLighthouse + +Thank you for contributing your time and expertise to the BeSLighthouse project. This document provides guidance on BeSLighthouse contribution recommended practices. It covers what we're looking for in order to help set expectations and help you get the most out of participation in this project. + +# Code of Conduct + +This project adheres to the Contributor Covenant code of [conduct](https://github.com/Be-Secure/BeSLighthouse/blob/main/CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code. + +# Using GitHub Issues + +We use GitHub [issues](https://github.com/Be-Secure/BeSLighthouse/issues) to track bugs and enhancements. If you have a general question, you can start a discussion [here](https://github.com/Be-Secure/BeSLighthouse/discussions). + +If you are reporting a bug, please help to speed up problem diagnosis by providing as much information as possible. Ideally, that would include a small sample project that reproduces the problem. + +# Contributing a Pull Request + +If you are a new contributor to BeSLighthouse, or looking to get started committing to the Be-Secure ecosystem, here are a couple of tips to get started. + +First, the easiest way to get started is to make fixes or improvements to the documentation. This can be done completely within GitHub, no need to even clone the project! + +You can check the documentations in below links to get a feel of what we are doing, + +- [Be-Secure ecosystem](https://be-secure.github.io/Be-Secure/). +- [BeSLighthouse Readme](./README.md). + +If you feel like you are stuck somewhere, please start a [discussion](https://github.com/Be-Secure/BeSLighthouse/discussions) and we will reach out to your queries as soon as we can. + +# Maintainers + +Maintainers are key contributors to our community project. + +For code that has a listed maintainer or maintainers in our [CODEOWNERS](./CODEOWNERS) file, the Be-Secure team will highlight them for participation in PRs which relate to the area of code they maintain. The expectation is that a maintainer will review the code and work with the PR contributor before the code is merged by the Be-Secure team. + +If an unmaintained area of code interests you and you'd like to become a maintainer, you may simply make a PR against our [CODEOWNERS](./CODEOWNERS) file with your github handle attached to the appropriate area. If there is a maintainer or team of maintainers for that area, please coordinate with them as necessary. + +# Proposing a Change + +In order to be respectful of the time of community contributors, we aim to discuss potential changes in GitHub issues prior to implementation. That will allow us to give design feedback up front and set expectations about the scope of the change, and, for larger changes, how best to approach the work such that the BeSLighthouse team can review it and merge it along with other concurrent work. + +If the bug you wish to fix or enhancement you wish to implement isn't already covered by a GitHub issue that contains feedback from the BeSLighthouse team, please do start a discussion (either in a new GitHub issue or an existing one, as appropriate) before you invest significant development time. If you mention your intent to implement the change described in your issue, the BeSLighthouse team can, as best as possible, prioritize including implementation-related feedback in the subsequent discussion. + +# Reporting Security Vulnerabilities + +If you think you have found a security vulnerability in our project please DO NOT disclose it publicly until we’ve had a chance to fix it. Please don’t report security vulnerabilities using GitHub issues, instead please reach out to sudhir.verma@wipro.com. + +# Pull Request Lifecycle + +1. You are welcome to submit a [draft pull request](https://github.blog/2019-02-14-introducing-draft-pull-requests/) for commentary or review before it is fully completed. It's also a good idea to include specific questions or items you'd like feedback on. +2. Once you believe your pull request is ready to be merged you can create your pull request. +3. When time permits BeSLighthouse's core team members will look over your contribution and either merge, or provide comments letting you know if there is anything left to do. It may take some time for us to respond. We may also have questions that we need answers about the code, either because something doesn't make sense to us or because we want to understand your thought process. We kindly ask that you do not target specific team members. +4. If we have requested changes, you can either make those changes or, if you disagree with the suggested changes, we can have a conversation about our reasoning and agree on a path forward. This may be a multi-step process. Our view is that pull requests are a chance to collaborate, and we welcome conversations about how to do things better. It is the contributor's responsibility to address any changes requested. While reviewers are happy to give guidance, it is unsustainable for us to perform the coding work necessary to get a PR into a mergeable state. +5. In some cases, we might decide that a PR should be closed without merging. We'll make sure to provide clear reasoning when this happens. Following the recommended process above is one of the ways to ensure you don't spend time on a PR we can't or won't merge. + +## Getting Your Pull Requests Merged Faster + +It is much easier to review pull requests that are: + +1. Well-documented: Try to explain in the pull request comments what your change does, why you have made the change, and provide instructions for how to produce the new behavior introduced in the pull request. If you can, provide screen captures to show what the changes look like. This helps the reviewers understand and test the change. +2. Small: Try to only make one change per pull request. If you found two bugs and want to fix them both, that's awesome, but it's still best to submit the fixes as separate pull requests. This makes it much easier for reviewers to keep in their heads all of the implications of individual code changes, and that means the PR takes less effort and energy to merge. In general, the smaller the pull request, the sooner reviewers will be able to make time to review it. +3. Passing checks: Based on how much time we have, we may not review pull requests which aren't passing our checks. If you need help figuring out why checks are failing, please feel free to ask, but while we're happy to give guidance it is generally your responsibility to make sure that checks are passing. If your pull request changes an interface or invalidates an assumption that causes a bunch of checks to fail, then you need to fix those checks before we can merge your PR. + +If we request changes, try to make those changes in a timely manner. Otherwise, PRs can go stale and be a lot more work for all of us to merge in the future. + +Even with everyone making their best effort to be responsive, it can be time-consuming to get a PR merged. It can be frustrating to deal with the back-and-forth as we make sure that we understand the changes fully. Please bear with us, and please know that we appreciate the time and energy you put into the project. + +# PR Checks + +The following checks run when a PR is opened: + +1. Contributor License Agreement (CLA): If this is your first contribution to BeSLighthouse you will be asked to sign the CLA. + +# Contributing Steps + +- Identify an existing issue you would like to work on, or submit an issue describing your proposed change to the repo in question. +- The repo owners will respond to your issue promptly. +- Fork the desired repo, develop and test your code changes. +- Submit a pull request with a link to the issue. + +# Branching and Release Strategy + +Here we discuss the branching and release strategy for our projects. It ensures a structured approach to development, testing, and release management, leading to stable and reliable software releases. + +## Branches + +1. **Main Branch (main)**: + + - The `main` branch represents the stable version of the software. + - Only production-ready code is merged into this branch. + - Stable releases are tagged from this branch. + +2. **Development Branch (develop)**: + + - The `develop` branch serves as the integration branch for ongoing development work. + - Automated testing is conducted when the pull request is raised to the `develop` branch. + - All feature branches are merged into `develop` via pull requests. + - Once changes are validated, an RC (Release Candidate) is prepared for testing. + +## Pull request process + +1. **Feature Development**: + + - Create a feature branch off `develop` for each new feature or bug fix. + - Name the branch descriptively (e.g., `feature/new-feature`). + - Implement the changes in the feature branch. + +2. **Pull Requests**: + + - Once the feature is ready, open a pull request from the feature branch to `develop`. + - Ensure the PR title and description are clear and descriptive. + - Various automated checks will be done on the files changed. + - Resolve any failing checks promptly. + - Reviewers will provide feedback and approve the PR. + +3. **Release Candidate (RC)**: + + - When `develop` is stable, prepare an RC from the `develop` branch for testing. + - The RC undergoes end-to-end testing to ensure it meets quality standards. + +4. **Stable Release**: + + - After successful testing, the changes will be merged from `develop` into `main`. + - Merge commit will be tagged as a stable release. + +## Other guidelines + +1. **Branch Naming**: + + - Use meaningful names for branches (e.g., `feature/issue-123`). + - Prefix feature branches with `feature/`, bug fix branches with `bugfix/`, etc. + +2. **Pull Requests**: + + - Assign appropriate reviewers to PRs. + - Provide a clear description of the changes in the PR. + - Link the PR to an existing issue. + +3. **Testing**: + + - Test changes locally before opening a PR. + +4. **Communication**: + + - Discuss major changes or architectural decisions with the community. + - Communicate any delays or blockers promptly. diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index e6f722cd..00000000 --- a/Dockerfile +++ /dev/null @@ -1,60 +0,0 @@ -FROM python:3.9.2-alpine3.13 - -# Build-time flags -ARG WITH_PLUGINS=true - -# Environment variables -ENV PACKAGES=/usr/local/lib/python3.9/site-packages -ENV PYTHONDONTWRITEBYTECODE=1 - -# Set build directory -WORKDIR /tmp - -# Copy files necessary for build -COPY bes_theme bes_theme -COPY MANIFEST.in MANIFEST.in -COPY package.json package.json -COPY README.md README.md -COPY requirements.txt requirements.txt -COPY setup.py setup.py - -# Perform build and cleanup artifacts and caches -RUN \ - apk upgrade --update-cache -a && \ - apk add --no-cache \ - git \ - bash \ - git-fast-import \ - openssh \ - && apk add --no-cache --virtual .build gcc musl-dev \ - && pip install --no-cache-dir . \ - && \ - if [ "${WITH_PLUGINS}" = "true" ]; then \ - pip install --no-cache-dir \ - "mkdocs-minify-plugin>=0.3" \ - "mkdocs-redirects>=1.0"; \ - fi \ - && apk del .build gcc musl-dev \ - && \ - for theme in mkdocs readthedocs; do \ - rm -rf ${PACKAGES}/mkdocs/themes/$theme; \ - ln -s \ - ${PACKAGES}/bes_theme \ - ${PACKAGES}/mkdocs/themes/$theme; \ - done \ - && rm -rf /tmp/* /root/.cache \ - && \ - find ${PACKAGES} \ - -type f \ - -path "*/__pycache__/*" \ - -exec rm -f {} \; - -# Set working directory -WORKDIR /docs - -# Expose MkDocs development server port -EXPOSE 8000 - -# Start development server by default -ENTRYPOINT ["mkdocs"] -CMD ["serve", "--dev-addr=0.0.0.0:8000"] diff --git a/LICENSE b/LICENSE deleted file mode 100644 index 261eeb9e..00000000 --- a/LICENSE +++ /dev/null @@ -1,201 +0,0 @@ - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - Licensed under the Apache License, Version 2.0 (the "License"); - you may not use this file except in compliance with the License. - You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 - - Unless required by applicable law or agreed to in writing, software - distributed under the License is distributed on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - See the License for the specific language governing permissions and - limitations under the License. diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 00000000..f433b1a5 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,177 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS diff --git a/README.md b/README.md index 94f42845..59ce3733 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,203 @@ -# [BeSLighthouse](https://be-secure.github.io/BeSLighthouse/) -Community Dashboard for security assessment of TAVOSS components. +## BeSLighthouse - +Pronounced as "B-e-S Lighthouse", is a dashboard project for visulaizing the security assessment and risk posture of open source projects and ML models tracked by a BeS lab deployment. BeSecure community hosts an instance of BeSLighthouse [here](https://be-secure.github.io/BeSLighthouse/). + +## Getting Started + +BeSLighthouse is a [React](https://react.dev/) based web interface project that expects a BeS lab ecosystem datastore to pull the data and visualize it. The BeSecure community datastore is maintained in GitHub.com under Be-Secure namespace. + +### Run BeSLighthouse locally + +To try out BeSLighthouse on your own machine, clone the latest release tag and set up the datastore. + +#### Prerequisites + +- Install NodeJS v16.0 or higher + +#### Set up datastore + +The current version of BeSLighthouse assumes that the lab assets details are stored in a Git repository structure. The [datastore.ts](https://github.com/Be-Secure/BeSLighthouse/blob/main/src/dataStore.ts) file should be edited to point to your lab's datastore repository. The path urls you see now in the file points to the BeSecure community lab datastore. You can create a Git repository structure in your GitHub or GitLab namespace as given below. Then update the path variables in datastore.ts file. + + - Be-Secure + - besecure-assets-store + - besecure-assessment-datastore + - besecure-ml-assessment-datastore + +#### Start BeSLighthouse + +- Clone the latest release tag into your local machine +- Update datastore.ts with the path +- Build and start the project + +``` +> npm install --force + +Set the environment variable NODE_OPTIONS to --openssl-legacy-provider. This environment variable is used to specify options or flags to be passed to the Node.js runtime. In this case, it sets the OpenSSL provider to use the legacy provider instead of the default one. + +Linux / MacOS +> export NODE_OPTIONS=--openssl-legacy-provider + +Windows Powershell / CMD +> set NODE_OPTIONS=--openssl-legacy-provider + +> npm start +``` + +## Deployment/Upgrade in any BeSLab instance + +Follow these steps to deploy or upgrade BeSLighthouse in a BeSLab environment: + +### 1. Navigate to the BeSLighthouse installation folder + + Use the following command to navigate to the installation directory: + + ```bash + cd + ``` + +### 2. Download the latest BeSLighthouse release + + Download the latest version of BeSLighthouse from GitHub: + + ```bash + curl -LJO https://github.com/Be-Secure/BeSLighthouse/archive/refs/tags/.tar.gz + ``` + + Replace `` with the desired version. + +### 3. Extract the downloaded archive + + Extract the contents of the downloaded `.tar.gz` file: + + ```bash + tar -xvzf beslighthouse-.tar.gz + ``` + +### 4. Rename the extracted folder + + Rename the extracted BeSLighthouse folder: + + ```bash + mv BeSLighthouse- BeSLighthouse + ``` + +### 5. Verify the port configuration in `package.json` + + Ensure that the `PORT=80` is set in the `start` script parameter of the `package.json` file. + +### 6. Update `apiDetailsConfig.json` + + Configure the `src/apiDetailsConfig.json` file according to your requirement. + +#### GitHub Configuration + + If you are using **GitHub**, use the following template: + + ```json + { + "github": { + "namespace": "Be-Secure", + "branch": "main", + "apiUrl": "https://raw.githubusercontent.com", + "token": "YOUR_GITHUB_API_TOKEN" + }, + "gitlab": { + "namespace": "", + "branch": "", + "apiUrl": "", + "gitLabUrl": "", + "token": "" + }, + "activeTool": "github", + "version": "0.20.3", + "labName": "Be-Secure Community Lab" + } + ``` + +#### GitLab Configuration + + If you are using **GitLab**, use the following template: + + ```json + { + "github": { + "namespace": "", + "branch": "", + "apiUrl": "", + "token": "" + }, + "gitlab": { + "namespace": "labAdmin", + "branch": "main", + "apiUrl": "https://gitlab.example.com/api/v4", + "gitLabUrl": "https://gitlab.example.com", + "token": "YOUR_GITLAB_API_TOKEN" + }, + "activeTool": "gitlab", + "version": "0.20.3", + "labName": "Be-Secure Community Lab" + } + ``` + +**Notes:** + + - Replace `"YOUR_GITHUB_API_TOKEN"` or `"YOUR_GITLAB_API_TOKEN"` with your respective tokens. + - Adjust the `namespace`, `branch`, `apiUrl`, and `gitLabUrl` values to match your environment. + +For more details on generating API tokens, refer to the GitHub or GitLab documentation. + +### 7. Restart the BeSLighthouse service + + Restart the service to apply the changes: + + ```bash + systemctl restart beslighthouse.service + ``` + +### 8. Verify the deployment + + Open your browser and check that BeSLighthouse has been successfully upgraded to the new version. + +--- + +**Note:** Replace `` with the actual version you are upgrading to. + +## Usage + +A BeS lab ecosystem focus on addressing common security requirements of open source projects, ML models and ML datasets. BeSLighthouse is the face of a BeS lab instance. It gives a detailed view of the open source projects, ML models, ML datasets and the vulnerabilities being tracked in the lab. + +### Projects Of Interest (POI) + +Open source projects tracked by the BeS lab is listed in the POI dashboard. The tracking involes forking the open source projects into the Git namespace of the lab and proactively assess each version source code for vulnerabilities. Project details page gives the comprehensive view of the risk posture of the proejct, including the known vulnerabilities. + +### Vulnerabilities Of Interest (VOI) + +Known vulnerabilities that are of interest to the BeS lab is listed in the VOI dashboard. The lab may want to share the information about known vulnerabilities and the affected projects within its tracked projects. + +### Models Of Interest (MOI) + +Pretrained machine learning models are available in various public platforms that can put to use for many useful usecases. These open source models may contain severe secutiry vulnerabilities. The ML models tracked by the lab is listed in MOI dashboard. Model card (details page) gives a holistic view of the risk posture and the various attack emulation on that particular model. + +### Datasets of Interest (DOI) + +Publicly availbable training dataset that are of interest to the BeS lab is listed in the DOI dashboard. Currently not available for public access. This feature is coming soon. + +## Technology Stack + +- NodeJS +- React +- Typescript + +## Report Issue + +BeSLighthouse uses GitHub's integrated issue tracking system to record bugs and feature requests. If you want to raise an issue, please follow the recommendations below: + +- Before you log a bug, please search the [issue tracker](https://github.com/Be-Secure/BeSLighthouse/issues) to see if someone has already reported the problem. +- If the issue doesn't already exist, [create a new issue](https://github.com/Be-Secure/BeSLighthouse/issues/new/choose). +- Please provide as much information as possible with the issue report. +We like to know the BeSLighthouse version you're using. +- If possible, try to attach the screenshot of the issue. + +## License + +BeSLighthouse is an Open Source software released under the [Apache 2.0 license](https://www.apache.org/licenses/LICENSE-2.0.html). diff --git a/Roadmap.md b/Roadmap.md new file mode 100644 index 00000000..d2e19e39 --- /dev/null +++ b/Roadmap.md @@ -0,0 +1,13 @@ +TO Do: +1. Refacttoring BeSLighthouse to make code more readable, introducing TDD development like unittest. + - Improve CSS for UI. + - Implement unittest. + - Follow the coding standard. +2. Improve UI for graph. + - Short list graph according to cve criticality + - Provide option to user to see limitited set of date. + - In graph it should show criticality, scorecard or cve count in graph UI + - Provide multiple filter in side bar menu. +3. Provide Export button in version history to download report as PDF. +4. Provide a way to setup BT and RT env from UI using BeSman. +5. Provide a way to setup lab and configure env for tracking project from UI using BeSLab diff --git a/bes_theme/.icons/bes_theme/LICENSE b/bes_theme/.icons/bes_theme/LICENSE deleted file mode 100644 index 382f8a13..00000000 --- a/bes_theme/.icons/bes_theme/LICENSE +++ /dev/null @@ -1,20 +0,0 @@ -Pictogrammers Free License --------------------------- - -This icon collection is released as free, open source, and GPL friendly by -the [Pictogrammers](http://pictogrammers.com/) icon group. You may use it -for commercial projects, open source projects, or anything really. - -# Icons: Apache 2.0 (https://www.apache.org/licenses/LICENSE-2.0) -Some of the icons are redistributed under the Apache 2.0 license. All other -icons are either redistributed under their respective licenses or are -distributed under the Apache 2.0 license. - -# Fonts: Apache 2.0 (https://www.apache.org/licenses/LICENSE-2.0) -All web and desktop fonts are distributed under the Apache 2.0 license. Web -and desktop fonts contain some icons that are redistributed under the Apache -2.0 license. All other icons are either redistributed under their respective -licenses or are distributed under the Apache 2.0 license. - -# Code: MIT (https://opensource.org/licenses/MIT) -The MIT license applies to all non-font and non-icon files. diff --git a/bes_theme/.icons/bes_theme/ab-testing.svg b/bes_theme/.icons/bes_theme/ab-testing.svg deleted file mode 100644 index ca590248..00000000 --- a/bes_theme/.icons/bes_theme/ab-testing.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/abacus.svg b/bes_theme/.icons/bes_theme/abacus.svg deleted file mode 100644 index 1cbc7d46..00000000 --- a/bes_theme/.icons/bes_theme/abacus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/abjad-arabic.svg b/bes_theme/.icons/bes_theme/abjad-arabic.svg deleted file mode 100644 index 018d8f53..00000000 --- a/bes_theme/.icons/bes_theme/abjad-arabic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/abjad-hebrew.svg b/bes_theme/.icons/bes_theme/abjad-hebrew.svg deleted file mode 100644 index cf6c5cbe..00000000 --- a/bes_theme/.icons/bes_theme/abjad-hebrew.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/abugida-devanagari.svg b/bes_theme/.icons/bes_theme/abugida-devanagari.svg deleted file mode 100644 index 4dc7c277..00000000 --- a/bes_theme/.icons/bes_theme/abugida-devanagari.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/abugida-thai.svg b/bes_theme/.icons/bes_theme/abugida-thai.svg deleted file mode 100644 index 13fc9a0c..00000000 --- a/bes_theme/.icons/bes_theme/abugida-thai.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/access-point-check.svg b/bes_theme/.icons/bes_theme/access-point-check.svg deleted file mode 100644 index ccb81b46..00000000 --- a/bes_theme/.icons/bes_theme/access-point-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/access-point-minus.svg b/bes_theme/.icons/bes_theme/access-point-minus.svg deleted file mode 100644 index 86e0ad85..00000000 --- a/bes_theme/.icons/bes_theme/access-point-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/access-point-network-off.svg b/bes_theme/.icons/bes_theme/access-point-network-off.svg deleted file mode 100644 index 6f61e589..00000000 --- a/bes_theme/.icons/bes_theme/access-point-network-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/access-point-network.svg b/bes_theme/.icons/bes_theme/access-point-network.svg deleted file mode 100644 index de2e4888..00000000 --- a/bes_theme/.icons/bes_theme/access-point-network.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/access-point-off.svg b/bes_theme/.icons/bes_theme/access-point-off.svg deleted file mode 100644 index af2aa27a..00000000 --- a/bes_theme/.icons/bes_theme/access-point-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/access-point-plus.svg b/bes_theme/.icons/bes_theme/access-point-plus.svg deleted file mode 100644 index 6111b7b0..00000000 --- a/bes_theme/.icons/bes_theme/access-point-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/access-point-remove.svg b/bes_theme/.icons/bes_theme/access-point-remove.svg deleted file mode 100644 index fbe317db..00000000 --- a/bes_theme/.icons/bes_theme/access-point-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/access-point.svg b/bes_theme/.icons/bes_theme/access-point.svg deleted file mode 100644 index 5cf38952..00000000 --- a/bes_theme/.icons/bes_theme/access-point.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-alert-outline.svg b/bes_theme/.icons/bes_theme/account-alert-outline.svg deleted file mode 100644 index f98b1fdf..00000000 --- a/bes_theme/.icons/bes_theme/account-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-alert.svg b/bes_theme/.icons/bes_theme/account-alert.svg deleted file mode 100644 index 60c8a610..00000000 --- a/bes_theme/.icons/bes_theme/account-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-arrow-left-outline.svg b/bes_theme/.icons/bes_theme/account-arrow-left-outline.svg deleted file mode 100644 index c5a5e0b9..00000000 --- a/bes_theme/.icons/bes_theme/account-arrow-left-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-arrow-left.svg b/bes_theme/.icons/bes_theme/account-arrow-left.svg deleted file mode 100644 index 2a7d03db..00000000 --- a/bes_theme/.icons/bes_theme/account-arrow-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-arrow-right-outline.svg b/bes_theme/.icons/bes_theme/account-arrow-right-outline.svg deleted file mode 100644 index 4b8660e5..00000000 --- a/bes_theme/.icons/bes_theme/account-arrow-right-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-arrow-right.svg b/bes_theme/.icons/bes_theme/account-arrow-right.svg deleted file mode 100644 index 365eef69..00000000 --- a/bes_theme/.icons/bes_theme/account-arrow-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-box-multiple-outline.svg b/bes_theme/.icons/bes_theme/account-box-multiple-outline.svg deleted file mode 100644 index d480ce66..00000000 --- a/bes_theme/.icons/bes_theme/account-box-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-box-multiple.svg b/bes_theme/.icons/bes_theme/account-box-multiple.svg deleted file mode 100644 index fda4c58e..00000000 --- a/bes_theme/.icons/bes_theme/account-box-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-box-outline.svg b/bes_theme/.icons/bes_theme/account-box-outline.svg deleted file mode 100644 index 35f43270..00000000 --- a/bes_theme/.icons/bes_theme/account-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-box.svg b/bes_theme/.icons/bes_theme/account-box.svg deleted file mode 100644 index 1d264d75..00000000 --- a/bes_theme/.icons/bes_theme/account-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-cancel-outline.svg b/bes_theme/.icons/bes_theme/account-cancel-outline.svg deleted file mode 100644 index b5620a4b..00000000 --- a/bes_theme/.icons/bes_theme/account-cancel-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-cancel.svg b/bes_theme/.icons/bes_theme/account-cancel.svg deleted file mode 100644 index 04f29201..00000000 --- a/bes_theme/.icons/bes_theme/account-cancel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-cash-outline.svg b/bes_theme/.icons/bes_theme/account-cash-outline.svg deleted file mode 100644 index d5c1976b..00000000 --- a/bes_theme/.icons/bes_theme/account-cash-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-cash.svg b/bes_theme/.icons/bes_theme/account-cash.svg deleted file mode 100644 index 9dc2d79c..00000000 --- a/bes_theme/.icons/bes_theme/account-cash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-check-outline.svg b/bes_theme/.icons/bes_theme/account-check-outline.svg deleted file mode 100644 index 3cee36eb..00000000 --- a/bes_theme/.icons/bes_theme/account-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-check.svg b/bes_theme/.icons/bes_theme/account-check.svg deleted file mode 100644 index 98b001a4..00000000 --- a/bes_theme/.icons/bes_theme/account-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-child-circle.svg b/bes_theme/.icons/bes_theme/account-child-circle.svg deleted file mode 100644 index b56f9132..00000000 --- a/bes_theme/.icons/bes_theme/account-child-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-child-outline.svg b/bes_theme/.icons/bes_theme/account-child-outline.svg deleted file mode 100644 index 9fd307a2..00000000 --- a/bes_theme/.icons/bes_theme/account-child-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-child.svg b/bes_theme/.icons/bes_theme/account-child.svg deleted file mode 100644 index eeeb29e2..00000000 --- a/bes_theme/.icons/bes_theme/account-child.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-circle-outline.svg b/bes_theme/.icons/bes_theme/account-circle-outline.svg deleted file mode 100644 index ce89541c..00000000 --- a/bes_theme/.icons/bes_theme/account-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-circle.svg b/bes_theme/.icons/bes_theme/account-circle.svg deleted file mode 100644 index 5a006d49..00000000 --- a/bes_theme/.icons/bes_theme/account-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-clock-outline.svg b/bes_theme/.icons/bes_theme/account-clock-outline.svg deleted file mode 100644 index 3b7e27d1..00000000 --- a/bes_theme/.icons/bes_theme/account-clock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-clock.svg b/bes_theme/.icons/bes_theme/account-clock.svg deleted file mode 100644 index dfd4834b..00000000 --- a/bes_theme/.icons/bes_theme/account-clock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-cog-outline.svg b/bes_theme/.icons/bes_theme/account-cog-outline.svg deleted file mode 100644 index d989460a..00000000 --- a/bes_theme/.icons/bes_theme/account-cog-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-cog.svg b/bes_theme/.icons/bes_theme/account-cog.svg deleted file mode 100644 index 69f6d1eb..00000000 --- a/bes_theme/.icons/bes_theme/account-cog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-convert-outline.svg b/bes_theme/.icons/bes_theme/account-convert-outline.svg deleted file mode 100644 index 2885ac5d..00000000 --- a/bes_theme/.icons/bes_theme/account-convert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-convert.svg b/bes_theme/.icons/bes_theme/account-convert.svg deleted file mode 100644 index 91d8a5d4..00000000 --- a/bes_theme/.icons/bes_theme/account-convert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-cowboy-hat.svg b/bes_theme/.icons/bes_theme/account-cowboy-hat.svg deleted file mode 100644 index d643edf5..00000000 --- a/bes_theme/.icons/bes_theme/account-cowboy-hat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-details-outline.svg b/bes_theme/.icons/bes_theme/account-details-outline.svg deleted file mode 100644 index 6de294f1..00000000 --- a/bes_theme/.icons/bes_theme/account-details-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-details.svg b/bes_theme/.icons/bes_theme/account-details.svg deleted file mode 100644 index b94e2e00..00000000 --- a/bes_theme/.icons/bes_theme/account-details.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-edit-outline.svg b/bes_theme/.icons/bes_theme/account-edit-outline.svg deleted file mode 100644 index 65452355..00000000 --- a/bes_theme/.icons/bes_theme/account-edit-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-edit.svg b/bes_theme/.icons/bes_theme/account-edit.svg deleted file mode 100644 index 0ea8b594..00000000 --- a/bes_theme/.icons/bes_theme/account-edit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-group-outline.svg b/bes_theme/.icons/bes_theme/account-group-outline.svg deleted file mode 100644 index cbe4d9c1..00000000 --- a/bes_theme/.icons/bes_theme/account-group-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-group.svg b/bes_theme/.icons/bes_theme/account-group.svg deleted file mode 100644 index d726d46c..00000000 --- a/bes_theme/.icons/bes_theme/account-group.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-hard-hat.svg b/bes_theme/.icons/bes_theme/account-hard-hat.svg deleted file mode 100644 index 9e3be041..00000000 --- a/bes_theme/.icons/bes_theme/account-hard-hat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-heart-outline.svg b/bes_theme/.icons/bes_theme/account-heart-outline.svg deleted file mode 100644 index 47813b06..00000000 --- a/bes_theme/.icons/bes_theme/account-heart-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-heart.svg b/bes_theme/.icons/bes_theme/account-heart.svg deleted file mode 100644 index 030f3bcd..00000000 --- a/bes_theme/.icons/bes_theme/account-heart.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-key-outline.svg b/bes_theme/.icons/bes_theme/account-key-outline.svg deleted file mode 100644 index d4997c7e..00000000 --- a/bes_theme/.icons/bes_theme/account-key-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-key.svg b/bes_theme/.icons/bes_theme/account-key.svg deleted file mode 100644 index 2fbe0757..00000000 --- a/bes_theme/.icons/bes_theme/account-key.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-lock-outline.svg b/bes_theme/.icons/bes_theme/account-lock-outline.svg deleted file mode 100644 index ed0cb28c..00000000 --- a/bes_theme/.icons/bes_theme/account-lock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-lock.svg b/bes_theme/.icons/bes_theme/account-lock.svg deleted file mode 100644 index 40a048bd..00000000 --- a/bes_theme/.icons/bes_theme/account-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-minus-outline.svg b/bes_theme/.icons/bes_theme/account-minus-outline.svg deleted file mode 100644 index e1aceff0..00000000 --- a/bes_theme/.icons/bes_theme/account-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-minus.svg b/bes_theme/.icons/bes_theme/account-minus.svg deleted file mode 100644 index de8de21c..00000000 --- a/bes_theme/.icons/bes_theme/account-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-multiple-check-outline.svg b/bes_theme/.icons/bes_theme/account-multiple-check-outline.svg deleted file mode 100644 index aa1104c7..00000000 --- a/bes_theme/.icons/bes_theme/account-multiple-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-multiple-check.svg b/bes_theme/.icons/bes_theme/account-multiple-check.svg deleted file mode 100644 index 2e12716c..00000000 --- a/bes_theme/.icons/bes_theme/account-multiple-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-multiple-minus-outline.svg b/bes_theme/.icons/bes_theme/account-multiple-minus-outline.svg deleted file mode 100644 index e89afb48..00000000 --- a/bes_theme/.icons/bes_theme/account-multiple-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-multiple-minus.svg b/bes_theme/.icons/bes_theme/account-multiple-minus.svg deleted file mode 100644 index e1a749f4..00000000 --- a/bes_theme/.icons/bes_theme/account-multiple-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-multiple-outline.svg b/bes_theme/.icons/bes_theme/account-multiple-outline.svg deleted file mode 100644 index 8d8172d6..00000000 --- a/bes_theme/.icons/bes_theme/account-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-multiple-plus-outline.svg b/bes_theme/.icons/bes_theme/account-multiple-plus-outline.svg deleted file mode 100644 index 99ff0a10..00000000 --- a/bes_theme/.icons/bes_theme/account-multiple-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-multiple-plus.svg b/bes_theme/.icons/bes_theme/account-multiple-plus.svg deleted file mode 100644 index d2b33e58..00000000 --- a/bes_theme/.icons/bes_theme/account-multiple-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-multiple-remove-outline.svg b/bes_theme/.icons/bes_theme/account-multiple-remove-outline.svg deleted file mode 100644 index 3d11092f..00000000 --- a/bes_theme/.icons/bes_theme/account-multiple-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-multiple-remove.svg b/bes_theme/.icons/bes_theme/account-multiple-remove.svg deleted file mode 100644 index 2c987342..00000000 --- a/bes_theme/.icons/bes_theme/account-multiple-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-multiple.svg b/bes_theme/.icons/bes_theme/account-multiple.svg deleted file mode 100644 index 832f9ca1..00000000 --- a/bes_theme/.icons/bes_theme/account-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-music-outline.svg b/bes_theme/.icons/bes_theme/account-music-outline.svg deleted file mode 100644 index 8b559540..00000000 --- a/bes_theme/.icons/bes_theme/account-music-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-music.svg b/bes_theme/.icons/bes_theme/account-music.svg deleted file mode 100644 index 72f58b95..00000000 --- a/bes_theme/.icons/bes_theme/account-music.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-network-outline.svg b/bes_theme/.icons/bes_theme/account-network-outline.svg deleted file mode 100644 index 86f46548..00000000 --- a/bes_theme/.icons/bes_theme/account-network-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-network.svg b/bes_theme/.icons/bes_theme/account-network.svg deleted file mode 100644 index ea0b08dd..00000000 --- a/bes_theme/.icons/bes_theme/account-network.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-off-outline.svg b/bes_theme/.icons/bes_theme/account-off-outline.svg deleted file mode 100644 index 02a564f3..00000000 --- a/bes_theme/.icons/bes_theme/account-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-off.svg b/bes_theme/.icons/bes_theme/account-off.svg deleted file mode 100644 index a1404b3b..00000000 --- a/bes_theme/.icons/bes_theme/account-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-outline.svg b/bes_theme/.icons/bes_theme/account-outline.svg deleted file mode 100644 index 17f2387b..00000000 --- a/bes_theme/.icons/bes_theme/account-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-plus-outline.svg b/bes_theme/.icons/bes_theme/account-plus-outline.svg deleted file mode 100644 index fe94ef50..00000000 --- a/bes_theme/.icons/bes_theme/account-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-plus.svg b/bes_theme/.icons/bes_theme/account-plus.svg deleted file mode 100644 index 232587c5..00000000 --- a/bes_theme/.icons/bes_theme/account-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-question-outline.svg b/bes_theme/.icons/bes_theme/account-question-outline.svg deleted file mode 100644 index ac2da7a2..00000000 --- a/bes_theme/.icons/bes_theme/account-question-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-question.svg b/bes_theme/.icons/bes_theme/account-question.svg deleted file mode 100644 index 7b9997ca..00000000 --- a/bes_theme/.icons/bes_theme/account-question.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-reactivate-outline.svg b/bes_theme/.icons/bes_theme/account-reactivate-outline.svg deleted file mode 100644 index 8fd1a6a5..00000000 --- a/bes_theme/.icons/bes_theme/account-reactivate-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-reactivate.svg b/bes_theme/.icons/bes_theme/account-reactivate.svg deleted file mode 100644 index 3f163b68..00000000 --- a/bes_theme/.icons/bes_theme/account-reactivate.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-remove-outline.svg b/bes_theme/.icons/bes_theme/account-remove-outline.svg deleted file mode 100644 index f4cd8324..00000000 --- a/bes_theme/.icons/bes_theme/account-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-remove.svg b/bes_theme/.icons/bes_theme/account-remove.svg deleted file mode 100644 index 144f9c8e..00000000 --- a/bes_theme/.icons/bes_theme/account-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-search-outline.svg b/bes_theme/.icons/bes_theme/account-search-outline.svg deleted file mode 100644 index bc01c466..00000000 --- a/bes_theme/.icons/bes_theme/account-search-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-search.svg b/bes_theme/.icons/bes_theme/account-search.svg deleted file mode 100644 index 30f38bff..00000000 --- a/bes_theme/.icons/bes_theme/account-search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-settings-outline.svg b/bes_theme/.icons/bes_theme/account-settings-outline.svg deleted file mode 100644 index 811dc13f..00000000 --- a/bes_theme/.icons/bes_theme/account-settings-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-settings.svg b/bes_theme/.icons/bes_theme/account-settings.svg deleted file mode 100644 index 9b3aaf4b..00000000 --- a/bes_theme/.icons/bes_theme/account-settings.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-star-outline.svg b/bes_theme/.icons/bes_theme/account-star-outline.svg deleted file mode 100644 index 9c434aed..00000000 --- a/bes_theme/.icons/bes_theme/account-star-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-star.svg b/bes_theme/.icons/bes_theme/account-star.svg deleted file mode 100644 index 8276c74e..00000000 --- a/bes_theme/.icons/bes_theme/account-star.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-supervisor-circle-outline.svg b/bes_theme/.icons/bes_theme/account-supervisor-circle-outline.svg deleted file mode 100644 index 70234089..00000000 --- a/bes_theme/.icons/bes_theme/account-supervisor-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-supervisor-circle.svg b/bes_theme/.icons/bes_theme/account-supervisor-circle.svg deleted file mode 100644 index ead0e72c..00000000 --- a/bes_theme/.icons/bes_theme/account-supervisor-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-supervisor-outline.svg b/bes_theme/.icons/bes_theme/account-supervisor-outline.svg deleted file mode 100644 index 9fb9d6cb..00000000 --- a/bes_theme/.icons/bes_theme/account-supervisor-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-supervisor.svg b/bes_theme/.icons/bes_theme/account-supervisor.svg deleted file mode 100644 index 7bb9cb59..00000000 --- a/bes_theme/.icons/bes_theme/account-supervisor.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-switch-outline.svg b/bes_theme/.icons/bes_theme/account-switch-outline.svg deleted file mode 100644 index 052dada5..00000000 --- a/bes_theme/.icons/bes_theme/account-switch-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-switch.svg b/bes_theme/.icons/bes_theme/account-switch.svg deleted file mode 100644 index 0957cfce..00000000 --- a/bes_theme/.icons/bes_theme/account-switch.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-tie-outline.svg b/bes_theme/.icons/bes_theme/account-tie-outline.svg deleted file mode 100644 index c8df2c90..00000000 --- a/bes_theme/.icons/bes_theme/account-tie-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-tie-voice-off-outline.svg b/bes_theme/.icons/bes_theme/account-tie-voice-off-outline.svg deleted file mode 100644 index b40fea81..00000000 --- a/bes_theme/.icons/bes_theme/account-tie-voice-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-tie-voice-off.svg b/bes_theme/.icons/bes_theme/account-tie-voice-off.svg deleted file mode 100644 index 4359c529..00000000 --- a/bes_theme/.icons/bes_theme/account-tie-voice-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-tie-voice-outline.svg b/bes_theme/.icons/bes_theme/account-tie-voice-outline.svg deleted file mode 100644 index 64d77268..00000000 --- a/bes_theme/.icons/bes_theme/account-tie-voice-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-tie-voice.svg b/bes_theme/.icons/bes_theme/account-tie-voice.svg deleted file mode 100644 index 80be2ac9..00000000 --- a/bes_theme/.icons/bes_theme/account-tie-voice.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-tie.svg b/bes_theme/.icons/bes_theme/account-tie.svg deleted file mode 100644 index 7dc99c46..00000000 --- a/bes_theme/.icons/bes_theme/account-tie.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account-voice.svg b/bes_theme/.icons/bes_theme/account-voice.svg deleted file mode 100644 index 23254d99..00000000 --- a/bes_theme/.icons/bes_theme/account-voice.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/account.svg b/bes_theme/.icons/bes_theme/account.svg deleted file mode 100644 index 10f898bf..00000000 --- a/bes_theme/.icons/bes_theme/account.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/adjust.svg b/bes_theme/.icons/bes_theme/adjust.svg deleted file mode 100644 index 27645002..00000000 --- a/bes_theme/.icons/bes_theme/adjust.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/adobe-acrobat.svg b/bes_theme/.icons/bes_theme/adobe-acrobat.svg deleted file mode 100644 index d99b679e..00000000 --- a/bes_theme/.icons/bes_theme/adobe-acrobat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/adobe.svg b/bes_theme/.icons/bes_theme/adobe.svg deleted file mode 100644 index 815cb957..00000000 --- a/bes_theme/.icons/bes_theme/adobe.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/air-conditioner.svg b/bes_theme/.icons/bes_theme/air-conditioner.svg deleted file mode 100644 index 50f75052..00000000 --- a/bes_theme/.icons/bes_theme/air-conditioner.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/air-filter.svg b/bes_theme/.icons/bes_theme/air-filter.svg deleted file mode 100644 index d4430215..00000000 --- a/bes_theme/.icons/bes_theme/air-filter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/air-horn.svg b/bes_theme/.icons/bes_theme/air-horn.svg deleted file mode 100644 index c50ff8fc..00000000 --- a/bes_theme/.icons/bes_theme/air-horn.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/air-humidifier-off.svg b/bes_theme/.icons/bes_theme/air-humidifier-off.svg deleted file mode 100644 index cea1c9f8..00000000 --- a/bes_theme/.icons/bes_theme/air-humidifier-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/air-humidifier.svg b/bes_theme/.icons/bes_theme/air-humidifier.svg deleted file mode 100644 index 99dbc543..00000000 --- a/bes_theme/.icons/bes_theme/air-humidifier.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/air-purifier.svg b/bes_theme/.icons/bes_theme/air-purifier.svg deleted file mode 100644 index 286f21db..00000000 --- a/bes_theme/.icons/bes_theme/air-purifier.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/airbag.svg b/bes_theme/.icons/bes_theme/airbag.svg deleted file mode 100644 index d249b602..00000000 --- a/bes_theme/.icons/bes_theme/airbag.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/airballoon-outline.svg b/bes_theme/.icons/bes_theme/airballoon-outline.svg deleted file mode 100644 index d9a93bf6..00000000 --- a/bes_theme/.icons/bes_theme/airballoon-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/airballoon.svg b/bes_theme/.icons/bes_theme/airballoon.svg deleted file mode 100644 index 159b93cd..00000000 --- a/bes_theme/.icons/bes_theme/airballoon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/airplane-landing.svg b/bes_theme/.icons/bes_theme/airplane-landing.svg deleted file mode 100644 index 6eeb0db2..00000000 --- a/bes_theme/.icons/bes_theme/airplane-landing.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/airplane-off.svg b/bes_theme/.icons/bes_theme/airplane-off.svg deleted file mode 100644 index 70cd484e..00000000 --- a/bes_theme/.icons/bes_theme/airplane-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/airplane-takeoff.svg b/bes_theme/.icons/bes_theme/airplane-takeoff.svg deleted file mode 100644 index bf9e34d2..00000000 --- a/bes_theme/.icons/bes_theme/airplane-takeoff.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/airplane.svg b/bes_theme/.icons/bes_theme/airplane.svg deleted file mode 100644 index dbf1ee6c..00000000 --- a/bes_theme/.icons/bes_theme/airplane.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/airport.svg b/bes_theme/.icons/bes_theme/airport.svg deleted file mode 100644 index 4def00d9..00000000 --- a/bes_theme/.icons/bes_theme/airport.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alarm-bell.svg b/bes_theme/.icons/bes_theme/alarm-bell.svg deleted file mode 100644 index d5125bdc..00000000 --- a/bes_theme/.icons/bes_theme/alarm-bell.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alarm-check.svg b/bes_theme/.icons/bes_theme/alarm-check.svg deleted file mode 100644 index 892fa3a7..00000000 --- a/bes_theme/.icons/bes_theme/alarm-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alarm-light-off-outline.svg b/bes_theme/.icons/bes_theme/alarm-light-off-outline.svg deleted file mode 100644 index b4035b4a..00000000 --- a/bes_theme/.icons/bes_theme/alarm-light-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alarm-light-off.svg b/bes_theme/.icons/bes_theme/alarm-light-off.svg deleted file mode 100644 index 1c05d5e7..00000000 --- a/bes_theme/.icons/bes_theme/alarm-light-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alarm-light-outline.svg b/bes_theme/.icons/bes_theme/alarm-light-outline.svg deleted file mode 100644 index 32f22a5b..00000000 --- a/bes_theme/.icons/bes_theme/alarm-light-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alarm-light.svg b/bes_theme/.icons/bes_theme/alarm-light.svg deleted file mode 100644 index b925a5a0..00000000 --- a/bes_theme/.icons/bes_theme/alarm-light.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alarm-multiple.svg b/bes_theme/.icons/bes_theme/alarm-multiple.svg deleted file mode 100644 index e83da38b..00000000 --- a/bes_theme/.icons/bes_theme/alarm-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alarm-note-off.svg b/bes_theme/.icons/bes_theme/alarm-note-off.svg deleted file mode 100644 index 2f2927fd..00000000 --- a/bes_theme/.icons/bes_theme/alarm-note-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alarm-note.svg b/bes_theme/.icons/bes_theme/alarm-note.svg deleted file mode 100644 index 9c1d75e5..00000000 --- a/bes_theme/.icons/bes_theme/alarm-note.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alarm-off.svg b/bes_theme/.icons/bes_theme/alarm-off.svg deleted file mode 100644 index c35098d8..00000000 --- a/bes_theme/.icons/bes_theme/alarm-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alarm-panel-outline.svg b/bes_theme/.icons/bes_theme/alarm-panel-outline.svg deleted file mode 100644 index 60de4bab..00000000 --- a/bes_theme/.icons/bes_theme/alarm-panel-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alarm-panel.svg b/bes_theme/.icons/bes_theme/alarm-panel.svg deleted file mode 100644 index 2f019871..00000000 --- a/bes_theme/.icons/bes_theme/alarm-panel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alarm-plus.svg b/bes_theme/.icons/bes_theme/alarm-plus.svg deleted file mode 100644 index 243063fe..00000000 --- a/bes_theme/.icons/bes_theme/alarm-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alarm-snooze.svg b/bes_theme/.icons/bes_theme/alarm-snooze.svg deleted file mode 100644 index 1dbbbe6d..00000000 --- a/bes_theme/.icons/bes_theme/alarm-snooze.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alarm.svg b/bes_theme/.icons/bes_theme/alarm.svg deleted file mode 100644 index 9fd6affe..00000000 --- a/bes_theme/.icons/bes_theme/alarm.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/album.svg b/bes_theme/.icons/bes_theme/album.svg deleted file mode 100644 index 2bd8985a..00000000 --- a/bes_theme/.icons/bes_theme/album.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alert-box-outline.svg b/bes_theme/.icons/bes_theme/alert-box-outline.svg deleted file mode 100644 index 2cb7b617..00000000 --- a/bes_theme/.icons/bes_theme/alert-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alert-box.svg b/bes_theme/.icons/bes_theme/alert-box.svg deleted file mode 100644 index 645db626..00000000 --- a/bes_theme/.icons/bes_theme/alert-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alert-circle-check-outline.svg b/bes_theme/.icons/bes_theme/alert-circle-check-outline.svg deleted file mode 100644 index 7bc5b52a..00000000 --- a/bes_theme/.icons/bes_theme/alert-circle-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alert-circle-check.svg b/bes_theme/.icons/bes_theme/alert-circle-check.svg deleted file mode 100644 index 3b4fb309..00000000 --- a/bes_theme/.icons/bes_theme/alert-circle-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alert-circle-outline.svg b/bes_theme/.icons/bes_theme/alert-circle-outline.svg deleted file mode 100644 index 7015bc6b..00000000 --- a/bes_theme/.icons/bes_theme/alert-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alert-circle.svg b/bes_theme/.icons/bes_theme/alert-circle.svg deleted file mode 100644 index d735fa80..00000000 --- a/bes_theme/.icons/bes_theme/alert-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alert-decagram-outline.svg b/bes_theme/.icons/bes_theme/alert-decagram-outline.svg deleted file mode 100644 index 942f96bc..00000000 --- a/bes_theme/.icons/bes_theme/alert-decagram-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alert-decagram.svg b/bes_theme/.icons/bes_theme/alert-decagram.svg deleted file mode 100644 index 2b55fc65..00000000 --- a/bes_theme/.icons/bes_theme/alert-decagram.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alert-minus-outline.svg b/bes_theme/.icons/bes_theme/alert-minus-outline.svg deleted file mode 100644 index 621a5518..00000000 --- a/bes_theme/.icons/bes_theme/alert-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alert-minus.svg b/bes_theme/.icons/bes_theme/alert-minus.svg deleted file mode 100644 index d59b60f3..00000000 --- a/bes_theme/.icons/bes_theme/alert-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alert-octagon-outline.svg b/bes_theme/.icons/bes_theme/alert-octagon-outline.svg deleted file mode 100644 index 3bdf7ebd..00000000 --- a/bes_theme/.icons/bes_theme/alert-octagon-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alert-octagon.svg b/bes_theme/.icons/bes_theme/alert-octagon.svg deleted file mode 100644 index 06d54fc6..00000000 --- a/bes_theme/.icons/bes_theme/alert-octagon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alert-octagram-outline.svg b/bes_theme/.icons/bes_theme/alert-octagram-outline.svg deleted file mode 100644 index 47dc8d24..00000000 --- a/bes_theme/.icons/bes_theme/alert-octagram-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alert-octagram.svg b/bes_theme/.icons/bes_theme/alert-octagram.svg deleted file mode 100644 index 487b1f1e..00000000 --- a/bes_theme/.icons/bes_theme/alert-octagram.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alert-outline.svg b/bes_theme/.icons/bes_theme/alert-outline.svg deleted file mode 100644 index fa3f21ea..00000000 --- a/bes_theme/.icons/bes_theme/alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alert-plus-outline.svg b/bes_theme/.icons/bes_theme/alert-plus-outline.svg deleted file mode 100644 index 5bbdd884..00000000 --- a/bes_theme/.icons/bes_theme/alert-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alert-plus.svg b/bes_theme/.icons/bes_theme/alert-plus.svg deleted file mode 100644 index adf2d4a7..00000000 --- a/bes_theme/.icons/bes_theme/alert-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alert-remove-outline.svg b/bes_theme/.icons/bes_theme/alert-remove-outline.svg deleted file mode 100644 index a2eaedec..00000000 --- a/bes_theme/.icons/bes_theme/alert-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alert-remove.svg b/bes_theme/.icons/bes_theme/alert-remove.svg deleted file mode 100644 index d3befd40..00000000 --- a/bes_theme/.icons/bes_theme/alert-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alert-rhombus-outline.svg b/bes_theme/.icons/bes_theme/alert-rhombus-outline.svg deleted file mode 100644 index 5a384b90..00000000 --- a/bes_theme/.icons/bes_theme/alert-rhombus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alert-rhombus.svg b/bes_theme/.icons/bes_theme/alert-rhombus.svg deleted file mode 100644 index a04d319d..00000000 --- a/bes_theme/.icons/bes_theme/alert-rhombus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alert.svg b/bes_theme/.icons/bes_theme/alert.svg deleted file mode 100644 index d18c289a..00000000 --- a/bes_theme/.icons/bes_theme/alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alien-outline.svg b/bes_theme/.icons/bes_theme/alien-outline.svg deleted file mode 100644 index 83f7d459..00000000 --- a/bes_theme/.icons/bes_theme/alien-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alien.svg b/bes_theme/.icons/bes_theme/alien.svg deleted file mode 100644 index 267d2966..00000000 --- a/bes_theme/.icons/bes_theme/alien.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/align-horizontal-center.svg b/bes_theme/.icons/bes_theme/align-horizontal-center.svg deleted file mode 100644 index 39280372..00000000 --- a/bes_theme/.icons/bes_theme/align-horizontal-center.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/align-horizontal-left.svg b/bes_theme/.icons/bes_theme/align-horizontal-left.svg deleted file mode 100644 index f98c4b38..00000000 --- a/bes_theme/.icons/bes_theme/align-horizontal-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/align-horizontal-right.svg b/bes_theme/.icons/bes_theme/align-horizontal-right.svg deleted file mode 100644 index 7c316774..00000000 --- a/bes_theme/.icons/bes_theme/align-horizontal-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/align-vertical-bottom.svg b/bes_theme/.icons/bes_theme/align-vertical-bottom.svg deleted file mode 100644 index 5bc04237..00000000 --- a/bes_theme/.icons/bes_theme/align-vertical-bottom.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/align-vertical-center.svg b/bes_theme/.icons/bes_theme/align-vertical-center.svg deleted file mode 100644 index 55af3a3e..00000000 --- a/bes_theme/.icons/bes_theme/align-vertical-center.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/align-vertical-top.svg b/bes_theme/.icons/bes_theme/align-vertical-top.svg deleted file mode 100644 index 08d44900..00000000 --- a/bes_theme/.icons/bes_theme/align-vertical-top.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/all-inclusive.svg b/bes_theme/.icons/bes_theme/all-inclusive.svg deleted file mode 100644 index 37ca8b68..00000000 --- a/bes_theme/.icons/bes_theme/all-inclusive.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/allergy.svg b/bes_theme/.icons/bes_theme/allergy.svg deleted file mode 100644 index 4d812b4a..00000000 --- a/bes_theme/.icons/bes_theme/allergy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-a-box-outline.svg b/bes_theme/.icons/bes_theme/alpha-a-box-outline.svg deleted file mode 100644 index d0582bcd..00000000 --- a/bes_theme/.icons/bes_theme/alpha-a-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-a-box.svg b/bes_theme/.icons/bes_theme/alpha-a-box.svg deleted file mode 100644 index 3a726758..00000000 --- a/bes_theme/.icons/bes_theme/alpha-a-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-a-circle-outline.svg b/bes_theme/.icons/bes_theme/alpha-a-circle-outline.svg deleted file mode 100644 index 2fdd7263..00000000 --- a/bes_theme/.icons/bes_theme/alpha-a-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-a-circle.svg b/bes_theme/.icons/bes_theme/alpha-a-circle.svg deleted file mode 100644 index c45177d8..00000000 --- a/bes_theme/.icons/bes_theme/alpha-a-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-a.svg b/bes_theme/.icons/bes_theme/alpha-a.svg deleted file mode 100644 index e5d5c9e4..00000000 --- a/bes_theme/.icons/bes_theme/alpha-a.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-b-box-outline.svg b/bes_theme/.icons/bes_theme/alpha-b-box-outline.svg deleted file mode 100644 index fb53dbad..00000000 --- a/bes_theme/.icons/bes_theme/alpha-b-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-b-box.svg b/bes_theme/.icons/bes_theme/alpha-b-box.svg deleted file mode 100644 index c3cb0e19..00000000 --- a/bes_theme/.icons/bes_theme/alpha-b-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-b-circle-outline.svg b/bes_theme/.icons/bes_theme/alpha-b-circle-outline.svg deleted file mode 100644 index e9893395..00000000 --- a/bes_theme/.icons/bes_theme/alpha-b-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-b-circle.svg b/bes_theme/.icons/bes_theme/alpha-b-circle.svg deleted file mode 100644 index 7d68efc0..00000000 --- a/bes_theme/.icons/bes_theme/alpha-b-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-b.svg b/bes_theme/.icons/bes_theme/alpha-b.svg deleted file mode 100644 index 5a41ff6e..00000000 --- a/bes_theme/.icons/bes_theme/alpha-b.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-c-box-outline.svg b/bes_theme/.icons/bes_theme/alpha-c-box-outline.svg deleted file mode 100644 index a2a9d8c8..00000000 --- a/bes_theme/.icons/bes_theme/alpha-c-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-c-box.svg b/bes_theme/.icons/bes_theme/alpha-c-box.svg deleted file mode 100644 index 85740307..00000000 --- a/bes_theme/.icons/bes_theme/alpha-c-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-c-circle-outline.svg b/bes_theme/.icons/bes_theme/alpha-c-circle-outline.svg deleted file mode 100644 index 08fdf20f..00000000 --- a/bes_theme/.icons/bes_theme/alpha-c-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-c-circle.svg b/bes_theme/.icons/bes_theme/alpha-c-circle.svg deleted file mode 100644 index fec5302d..00000000 --- a/bes_theme/.icons/bes_theme/alpha-c-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-c.svg b/bes_theme/.icons/bes_theme/alpha-c.svg deleted file mode 100644 index bc917d37..00000000 --- a/bes_theme/.icons/bes_theme/alpha-c.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-d-box-outline.svg b/bes_theme/.icons/bes_theme/alpha-d-box-outline.svg deleted file mode 100644 index 1f954223..00000000 --- a/bes_theme/.icons/bes_theme/alpha-d-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-d-box.svg b/bes_theme/.icons/bes_theme/alpha-d-box.svg deleted file mode 100644 index e26b5a2b..00000000 --- a/bes_theme/.icons/bes_theme/alpha-d-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-d-circle-outline.svg b/bes_theme/.icons/bes_theme/alpha-d-circle-outline.svg deleted file mode 100644 index 21489685..00000000 --- a/bes_theme/.icons/bes_theme/alpha-d-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-d-circle.svg b/bes_theme/.icons/bes_theme/alpha-d-circle.svg deleted file mode 100644 index 6fd11ef1..00000000 --- a/bes_theme/.icons/bes_theme/alpha-d-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-d.svg b/bes_theme/.icons/bes_theme/alpha-d.svg deleted file mode 100644 index 6182739c..00000000 --- a/bes_theme/.icons/bes_theme/alpha-d.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-e-box-outline.svg b/bes_theme/.icons/bes_theme/alpha-e-box-outline.svg deleted file mode 100644 index 2fbbe804..00000000 --- a/bes_theme/.icons/bes_theme/alpha-e-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-e-box.svg b/bes_theme/.icons/bes_theme/alpha-e-box.svg deleted file mode 100644 index 26007cf8..00000000 --- a/bes_theme/.icons/bes_theme/alpha-e-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-e-circle-outline.svg b/bes_theme/.icons/bes_theme/alpha-e-circle-outline.svg deleted file mode 100644 index e9706954..00000000 --- a/bes_theme/.icons/bes_theme/alpha-e-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-e-circle.svg b/bes_theme/.icons/bes_theme/alpha-e-circle.svg deleted file mode 100644 index 4bc7fcec..00000000 --- a/bes_theme/.icons/bes_theme/alpha-e-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-e.svg b/bes_theme/.icons/bes_theme/alpha-e.svg deleted file mode 100644 index e1f2f09b..00000000 --- a/bes_theme/.icons/bes_theme/alpha-e.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-f-box-outline.svg b/bes_theme/.icons/bes_theme/alpha-f-box-outline.svg deleted file mode 100644 index 76a4d6da..00000000 --- a/bes_theme/.icons/bes_theme/alpha-f-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-f-box.svg b/bes_theme/.icons/bes_theme/alpha-f-box.svg deleted file mode 100644 index 97fd7183..00000000 --- a/bes_theme/.icons/bes_theme/alpha-f-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-f-circle-outline.svg b/bes_theme/.icons/bes_theme/alpha-f-circle-outline.svg deleted file mode 100644 index c5afe892..00000000 --- a/bes_theme/.icons/bes_theme/alpha-f-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-f-circle.svg b/bes_theme/.icons/bes_theme/alpha-f-circle.svg deleted file mode 100644 index 47d29e7a..00000000 --- a/bes_theme/.icons/bes_theme/alpha-f-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-f.svg b/bes_theme/.icons/bes_theme/alpha-f.svg deleted file mode 100644 index e1bb4343..00000000 --- a/bes_theme/.icons/bes_theme/alpha-f.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-g-box-outline.svg b/bes_theme/.icons/bes_theme/alpha-g-box-outline.svg deleted file mode 100644 index de344398..00000000 --- a/bes_theme/.icons/bes_theme/alpha-g-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-g-box.svg b/bes_theme/.icons/bes_theme/alpha-g-box.svg deleted file mode 100644 index 0cb2018b..00000000 --- a/bes_theme/.icons/bes_theme/alpha-g-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-g-circle-outline.svg b/bes_theme/.icons/bes_theme/alpha-g-circle-outline.svg deleted file mode 100644 index b0a455b4..00000000 --- a/bes_theme/.icons/bes_theme/alpha-g-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-g-circle.svg b/bes_theme/.icons/bes_theme/alpha-g-circle.svg deleted file mode 100644 index 46a1fd25..00000000 --- a/bes_theme/.icons/bes_theme/alpha-g-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-g.svg b/bes_theme/.icons/bes_theme/alpha-g.svg deleted file mode 100644 index 769148bc..00000000 --- a/bes_theme/.icons/bes_theme/alpha-g.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-h-box-outline.svg b/bes_theme/.icons/bes_theme/alpha-h-box-outline.svg deleted file mode 100644 index ddc35942..00000000 --- a/bes_theme/.icons/bes_theme/alpha-h-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-h-box.svg b/bes_theme/.icons/bes_theme/alpha-h-box.svg deleted file mode 100644 index 005cf25e..00000000 --- a/bes_theme/.icons/bes_theme/alpha-h-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-h-circle-outline.svg b/bes_theme/.icons/bes_theme/alpha-h-circle-outline.svg deleted file mode 100644 index 4f829e09..00000000 --- a/bes_theme/.icons/bes_theme/alpha-h-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-h-circle.svg b/bes_theme/.icons/bes_theme/alpha-h-circle.svg deleted file mode 100644 index 2fa21722..00000000 --- a/bes_theme/.icons/bes_theme/alpha-h-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-h.svg b/bes_theme/.icons/bes_theme/alpha-h.svg deleted file mode 100644 index 3ab09b95..00000000 --- a/bes_theme/.icons/bes_theme/alpha-h.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-i-box-outline.svg b/bes_theme/.icons/bes_theme/alpha-i-box-outline.svg deleted file mode 100644 index e20a06a4..00000000 --- a/bes_theme/.icons/bes_theme/alpha-i-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-i-box.svg b/bes_theme/.icons/bes_theme/alpha-i-box.svg deleted file mode 100644 index f1f5d874..00000000 --- a/bes_theme/.icons/bes_theme/alpha-i-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-i-circle-outline.svg b/bes_theme/.icons/bes_theme/alpha-i-circle-outline.svg deleted file mode 100644 index ea1024ba..00000000 --- a/bes_theme/.icons/bes_theme/alpha-i-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-i-circle.svg b/bes_theme/.icons/bes_theme/alpha-i-circle.svg deleted file mode 100644 index a746cd4e..00000000 --- a/bes_theme/.icons/bes_theme/alpha-i-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-i.svg b/bes_theme/.icons/bes_theme/alpha-i.svg deleted file mode 100644 index a02ab545..00000000 --- a/bes_theme/.icons/bes_theme/alpha-i.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-j-box-outline.svg b/bes_theme/.icons/bes_theme/alpha-j-box-outline.svg deleted file mode 100644 index fa9b0c0e..00000000 --- a/bes_theme/.icons/bes_theme/alpha-j-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-j-box.svg b/bes_theme/.icons/bes_theme/alpha-j-box.svg deleted file mode 100644 index ec1a5cfa..00000000 --- a/bes_theme/.icons/bes_theme/alpha-j-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-j-circle-outline.svg b/bes_theme/.icons/bes_theme/alpha-j-circle-outline.svg deleted file mode 100644 index 9df6bbc0..00000000 --- a/bes_theme/.icons/bes_theme/alpha-j-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-j-circle.svg b/bes_theme/.icons/bes_theme/alpha-j-circle.svg deleted file mode 100644 index ab19e4c4..00000000 --- a/bes_theme/.icons/bes_theme/alpha-j-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-j.svg b/bes_theme/.icons/bes_theme/alpha-j.svg deleted file mode 100644 index 11e50323..00000000 --- a/bes_theme/.icons/bes_theme/alpha-j.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-k-box-outline.svg b/bes_theme/.icons/bes_theme/alpha-k-box-outline.svg deleted file mode 100644 index 39e5c5b7..00000000 --- a/bes_theme/.icons/bes_theme/alpha-k-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-k-box.svg b/bes_theme/.icons/bes_theme/alpha-k-box.svg deleted file mode 100644 index 6742ae50..00000000 --- a/bes_theme/.icons/bes_theme/alpha-k-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-k-circle-outline.svg b/bes_theme/.icons/bes_theme/alpha-k-circle-outline.svg deleted file mode 100644 index 2c3796cb..00000000 --- a/bes_theme/.icons/bes_theme/alpha-k-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-k-circle.svg b/bes_theme/.icons/bes_theme/alpha-k-circle.svg deleted file mode 100644 index 8e46dfa4..00000000 --- a/bes_theme/.icons/bes_theme/alpha-k-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-k.svg b/bes_theme/.icons/bes_theme/alpha-k.svg deleted file mode 100644 index 365868ac..00000000 --- a/bes_theme/.icons/bes_theme/alpha-k.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-l-box-outline.svg b/bes_theme/.icons/bes_theme/alpha-l-box-outline.svg deleted file mode 100644 index 304224dd..00000000 --- a/bes_theme/.icons/bes_theme/alpha-l-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-l-box.svg b/bes_theme/.icons/bes_theme/alpha-l-box.svg deleted file mode 100644 index 121f7cc2..00000000 --- a/bes_theme/.icons/bes_theme/alpha-l-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-l-circle-outline.svg b/bes_theme/.icons/bes_theme/alpha-l-circle-outline.svg deleted file mode 100644 index ed91cb30..00000000 --- a/bes_theme/.icons/bes_theme/alpha-l-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-l-circle.svg b/bes_theme/.icons/bes_theme/alpha-l-circle.svg deleted file mode 100644 index 9cf48f79..00000000 --- a/bes_theme/.icons/bes_theme/alpha-l-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-l.svg b/bes_theme/.icons/bes_theme/alpha-l.svg deleted file mode 100644 index f3ebde28..00000000 --- a/bes_theme/.icons/bes_theme/alpha-l.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-m-box-outline.svg b/bes_theme/.icons/bes_theme/alpha-m-box-outline.svg deleted file mode 100644 index 507bb7db..00000000 --- a/bes_theme/.icons/bes_theme/alpha-m-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-m-box.svg b/bes_theme/.icons/bes_theme/alpha-m-box.svg deleted file mode 100644 index ddbb55bd..00000000 --- a/bes_theme/.icons/bes_theme/alpha-m-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-m-circle-outline.svg b/bes_theme/.icons/bes_theme/alpha-m-circle-outline.svg deleted file mode 100644 index a61e591a..00000000 --- a/bes_theme/.icons/bes_theme/alpha-m-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-m-circle.svg b/bes_theme/.icons/bes_theme/alpha-m-circle.svg deleted file mode 100644 index 9168b9fb..00000000 --- a/bes_theme/.icons/bes_theme/alpha-m-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-m.svg b/bes_theme/.icons/bes_theme/alpha-m.svg deleted file mode 100644 index 638ede0e..00000000 --- a/bes_theme/.icons/bes_theme/alpha-m.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-n-box-outline.svg b/bes_theme/.icons/bes_theme/alpha-n-box-outline.svg deleted file mode 100644 index 844b8b0a..00000000 --- a/bes_theme/.icons/bes_theme/alpha-n-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-n-box.svg b/bes_theme/.icons/bes_theme/alpha-n-box.svg deleted file mode 100644 index 37a00ae7..00000000 --- a/bes_theme/.icons/bes_theme/alpha-n-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-n-circle-outline.svg b/bes_theme/.icons/bes_theme/alpha-n-circle-outline.svg deleted file mode 100644 index 58bf4506..00000000 --- a/bes_theme/.icons/bes_theme/alpha-n-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-n-circle.svg b/bes_theme/.icons/bes_theme/alpha-n-circle.svg deleted file mode 100644 index 4167ede8..00000000 --- a/bes_theme/.icons/bes_theme/alpha-n-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-n.svg b/bes_theme/.icons/bes_theme/alpha-n.svg deleted file mode 100644 index 3e20f7fb..00000000 --- a/bes_theme/.icons/bes_theme/alpha-n.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-o-box-outline.svg b/bes_theme/.icons/bes_theme/alpha-o-box-outline.svg deleted file mode 100644 index 6e0c71bd..00000000 --- a/bes_theme/.icons/bes_theme/alpha-o-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-o-box.svg b/bes_theme/.icons/bes_theme/alpha-o-box.svg deleted file mode 100644 index 3a66aabb..00000000 --- a/bes_theme/.icons/bes_theme/alpha-o-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-o-circle-outline.svg b/bes_theme/.icons/bes_theme/alpha-o-circle-outline.svg deleted file mode 100644 index 6ce5b972..00000000 --- a/bes_theme/.icons/bes_theme/alpha-o-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-o-circle.svg b/bes_theme/.icons/bes_theme/alpha-o-circle.svg deleted file mode 100644 index 492e9fbd..00000000 --- a/bes_theme/.icons/bes_theme/alpha-o-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-o.svg b/bes_theme/.icons/bes_theme/alpha-o.svg deleted file mode 100644 index 478f01a3..00000000 --- a/bes_theme/.icons/bes_theme/alpha-o.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-p-box-outline.svg b/bes_theme/.icons/bes_theme/alpha-p-box-outline.svg deleted file mode 100644 index 84153071..00000000 --- a/bes_theme/.icons/bes_theme/alpha-p-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-p-box.svg b/bes_theme/.icons/bes_theme/alpha-p-box.svg deleted file mode 100644 index 10c27e4f..00000000 --- a/bes_theme/.icons/bes_theme/alpha-p-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-p-circle-outline.svg b/bes_theme/.icons/bes_theme/alpha-p-circle-outline.svg deleted file mode 100644 index dd74830c..00000000 --- a/bes_theme/.icons/bes_theme/alpha-p-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-p-circle.svg b/bes_theme/.icons/bes_theme/alpha-p-circle.svg deleted file mode 100644 index 1f9cfc44..00000000 --- a/bes_theme/.icons/bes_theme/alpha-p-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-p.svg b/bes_theme/.icons/bes_theme/alpha-p.svg deleted file mode 100644 index a07c9322..00000000 --- a/bes_theme/.icons/bes_theme/alpha-p.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-q-box-outline.svg b/bes_theme/.icons/bes_theme/alpha-q-box-outline.svg deleted file mode 100644 index 25b0848c..00000000 --- a/bes_theme/.icons/bes_theme/alpha-q-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-q-box.svg b/bes_theme/.icons/bes_theme/alpha-q-box.svg deleted file mode 100644 index 8bee2e80..00000000 --- a/bes_theme/.icons/bes_theme/alpha-q-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-q-circle-outline.svg b/bes_theme/.icons/bes_theme/alpha-q-circle-outline.svg deleted file mode 100644 index 5390ed2f..00000000 --- a/bes_theme/.icons/bes_theme/alpha-q-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-q-circle.svg b/bes_theme/.icons/bes_theme/alpha-q-circle.svg deleted file mode 100644 index 7c7a3506..00000000 --- a/bes_theme/.icons/bes_theme/alpha-q-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-q.svg b/bes_theme/.icons/bes_theme/alpha-q.svg deleted file mode 100644 index 232b9b44..00000000 --- a/bes_theme/.icons/bes_theme/alpha-q.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-r-box-outline.svg b/bes_theme/.icons/bes_theme/alpha-r-box-outline.svg deleted file mode 100644 index d0883769..00000000 --- a/bes_theme/.icons/bes_theme/alpha-r-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-r-box.svg b/bes_theme/.icons/bes_theme/alpha-r-box.svg deleted file mode 100644 index 663ee32b..00000000 --- a/bes_theme/.icons/bes_theme/alpha-r-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-r-circle-outline.svg b/bes_theme/.icons/bes_theme/alpha-r-circle-outline.svg deleted file mode 100644 index 2cacf50f..00000000 --- a/bes_theme/.icons/bes_theme/alpha-r-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-r-circle.svg b/bes_theme/.icons/bes_theme/alpha-r-circle.svg deleted file mode 100644 index b675c656..00000000 --- a/bes_theme/.icons/bes_theme/alpha-r-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-r.svg b/bes_theme/.icons/bes_theme/alpha-r.svg deleted file mode 100644 index 1ac2fae3..00000000 --- a/bes_theme/.icons/bes_theme/alpha-r.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-s-box-outline.svg b/bes_theme/.icons/bes_theme/alpha-s-box-outline.svg deleted file mode 100644 index b73ac288..00000000 --- a/bes_theme/.icons/bes_theme/alpha-s-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-s-box.svg b/bes_theme/.icons/bes_theme/alpha-s-box.svg deleted file mode 100644 index 6afd8513..00000000 --- a/bes_theme/.icons/bes_theme/alpha-s-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-s-circle-outline.svg b/bes_theme/.icons/bes_theme/alpha-s-circle-outline.svg deleted file mode 100644 index d1ec21d1..00000000 --- a/bes_theme/.icons/bes_theme/alpha-s-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-s-circle.svg b/bes_theme/.icons/bes_theme/alpha-s-circle.svg deleted file mode 100644 index b84c33f7..00000000 --- a/bes_theme/.icons/bes_theme/alpha-s-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-s.svg b/bes_theme/.icons/bes_theme/alpha-s.svg deleted file mode 100644 index 93c09655..00000000 --- a/bes_theme/.icons/bes_theme/alpha-s.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-t-box-outline.svg b/bes_theme/.icons/bes_theme/alpha-t-box-outline.svg deleted file mode 100644 index dca6f8af..00000000 --- a/bes_theme/.icons/bes_theme/alpha-t-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-t-box.svg b/bes_theme/.icons/bes_theme/alpha-t-box.svg deleted file mode 100644 index 59db8bbd..00000000 --- a/bes_theme/.icons/bes_theme/alpha-t-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-t-circle-outline.svg b/bes_theme/.icons/bes_theme/alpha-t-circle-outline.svg deleted file mode 100644 index d3543c18..00000000 --- a/bes_theme/.icons/bes_theme/alpha-t-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-t-circle.svg b/bes_theme/.icons/bes_theme/alpha-t-circle.svg deleted file mode 100644 index ae739b16..00000000 --- a/bes_theme/.icons/bes_theme/alpha-t-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-t.svg b/bes_theme/.icons/bes_theme/alpha-t.svg deleted file mode 100644 index 26f7ad9d..00000000 --- a/bes_theme/.icons/bes_theme/alpha-t.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-u-box-outline.svg b/bes_theme/.icons/bes_theme/alpha-u-box-outline.svg deleted file mode 100644 index 58bbb92d..00000000 --- a/bes_theme/.icons/bes_theme/alpha-u-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-u-box.svg b/bes_theme/.icons/bes_theme/alpha-u-box.svg deleted file mode 100644 index 423e438e..00000000 --- a/bes_theme/.icons/bes_theme/alpha-u-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-u-circle-outline.svg b/bes_theme/.icons/bes_theme/alpha-u-circle-outline.svg deleted file mode 100644 index 656f4e82..00000000 --- a/bes_theme/.icons/bes_theme/alpha-u-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-u-circle.svg b/bes_theme/.icons/bes_theme/alpha-u-circle.svg deleted file mode 100644 index 560e5567..00000000 --- a/bes_theme/.icons/bes_theme/alpha-u-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-u.svg b/bes_theme/.icons/bes_theme/alpha-u.svg deleted file mode 100644 index 124a9101..00000000 --- a/bes_theme/.icons/bes_theme/alpha-u.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-v-box-outline.svg b/bes_theme/.icons/bes_theme/alpha-v-box-outline.svg deleted file mode 100644 index 58767b00..00000000 --- a/bes_theme/.icons/bes_theme/alpha-v-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-v-box.svg b/bes_theme/.icons/bes_theme/alpha-v-box.svg deleted file mode 100644 index bab174f0..00000000 --- a/bes_theme/.icons/bes_theme/alpha-v-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-v-circle-outline.svg b/bes_theme/.icons/bes_theme/alpha-v-circle-outline.svg deleted file mode 100644 index 7c773505..00000000 --- a/bes_theme/.icons/bes_theme/alpha-v-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-v-circle.svg b/bes_theme/.icons/bes_theme/alpha-v-circle.svg deleted file mode 100644 index 4064a753..00000000 --- a/bes_theme/.icons/bes_theme/alpha-v-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-v.svg b/bes_theme/.icons/bes_theme/alpha-v.svg deleted file mode 100644 index e266e605..00000000 --- a/bes_theme/.icons/bes_theme/alpha-v.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-w-box-outline.svg b/bes_theme/.icons/bes_theme/alpha-w-box-outline.svg deleted file mode 100644 index 421e57d0..00000000 --- a/bes_theme/.icons/bes_theme/alpha-w-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-w-box.svg b/bes_theme/.icons/bes_theme/alpha-w-box.svg deleted file mode 100644 index ff12f851..00000000 --- a/bes_theme/.icons/bes_theme/alpha-w-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-w-circle-outline.svg b/bes_theme/.icons/bes_theme/alpha-w-circle-outline.svg deleted file mode 100644 index e5faea24..00000000 --- a/bes_theme/.icons/bes_theme/alpha-w-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-w-circle.svg b/bes_theme/.icons/bes_theme/alpha-w-circle.svg deleted file mode 100644 index d94187d5..00000000 --- a/bes_theme/.icons/bes_theme/alpha-w-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-w.svg b/bes_theme/.icons/bes_theme/alpha-w.svg deleted file mode 100644 index d631d390..00000000 --- a/bes_theme/.icons/bes_theme/alpha-w.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-x-box-outline.svg b/bes_theme/.icons/bes_theme/alpha-x-box-outline.svg deleted file mode 100644 index e0bbb9f1..00000000 --- a/bes_theme/.icons/bes_theme/alpha-x-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-x-box.svg b/bes_theme/.icons/bes_theme/alpha-x-box.svg deleted file mode 100644 index 97714dda..00000000 --- a/bes_theme/.icons/bes_theme/alpha-x-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-x-circle-outline.svg b/bes_theme/.icons/bes_theme/alpha-x-circle-outline.svg deleted file mode 100644 index 02b58d38..00000000 --- a/bes_theme/.icons/bes_theme/alpha-x-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-x-circle.svg b/bes_theme/.icons/bes_theme/alpha-x-circle.svg deleted file mode 100644 index f806f1b7..00000000 --- a/bes_theme/.icons/bes_theme/alpha-x-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-x.svg b/bes_theme/.icons/bes_theme/alpha-x.svg deleted file mode 100644 index ca6a7fc5..00000000 --- a/bes_theme/.icons/bes_theme/alpha-x.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-y-box-outline.svg b/bes_theme/.icons/bes_theme/alpha-y-box-outline.svg deleted file mode 100644 index 7c401665..00000000 --- a/bes_theme/.icons/bes_theme/alpha-y-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-y-box.svg b/bes_theme/.icons/bes_theme/alpha-y-box.svg deleted file mode 100644 index 3a3f6102..00000000 --- a/bes_theme/.icons/bes_theme/alpha-y-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-y-circle-outline.svg b/bes_theme/.icons/bes_theme/alpha-y-circle-outline.svg deleted file mode 100644 index a81e2511..00000000 --- a/bes_theme/.icons/bes_theme/alpha-y-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-y-circle.svg b/bes_theme/.icons/bes_theme/alpha-y-circle.svg deleted file mode 100644 index 720ef355..00000000 --- a/bes_theme/.icons/bes_theme/alpha-y-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-y.svg b/bes_theme/.icons/bes_theme/alpha-y.svg deleted file mode 100644 index 7bad098a..00000000 --- a/bes_theme/.icons/bes_theme/alpha-y.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-z-box-outline.svg b/bes_theme/.icons/bes_theme/alpha-z-box-outline.svg deleted file mode 100644 index 07992458..00000000 --- a/bes_theme/.icons/bes_theme/alpha-z-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-z-box.svg b/bes_theme/.icons/bes_theme/alpha-z-box.svg deleted file mode 100644 index 8f1b1029..00000000 --- a/bes_theme/.icons/bes_theme/alpha-z-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-z-circle-outline.svg b/bes_theme/.icons/bes_theme/alpha-z-circle-outline.svg deleted file mode 100644 index 9a69efed..00000000 --- a/bes_theme/.icons/bes_theme/alpha-z-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-z-circle.svg b/bes_theme/.icons/bes_theme/alpha-z-circle.svg deleted file mode 100644 index 564594ef..00000000 --- a/bes_theme/.icons/bes_theme/alpha-z-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha-z.svg b/bes_theme/.icons/bes_theme/alpha-z.svg deleted file mode 100644 index a2f778db..00000000 --- a/bes_theme/.icons/bes_theme/alpha-z.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alpha.svg b/bes_theme/.icons/bes_theme/alpha.svg deleted file mode 100644 index 4a5790e1..00000000 --- a/bes_theme/.icons/bes_theme/alpha.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alphabet-aurebesh.svg b/bes_theme/.icons/bes_theme/alphabet-aurebesh.svg deleted file mode 100644 index c8af2245..00000000 --- a/bes_theme/.icons/bes_theme/alphabet-aurebesh.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alphabet-cyrillic.svg b/bes_theme/.icons/bes_theme/alphabet-cyrillic.svg deleted file mode 100644 index 44addae6..00000000 --- a/bes_theme/.icons/bes_theme/alphabet-cyrillic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alphabet-greek.svg b/bes_theme/.icons/bes_theme/alphabet-greek.svg deleted file mode 100644 index 64e910a7..00000000 --- a/bes_theme/.icons/bes_theme/alphabet-greek.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alphabet-latin.svg b/bes_theme/.icons/bes_theme/alphabet-latin.svg deleted file mode 100644 index c60be028..00000000 --- a/bes_theme/.icons/bes_theme/alphabet-latin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alphabet-piqad.svg b/bes_theme/.icons/bes_theme/alphabet-piqad.svg deleted file mode 100644 index 48867646..00000000 --- a/bes_theme/.icons/bes_theme/alphabet-piqad.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alphabet-tengwar.svg b/bes_theme/.icons/bes_theme/alphabet-tengwar.svg deleted file mode 100644 index 0ebc77a5..00000000 --- a/bes_theme/.icons/bes_theme/alphabet-tengwar.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alphabetical-off.svg b/bes_theme/.icons/bes_theme/alphabetical-off.svg deleted file mode 100644 index b0950486..00000000 --- a/bes_theme/.icons/bes_theme/alphabetical-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alphabetical-variant-off.svg b/bes_theme/.icons/bes_theme/alphabetical-variant-off.svg deleted file mode 100644 index 4091b77c..00000000 --- a/bes_theme/.icons/bes_theme/alphabetical-variant-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alphabetical-variant.svg b/bes_theme/.icons/bes_theme/alphabetical-variant.svg deleted file mode 100644 index f2b227d5..00000000 --- a/bes_theme/.icons/bes_theme/alphabetical-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/alphabetical.svg b/bes_theme/.icons/bes_theme/alphabetical.svg deleted file mode 100644 index bb306e38..00000000 --- a/bes_theme/.icons/bes_theme/alphabetical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/altimeter.svg b/bes_theme/.icons/bes_theme/altimeter.svg deleted file mode 100644 index 34f7eb38..00000000 --- a/bes_theme/.icons/bes_theme/altimeter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/amazon-alexa.svg b/bes_theme/.icons/bes_theme/amazon-alexa.svg deleted file mode 100644 index 0ca88b7a..00000000 --- a/bes_theme/.icons/bes_theme/amazon-alexa.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/amazon.svg b/bes_theme/.icons/bes_theme/amazon.svg deleted file mode 100644 index cb56b4e2..00000000 --- a/bes_theme/.icons/bes_theme/amazon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ambulance.svg b/bes_theme/.icons/bes_theme/ambulance.svg deleted file mode 100644 index ba8ccc0e..00000000 --- a/bes_theme/.icons/bes_theme/ambulance.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ammunition.svg b/bes_theme/.icons/bes_theme/ammunition.svg deleted file mode 100644 index 21589610..00000000 --- a/bes_theme/.icons/bes_theme/ammunition.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ampersand.svg b/bes_theme/.icons/bes_theme/ampersand.svg deleted file mode 100644 index e0fa5475..00000000 --- a/bes_theme/.icons/bes_theme/ampersand.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/amplifier-off.svg b/bes_theme/.icons/bes_theme/amplifier-off.svg deleted file mode 100644 index 22221964..00000000 --- a/bes_theme/.icons/bes_theme/amplifier-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/amplifier.svg b/bes_theme/.icons/bes_theme/amplifier.svg deleted file mode 100644 index c98bc806..00000000 --- a/bes_theme/.icons/bes_theme/amplifier.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/anchor.svg b/bes_theme/.icons/bes_theme/anchor.svg deleted file mode 100644 index aa184c50..00000000 --- a/bes_theme/.icons/bes_theme/anchor.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/android-auto.svg b/bes_theme/.icons/bes_theme/android-auto.svg deleted file mode 100644 index ed5ac4fb..00000000 --- a/bes_theme/.icons/bes_theme/android-auto.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/android-debug-bridge.svg b/bes_theme/.icons/bes_theme/android-debug-bridge.svg deleted file mode 100644 index abd6e798..00000000 --- a/bes_theme/.icons/bes_theme/android-debug-bridge.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/android-messages.svg b/bes_theme/.icons/bes_theme/android-messages.svg deleted file mode 100644 index 7484cd47..00000000 --- a/bes_theme/.icons/bes_theme/android-messages.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/android-studio.svg b/bes_theme/.icons/bes_theme/android-studio.svg deleted file mode 100644 index 7b4c5aa7..00000000 --- a/bes_theme/.icons/bes_theme/android-studio.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/android.svg b/bes_theme/.icons/bes_theme/android.svg deleted file mode 100644 index 5a65d397..00000000 --- a/bes_theme/.icons/bes_theme/android.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/angle-acute.svg b/bes_theme/.icons/bes_theme/angle-acute.svg deleted file mode 100644 index f63d4b97..00000000 --- a/bes_theme/.icons/bes_theme/angle-acute.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/angle-obtuse.svg b/bes_theme/.icons/bes_theme/angle-obtuse.svg deleted file mode 100644 index f6256a53..00000000 --- a/bes_theme/.icons/bes_theme/angle-obtuse.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/angle-right.svg b/bes_theme/.icons/bes_theme/angle-right.svg deleted file mode 100644 index 975eabdc..00000000 --- a/bes_theme/.icons/bes_theme/angle-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/angular.svg b/bes_theme/.icons/bes_theme/angular.svg deleted file mode 100644 index e585fa64..00000000 --- a/bes_theme/.icons/bes_theme/angular.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/angularjs.svg b/bes_theme/.icons/bes_theme/angularjs.svg deleted file mode 100644 index 94c88e30..00000000 --- a/bes_theme/.icons/bes_theme/angularjs.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/animation-outline.svg b/bes_theme/.icons/bes_theme/animation-outline.svg deleted file mode 100644 index cae2a069..00000000 --- a/bes_theme/.icons/bes_theme/animation-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/animation-play-outline.svg b/bes_theme/.icons/bes_theme/animation-play-outline.svg deleted file mode 100644 index 135919c3..00000000 --- a/bes_theme/.icons/bes_theme/animation-play-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/animation-play.svg b/bes_theme/.icons/bes_theme/animation-play.svg deleted file mode 100644 index 5c7a2e58..00000000 --- a/bes_theme/.icons/bes_theme/animation-play.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/animation.svg b/bes_theme/.icons/bes_theme/animation.svg deleted file mode 100644 index 2fdee894..00000000 --- a/bes_theme/.icons/bes_theme/animation.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ansible.svg b/bes_theme/.icons/bes_theme/ansible.svg deleted file mode 100644 index d8d26db2..00000000 --- a/bes_theme/.icons/bes_theme/ansible.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/antenna.svg b/bes_theme/.icons/bes_theme/antenna.svg deleted file mode 100644 index 7c3a070e..00000000 --- a/bes_theme/.icons/bes_theme/antenna.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/anvil.svg b/bes_theme/.icons/bes_theme/anvil.svg deleted file mode 100644 index c0c467e8..00000000 --- a/bes_theme/.icons/bes_theme/anvil.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/apache-kafka.svg b/bes_theme/.icons/bes_theme/apache-kafka.svg deleted file mode 100644 index 92880cea..00000000 --- a/bes_theme/.icons/bes_theme/apache-kafka.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/api-off.svg b/bes_theme/.icons/bes_theme/api-off.svg deleted file mode 100644 index b9819bbf..00000000 --- a/bes_theme/.icons/bes_theme/api-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/api.svg b/bes_theme/.icons/bes_theme/api.svg deleted file mode 100644 index d2662e87..00000000 --- a/bes_theme/.icons/bes_theme/api.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/apple-airplay.svg b/bes_theme/.icons/bes_theme/apple-airplay.svg deleted file mode 100644 index bf169067..00000000 --- a/bes_theme/.icons/bes_theme/apple-airplay.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/apple-finder.svg b/bes_theme/.icons/bes_theme/apple-finder.svg deleted file mode 100644 index 2e89762b..00000000 --- a/bes_theme/.icons/bes_theme/apple-finder.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/apple-icloud.svg b/bes_theme/.icons/bes_theme/apple-icloud.svg deleted file mode 100644 index dabd8fcb..00000000 --- a/bes_theme/.icons/bes_theme/apple-icloud.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/apple-ios.svg b/bes_theme/.icons/bes_theme/apple-ios.svg deleted file mode 100644 index eec18e1e..00000000 --- a/bes_theme/.icons/bes_theme/apple-ios.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/apple-keyboard-caps.svg b/bes_theme/.icons/bes_theme/apple-keyboard-caps.svg deleted file mode 100644 index 1c652de7..00000000 --- a/bes_theme/.icons/bes_theme/apple-keyboard-caps.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/apple-keyboard-command.svg b/bes_theme/.icons/bes_theme/apple-keyboard-command.svg deleted file mode 100644 index fa8e61c8..00000000 --- a/bes_theme/.icons/bes_theme/apple-keyboard-command.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/apple-keyboard-control.svg b/bes_theme/.icons/bes_theme/apple-keyboard-control.svg deleted file mode 100644 index 1ce865f7..00000000 --- a/bes_theme/.icons/bes_theme/apple-keyboard-control.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/apple-keyboard-option.svg b/bes_theme/.icons/bes_theme/apple-keyboard-option.svg deleted file mode 100644 index 51cbdcf8..00000000 --- a/bes_theme/.icons/bes_theme/apple-keyboard-option.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/apple-keyboard-shift.svg b/bes_theme/.icons/bes_theme/apple-keyboard-shift.svg deleted file mode 100644 index 94a2c633..00000000 --- a/bes_theme/.icons/bes_theme/apple-keyboard-shift.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/apple-safari.svg b/bes_theme/.icons/bes_theme/apple-safari.svg deleted file mode 100644 index 780e609d..00000000 --- a/bes_theme/.icons/bes_theme/apple-safari.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/apple.svg b/bes_theme/.icons/bes_theme/apple.svg deleted file mode 100644 index 59763d87..00000000 --- a/bes_theme/.icons/bes_theme/apple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/application-cog.svg b/bes_theme/.icons/bes_theme/application-cog.svg deleted file mode 100644 index 79e53caa..00000000 --- a/bes_theme/.icons/bes_theme/application-cog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/application-export.svg b/bes_theme/.icons/bes_theme/application-export.svg deleted file mode 100644 index 5e65c4b9..00000000 --- a/bes_theme/.icons/bes_theme/application-export.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/application-import.svg b/bes_theme/.icons/bes_theme/application-import.svg deleted file mode 100644 index e5c1f7cd..00000000 --- a/bes_theme/.icons/bes_theme/application-import.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/application-settings.svg b/bes_theme/.icons/bes_theme/application-settings.svg deleted file mode 100644 index 3d835c84..00000000 --- a/bes_theme/.icons/bes_theme/application-settings.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/application.svg b/bes_theme/.icons/bes_theme/application.svg deleted file mode 100644 index 226d7d31..00000000 --- a/bes_theme/.icons/bes_theme/application.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/approximately-equal-box.svg b/bes_theme/.icons/bes_theme/approximately-equal-box.svg deleted file mode 100644 index 01e1eb34..00000000 --- a/bes_theme/.icons/bes_theme/approximately-equal-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/approximately-equal.svg b/bes_theme/.icons/bes_theme/approximately-equal.svg deleted file mode 100644 index 45258556..00000000 --- a/bes_theme/.icons/bes_theme/approximately-equal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/apps-box.svg b/bes_theme/.icons/bes_theme/apps-box.svg deleted file mode 100644 index 55a4ba5b..00000000 --- a/bes_theme/.icons/bes_theme/apps-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/apps.svg b/bes_theme/.icons/bes_theme/apps.svg deleted file mode 100644 index 5ff759bf..00000000 --- a/bes_theme/.icons/bes_theme/apps.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arch.svg b/bes_theme/.icons/bes_theme/arch.svg deleted file mode 100644 index 1e18ecdd..00000000 --- a/bes_theme/.icons/bes_theme/arch.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/archive-alert-outline.svg b/bes_theme/.icons/bes_theme/archive-alert-outline.svg deleted file mode 100644 index 530af12c..00000000 --- a/bes_theme/.icons/bes_theme/archive-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/archive-alert.svg b/bes_theme/.icons/bes_theme/archive-alert.svg deleted file mode 100644 index f0539d39..00000000 --- a/bes_theme/.icons/bes_theme/archive-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/archive-arrow-down-outline.svg b/bes_theme/.icons/bes_theme/archive-arrow-down-outline.svg deleted file mode 100644 index e98053d7..00000000 --- a/bes_theme/.icons/bes_theme/archive-arrow-down-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/archive-arrow-down.svg b/bes_theme/.icons/bes_theme/archive-arrow-down.svg deleted file mode 100644 index aa7cedaa..00000000 --- a/bes_theme/.icons/bes_theme/archive-arrow-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/archive-arrow-up-outline.svg b/bes_theme/.icons/bes_theme/archive-arrow-up-outline.svg deleted file mode 100644 index a36697e4..00000000 --- a/bes_theme/.icons/bes_theme/archive-arrow-up-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/archive-arrow-up.svg b/bes_theme/.icons/bes_theme/archive-arrow-up.svg deleted file mode 100644 index 3a379809..00000000 --- a/bes_theme/.icons/bes_theme/archive-arrow-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/archive-outline.svg b/bes_theme/.icons/bes_theme/archive-outline.svg deleted file mode 100644 index 65debd34..00000000 --- a/bes_theme/.icons/bes_theme/archive-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/archive.svg b/bes_theme/.icons/bes_theme/archive.svg deleted file mode 100644 index 45d39cb7..00000000 --- a/bes_theme/.icons/bes_theme/archive.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arm-flex-outline.svg b/bes_theme/.icons/bes_theme/arm-flex-outline.svg deleted file mode 100644 index 0b546c55..00000000 --- a/bes_theme/.icons/bes_theme/arm-flex-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arm-flex.svg b/bes_theme/.icons/bes_theme/arm-flex.svg deleted file mode 100644 index ecfe412f..00000000 --- a/bes_theme/.icons/bes_theme/arm-flex.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrange-bring-forward.svg b/bes_theme/.icons/bes_theme/arrange-bring-forward.svg deleted file mode 100644 index 3383c84e..00000000 --- a/bes_theme/.icons/bes_theme/arrange-bring-forward.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrange-bring-to-front.svg b/bes_theme/.icons/bes_theme/arrange-bring-to-front.svg deleted file mode 100644 index b74b9275..00000000 --- a/bes_theme/.icons/bes_theme/arrange-bring-to-front.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrange-send-backward.svg b/bes_theme/.icons/bes_theme/arrange-send-backward.svg deleted file mode 100644 index 1e11ad8c..00000000 --- a/bes_theme/.icons/bes_theme/arrange-send-backward.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrange-send-to-back.svg b/bes_theme/.icons/bes_theme/arrange-send-to-back.svg deleted file mode 100644 index 97b2137a..00000000 --- a/bes_theme/.icons/bes_theme/arrange-send-to-back.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-all.svg b/bes_theme/.icons/bes_theme/arrow-all.svg deleted file mode 100644 index 5850f86a..00000000 --- a/bes_theme/.icons/bes_theme/arrow-all.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-bottom-left-bold-outline.svg b/bes_theme/.icons/bes_theme/arrow-bottom-left-bold-outline.svg deleted file mode 100644 index 258f5bad..00000000 --- a/bes_theme/.icons/bes_theme/arrow-bottom-left-bold-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-bottom-left-thick.svg b/bes_theme/.icons/bes_theme/arrow-bottom-left-thick.svg deleted file mode 100644 index 05832469..00000000 --- a/bes_theme/.icons/bes_theme/arrow-bottom-left-thick.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-bottom-left-thin-circle-outline.svg b/bes_theme/.icons/bes_theme/arrow-bottom-left-thin-circle-outline.svg deleted file mode 100644 index a4e19d39..00000000 --- a/bes_theme/.icons/bes_theme/arrow-bottom-left-thin-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-bottom-left.svg b/bes_theme/.icons/bes_theme/arrow-bottom-left.svg deleted file mode 100644 index 7e921a09..00000000 --- a/bes_theme/.icons/bes_theme/arrow-bottom-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-bottom-right-bold-outline.svg b/bes_theme/.icons/bes_theme/arrow-bottom-right-bold-outline.svg deleted file mode 100644 index 7512ba56..00000000 --- a/bes_theme/.icons/bes_theme/arrow-bottom-right-bold-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-bottom-right-thick.svg b/bes_theme/.icons/bes_theme/arrow-bottom-right-thick.svg deleted file mode 100644 index 30dd6639..00000000 --- a/bes_theme/.icons/bes_theme/arrow-bottom-right-thick.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-bottom-right-thin-circle-outline.svg b/bes_theme/.icons/bes_theme/arrow-bottom-right-thin-circle-outline.svg deleted file mode 100644 index 7ce3aa1e..00000000 --- a/bes_theme/.icons/bes_theme/arrow-bottom-right-thin-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-bottom-right.svg b/bes_theme/.icons/bes_theme/arrow-bottom-right.svg deleted file mode 100644 index dc551c70..00000000 --- a/bes_theme/.icons/bes_theme/arrow-bottom-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-collapse-all.svg b/bes_theme/.icons/bes_theme/arrow-collapse-all.svg deleted file mode 100644 index b4342770..00000000 --- a/bes_theme/.icons/bes_theme/arrow-collapse-all.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-collapse-down.svg b/bes_theme/.icons/bes_theme/arrow-collapse-down.svg deleted file mode 100644 index b6d400f8..00000000 --- a/bes_theme/.icons/bes_theme/arrow-collapse-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-collapse-horizontal.svg b/bes_theme/.icons/bes_theme/arrow-collapse-horizontal.svg deleted file mode 100644 index ecf79816..00000000 --- a/bes_theme/.icons/bes_theme/arrow-collapse-horizontal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-collapse-left.svg b/bes_theme/.icons/bes_theme/arrow-collapse-left.svg deleted file mode 100644 index dda87418..00000000 --- a/bes_theme/.icons/bes_theme/arrow-collapse-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-collapse-right.svg b/bes_theme/.icons/bes_theme/arrow-collapse-right.svg deleted file mode 100644 index aac93a44..00000000 --- a/bes_theme/.icons/bes_theme/arrow-collapse-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-collapse-up.svg b/bes_theme/.icons/bes_theme/arrow-collapse-up.svg deleted file mode 100644 index 93c3ae9b..00000000 --- a/bes_theme/.icons/bes_theme/arrow-collapse-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-collapse-vertical.svg b/bes_theme/.icons/bes_theme/arrow-collapse-vertical.svg deleted file mode 100644 index 0986f935..00000000 --- a/bes_theme/.icons/bes_theme/arrow-collapse-vertical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-collapse.svg b/bes_theme/.icons/bes_theme/arrow-collapse.svg deleted file mode 100644 index 8c1121ed..00000000 --- a/bes_theme/.icons/bes_theme/arrow-collapse.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-decision-auto-outline.svg b/bes_theme/.icons/bes_theme/arrow-decision-auto-outline.svg deleted file mode 100644 index aa665b17..00000000 --- a/bes_theme/.icons/bes_theme/arrow-decision-auto-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-decision-auto.svg b/bes_theme/.icons/bes_theme/arrow-decision-auto.svg deleted file mode 100644 index c217f4f2..00000000 --- a/bes_theme/.icons/bes_theme/arrow-decision-auto.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-decision-outline.svg b/bes_theme/.icons/bes_theme/arrow-decision-outline.svg deleted file mode 100644 index 1bb437ee..00000000 --- a/bes_theme/.icons/bes_theme/arrow-decision-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-decision.svg b/bes_theme/.icons/bes_theme/arrow-decision.svg deleted file mode 100644 index a06c6ee2..00000000 --- a/bes_theme/.icons/bes_theme/arrow-decision.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-down-bold-box-outline.svg b/bes_theme/.icons/bes_theme/arrow-down-bold-box-outline.svg deleted file mode 100644 index a33e7241..00000000 --- a/bes_theme/.icons/bes_theme/arrow-down-bold-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-down-bold-box.svg b/bes_theme/.icons/bes_theme/arrow-down-bold-box.svg deleted file mode 100644 index 118b88ed..00000000 --- a/bes_theme/.icons/bes_theme/arrow-down-bold-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-down-bold-circle-outline.svg b/bes_theme/.icons/bes_theme/arrow-down-bold-circle-outline.svg deleted file mode 100644 index a9d2e73e..00000000 --- a/bes_theme/.icons/bes_theme/arrow-down-bold-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-down-bold-circle.svg b/bes_theme/.icons/bes_theme/arrow-down-bold-circle.svg deleted file mode 100644 index 829b7c93..00000000 --- a/bes_theme/.icons/bes_theme/arrow-down-bold-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-down-bold-hexagon-outline.svg b/bes_theme/.icons/bes_theme/arrow-down-bold-hexagon-outline.svg deleted file mode 100644 index 83599ee6..00000000 --- a/bes_theme/.icons/bes_theme/arrow-down-bold-hexagon-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-down-bold-outline.svg b/bes_theme/.icons/bes_theme/arrow-down-bold-outline.svg deleted file mode 100644 index 2d50cd88..00000000 --- a/bes_theme/.icons/bes_theme/arrow-down-bold-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-down-bold.svg b/bes_theme/.icons/bes_theme/arrow-down-bold.svg deleted file mode 100644 index d5da1081..00000000 --- a/bes_theme/.icons/bes_theme/arrow-down-bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-down-box.svg b/bes_theme/.icons/bes_theme/arrow-down-box.svg deleted file mode 100644 index dd0e6be0..00000000 --- a/bes_theme/.icons/bes_theme/arrow-down-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-down-circle-outline.svg b/bes_theme/.icons/bes_theme/arrow-down-circle-outline.svg deleted file mode 100644 index 6e6eea81..00000000 --- a/bes_theme/.icons/bes_theme/arrow-down-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-down-circle.svg b/bes_theme/.icons/bes_theme/arrow-down-circle.svg deleted file mode 100644 index e20451b2..00000000 --- a/bes_theme/.icons/bes_theme/arrow-down-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-down-drop-circle-outline.svg b/bes_theme/.icons/bes_theme/arrow-down-drop-circle-outline.svg deleted file mode 100644 index c154294c..00000000 --- a/bes_theme/.icons/bes_theme/arrow-down-drop-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-down-drop-circle.svg b/bes_theme/.icons/bes_theme/arrow-down-drop-circle.svg deleted file mode 100644 index 0218da50..00000000 --- a/bes_theme/.icons/bes_theme/arrow-down-drop-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-down-thick.svg b/bes_theme/.icons/bes_theme/arrow-down-thick.svg deleted file mode 100644 index 50f06979..00000000 --- a/bes_theme/.icons/bes_theme/arrow-down-thick.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-down-thin-circle-outline.svg b/bes_theme/.icons/bes_theme/arrow-down-thin-circle-outline.svg deleted file mode 100644 index f263ead6..00000000 --- a/bes_theme/.icons/bes_theme/arrow-down-thin-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-down.svg b/bes_theme/.icons/bes_theme/arrow-down.svg deleted file mode 100644 index 8f408e44..00000000 --- a/bes_theme/.icons/bes_theme/arrow-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-expand-all.svg b/bes_theme/.icons/bes_theme/arrow-expand-all.svg deleted file mode 100644 index cc23f5fe..00000000 --- a/bes_theme/.icons/bes_theme/arrow-expand-all.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-expand-down.svg b/bes_theme/.icons/bes_theme/arrow-expand-down.svg deleted file mode 100644 index 806f969b..00000000 --- a/bes_theme/.icons/bes_theme/arrow-expand-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-expand-horizontal.svg b/bes_theme/.icons/bes_theme/arrow-expand-horizontal.svg deleted file mode 100644 index f81ddfed..00000000 --- a/bes_theme/.icons/bes_theme/arrow-expand-horizontal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-expand-left.svg b/bes_theme/.icons/bes_theme/arrow-expand-left.svg deleted file mode 100644 index 5fbc3bbe..00000000 --- a/bes_theme/.icons/bes_theme/arrow-expand-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-expand-right.svg b/bes_theme/.icons/bes_theme/arrow-expand-right.svg deleted file mode 100644 index 6c4006dc..00000000 --- a/bes_theme/.icons/bes_theme/arrow-expand-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-expand-up.svg b/bes_theme/.icons/bes_theme/arrow-expand-up.svg deleted file mode 100644 index b5bb9928..00000000 --- a/bes_theme/.icons/bes_theme/arrow-expand-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-expand-vertical.svg b/bes_theme/.icons/bes_theme/arrow-expand-vertical.svg deleted file mode 100644 index 6be41b17..00000000 --- a/bes_theme/.icons/bes_theme/arrow-expand-vertical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-expand.svg b/bes_theme/.icons/bes_theme/arrow-expand.svg deleted file mode 100644 index 1626ae9e..00000000 --- a/bes_theme/.icons/bes_theme/arrow-expand.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-horizontal-lock.svg b/bes_theme/.icons/bes_theme/arrow-horizontal-lock.svg deleted file mode 100644 index 0d8d6a55..00000000 --- a/bes_theme/.icons/bes_theme/arrow-horizontal-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-left-bold-box-outline.svg b/bes_theme/.icons/bes_theme/arrow-left-bold-box-outline.svg deleted file mode 100644 index 40abe8bb..00000000 --- a/bes_theme/.icons/bes_theme/arrow-left-bold-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-left-bold-box.svg b/bes_theme/.icons/bes_theme/arrow-left-bold-box.svg deleted file mode 100644 index 7a7f834b..00000000 --- a/bes_theme/.icons/bes_theme/arrow-left-bold-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-left-bold-circle-outline.svg b/bes_theme/.icons/bes_theme/arrow-left-bold-circle-outline.svg deleted file mode 100644 index a789c521..00000000 --- a/bes_theme/.icons/bes_theme/arrow-left-bold-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-left-bold-circle.svg b/bes_theme/.icons/bes_theme/arrow-left-bold-circle.svg deleted file mode 100644 index 1386e05e..00000000 --- a/bes_theme/.icons/bes_theme/arrow-left-bold-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-left-bold-hexagon-outline.svg b/bes_theme/.icons/bes_theme/arrow-left-bold-hexagon-outline.svg deleted file mode 100644 index 8253f539..00000000 --- a/bes_theme/.icons/bes_theme/arrow-left-bold-hexagon-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-left-bold-outline.svg b/bes_theme/.icons/bes_theme/arrow-left-bold-outline.svg deleted file mode 100644 index a6cba2c9..00000000 --- a/bes_theme/.icons/bes_theme/arrow-left-bold-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-left-bold.svg b/bes_theme/.icons/bes_theme/arrow-left-bold.svg deleted file mode 100644 index 1ecb61f0..00000000 --- a/bes_theme/.icons/bes_theme/arrow-left-bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-left-box.svg b/bes_theme/.icons/bes_theme/arrow-left-box.svg deleted file mode 100644 index 284b9224..00000000 --- a/bes_theme/.icons/bes_theme/arrow-left-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-left-circle-outline.svg b/bes_theme/.icons/bes_theme/arrow-left-circle-outline.svg deleted file mode 100644 index 10e642ed..00000000 --- a/bes_theme/.icons/bes_theme/arrow-left-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-left-circle.svg b/bes_theme/.icons/bes_theme/arrow-left-circle.svg deleted file mode 100644 index 0afd3960..00000000 --- a/bes_theme/.icons/bes_theme/arrow-left-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-left-drop-circle-outline.svg b/bes_theme/.icons/bes_theme/arrow-left-drop-circle-outline.svg deleted file mode 100644 index 037a6996..00000000 --- a/bes_theme/.icons/bes_theme/arrow-left-drop-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-left-drop-circle.svg b/bes_theme/.icons/bes_theme/arrow-left-drop-circle.svg deleted file mode 100644 index ddd11a9a..00000000 --- a/bes_theme/.icons/bes_theme/arrow-left-drop-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-left-right-bold-outline.svg b/bes_theme/.icons/bes_theme/arrow-left-right-bold-outline.svg deleted file mode 100644 index 0af33cf1..00000000 --- a/bes_theme/.icons/bes_theme/arrow-left-right-bold-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-left-right-bold.svg b/bes_theme/.icons/bes_theme/arrow-left-right-bold.svg deleted file mode 100644 index 966193c5..00000000 --- a/bes_theme/.icons/bes_theme/arrow-left-right-bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-left-right.svg b/bes_theme/.icons/bes_theme/arrow-left-right.svg deleted file mode 100644 index 6e6afd69..00000000 --- a/bes_theme/.icons/bes_theme/arrow-left-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-left-thick.svg b/bes_theme/.icons/bes_theme/arrow-left-thick.svg deleted file mode 100644 index d0f9e0f8..00000000 --- a/bes_theme/.icons/bes_theme/arrow-left-thick.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-left-thin-circle-outline.svg b/bes_theme/.icons/bes_theme/arrow-left-thin-circle-outline.svg deleted file mode 100644 index 91335a4b..00000000 --- a/bes_theme/.icons/bes_theme/arrow-left-thin-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-left.svg b/bes_theme/.icons/bes_theme/arrow-left.svg deleted file mode 100644 index ffb97e41..00000000 --- a/bes_theme/.icons/bes_theme/arrow-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-right-bold-box-outline.svg b/bes_theme/.icons/bes_theme/arrow-right-bold-box-outline.svg deleted file mode 100644 index 600bbe1c..00000000 --- a/bes_theme/.icons/bes_theme/arrow-right-bold-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-right-bold-box.svg b/bes_theme/.icons/bes_theme/arrow-right-bold-box.svg deleted file mode 100644 index 2b888105..00000000 --- a/bes_theme/.icons/bes_theme/arrow-right-bold-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-right-bold-circle-outline.svg b/bes_theme/.icons/bes_theme/arrow-right-bold-circle-outline.svg deleted file mode 100644 index 0f8f88fb..00000000 --- a/bes_theme/.icons/bes_theme/arrow-right-bold-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-right-bold-circle.svg b/bes_theme/.icons/bes_theme/arrow-right-bold-circle.svg deleted file mode 100644 index eb714e1d..00000000 --- a/bes_theme/.icons/bes_theme/arrow-right-bold-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-right-bold-hexagon-outline.svg b/bes_theme/.icons/bes_theme/arrow-right-bold-hexagon-outline.svg deleted file mode 100644 index 9dd7e548..00000000 --- a/bes_theme/.icons/bes_theme/arrow-right-bold-hexagon-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-right-bold-outline.svg b/bes_theme/.icons/bes_theme/arrow-right-bold-outline.svg deleted file mode 100644 index 3ec7b4d2..00000000 --- a/bes_theme/.icons/bes_theme/arrow-right-bold-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-right-bold.svg b/bes_theme/.icons/bes_theme/arrow-right-bold.svg deleted file mode 100644 index a9c52874..00000000 --- a/bes_theme/.icons/bes_theme/arrow-right-bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-right-box.svg b/bes_theme/.icons/bes_theme/arrow-right-box.svg deleted file mode 100644 index b4ce535d..00000000 --- a/bes_theme/.icons/bes_theme/arrow-right-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-right-circle-outline.svg b/bes_theme/.icons/bes_theme/arrow-right-circle-outline.svg deleted file mode 100644 index 1a289c9b..00000000 --- a/bes_theme/.icons/bes_theme/arrow-right-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-right-circle.svg b/bes_theme/.icons/bes_theme/arrow-right-circle.svg deleted file mode 100644 index 21fb5fb2..00000000 --- a/bes_theme/.icons/bes_theme/arrow-right-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-right-drop-circle-outline.svg b/bes_theme/.icons/bes_theme/arrow-right-drop-circle-outline.svg deleted file mode 100644 index 90d96a19..00000000 --- a/bes_theme/.icons/bes_theme/arrow-right-drop-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-right-drop-circle.svg b/bes_theme/.icons/bes_theme/arrow-right-drop-circle.svg deleted file mode 100644 index 53ce3f43..00000000 --- a/bes_theme/.icons/bes_theme/arrow-right-drop-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-right-thick.svg b/bes_theme/.icons/bes_theme/arrow-right-thick.svg deleted file mode 100644 index a2092e30..00000000 --- a/bes_theme/.icons/bes_theme/arrow-right-thick.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-right-thin-circle-outline.svg b/bes_theme/.icons/bes_theme/arrow-right-thin-circle-outline.svg deleted file mode 100644 index 4b14dae2..00000000 --- a/bes_theme/.icons/bes_theme/arrow-right-thin-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-right.svg b/bes_theme/.icons/bes_theme/arrow-right.svg deleted file mode 100644 index 6bf1a762..00000000 --- a/bes_theme/.icons/bes_theme/arrow-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-split-horizontal.svg b/bes_theme/.icons/bes_theme/arrow-split-horizontal.svg deleted file mode 100644 index 6e55e0bd..00000000 --- a/bes_theme/.icons/bes_theme/arrow-split-horizontal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-split-vertical.svg b/bes_theme/.icons/bes_theme/arrow-split-vertical.svg deleted file mode 100644 index bdd4ab29..00000000 --- a/bes_theme/.icons/bes_theme/arrow-split-vertical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-top-left-bold-outline.svg b/bes_theme/.icons/bes_theme/arrow-top-left-bold-outline.svg deleted file mode 100644 index 77b27f10..00000000 --- a/bes_theme/.icons/bes_theme/arrow-top-left-bold-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-top-left-bottom-right-bold.svg b/bes_theme/.icons/bes_theme/arrow-top-left-bottom-right-bold.svg deleted file mode 100644 index 070851d1..00000000 --- a/bes_theme/.icons/bes_theme/arrow-top-left-bottom-right-bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-top-left-bottom-right.svg b/bes_theme/.icons/bes_theme/arrow-top-left-bottom-right.svg deleted file mode 100644 index 1a5ca169..00000000 --- a/bes_theme/.icons/bes_theme/arrow-top-left-bottom-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-top-left-thick.svg b/bes_theme/.icons/bes_theme/arrow-top-left-thick.svg deleted file mode 100644 index 4e7b4a3a..00000000 --- a/bes_theme/.icons/bes_theme/arrow-top-left-thick.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-top-left-thin-circle-outline.svg b/bes_theme/.icons/bes_theme/arrow-top-left-thin-circle-outline.svg deleted file mode 100644 index a4e68643..00000000 --- a/bes_theme/.icons/bes_theme/arrow-top-left-thin-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-top-left.svg b/bes_theme/.icons/bes_theme/arrow-top-left.svg deleted file mode 100644 index f19e0821..00000000 --- a/bes_theme/.icons/bes_theme/arrow-top-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-top-right-bold-outline.svg b/bes_theme/.icons/bes_theme/arrow-top-right-bold-outline.svg deleted file mode 100644 index 1092ee74..00000000 --- a/bes_theme/.icons/bes_theme/arrow-top-right-bold-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-top-right-bottom-left-bold.svg b/bes_theme/.icons/bes_theme/arrow-top-right-bottom-left-bold.svg deleted file mode 100644 index b504de48..00000000 --- a/bes_theme/.icons/bes_theme/arrow-top-right-bottom-left-bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-top-right-bottom-left.svg b/bes_theme/.icons/bes_theme/arrow-top-right-bottom-left.svg deleted file mode 100644 index 4c0925db..00000000 --- a/bes_theme/.icons/bes_theme/arrow-top-right-bottom-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-top-right-thick.svg b/bes_theme/.icons/bes_theme/arrow-top-right-thick.svg deleted file mode 100644 index f1ea0e5e..00000000 --- a/bes_theme/.icons/bes_theme/arrow-top-right-thick.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-top-right-thin-circle-outline.svg b/bes_theme/.icons/bes_theme/arrow-top-right-thin-circle-outline.svg deleted file mode 100644 index 632bc107..00000000 --- a/bes_theme/.icons/bes_theme/arrow-top-right-thin-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-top-right.svg b/bes_theme/.icons/bes_theme/arrow-top-right.svg deleted file mode 100644 index f4bb65a8..00000000 --- a/bes_theme/.icons/bes_theme/arrow-top-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-up-bold-box-outline.svg b/bes_theme/.icons/bes_theme/arrow-up-bold-box-outline.svg deleted file mode 100644 index 25c16306..00000000 --- a/bes_theme/.icons/bes_theme/arrow-up-bold-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-up-bold-box.svg b/bes_theme/.icons/bes_theme/arrow-up-bold-box.svg deleted file mode 100644 index b634c219..00000000 --- a/bes_theme/.icons/bes_theme/arrow-up-bold-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-up-bold-circle-outline.svg b/bes_theme/.icons/bes_theme/arrow-up-bold-circle-outline.svg deleted file mode 100644 index 9afbb57a..00000000 --- a/bes_theme/.icons/bes_theme/arrow-up-bold-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-up-bold-circle.svg b/bes_theme/.icons/bes_theme/arrow-up-bold-circle.svg deleted file mode 100644 index 806e8519..00000000 --- a/bes_theme/.icons/bes_theme/arrow-up-bold-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-up-bold-hexagon-outline.svg b/bes_theme/.icons/bes_theme/arrow-up-bold-hexagon-outline.svg deleted file mode 100644 index c19a3f1e..00000000 --- a/bes_theme/.icons/bes_theme/arrow-up-bold-hexagon-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-up-bold-outline.svg b/bes_theme/.icons/bes_theme/arrow-up-bold-outline.svg deleted file mode 100644 index 10c808d7..00000000 --- a/bes_theme/.icons/bes_theme/arrow-up-bold-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-up-bold.svg b/bes_theme/.icons/bes_theme/arrow-up-bold.svg deleted file mode 100644 index ac89f31c..00000000 --- a/bes_theme/.icons/bes_theme/arrow-up-bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-up-box.svg b/bes_theme/.icons/bes_theme/arrow-up-box.svg deleted file mode 100644 index 273d5563..00000000 --- a/bes_theme/.icons/bes_theme/arrow-up-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-up-circle-outline.svg b/bes_theme/.icons/bes_theme/arrow-up-circle-outline.svg deleted file mode 100644 index 6796c7d1..00000000 --- a/bes_theme/.icons/bes_theme/arrow-up-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-up-circle.svg b/bes_theme/.icons/bes_theme/arrow-up-circle.svg deleted file mode 100644 index ecc34cb1..00000000 --- a/bes_theme/.icons/bes_theme/arrow-up-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-up-down-bold-outline.svg b/bes_theme/.icons/bes_theme/arrow-up-down-bold-outline.svg deleted file mode 100644 index 1d7e95be..00000000 --- a/bes_theme/.icons/bes_theme/arrow-up-down-bold-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-up-down-bold.svg b/bes_theme/.icons/bes_theme/arrow-up-down-bold.svg deleted file mode 100644 index fd05920b..00000000 --- a/bes_theme/.icons/bes_theme/arrow-up-down-bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-up-down.svg b/bes_theme/.icons/bes_theme/arrow-up-down.svg deleted file mode 100644 index 4f8421bd..00000000 --- a/bes_theme/.icons/bes_theme/arrow-up-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-up-drop-circle-outline.svg b/bes_theme/.icons/bes_theme/arrow-up-drop-circle-outline.svg deleted file mode 100644 index 5b12dd11..00000000 --- a/bes_theme/.icons/bes_theme/arrow-up-drop-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-up-drop-circle.svg b/bes_theme/.icons/bes_theme/arrow-up-drop-circle.svg deleted file mode 100644 index aaf9a86f..00000000 --- a/bes_theme/.icons/bes_theme/arrow-up-drop-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-up-thick.svg b/bes_theme/.icons/bes_theme/arrow-up-thick.svg deleted file mode 100644 index cb70d65d..00000000 --- a/bes_theme/.icons/bes_theme/arrow-up-thick.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-up-thin-circle-outline.svg b/bes_theme/.icons/bes_theme/arrow-up-thin-circle-outline.svg deleted file mode 100644 index f93dade7..00000000 --- a/bes_theme/.icons/bes_theme/arrow-up-thin-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-up.svg b/bes_theme/.icons/bes_theme/arrow-up.svg deleted file mode 100644 index dc4e5e0b..00000000 --- a/bes_theme/.icons/bes_theme/arrow-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/arrow-vertical-lock.svg b/bes_theme/.icons/bes_theme/arrow-vertical-lock.svg deleted file mode 100644 index 8812af47..00000000 --- a/bes_theme/.icons/bes_theme/arrow-vertical-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/artstation.svg b/bes_theme/.icons/bes_theme/artstation.svg deleted file mode 100644 index e7619742..00000000 --- a/bes_theme/.icons/bes_theme/artstation.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/aspect-ratio.svg b/bes_theme/.icons/bes_theme/aspect-ratio.svg deleted file mode 100644 index 9751249b..00000000 --- a/bes_theme/.icons/bes_theme/aspect-ratio.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/assistant.svg b/bes_theme/.icons/bes_theme/assistant.svg deleted file mode 100644 index 88a0cd4c..00000000 --- a/bes_theme/.icons/bes_theme/assistant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/asterisk.svg b/bes_theme/.icons/bes_theme/asterisk.svg deleted file mode 100644 index 296dfce2..00000000 --- a/bes_theme/.icons/bes_theme/asterisk.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/at.svg b/bes_theme/.icons/bes_theme/at.svg deleted file mode 100644 index fb22524a..00000000 --- a/bes_theme/.icons/bes_theme/at.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/atlassian.svg b/bes_theme/.icons/bes_theme/atlassian.svg deleted file mode 100644 index b59510da..00000000 --- a/bes_theme/.icons/bes_theme/atlassian.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/atm.svg b/bes_theme/.icons/bes_theme/atm.svg deleted file mode 100644 index d813129a..00000000 --- a/bes_theme/.icons/bes_theme/atm.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/atom-variant.svg b/bes_theme/.icons/bes_theme/atom-variant.svg deleted file mode 100644 index 3e45506a..00000000 --- a/bes_theme/.icons/bes_theme/atom-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/atom.svg b/bes_theme/.icons/bes_theme/atom.svg deleted file mode 100644 index 30240cd5..00000000 --- a/bes_theme/.icons/bes_theme/atom.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/attachment.svg b/bes_theme/.icons/bes_theme/attachment.svg deleted file mode 100644 index fb7fe934..00000000 --- a/bes_theme/.icons/bes_theme/attachment.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/audio-video-off.svg b/bes_theme/.icons/bes_theme/audio-video-off.svg deleted file mode 100644 index 2fdce518..00000000 --- a/bes_theme/.icons/bes_theme/audio-video-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/audio-video.svg b/bes_theme/.icons/bes_theme/audio-video.svg deleted file mode 100644 index c4fd2fed..00000000 --- a/bes_theme/.icons/bes_theme/audio-video.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/augmented-reality.svg b/bes_theme/.icons/bes_theme/augmented-reality.svg deleted file mode 100644 index 3311d09f..00000000 --- a/bes_theme/.icons/bes_theme/augmented-reality.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/auto-download.svg b/bes_theme/.icons/bes_theme/auto-download.svg deleted file mode 100644 index 2f376533..00000000 --- a/bes_theme/.icons/bes_theme/auto-download.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/auto-fix.svg b/bes_theme/.icons/bes_theme/auto-fix.svg deleted file mode 100644 index ae88631b..00000000 --- a/bes_theme/.icons/bes_theme/auto-fix.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/auto-upload.svg b/bes_theme/.icons/bes_theme/auto-upload.svg deleted file mode 100644 index 3b1bc792..00000000 --- a/bes_theme/.icons/bes_theme/auto-upload.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/autorenew.svg b/bes_theme/.icons/bes_theme/autorenew.svg deleted file mode 100644 index 823d77d3..00000000 --- a/bes_theme/.icons/bes_theme/autorenew.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/av-timer.svg b/bes_theme/.icons/bes_theme/av-timer.svg deleted file mode 100644 index ddf60c03..00000000 --- a/bes_theme/.icons/bes_theme/av-timer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/aws.svg b/bes_theme/.icons/bes_theme/aws.svg deleted file mode 100644 index 47e37477..00000000 --- a/bes_theme/.icons/bes_theme/aws.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/axe.svg b/bes_theme/.icons/bes_theme/axe.svg deleted file mode 100644 index 860612db..00000000 --- a/bes_theme/.icons/bes_theme/axe.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/axis-arrow-info.svg b/bes_theme/.icons/bes_theme/axis-arrow-info.svg deleted file mode 100644 index 765db849..00000000 --- a/bes_theme/.icons/bes_theme/axis-arrow-info.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/axis-arrow-lock.svg b/bes_theme/.icons/bes_theme/axis-arrow-lock.svg deleted file mode 100644 index be7d232c..00000000 --- a/bes_theme/.icons/bes_theme/axis-arrow-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/axis-arrow.svg b/bes_theme/.icons/bes_theme/axis-arrow.svg deleted file mode 100644 index 525801fb..00000000 --- a/bes_theme/.icons/bes_theme/axis-arrow.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/axis-lock.svg b/bes_theme/.icons/bes_theme/axis-lock.svg deleted file mode 100644 index 4d0eddf8..00000000 --- a/bes_theme/.icons/bes_theme/axis-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/axis-x-arrow-lock.svg b/bes_theme/.icons/bes_theme/axis-x-arrow-lock.svg deleted file mode 100644 index 21ce5785..00000000 --- a/bes_theme/.icons/bes_theme/axis-x-arrow-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/axis-x-arrow.svg b/bes_theme/.icons/bes_theme/axis-x-arrow.svg deleted file mode 100644 index 0517e97d..00000000 --- a/bes_theme/.icons/bes_theme/axis-x-arrow.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/axis-x-rotate-clockwise.svg b/bes_theme/.icons/bes_theme/axis-x-rotate-clockwise.svg deleted file mode 100644 index 323a4897..00000000 --- a/bes_theme/.icons/bes_theme/axis-x-rotate-clockwise.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/axis-x-rotate-counterclockwise.svg b/bes_theme/.icons/bes_theme/axis-x-rotate-counterclockwise.svg deleted file mode 100644 index ba3e95a2..00000000 --- a/bes_theme/.icons/bes_theme/axis-x-rotate-counterclockwise.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/axis-x-y-arrow-lock.svg b/bes_theme/.icons/bes_theme/axis-x-y-arrow-lock.svg deleted file mode 100644 index 71ea5aa0..00000000 --- a/bes_theme/.icons/bes_theme/axis-x-y-arrow-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/axis-y-arrow-lock.svg b/bes_theme/.icons/bes_theme/axis-y-arrow-lock.svg deleted file mode 100644 index 5fd33046..00000000 --- a/bes_theme/.icons/bes_theme/axis-y-arrow-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/axis-y-arrow.svg b/bes_theme/.icons/bes_theme/axis-y-arrow.svg deleted file mode 100644 index 3e149983..00000000 --- a/bes_theme/.icons/bes_theme/axis-y-arrow.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/axis-y-rotate-clockwise.svg b/bes_theme/.icons/bes_theme/axis-y-rotate-clockwise.svg deleted file mode 100644 index 766e0a79..00000000 --- a/bes_theme/.icons/bes_theme/axis-y-rotate-clockwise.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/axis-y-rotate-counterclockwise.svg b/bes_theme/.icons/bes_theme/axis-y-rotate-counterclockwise.svg deleted file mode 100644 index 7fdf68a3..00000000 --- a/bes_theme/.icons/bes_theme/axis-y-rotate-counterclockwise.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/axis-z-arrow-lock.svg b/bes_theme/.icons/bes_theme/axis-z-arrow-lock.svg deleted file mode 100644 index bd863228..00000000 --- a/bes_theme/.icons/bes_theme/axis-z-arrow-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/axis-z-arrow.svg b/bes_theme/.icons/bes_theme/axis-z-arrow.svg deleted file mode 100644 index d11c6177..00000000 --- a/bes_theme/.icons/bes_theme/axis-z-arrow.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/axis-z-rotate-clockwise.svg b/bes_theme/.icons/bes_theme/axis-z-rotate-clockwise.svg deleted file mode 100644 index 6db32d49..00000000 --- a/bes_theme/.icons/bes_theme/axis-z-rotate-clockwise.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/axis-z-rotate-counterclockwise.svg b/bes_theme/.icons/bes_theme/axis-z-rotate-counterclockwise.svg deleted file mode 100644 index 9704486d..00000000 --- a/bes_theme/.icons/bes_theme/axis-z-rotate-counterclockwise.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/axis.svg b/bes_theme/.icons/bes_theme/axis.svg deleted file mode 100644 index 10f6529d..00000000 --- a/bes_theme/.icons/bes_theme/axis.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/babel.svg b/bes_theme/.icons/bes_theme/babel.svg deleted file mode 100644 index 7bb5ca46..00000000 --- a/bes_theme/.icons/bes_theme/babel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/baby-bottle-outline.svg b/bes_theme/.icons/bes_theme/baby-bottle-outline.svg deleted file mode 100644 index 02d95a90..00000000 --- a/bes_theme/.icons/bes_theme/baby-bottle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/baby-bottle.svg b/bes_theme/.icons/bes_theme/baby-bottle.svg deleted file mode 100644 index ff69b230..00000000 --- a/bes_theme/.icons/bes_theme/baby-bottle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/baby-buggy.svg b/bes_theme/.icons/bes_theme/baby-buggy.svg deleted file mode 100644 index 5f600341..00000000 --- a/bes_theme/.icons/bes_theme/baby-buggy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/baby-carriage-off.svg b/bes_theme/.icons/bes_theme/baby-carriage-off.svg deleted file mode 100644 index f557b5d3..00000000 --- a/bes_theme/.icons/bes_theme/baby-carriage-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/baby-carriage.svg b/bes_theme/.icons/bes_theme/baby-carriage.svg deleted file mode 100644 index 55c4bc40..00000000 --- a/bes_theme/.icons/bes_theme/baby-carriage.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/baby-face-outline.svg b/bes_theme/.icons/bes_theme/baby-face-outline.svg deleted file mode 100644 index 3fc0b8ed..00000000 --- a/bes_theme/.icons/bes_theme/baby-face-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/baby-face.svg b/bes_theme/.icons/bes_theme/baby-face.svg deleted file mode 100644 index f8fbcd1e..00000000 --- a/bes_theme/.icons/bes_theme/baby-face.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/baby.svg b/bes_theme/.icons/bes_theme/baby.svg deleted file mode 100644 index f446b023..00000000 --- a/bes_theme/.icons/bes_theme/baby.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/backburger.svg b/bes_theme/.icons/bes_theme/backburger.svg deleted file mode 100644 index 5a2d1ba9..00000000 --- a/bes_theme/.icons/bes_theme/backburger.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/backspace-outline.svg b/bes_theme/.icons/bes_theme/backspace-outline.svg deleted file mode 100644 index cd857dc2..00000000 --- a/bes_theme/.icons/bes_theme/backspace-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/backspace-reverse-outline.svg b/bes_theme/.icons/bes_theme/backspace-reverse-outline.svg deleted file mode 100644 index 0186e9bf..00000000 --- a/bes_theme/.icons/bes_theme/backspace-reverse-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/backspace-reverse.svg b/bes_theme/.icons/bes_theme/backspace-reverse.svg deleted file mode 100644 index e8946a25..00000000 --- a/bes_theme/.icons/bes_theme/backspace-reverse.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/backspace.svg b/bes_theme/.icons/bes_theme/backspace.svg deleted file mode 100644 index 07daab90..00000000 --- a/bes_theme/.icons/bes_theme/backspace.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/backup-restore.svg b/bes_theme/.icons/bes_theme/backup-restore.svg deleted file mode 100644 index 89f6b173..00000000 --- a/bes_theme/.icons/bes_theme/backup-restore.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bacteria-outline.svg b/bes_theme/.icons/bes_theme/bacteria-outline.svg deleted file mode 100644 index 3c969efb..00000000 --- a/bes_theme/.icons/bes_theme/bacteria-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bacteria.svg b/bes_theme/.icons/bes_theme/bacteria.svg deleted file mode 100644 index c6e078a7..00000000 --- a/bes_theme/.icons/bes_theme/bacteria.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/badge-account-alert-outline.svg b/bes_theme/.icons/bes_theme/badge-account-alert-outline.svg deleted file mode 100644 index 2ae3b393..00000000 --- a/bes_theme/.icons/bes_theme/badge-account-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/badge-account-alert.svg b/bes_theme/.icons/bes_theme/badge-account-alert.svg deleted file mode 100644 index 7475579e..00000000 --- a/bes_theme/.icons/bes_theme/badge-account-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/badge-account-horizontal-outline.svg b/bes_theme/.icons/bes_theme/badge-account-horizontal-outline.svg deleted file mode 100644 index 94e77471..00000000 --- a/bes_theme/.icons/bes_theme/badge-account-horizontal-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/badge-account-horizontal.svg b/bes_theme/.icons/bes_theme/badge-account-horizontal.svg deleted file mode 100644 index fc541d80..00000000 --- a/bes_theme/.icons/bes_theme/badge-account-horizontal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/badge-account-outline.svg b/bes_theme/.icons/bes_theme/badge-account-outline.svg deleted file mode 100644 index 80849204..00000000 --- a/bes_theme/.icons/bes_theme/badge-account-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/badge-account.svg b/bes_theme/.icons/bes_theme/badge-account.svg deleted file mode 100644 index 8392893b..00000000 --- a/bes_theme/.icons/bes_theme/badge-account.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/badminton.svg b/bes_theme/.icons/bes_theme/badminton.svg deleted file mode 100644 index c154890b..00000000 --- a/bes_theme/.icons/bes_theme/badminton.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bag-carry-on-check.svg b/bes_theme/.icons/bes_theme/bag-carry-on-check.svg deleted file mode 100644 index 158ad4ce..00000000 --- a/bes_theme/.icons/bes_theme/bag-carry-on-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bag-carry-on-off.svg b/bes_theme/.icons/bes_theme/bag-carry-on-off.svg deleted file mode 100644 index 06283aca..00000000 --- a/bes_theme/.icons/bes_theme/bag-carry-on-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bag-carry-on.svg b/bes_theme/.icons/bes_theme/bag-carry-on.svg deleted file mode 100644 index 75821b1f..00000000 --- a/bes_theme/.icons/bes_theme/bag-carry-on.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bag-checked.svg b/bes_theme/.icons/bes_theme/bag-checked.svg deleted file mode 100644 index 71ec47e1..00000000 --- a/bes_theme/.icons/bes_theme/bag-checked.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bag-personal-off-outline.svg b/bes_theme/.icons/bes_theme/bag-personal-off-outline.svg deleted file mode 100644 index 45b91e45..00000000 --- a/bes_theme/.icons/bes_theme/bag-personal-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bag-personal-off.svg b/bes_theme/.icons/bes_theme/bag-personal-off.svg deleted file mode 100644 index 0ff2d23f..00000000 --- a/bes_theme/.icons/bes_theme/bag-personal-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bag-personal-outline.svg b/bes_theme/.icons/bes_theme/bag-personal-outline.svg deleted file mode 100644 index c2ddfa8e..00000000 --- a/bes_theme/.icons/bes_theme/bag-personal-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bag-personal.svg b/bes_theme/.icons/bes_theme/bag-personal.svg deleted file mode 100644 index fd81ac16..00000000 --- a/bes_theme/.icons/bes_theme/bag-personal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bag-suitcase-off-outline.svg b/bes_theme/.icons/bes_theme/bag-suitcase-off-outline.svg deleted file mode 100644 index 49a3097a..00000000 --- a/bes_theme/.icons/bes_theme/bag-suitcase-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bag-suitcase-off.svg b/bes_theme/.icons/bes_theme/bag-suitcase-off.svg deleted file mode 100644 index c0a58d43..00000000 --- a/bes_theme/.icons/bes_theme/bag-suitcase-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bag-suitcase-outline.svg b/bes_theme/.icons/bes_theme/bag-suitcase-outline.svg deleted file mode 100644 index 554ab44b..00000000 --- a/bes_theme/.icons/bes_theme/bag-suitcase-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bag-suitcase.svg b/bes_theme/.icons/bes_theme/bag-suitcase.svg deleted file mode 100644 index 130bd2ae..00000000 --- a/bes_theme/.icons/bes_theme/bag-suitcase.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/baguette.svg b/bes_theme/.icons/bes_theme/baguette.svg deleted file mode 100644 index 2b700231..00000000 --- a/bes_theme/.icons/bes_theme/baguette.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/balloon.svg b/bes_theme/.icons/bes_theme/balloon.svg deleted file mode 100644 index cb54fa14..00000000 --- a/bes_theme/.icons/bes_theme/balloon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ballot-outline.svg b/bes_theme/.icons/bes_theme/ballot-outline.svg deleted file mode 100644 index 9d3fba2d..00000000 --- a/bes_theme/.icons/bes_theme/ballot-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ballot-recount-outline.svg b/bes_theme/.icons/bes_theme/ballot-recount-outline.svg deleted file mode 100644 index 66024619..00000000 --- a/bes_theme/.icons/bes_theme/ballot-recount-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ballot-recount.svg b/bes_theme/.icons/bes_theme/ballot-recount.svg deleted file mode 100644 index b24ad547..00000000 --- a/bes_theme/.icons/bes_theme/ballot-recount.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ballot.svg b/bes_theme/.icons/bes_theme/ballot.svg deleted file mode 100644 index 1da1422b..00000000 --- a/bes_theme/.icons/bes_theme/ballot.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bandage.svg b/bes_theme/.icons/bes_theme/bandage.svg deleted file mode 100644 index e1106961..00000000 --- a/bes_theme/.icons/bes_theme/bandage.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bandcamp.svg b/bes_theme/.icons/bes_theme/bandcamp.svg deleted file mode 100644 index e26aaf70..00000000 --- a/bes_theme/.icons/bes_theme/bandcamp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bank-check.svg b/bes_theme/.icons/bes_theme/bank-check.svg deleted file mode 100644 index 5c28616f..00000000 --- a/bes_theme/.icons/bes_theme/bank-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bank-minus.svg b/bes_theme/.icons/bes_theme/bank-minus.svg deleted file mode 100644 index 224e5465..00000000 --- a/bes_theme/.icons/bes_theme/bank-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bank-off-outline.svg b/bes_theme/.icons/bes_theme/bank-off-outline.svg deleted file mode 100644 index 3ae879fe..00000000 --- a/bes_theme/.icons/bes_theme/bank-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bank-off.svg b/bes_theme/.icons/bes_theme/bank-off.svg deleted file mode 100644 index 1752b9f3..00000000 --- a/bes_theme/.icons/bes_theme/bank-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bank-outline.svg b/bes_theme/.icons/bes_theme/bank-outline.svg deleted file mode 100644 index a0b43646..00000000 --- a/bes_theme/.icons/bes_theme/bank-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bank-plus.svg b/bes_theme/.icons/bes_theme/bank-plus.svg deleted file mode 100644 index 5972154e..00000000 --- a/bes_theme/.icons/bes_theme/bank-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bank-remove.svg b/bes_theme/.icons/bes_theme/bank-remove.svg deleted file mode 100644 index 0f1a1416..00000000 --- a/bes_theme/.icons/bes_theme/bank-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bank-transfer-in.svg b/bes_theme/.icons/bes_theme/bank-transfer-in.svg deleted file mode 100644 index fbfd7342..00000000 --- a/bes_theme/.icons/bes_theme/bank-transfer-in.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bank-transfer-out.svg b/bes_theme/.icons/bes_theme/bank-transfer-out.svg deleted file mode 100644 index cb933452..00000000 --- a/bes_theme/.icons/bes_theme/bank-transfer-out.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bank-transfer.svg b/bes_theme/.icons/bes_theme/bank-transfer.svg deleted file mode 100644 index f502dd17..00000000 --- a/bes_theme/.icons/bes_theme/bank-transfer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bank.svg b/bes_theme/.icons/bes_theme/bank.svg deleted file mode 100644 index 11cc3212..00000000 --- a/bes_theme/.icons/bes_theme/bank.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/barcode-off.svg b/bes_theme/.icons/bes_theme/barcode-off.svg deleted file mode 100644 index bf9b8c56..00000000 --- a/bes_theme/.icons/bes_theme/barcode-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/barcode-scan.svg b/bes_theme/.icons/bes_theme/barcode-scan.svg deleted file mode 100644 index 74083d1b..00000000 --- a/bes_theme/.icons/bes_theme/barcode-scan.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/barcode.svg b/bes_theme/.icons/bes_theme/barcode.svg deleted file mode 100644 index dff1fb81..00000000 --- a/bes_theme/.icons/bes_theme/barcode.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/barley-off.svg b/bes_theme/.icons/bes_theme/barley-off.svg deleted file mode 100644 index 0244198f..00000000 --- a/bes_theme/.icons/bes_theme/barley-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/barley.svg b/bes_theme/.icons/bes_theme/barley.svg deleted file mode 100644 index c96aebb1..00000000 --- a/bes_theme/.icons/bes_theme/barley.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/barn.svg b/bes_theme/.icons/bes_theme/barn.svg deleted file mode 100644 index 795d4762..00000000 --- a/bes_theme/.icons/bes_theme/barn.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/barrel.svg b/bes_theme/.icons/bes_theme/barrel.svg deleted file mode 100644 index e8e8e0f0..00000000 --- a/bes_theme/.icons/bes_theme/barrel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/baseball-bat.svg b/bes_theme/.icons/bes_theme/baseball-bat.svg deleted file mode 100644 index e7755bf2..00000000 --- a/bes_theme/.icons/bes_theme/baseball-bat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/baseball-diamond-outline.svg b/bes_theme/.icons/bes_theme/baseball-diamond-outline.svg deleted file mode 100644 index 508a9ed7..00000000 --- a/bes_theme/.icons/bes_theme/baseball-diamond-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/baseball-diamond.svg b/bes_theme/.icons/bes_theme/baseball-diamond.svg deleted file mode 100644 index 62243acf..00000000 --- a/bes_theme/.icons/bes_theme/baseball-diamond.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/baseball.svg b/bes_theme/.icons/bes_theme/baseball.svg deleted file mode 100644 index 560f94aa..00000000 --- a/bes_theme/.icons/bes_theme/baseball.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bash.svg b/bes_theme/.icons/bes_theme/bash.svg deleted file mode 100644 index 43248e09..00000000 --- a/bes_theme/.icons/bes_theme/bash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/basket-fill.svg b/bes_theme/.icons/bes_theme/basket-fill.svg deleted file mode 100644 index 4a3a39be..00000000 --- a/bes_theme/.icons/bes_theme/basket-fill.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/basket-minus-outline.svg b/bes_theme/.icons/bes_theme/basket-minus-outline.svg deleted file mode 100644 index 6488dbc7..00000000 --- a/bes_theme/.icons/bes_theme/basket-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/basket-minus.svg b/bes_theme/.icons/bes_theme/basket-minus.svg deleted file mode 100644 index b2c9c5a8..00000000 --- a/bes_theme/.icons/bes_theme/basket-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/basket-off-outline.svg b/bes_theme/.icons/bes_theme/basket-off-outline.svg deleted file mode 100644 index 187c36e1..00000000 --- a/bes_theme/.icons/bes_theme/basket-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/basket-off.svg b/bes_theme/.icons/bes_theme/basket-off.svg deleted file mode 100644 index 9a618bfa..00000000 --- a/bes_theme/.icons/bes_theme/basket-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/basket-outline.svg b/bes_theme/.icons/bes_theme/basket-outline.svg deleted file mode 100644 index c4eb5744..00000000 --- a/bes_theme/.icons/bes_theme/basket-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/basket-plus-outline.svg b/bes_theme/.icons/bes_theme/basket-plus-outline.svg deleted file mode 100644 index ce91a011..00000000 --- a/bes_theme/.icons/bes_theme/basket-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/basket-plus.svg b/bes_theme/.icons/bes_theme/basket-plus.svg deleted file mode 100644 index 6a603f13..00000000 --- a/bes_theme/.icons/bes_theme/basket-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/basket-remove-outline.svg b/bes_theme/.icons/bes_theme/basket-remove-outline.svg deleted file mode 100644 index dfc6664c..00000000 --- a/bes_theme/.icons/bes_theme/basket-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/basket-remove.svg b/bes_theme/.icons/bes_theme/basket-remove.svg deleted file mode 100644 index d589c969..00000000 --- a/bes_theme/.icons/bes_theme/basket-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/basket-unfill.svg b/bes_theme/.icons/bes_theme/basket-unfill.svg deleted file mode 100644 index eac6cd24..00000000 --- a/bes_theme/.icons/bes_theme/basket-unfill.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/basket.svg b/bes_theme/.icons/bes_theme/basket.svg deleted file mode 100644 index 51fb7a36..00000000 --- a/bes_theme/.icons/bes_theme/basket.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/basketball-hoop-outline.svg b/bes_theme/.icons/bes_theme/basketball-hoop-outline.svg deleted file mode 100644 index a1e509d2..00000000 --- a/bes_theme/.icons/bes_theme/basketball-hoop-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/basketball-hoop.svg b/bes_theme/.icons/bes_theme/basketball-hoop.svg deleted file mode 100644 index 7c8e64fc..00000000 --- a/bes_theme/.icons/bes_theme/basketball-hoop.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/basketball.svg b/bes_theme/.icons/bes_theme/basketball.svg deleted file mode 100644 index ffb59529..00000000 --- a/bes_theme/.icons/bes_theme/basketball.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bat.svg b/bes_theme/.icons/bes_theme/bat.svg deleted file mode 100644 index 53e16ad0..00000000 --- a/bes_theme/.icons/bes_theme/bat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-10-bluetooth.svg b/bes_theme/.icons/bes_theme/battery-10-bluetooth.svg deleted file mode 100644 index de6bd1e3..00000000 --- a/bes_theme/.icons/bes_theme/battery-10-bluetooth.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-10.svg b/bes_theme/.icons/bes_theme/battery-10.svg deleted file mode 100644 index bed4599c..00000000 --- a/bes_theme/.icons/bes_theme/battery-10.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-20-bluetooth.svg b/bes_theme/.icons/bes_theme/battery-20-bluetooth.svg deleted file mode 100644 index 0fb88685..00000000 --- a/bes_theme/.icons/bes_theme/battery-20-bluetooth.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-20.svg b/bes_theme/.icons/bes_theme/battery-20.svg deleted file mode 100644 index c92d2726..00000000 --- a/bes_theme/.icons/bes_theme/battery-20.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-30-bluetooth.svg b/bes_theme/.icons/bes_theme/battery-30-bluetooth.svg deleted file mode 100644 index 3f654ddf..00000000 --- a/bes_theme/.icons/bes_theme/battery-30-bluetooth.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-30.svg b/bes_theme/.icons/bes_theme/battery-30.svg deleted file mode 100644 index a6e1e509..00000000 --- a/bes_theme/.icons/bes_theme/battery-30.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-40-bluetooth.svg b/bes_theme/.icons/bes_theme/battery-40-bluetooth.svg deleted file mode 100644 index ba20feda..00000000 --- a/bes_theme/.icons/bes_theme/battery-40-bluetooth.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-40.svg b/bes_theme/.icons/bes_theme/battery-40.svg deleted file mode 100644 index b75cf136..00000000 --- a/bes_theme/.icons/bes_theme/battery-40.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-50-bluetooth.svg b/bes_theme/.icons/bes_theme/battery-50-bluetooth.svg deleted file mode 100644 index 5ced222e..00000000 --- a/bes_theme/.icons/bes_theme/battery-50-bluetooth.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-50.svg b/bes_theme/.icons/bes_theme/battery-50.svg deleted file mode 100644 index 51dfda14..00000000 --- a/bes_theme/.icons/bes_theme/battery-50.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-60-bluetooth.svg b/bes_theme/.icons/bes_theme/battery-60-bluetooth.svg deleted file mode 100644 index 0612ec0a..00000000 --- a/bes_theme/.icons/bes_theme/battery-60-bluetooth.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-60.svg b/bes_theme/.icons/bes_theme/battery-60.svg deleted file mode 100644 index 05f345bd..00000000 --- a/bes_theme/.icons/bes_theme/battery-60.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-70-bluetooth.svg b/bes_theme/.icons/bes_theme/battery-70-bluetooth.svg deleted file mode 100644 index fe7afa99..00000000 --- a/bes_theme/.icons/bes_theme/battery-70-bluetooth.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-70.svg b/bes_theme/.icons/bes_theme/battery-70.svg deleted file mode 100644 index b211c37c..00000000 --- a/bes_theme/.icons/bes_theme/battery-70.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-80-bluetooth.svg b/bes_theme/.icons/bes_theme/battery-80-bluetooth.svg deleted file mode 100644 index 2542b0f6..00000000 --- a/bes_theme/.icons/bes_theme/battery-80-bluetooth.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-80.svg b/bes_theme/.icons/bes_theme/battery-80.svg deleted file mode 100644 index de3dd596..00000000 --- a/bes_theme/.icons/bes_theme/battery-80.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-90-bluetooth.svg b/bes_theme/.icons/bes_theme/battery-90-bluetooth.svg deleted file mode 100644 index ff26da97..00000000 --- a/bes_theme/.icons/bes_theme/battery-90-bluetooth.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-90.svg b/bes_theme/.icons/bes_theme/battery-90.svg deleted file mode 100644 index 0f7098bd..00000000 --- a/bes_theme/.icons/bes_theme/battery-90.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-alert-bluetooth.svg b/bes_theme/.icons/bes_theme/battery-alert-bluetooth.svg deleted file mode 100644 index 69353cd2..00000000 --- a/bes_theme/.icons/bes_theme/battery-alert-bluetooth.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-alert-variant-outline.svg b/bes_theme/.icons/bes_theme/battery-alert-variant-outline.svg deleted file mode 100644 index 85e4e1fd..00000000 --- a/bes_theme/.icons/bes_theme/battery-alert-variant-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-alert-variant.svg b/bes_theme/.icons/bes_theme/battery-alert-variant.svg deleted file mode 100644 index 06a7d3fb..00000000 --- a/bes_theme/.icons/bes_theme/battery-alert-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-alert.svg b/bes_theme/.icons/bes_theme/battery-alert.svg deleted file mode 100644 index 83104548..00000000 --- a/bes_theme/.icons/bes_theme/battery-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-bluetooth-variant.svg b/bes_theme/.icons/bes_theme/battery-bluetooth-variant.svg deleted file mode 100644 index 8c9bb952..00000000 --- a/bes_theme/.icons/bes_theme/battery-bluetooth-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-bluetooth.svg b/bes_theme/.icons/bes_theme/battery-bluetooth.svg deleted file mode 100644 index 44c2a698..00000000 --- a/bes_theme/.icons/bes_theme/battery-bluetooth.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-charging-10.svg b/bes_theme/.icons/bes_theme/battery-charging-10.svg deleted file mode 100644 index a8828f1d..00000000 --- a/bes_theme/.icons/bes_theme/battery-charging-10.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-charging-100.svg b/bes_theme/.icons/bes_theme/battery-charging-100.svg deleted file mode 100644 index 64afa2f8..00000000 --- a/bes_theme/.icons/bes_theme/battery-charging-100.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-charging-20.svg b/bes_theme/.icons/bes_theme/battery-charging-20.svg deleted file mode 100644 index 0879b7ee..00000000 --- a/bes_theme/.icons/bes_theme/battery-charging-20.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-charging-30.svg b/bes_theme/.icons/bes_theme/battery-charging-30.svg deleted file mode 100644 index 23a9fac2..00000000 --- a/bes_theme/.icons/bes_theme/battery-charging-30.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-charging-40.svg b/bes_theme/.icons/bes_theme/battery-charging-40.svg deleted file mode 100644 index 639f1291..00000000 --- a/bes_theme/.icons/bes_theme/battery-charging-40.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-charging-50.svg b/bes_theme/.icons/bes_theme/battery-charging-50.svg deleted file mode 100644 index c139c278..00000000 --- a/bes_theme/.icons/bes_theme/battery-charging-50.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-charging-60.svg b/bes_theme/.icons/bes_theme/battery-charging-60.svg deleted file mode 100644 index 9cc2ffdd..00000000 --- a/bes_theme/.icons/bes_theme/battery-charging-60.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-charging-70.svg b/bes_theme/.icons/bes_theme/battery-charging-70.svg deleted file mode 100644 index 1ec4a454..00000000 --- a/bes_theme/.icons/bes_theme/battery-charging-70.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-charging-80.svg b/bes_theme/.icons/bes_theme/battery-charging-80.svg deleted file mode 100644 index 97625bd4..00000000 --- a/bes_theme/.icons/bes_theme/battery-charging-80.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-charging-90.svg b/bes_theme/.icons/bes_theme/battery-charging-90.svg deleted file mode 100644 index 677d745b..00000000 --- a/bes_theme/.icons/bes_theme/battery-charging-90.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-charging-high.svg b/bes_theme/.icons/bes_theme/battery-charging-high.svg deleted file mode 100644 index ed03ddbb..00000000 --- a/bes_theme/.icons/bes_theme/battery-charging-high.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-charging-low.svg b/bes_theme/.icons/bes_theme/battery-charging-low.svg deleted file mode 100644 index d986de89..00000000 --- a/bes_theme/.icons/bes_theme/battery-charging-low.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-charging-medium.svg b/bes_theme/.icons/bes_theme/battery-charging-medium.svg deleted file mode 100644 index 6d6f71e4..00000000 --- a/bes_theme/.icons/bes_theme/battery-charging-medium.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-charging-outline.svg b/bes_theme/.icons/bes_theme/battery-charging-outline.svg deleted file mode 100644 index 37837027..00000000 --- a/bes_theme/.icons/bes_theme/battery-charging-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-charging-wireless-10.svg b/bes_theme/.icons/bes_theme/battery-charging-wireless-10.svg deleted file mode 100644 index 4e21d128..00000000 --- a/bes_theme/.icons/bes_theme/battery-charging-wireless-10.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-charging-wireless-20.svg b/bes_theme/.icons/bes_theme/battery-charging-wireless-20.svg deleted file mode 100644 index 5c63f374..00000000 --- a/bes_theme/.icons/bes_theme/battery-charging-wireless-20.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-charging-wireless-30.svg b/bes_theme/.icons/bes_theme/battery-charging-wireless-30.svg deleted file mode 100644 index 0c77bfc4..00000000 --- a/bes_theme/.icons/bes_theme/battery-charging-wireless-30.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-charging-wireless-40.svg b/bes_theme/.icons/bes_theme/battery-charging-wireless-40.svg deleted file mode 100644 index a0436ffe..00000000 --- a/bes_theme/.icons/bes_theme/battery-charging-wireless-40.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-charging-wireless-50.svg b/bes_theme/.icons/bes_theme/battery-charging-wireless-50.svg deleted file mode 100644 index e475fa6e..00000000 --- a/bes_theme/.icons/bes_theme/battery-charging-wireless-50.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-charging-wireless-60.svg b/bes_theme/.icons/bes_theme/battery-charging-wireless-60.svg deleted file mode 100644 index cca29259..00000000 --- a/bes_theme/.icons/bes_theme/battery-charging-wireless-60.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-charging-wireless-70.svg b/bes_theme/.icons/bes_theme/battery-charging-wireless-70.svg deleted file mode 100644 index cde02113..00000000 --- a/bes_theme/.icons/bes_theme/battery-charging-wireless-70.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-charging-wireless-80.svg b/bes_theme/.icons/bes_theme/battery-charging-wireless-80.svg deleted file mode 100644 index c161fab1..00000000 --- a/bes_theme/.icons/bes_theme/battery-charging-wireless-80.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-charging-wireless-90.svg b/bes_theme/.icons/bes_theme/battery-charging-wireless-90.svg deleted file mode 100644 index bb65f7d6..00000000 --- a/bes_theme/.icons/bes_theme/battery-charging-wireless-90.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-charging-wireless-alert.svg b/bes_theme/.icons/bes_theme/battery-charging-wireless-alert.svg deleted file mode 100644 index e02a06a3..00000000 --- a/bes_theme/.icons/bes_theme/battery-charging-wireless-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-charging-wireless-outline.svg b/bes_theme/.icons/bes_theme/battery-charging-wireless-outline.svg deleted file mode 100644 index 754be42e..00000000 --- a/bes_theme/.icons/bes_theme/battery-charging-wireless-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-charging-wireless.svg b/bes_theme/.icons/bes_theme/battery-charging-wireless.svg deleted file mode 100644 index dbe7260f..00000000 --- a/bes_theme/.icons/bes_theme/battery-charging-wireless.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-charging.svg b/bes_theme/.icons/bes_theme/battery-charging.svg deleted file mode 100644 index 3bcb3ee8..00000000 --- a/bes_theme/.icons/bes_theme/battery-charging.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-heart-outline.svg b/bes_theme/.icons/bes_theme/battery-heart-outline.svg deleted file mode 100644 index 4b9d6f8e..00000000 --- a/bes_theme/.icons/bes_theme/battery-heart-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-heart-variant.svg b/bes_theme/.icons/bes_theme/battery-heart-variant.svg deleted file mode 100644 index ae08dfcc..00000000 --- a/bes_theme/.icons/bes_theme/battery-heart-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-heart.svg b/bes_theme/.icons/bes_theme/battery-heart.svg deleted file mode 100644 index 8a470075..00000000 --- a/bes_theme/.icons/bes_theme/battery-heart.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-high.svg b/bes_theme/.icons/bes_theme/battery-high.svg deleted file mode 100644 index 2287bfcf..00000000 --- a/bes_theme/.icons/bes_theme/battery-high.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-low.svg b/bes_theme/.icons/bes_theme/battery-low.svg deleted file mode 100644 index e32c76c9..00000000 --- a/bes_theme/.icons/bes_theme/battery-low.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-medium.svg b/bes_theme/.icons/bes_theme/battery-medium.svg deleted file mode 100644 index d12103ad..00000000 --- a/bes_theme/.icons/bes_theme/battery-medium.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-minus.svg b/bes_theme/.icons/bes_theme/battery-minus.svg deleted file mode 100644 index bc199f45..00000000 --- a/bes_theme/.icons/bes_theme/battery-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-negative.svg b/bes_theme/.icons/bes_theme/battery-negative.svg deleted file mode 100644 index f1c89226..00000000 --- a/bes_theme/.icons/bes_theme/battery-negative.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-off-outline.svg b/bes_theme/.icons/bes_theme/battery-off-outline.svg deleted file mode 100644 index f81dae24..00000000 --- a/bes_theme/.icons/bes_theme/battery-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-off.svg b/bes_theme/.icons/bes_theme/battery-off.svg deleted file mode 100644 index 510fe958..00000000 --- a/bes_theme/.icons/bes_theme/battery-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-outline.svg b/bes_theme/.icons/bes_theme/battery-outline.svg deleted file mode 100644 index 96739beb..00000000 --- a/bes_theme/.icons/bes_theme/battery-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-plus.svg b/bes_theme/.icons/bes_theme/battery-plus.svg deleted file mode 100644 index 4b284783..00000000 --- a/bes_theme/.icons/bes_theme/battery-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-positive.svg b/bes_theme/.icons/bes_theme/battery-positive.svg deleted file mode 100644 index 31be2052..00000000 --- a/bes_theme/.icons/bes_theme/battery-positive.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-unknown-bluetooth.svg b/bes_theme/.icons/bes_theme/battery-unknown-bluetooth.svg deleted file mode 100644 index 16417139..00000000 --- a/bes_theme/.icons/bes_theme/battery-unknown-bluetooth.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery-unknown.svg b/bes_theme/.icons/bes_theme/battery-unknown.svg deleted file mode 100644 index 291c2cd7..00000000 --- a/bes_theme/.icons/bes_theme/battery-unknown.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battery.svg b/bes_theme/.icons/bes_theme/battery.svg deleted file mode 100644 index d1c3e081..00000000 --- a/bes_theme/.icons/bes_theme/battery.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/battlenet.svg b/bes_theme/.icons/bes_theme/battlenet.svg deleted file mode 100644 index 18fc5130..00000000 --- a/bes_theme/.icons/bes_theme/battlenet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/beach.svg b/bes_theme/.icons/bes_theme/beach.svg deleted file mode 100644 index 52ea848c..00000000 --- a/bes_theme/.icons/bes_theme/beach.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/beaker-alert-outline.svg b/bes_theme/.icons/bes_theme/beaker-alert-outline.svg deleted file mode 100644 index 55fb1618..00000000 --- a/bes_theme/.icons/bes_theme/beaker-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/beaker-alert.svg b/bes_theme/.icons/bes_theme/beaker-alert.svg deleted file mode 100644 index eec3f017..00000000 --- a/bes_theme/.icons/bes_theme/beaker-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/beaker-check-outline.svg b/bes_theme/.icons/bes_theme/beaker-check-outline.svg deleted file mode 100644 index 72ad3a80..00000000 --- a/bes_theme/.icons/bes_theme/beaker-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/beaker-check.svg b/bes_theme/.icons/bes_theme/beaker-check.svg deleted file mode 100644 index cd08a111..00000000 --- a/bes_theme/.icons/bes_theme/beaker-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/beaker-minus-outline.svg b/bes_theme/.icons/bes_theme/beaker-minus-outline.svg deleted file mode 100644 index 4efadaca..00000000 --- a/bes_theme/.icons/bes_theme/beaker-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/beaker-minus.svg b/bes_theme/.icons/bes_theme/beaker-minus.svg deleted file mode 100644 index 030d0bf3..00000000 --- a/bes_theme/.icons/bes_theme/beaker-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/beaker-outline.svg b/bes_theme/.icons/bes_theme/beaker-outline.svg deleted file mode 100644 index b5b4e19e..00000000 --- a/bes_theme/.icons/bes_theme/beaker-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/beaker-plus-outline.svg b/bes_theme/.icons/bes_theme/beaker-plus-outline.svg deleted file mode 100644 index be820f61..00000000 --- a/bes_theme/.icons/bes_theme/beaker-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/beaker-plus.svg b/bes_theme/.icons/bes_theme/beaker-plus.svg deleted file mode 100644 index 5e277aab..00000000 --- a/bes_theme/.icons/bes_theme/beaker-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/beaker-question-outline.svg b/bes_theme/.icons/bes_theme/beaker-question-outline.svg deleted file mode 100644 index 25576612..00000000 --- a/bes_theme/.icons/bes_theme/beaker-question-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/beaker-question.svg b/bes_theme/.icons/bes_theme/beaker-question.svg deleted file mode 100644 index a7538541..00000000 --- a/bes_theme/.icons/bes_theme/beaker-question.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/beaker-remove-outline.svg b/bes_theme/.icons/bes_theme/beaker-remove-outline.svg deleted file mode 100644 index 7d63e774..00000000 --- a/bes_theme/.icons/bes_theme/beaker-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/beaker-remove.svg b/bes_theme/.icons/bes_theme/beaker-remove.svg deleted file mode 100644 index 95e876e5..00000000 --- a/bes_theme/.icons/bes_theme/beaker-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/beaker.svg b/bes_theme/.icons/bes_theme/beaker.svg deleted file mode 100644 index 1de69915..00000000 --- a/bes_theme/.icons/bes_theme/beaker.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bed-double-outline.svg b/bes_theme/.icons/bes_theme/bed-double-outline.svg deleted file mode 100644 index de766e6a..00000000 --- a/bes_theme/.icons/bes_theme/bed-double-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bed-double.svg b/bes_theme/.icons/bes_theme/bed-double.svg deleted file mode 100644 index 141661ab..00000000 --- a/bes_theme/.icons/bes_theme/bed-double.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bed-empty.svg b/bes_theme/.icons/bes_theme/bed-empty.svg deleted file mode 100644 index 114f69ab..00000000 --- a/bes_theme/.icons/bes_theme/bed-empty.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bed-king-outline.svg b/bes_theme/.icons/bes_theme/bed-king-outline.svg deleted file mode 100644 index 08fd3be0..00000000 --- a/bes_theme/.icons/bes_theme/bed-king-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bed-king.svg b/bes_theme/.icons/bes_theme/bed-king.svg deleted file mode 100644 index b25d4c07..00000000 --- a/bes_theme/.icons/bes_theme/bed-king.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bed-outline.svg b/bes_theme/.icons/bes_theme/bed-outline.svg deleted file mode 100644 index a5d598be..00000000 --- a/bes_theme/.icons/bes_theme/bed-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bed-queen-outline.svg b/bes_theme/.icons/bes_theme/bed-queen-outline.svg deleted file mode 100644 index 39fe54e0..00000000 --- a/bes_theme/.icons/bes_theme/bed-queen-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bed-queen.svg b/bes_theme/.icons/bes_theme/bed-queen.svg deleted file mode 100644 index c218b391..00000000 --- a/bes_theme/.icons/bes_theme/bed-queen.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bed-single-outline.svg b/bes_theme/.icons/bes_theme/bed-single-outline.svg deleted file mode 100644 index ab1cc3e1..00000000 --- a/bes_theme/.icons/bes_theme/bed-single-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bed-single.svg b/bes_theme/.icons/bes_theme/bed-single.svg deleted file mode 100644 index cffe89d0..00000000 --- a/bes_theme/.icons/bes_theme/bed-single.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bed.svg b/bes_theme/.icons/bes_theme/bed.svg deleted file mode 100644 index fddfa574..00000000 --- a/bes_theme/.icons/bes_theme/bed.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bee-flower.svg b/bes_theme/.icons/bes_theme/bee-flower.svg deleted file mode 100644 index ca8dec07..00000000 --- a/bes_theme/.icons/bes_theme/bee-flower.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bee.svg b/bes_theme/.icons/bes_theme/bee.svg deleted file mode 100644 index ca910983..00000000 --- a/bes_theme/.icons/bes_theme/bee.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/beehive-off-outline.svg b/bes_theme/.icons/bes_theme/beehive-off-outline.svg deleted file mode 100644 index bd3115ca..00000000 --- a/bes_theme/.icons/bes_theme/beehive-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/beehive-outline.svg b/bes_theme/.icons/bes_theme/beehive-outline.svg deleted file mode 100644 index 46225d2e..00000000 --- a/bes_theme/.icons/bes_theme/beehive-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/beekeeper.svg b/bes_theme/.icons/bes_theme/beekeeper.svg deleted file mode 100644 index 5eaab48c..00000000 --- a/bes_theme/.icons/bes_theme/beekeeper.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/beer-outline.svg b/bes_theme/.icons/bes_theme/beer-outline.svg deleted file mode 100644 index b287589a..00000000 --- a/bes_theme/.icons/bes_theme/beer-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/beer.svg b/bes_theme/.icons/bes_theme/beer.svg deleted file mode 100644 index 7785e1d8..00000000 --- a/bes_theme/.icons/bes_theme/beer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bell-alert-outline.svg b/bes_theme/.icons/bes_theme/bell-alert-outline.svg deleted file mode 100644 index c030b0bc..00000000 --- a/bes_theme/.icons/bes_theme/bell-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bell-alert.svg b/bes_theme/.icons/bes_theme/bell-alert.svg deleted file mode 100644 index f82db972..00000000 --- a/bes_theme/.icons/bes_theme/bell-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bell-cancel-outline.svg b/bes_theme/.icons/bes_theme/bell-cancel-outline.svg deleted file mode 100644 index 6b887cc0..00000000 --- a/bes_theme/.icons/bes_theme/bell-cancel-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bell-cancel.svg b/bes_theme/.icons/bes_theme/bell-cancel.svg deleted file mode 100644 index f3a4ee8b..00000000 --- a/bes_theme/.icons/bes_theme/bell-cancel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bell-check-outline.svg b/bes_theme/.icons/bes_theme/bell-check-outline.svg deleted file mode 100644 index 1b73efab..00000000 --- a/bes_theme/.icons/bes_theme/bell-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bell-check.svg b/bes_theme/.icons/bes_theme/bell-check.svg deleted file mode 100644 index c0a6b272..00000000 --- a/bes_theme/.icons/bes_theme/bell-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bell-circle-outline.svg b/bes_theme/.icons/bes_theme/bell-circle-outline.svg deleted file mode 100644 index 3115e27b..00000000 --- a/bes_theme/.icons/bes_theme/bell-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bell-circle.svg b/bes_theme/.icons/bes_theme/bell-circle.svg deleted file mode 100644 index 71faa40d..00000000 --- a/bes_theme/.icons/bes_theme/bell-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bell-minus-outline.svg b/bes_theme/.icons/bes_theme/bell-minus-outline.svg deleted file mode 100644 index 2010ccd5..00000000 --- a/bes_theme/.icons/bes_theme/bell-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bell-minus.svg b/bes_theme/.icons/bes_theme/bell-minus.svg deleted file mode 100644 index 7c3d41fd..00000000 --- a/bes_theme/.icons/bes_theme/bell-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bell-off-outline.svg b/bes_theme/.icons/bes_theme/bell-off-outline.svg deleted file mode 100644 index 1c7c9918..00000000 --- a/bes_theme/.icons/bes_theme/bell-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bell-off.svg b/bes_theme/.icons/bes_theme/bell-off.svg deleted file mode 100644 index 6990e9ef..00000000 --- a/bes_theme/.icons/bes_theme/bell-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bell-outline.svg b/bes_theme/.icons/bes_theme/bell-outline.svg deleted file mode 100644 index 51361f4c..00000000 --- a/bes_theme/.icons/bes_theme/bell-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bell-plus-outline.svg b/bes_theme/.icons/bes_theme/bell-plus-outline.svg deleted file mode 100644 index a4804865..00000000 --- a/bes_theme/.icons/bes_theme/bell-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bell-plus.svg b/bes_theme/.icons/bes_theme/bell-plus.svg deleted file mode 100644 index b67f3f42..00000000 --- a/bes_theme/.icons/bes_theme/bell-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bell-remove-outline.svg b/bes_theme/.icons/bes_theme/bell-remove-outline.svg deleted file mode 100644 index 7f903a6b..00000000 --- a/bes_theme/.icons/bes_theme/bell-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bell-remove.svg b/bes_theme/.icons/bes_theme/bell-remove.svg deleted file mode 100644 index 5aa5e4f5..00000000 --- a/bes_theme/.icons/bes_theme/bell-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bell-ring-outline.svg b/bes_theme/.icons/bes_theme/bell-ring-outline.svg deleted file mode 100644 index 2c3720a8..00000000 --- a/bes_theme/.icons/bes_theme/bell-ring-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bell-ring.svg b/bes_theme/.icons/bes_theme/bell-ring.svg deleted file mode 100644 index 55fc17ec..00000000 --- a/bes_theme/.icons/bes_theme/bell-ring.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bell-sleep-outline.svg b/bes_theme/.icons/bes_theme/bell-sleep-outline.svg deleted file mode 100644 index 4e810717..00000000 --- a/bes_theme/.icons/bes_theme/bell-sleep-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bell-sleep.svg b/bes_theme/.icons/bes_theme/bell-sleep.svg deleted file mode 100644 index 5e736220..00000000 --- a/bes_theme/.icons/bes_theme/bell-sleep.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bell.svg b/bes_theme/.icons/bes_theme/bell.svg deleted file mode 100644 index 71af32f0..00000000 --- a/bes_theme/.icons/bes_theme/bell.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/beta.svg b/bes_theme/.icons/bes_theme/beta.svg deleted file mode 100644 index 0ede5a5f..00000000 --- a/bes_theme/.icons/bes_theme/beta.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/betamax.svg b/bes_theme/.icons/bes_theme/betamax.svg deleted file mode 100644 index 90b3557a..00000000 --- a/bes_theme/.icons/bes_theme/betamax.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/biathlon.svg b/bes_theme/.icons/bes_theme/biathlon.svg deleted file mode 100644 index f2fd24a3..00000000 --- a/bes_theme/.icons/bes_theme/biathlon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bicycle-basket.svg b/bes_theme/.icons/bes_theme/bicycle-basket.svg deleted file mode 100644 index c289e088..00000000 --- a/bes_theme/.icons/bes_theme/bicycle-basket.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bicycle-electric.svg b/bes_theme/.icons/bes_theme/bicycle-electric.svg deleted file mode 100644 index 28bd2da9..00000000 --- a/bes_theme/.icons/bes_theme/bicycle-electric.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bicycle-penny-farthing.svg b/bes_theme/.icons/bes_theme/bicycle-penny-farthing.svg deleted file mode 100644 index 5a92ce7f..00000000 --- a/bes_theme/.icons/bes_theme/bicycle-penny-farthing.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bicycle.svg b/bes_theme/.icons/bes_theme/bicycle.svg deleted file mode 100644 index 27d91d1a..00000000 --- a/bes_theme/.icons/bes_theme/bicycle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bike-fast.svg b/bes_theme/.icons/bes_theme/bike-fast.svg deleted file mode 100644 index 361e2965..00000000 --- a/bes_theme/.icons/bes_theme/bike-fast.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bike.svg b/bes_theme/.icons/bes_theme/bike.svg deleted file mode 100644 index 06ed1937..00000000 --- a/bes_theme/.icons/bes_theme/bike.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/billboard.svg b/bes_theme/.icons/bes_theme/billboard.svg deleted file mode 100644 index 18b44cbf..00000000 --- a/bes_theme/.icons/bes_theme/billboard.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/billiards-rack.svg b/bes_theme/.icons/bes_theme/billiards-rack.svg deleted file mode 100644 index 40191fc0..00000000 --- a/bes_theme/.icons/bes_theme/billiards-rack.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/billiards.svg b/bes_theme/.icons/bes_theme/billiards.svg deleted file mode 100644 index 072c4b38..00000000 --- a/bes_theme/.icons/bes_theme/billiards.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/binoculars.svg b/bes_theme/.icons/bes_theme/binoculars.svg deleted file mode 100644 index 14976702..00000000 --- a/bes_theme/.icons/bes_theme/binoculars.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bio.svg b/bes_theme/.icons/bes_theme/bio.svg deleted file mode 100644 index c6164127..00000000 --- a/bes_theme/.icons/bes_theme/bio.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/biohazard.svg b/bes_theme/.icons/bes_theme/biohazard.svg deleted file mode 100644 index 132c45d9..00000000 --- a/bes_theme/.icons/bes_theme/biohazard.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bird.svg b/bes_theme/.icons/bes_theme/bird.svg deleted file mode 100644 index fb03816f..00000000 --- a/bes_theme/.icons/bes_theme/bird.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bitbucket.svg b/bes_theme/.icons/bes_theme/bitbucket.svg deleted file mode 100644 index 4a9412e8..00000000 --- a/bes_theme/.icons/bes_theme/bitbucket.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bitcoin.svg b/bes_theme/.icons/bes_theme/bitcoin.svg deleted file mode 100644 index 5a28be88..00000000 --- a/bes_theme/.icons/bes_theme/bitcoin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/black-mesa.svg b/bes_theme/.icons/bes_theme/black-mesa.svg deleted file mode 100644 index 44cb85c0..00000000 --- a/bes_theme/.icons/bes_theme/black-mesa.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/blender-software.svg b/bes_theme/.icons/bes_theme/blender-software.svg deleted file mode 100644 index 8d71e5e1..00000000 --- a/bes_theme/.icons/bes_theme/blender-software.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/blender.svg b/bes_theme/.icons/bes_theme/blender.svg deleted file mode 100644 index 8f60bffb..00000000 --- a/bes_theme/.icons/bes_theme/blender.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/blinds-open.svg b/bes_theme/.icons/bes_theme/blinds-open.svg deleted file mode 100644 index 48145c65..00000000 --- a/bes_theme/.icons/bes_theme/blinds-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/blinds.svg b/bes_theme/.icons/bes_theme/blinds.svg deleted file mode 100644 index aad70a5c..00000000 --- a/bes_theme/.icons/bes_theme/blinds.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/block-helper.svg b/bes_theme/.icons/bes_theme/block-helper.svg deleted file mode 100644 index 2b35d965..00000000 --- a/bes_theme/.icons/bes_theme/block-helper.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/blogger.svg b/bes_theme/.icons/bes_theme/blogger.svg deleted file mode 100644 index 80f87c1b..00000000 --- a/bes_theme/.icons/bes_theme/blogger.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/blood-bag.svg b/bes_theme/.icons/bes_theme/blood-bag.svg deleted file mode 100644 index eb4a5b6a..00000000 --- a/bes_theme/.icons/bes_theme/blood-bag.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bluetooth-audio.svg b/bes_theme/.icons/bes_theme/bluetooth-audio.svg deleted file mode 100644 index f2088ea3..00000000 --- a/bes_theme/.icons/bes_theme/bluetooth-audio.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bluetooth-connect.svg b/bes_theme/.icons/bes_theme/bluetooth-connect.svg deleted file mode 100644 index 22f5befd..00000000 --- a/bes_theme/.icons/bes_theme/bluetooth-connect.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bluetooth-off.svg b/bes_theme/.icons/bes_theme/bluetooth-off.svg deleted file mode 100644 index 0b86ac84..00000000 --- a/bes_theme/.icons/bes_theme/bluetooth-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bluetooth-settings.svg b/bes_theme/.icons/bes_theme/bluetooth-settings.svg deleted file mode 100644 index 7ca2683c..00000000 --- a/bes_theme/.icons/bes_theme/bluetooth-settings.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bluetooth-transfer.svg b/bes_theme/.icons/bes_theme/bluetooth-transfer.svg deleted file mode 100644 index 097d361c..00000000 --- a/bes_theme/.icons/bes_theme/bluetooth-transfer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bluetooth.svg b/bes_theme/.icons/bes_theme/bluetooth.svg deleted file mode 100644 index a4577979..00000000 --- a/bes_theme/.icons/bes_theme/bluetooth.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/blur-linear.svg b/bes_theme/.icons/bes_theme/blur-linear.svg deleted file mode 100644 index 625e67b5..00000000 --- a/bes_theme/.icons/bes_theme/blur-linear.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/blur-off.svg b/bes_theme/.icons/bes_theme/blur-off.svg deleted file mode 100644 index 215b2036..00000000 --- a/bes_theme/.icons/bes_theme/blur-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/blur-radial.svg b/bes_theme/.icons/bes_theme/blur-radial.svg deleted file mode 100644 index 3f4e59cb..00000000 --- a/bes_theme/.icons/bes_theme/blur-radial.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/blur.svg b/bes_theme/.icons/bes_theme/blur.svg deleted file mode 100644 index bf8da09f..00000000 --- a/bes_theme/.icons/bes_theme/blur.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bolnisi-cross.svg b/bes_theme/.icons/bes_theme/bolnisi-cross.svg deleted file mode 100644 index 86c95832..00000000 --- a/bes_theme/.icons/bes_theme/bolnisi-cross.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bolt.svg b/bes_theme/.icons/bes_theme/bolt.svg deleted file mode 100644 index d575656c..00000000 --- a/bes_theme/.icons/bes_theme/bolt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bomb-off.svg b/bes_theme/.icons/bes_theme/bomb-off.svg deleted file mode 100644 index 9f876eb2..00000000 --- a/bes_theme/.icons/bes_theme/bomb-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bomb.svg b/bes_theme/.icons/bes_theme/bomb.svg deleted file mode 100644 index 696c4b61..00000000 --- a/bes_theme/.icons/bes_theme/bomb.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bone.svg b/bes_theme/.icons/bes_theme/bone.svg deleted file mode 100644 index e33477a6..00000000 --- a/bes_theme/.icons/bes_theme/bone.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-account-outline.svg b/bes_theme/.icons/bes_theme/book-account-outline.svg deleted file mode 100644 index e10cb7b5..00000000 --- a/bes_theme/.icons/bes_theme/book-account-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-account.svg b/bes_theme/.icons/bes_theme/book-account.svg deleted file mode 100644 index d3d4befa..00000000 --- a/bes_theme/.icons/bes_theme/book-account.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-alert-outline.svg b/bes_theme/.icons/bes_theme/book-alert-outline.svg deleted file mode 100644 index d2d48d65..00000000 --- a/bes_theme/.icons/bes_theme/book-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-alert.svg b/bes_theme/.icons/bes_theme/book-alert.svg deleted file mode 100644 index 6a23d060..00000000 --- a/bes_theme/.icons/bes_theme/book-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-alphabet.svg b/bes_theme/.icons/bes_theme/book-alphabet.svg deleted file mode 100644 index 69dce55f..00000000 --- a/bes_theme/.icons/bes_theme/book-alphabet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-arrow-down-outline.svg b/bes_theme/.icons/bes_theme/book-arrow-down-outline.svg deleted file mode 100644 index aa278c33..00000000 --- a/bes_theme/.icons/bes_theme/book-arrow-down-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-arrow-down.svg b/bes_theme/.icons/bes_theme/book-arrow-down.svg deleted file mode 100644 index 84c476d4..00000000 --- a/bes_theme/.icons/bes_theme/book-arrow-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-arrow-left-outline.svg b/bes_theme/.icons/bes_theme/book-arrow-left-outline.svg deleted file mode 100644 index 2e984fd9..00000000 --- a/bes_theme/.icons/bes_theme/book-arrow-left-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-arrow-left.svg b/bes_theme/.icons/bes_theme/book-arrow-left.svg deleted file mode 100644 index b1059a50..00000000 --- a/bes_theme/.icons/bes_theme/book-arrow-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-arrow-right-outline.svg b/bes_theme/.icons/bes_theme/book-arrow-right-outline.svg deleted file mode 100644 index 5b085501..00000000 --- a/bes_theme/.icons/bes_theme/book-arrow-right-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-arrow-right.svg b/bes_theme/.icons/bes_theme/book-arrow-right.svg deleted file mode 100644 index 7742c303..00000000 --- a/bes_theme/.icons/bes_theme/book-arrow-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-arrow-up-outline.svg b/bes_theme/.icons/bes_theme/book-arrow-up-outline.svg deleted file mode 100644 index 92391da8..00000000 --- a/bes_theme/.icons/bes_theme/book-arrow-up-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-arrow-up.svg b/bes_theme/.icons/bes_theme/book-arrow-up.svg deleted file mode 100644 index e7686d92..00000000 --- a/bes_theme/.icons/bes_theme/book-arrow-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-cancel-outline.svg b/bes_theme/.icons/bes_theme/book-cancel-outline.svg deleted file mode 100644 index 42caaca8..00000000 --- a/bes_theme/.icons/bes_theme/book-cancel-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-cancel.svg b/bes_theme/.icons/bes_theme/book-cancel.svg deleted file mode 100644 index c6a75346..00000000 --- a/bes_theme/.icons/bes_theme/book-cancel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-check-outline.svg b/bes_theme/.icons/bes_theme/book-check-outline.svg deleted file mode 100644 index 9f7a78df..00000000 --- a/bes_theme/.icons/bes_theme/book-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-check.svg b/bes_theme/.icons/bes_theme/book-check.svg deleted file mode 100644 index 8cfcd6cf..00000000 --- a/bes_theme/.icons/bes_theme/book-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-clock-outline.svg b/bes_theme/.icons/bes_theme/book-clock-outline.svg deleted file mode 100644 index 039abaf8..00000000 --- a/bes_theme/.icons/bes_theme/book-clock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-clock.svg b/bes_theme/.icons/bes_theme/book-clock.svg deleted file mode 100644 index 1ab25e69..00000000 --- a/bes_theme/.icons/bes_theme/book-clock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-cog-outline.svg b/bes_theme/.icons/bes_theme/book-cog-outline.svg deleted file mode 100644 index 53acf744..00000000 --- a/bes_theme/.icons/bes_theme/book-cog-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-cog.svg b/bes_theme/.icons/bes_theme/book-cog.svg deleted file mode 100644 index 7f3cfac5..00000000 --- a/bes_theme/.icons/bes_theme/book-cog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-cross.svg b/bes_theme/.icons/bes_theme/book-cross.svg deleted file mode 100644 index 87087620..00000000 --- a/bes_theme/.icons/bes_theme/book-cross.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-edit-outline.svg b/bes_theme/.icons/bes_theme/book-edit-outline.svg deleted file mode 100644 index efbda56a..00000000 --- a/bes_theme/.icons/bes_theme/book-edit-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-edit.svg b/bes_theme/.icons/bes_theme/book-edit.svg deleted file mode 100644 index e4443800..00000000 --- a/bes_theme/.icons/bes_theme/book-edit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-education-outline.svg b/bes_theme/.icons/bes_theme/book-education-outline.svg deleted file mode 100644 index 8fddf765..00000000 --- a/bes_theme/.icons/bes_theme/book-education-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-education.svg b/bes_theme/.icons/bes_theme/book-education.svg deleted file mode 100644 index 9d7baf10..00000000 --- a/bes_theme/.icons/bes_theme/book-education.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-information-variant.svg b/bes_theme/.icons/bes_theme/book-information-variant.svg deleted file mode 100644 index 8c0b68b0..00000000 --- a/bes_theme/.icons/bes_theme/book-information-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-lock-open-outline.svg b/bes_theme/.icons/bes_theme/book-lock-open-outline.svg deleted file mode 100644 index 481256f9..00000000 --- a/bes_theme/.icons/bes_theme/book-lock-open-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-lock-open.svg b/bes_theme/.icons/bes_theme/book-lock-open.svg deleted file mode 100644 index 16a406f0..00000000 --- a/bes_theme/.icons/bes_theme/book-lock-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-lock-outline.svg b/bes_theme/.icons/bes_theme/book-lock-outline.svg deleted file mode 100644 index 7c23f1be..00000000 --- a/bes_theme/.icons/bes_theme/book-lock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-lock.svg b/bes_theme/.icons/bes_theme/book-lock.svg deleted file mode 100644 index ee3e5385..00000000 --- a/bes_theme/.icons/bes_theme/book-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-marker-outline.svg b/bes_theme/.icons/bes_theme/book-marker-outline.svg deleted file mode 100644 index 522508e8..00000000 --- a/bes_theme/.icons/bes_theme/book-marker-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-marker.svg b/bes_theme/.icons/bes_theme/book-marker.svg deleted file mode 100644 index 57c0d6e5..00000000 --- a/bes_theme/.icons/bes_theme/book-marker.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-minus-multiple-outline.svg b/bes_theme/.icons/bes_theme/book-minus-multiple-outline.svg deleted file mode 100644 index ff024445..00000000 --- a/bes_theme/.icons/bes_theme/book-minus-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-minus-multiple.svg b/bes_theme/.icons/bes_theme/book-minus-multiple.svg deleted file mode 100644 index b268d95f..00000000 --- a/bes_theme/.icons/bes_theme/book-minus-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-minus-outline.svg b/bes_theme/.icons/bes_theme/book-minus-outline.svg deleted file mode 100644 index 103ec7b6..00000000 --- a/bes_theme/.icons/bes_theme/book-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-minus.svg b/bes_theme/.icons/bes_theme/book-minus.svg deleted file mode 100644 index 2852a0cc..00000000 --- a/bes_theme/.icons/bes_theme/book-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-multiple-outline.svg b/bes_theme/.icons/bes_theme/book-multiple-outline.svg deleted file mode 100644 index 2d59b044..00000000 --- a/bes_theme/.icons/bes_theme/book-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-multiple.svg b/bes_theme/.icons/bes_theme/book-multiple.svg deleted file mode 100644 index 5baaf3f5..00000000 --- a/bes_theme/.icons/bes_theme/book-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-music-outline.svg b/bes_theme/.icons/bes_theme/book-music-outline.svg deleted file mode 100644 index a18a4cb1..00000000 --- a/bes_theme/.icons/bes_theme/book-music-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-music.svg b/bes_theme/.icons/bes_theme/book-music.svg deleted file mode 100644 index a315d7fd..00000000 --- a/bes_theme/.icons/bes_theme/book-music.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-off-outline.svg b/bes_theme/.icons/bes_theme/book-off-outline.svg deleted file mode 100644 index a1c69782..00000000 --- a/bes_theme/.icons/bes_theme/book-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-off.svg b/bes_theme/.icons/bes_theme/book-off.svg deleted file mode 100644 index 302ee862..00000000 --- a/bes_theme/.icons/bes_theme/book-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-open-blank-variant.svg b/bes_theme/.icons/bes_theme/book-open-blank-variant.svg deleted file mode 100644 index e082fd2a..00000000 --- a/bes_theme/.icons/bes_theme/book-open-blank-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-open-outline.svg b/bes_theme/.icons/bes_theme/book-open-outline.svg deleted file mode 100644 index 0f8533a9..00000000 --- a/bes_theme/.icons/bes_theme/book-open-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-open-page-variant-outline.svg b/bes_theme/.icons/bes_theme/book-open-page-variant-outline.svg deleted file mode 100644 index a320e9ae..00000000 --- a/bes_theme/.icons/bes_theme/book-open-page-variant-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-open-page-variant.svg b/bes_theme/.icons/bes_theme/book-open-page-variant.svg deleted file mode 100644 index aee7e715..00000000 --- a/bes_theme/.icons/bes_theme/book-open-page-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-open-variant.svg b/bes_theme/.icons/bes_theme/book-open-variant.svg deleted file mode 100644 index 911f96f4..00000000 --- a/bes_theme/.icons/bes_theme/book-open-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-open.svg b/bes_theme/.icons/bes_theme/book-open.svg deleted file mode 100644 index 225cc231..00000000 --- a/bes_theme/.icons/bes_theme/book-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-outline.svg b/bes_theme/.icons/bes_theme/book-outline.svg deleted file mode 100644 index 41cf6fde..00000000 --- a/bes_theme/.icons/bes_theme/book-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-play-outline.svg b/bes_theme/.icons/bes_theme/book-play-outline.svg deleted file mode 100644 index b7d65eca..00000000 --- a/bes_theme/.icons/bes_theme/book-play-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-play.svg b/bes_theme/.icons/bes_theme/book-play.svg deleted file mode 100644 index 9ecb2994..00000000 --- a/bes_theme/.icons/bes_theme/book-play.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-plus-multiple-outline.svg b/bes_theme/.icons/bes_theme/book-plus-multiple-outline.svg deleted file mode 100644 index 43bc7a06..00000000 --- a/bes_theme/.icons/bes_theme/book-plus-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-plus-multiple.svg b/bes_theme/.icons/bes_theme/book-plus-multiple.svg deleted file mode 100644 index 4a86ab8f..00000000 --- a/bes_theme/.icons/bes_theme/book-plus-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-plus-outline.svg b/bes_theme/.icons/bes_theme/book-plus-outline.svg deleted file mode 100644 index 44b8df4c..00000000 --- a/bes_theme/.icons/bes_theme/book-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-plus.svg b/bes_theme/.icons/bes_theme/book-plus.svg deleted file mode 100644 index fe850d73..00000000 --- a/bes_theme/.icons/bes_theme/book-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-refresh-outline.svg b/bes_theme/.icons/bes_theme/book-refresh-outline.svg deleted file mode 100644 index 74b36a6a..00000000 --- a/bes_theme/.icons/bes_theme/book-refresh-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-refresh.svg b/bes_theme/.icons/bes_theme/book-refresh.svg deleted file mode 100644 index f97e8ab5..00000000 --- a/bes_theme/.icons/bes_theme/book-refresh.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-remove-multiple-outline.svg b/bes_theme/.icons/bes_theme/book-remove-multiple-outline.svg deleted file mode 100644 index 5d1793ab..00000000 --- a/bes_theme/.icons/bes_theme/book-remove-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-remove-multiple.svg b/bes_theme/.icons/bes_theme/book-remove-multiple.svg deleted file mode 100644 index 49df70c5..00000000 --- a/bes_theme/.icons/bes_theme/book-remove-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-remove-outline.svg b/bes_theme/.icons/bes_theme/book-remove-outline.svg deleted file mode 100644 index f16c75c0..00000000 --- a/bes_theme/.icons/bes_theme/book-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-remove.svg b/bes_theme/.icons/bes_theme/book-remove.svg deleted file mode 100644 index 5235d20e..00000000 --- a/bes_theme/.icons/bes_theme/book-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-search-outline.svg b/bes_theme/.icons/bes_theme/book-search-outline.svg deleted file mode 100644 index ad2e091b..00000000 --- a/bes_theme/.icons/bes_theme/book-search-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-search.svg b/bes_theme/.icons/bes_theme/book-search.svg deleted file mode 100644 index 012e4e28..00000000 --- a/bes_theme/.icons/bes_theme/book-search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-settings-outline.svg b/bes_theme/.icons/bes_theme/book-settings-outline.svg deleted file mode 100644 index d880ca52..00000000 --- a/bes_theme/.icons/bes_theme/book-settings-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-settings.svg b/bes_theme/.icons/bes_theme/book-settings.svg deleted file mode 100644 index f02b7439..00000000 --- a/bes_theme/.icons/bes_theme/book-settings.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-sync-outline.svg b/bes_theme/.icons/bes_theme/book-sync-outline.svg deleted file mode 100644 index 57b5692c..00000000 --- a/bes_theme/.icons/bes_theme/book-sync-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-sync.svg b/bes_theme/.icons/bes_theme/book-sync.svg deleted file mode 100644 index 02b14769..00000000 --- a/bes_theme/.icons/bes_theme/book-sync.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-variant-multiple.svg b/bes_theme/.icons/bes_theme/book-variant-multiple.svg deleted file mode 100644 index b6b5e915..00000000 --- a/bes_theme/.icons/bes_theme/book-variant-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book-variant.svg b/bes_theme/.icons/bes_theme/book-variant.svg deleted file mode 100644 index 693f01f8..00000000 --- a/bes_theme/.icons/bes_theme/book-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/book.svg b/bes_theme/.icons/bes_theme/book.svg deleted file mode 100644 index af771353..00000000 --- a/bes_theme/.icons/bes_theme/book.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bookmark-check-outline.svg b/bes_theme/.icons/bes_theme/bookmark-check-outline.svg deleted file mode 100644 index ce7338d5..00000000 --- a/bes_theme/.icons/bes_theme/bookmark-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bookmark-check.svg b/bes_theme/.icons/bes_theme/bookmark-check.svg deleted file mode 100644 index 8309f5e6..00000000 --- a/bes_theme/.icons/bes_theme/bookmark-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bookmark-minus-outline.svg b/bes_theme/.icons/bes_theme/bookmark-minus-outline.svg deleted file mode 100644 index b7178fc6..00000000 --- a/bes_theme/.icons/bes_theme/bookmark-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bookmark-minus.svg b/bes_theme/.icons/bes_theme/bookmark-minus.svg deleted file mode 100644 index 06ae1bf3..00000000 --- a/bes_theme/.icons/bes_theme/bookmark-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bookmark-multiple-outline.svg b/bes_theme/.icons/bes_theme/bookmark-multiple-outline.svg deleted file mode 100644 index 6e40b460..00000000 --- a/bes_theme/.icons/bes_theme/bookmark-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bookmark-multiple.svg b/bes_theme/.icons/bes_theme/bookmark-multiple.svg deleted file mode 100644 index 697b9d36..00000000 --- a/bes_theme/.icons/bes_theme/bookmark-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bookmark-music-outline.svg b/bes_theme/.icons/bes_theme/bookmark-music-outline.svg deleted file mode 100644 index 5df83cbc..00000000 --- a/bes_theme/.icons/bes_theme/bookmark-music-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bookmark-music.svg b/bes_theme/.icons/bes_theme/bookmark-music.svg deleted file mode 100644 index dd625b32..00000000 --- a/bes_theme/.icons/bes_theme/bookmark-music.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bookmark-off-outline.svg b/bes_theme/.icons/bes_theme/bookmark-off-outline.svg deleted file mode 100644 index 5e7e6dba..00000000 --- a/bes_theme/.icons/bes_theme/bookmark-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bookmark-off.svg b/bes_theme/.icons/bes_theme/bookmark-off.svg deleted file mode 100644 index 60cb1a8c..00000000 --- a/bes_theme/.icons/bes_theme/bookmark-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bookmark-outline.svg b/bes_theme/.icons/bes_theme/bookmark-outline.svg deleted file mode 100644 index f5e26fd7..00000000 --- a/bes_theme/.icons/bes_theme/bookmark-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bookmark-plus-outline.svg b/bes_theme/.icons/bes_theme/bookmark-plus-outline.svg deleted file mode 100644 index 3e46dec4..00000000 --- a/bes_theme/.icons/bes_theme/bookmark-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bookmark-plus.svg b/bes_theme/.icons/bes_theme/bookmark-plus.svg deleted file mode 100644 index d7bc4bd3..00000000 --- a/bes_theme/.icons/bes_theme/bookmark-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bookmark-remove-outline.svg b/bes_theme/.icons/bes_theme/bookmark-remove-outline.svg deleted file mode 100644 index 79c17cf8..00000000 --- a/bes_theme/.icons/bes_theme/bookmark-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bookmark-remove.svg b/bes_theme/.icons/bes_theme/bookmark-remove.svg deleted file mode 100644 index f6006240..00000000 --- a/bes_theme/.icons/bes_theme/bookmark-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bookmark.svg b/bes_theme/.icons/bes_theme/bookmark.svg deleted file mode 100644 index f65fc08a..00000000 --- a/bes_theme/.icons/bes_theme/bookmark.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bookshelf.svg b/bes_theme/.icons/bes_theme/bookshelf.svg deleted file mode 100644 index 815c19fb..00000000 --- a/bes_theme/.icons/bes_theme/bookshelf.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/boom-gate-alert-outline.svg b/bes_theme/.icons/bes_theme/boom-gate-alert-outline.svg deleted file mode 100644 index 5f7385f5..00000000 --- a/bes_theme/.icons/bes_theme/boom-gate-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/boom-gate-alert.svg b/bes_theme/.icons/bes_theme/boom-gate-alert.svg deleted file mode 100644 index 637d6ebd..00000000 --- a/bes_theme/.icons/bes_theme/boom-gate-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/boom-gate-down-outline.svg b/bes_theme/.icons/bes_theme/boom-gate-down-outline.svg deleted file mode 100644 index 5211cbd9..00000000 --- a/bes_theme/.icons/bes_theme/boom-gate-down-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/boom-gate-down.svg b/bes_theme/.icons/bes_theme/boom-gate-down.svg deleted file mode 100644 index 6a1660f3..00000000 --- a/bes_theme/.icons/bes_theme/boom-gate-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/boom-gate-outline.svg b/bes_theme/.icons/bes_theme/boom-gate-outline.svg deleted file mode 100644 index 94de4eb9..00000000 --- a/bes_theme/.icons/bes_theme/boom-gate-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/boom-gate-up-outline.svg b/bes_theme/.icons/bes_theme/boom-gate-up-outline.svg deleted file mode 100644 index cd588f1a..00000000 --- a/bes_theme/.icons/bes_theme/boom-gate-up-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/boom-gate-up.svg b/bes_theme/.icons/bes_theme/boom-gate-up.svg deleted file mode 100644 index 996a756d..00000000 --- a/bes_theme/.icons/bes_theme/boom-gate-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/boom-gate.svg b/bes_theme/.icons/bes_theme/boom-gate.svg deleted file mode 100644 index d04fe19b..00000000 --- a/bes_theme/.icons/bes_theme/boom-gate.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/boombox.svg b/bes_theme/.icons/bes_theme/boombox.svg deleted file mode 100644 index 57a2e16e..00000000 --- a/bes_theme/.icons/bes_theme/boombox.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/boomerang.svg b/bes_theme/.icons/bes_theme/boomerang.svg deleted file mode 100644 index ce2f9bd2..00000000 --- a/bes_theme/.icons/bes_theme/boomerang.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bootstrap.svg b/bes_theme/.icons/bes_theme/bootstrap.svg deleted file mode 100644 index df594798..00000000 --- a/bes_theme/.icons/bes_theme/bootstrap.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/border-all-variant.svg b/bes_theme/.icons/bes_theme/border-all-variant.svg deleted file mode 100644 index af936cff..00000000 --- a/bes_theme/.icons/bes_theme/border-all-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/border-all.svg b/bes_theme/.icons/bes_theme/border-all.svg deleted file mode 100644 index b888f62b..00000000 --- a/bes_theme/.icons/bes_theme/border-all.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/border-bottom-variant.svg b/bes_theme/.icons/bes_theme/border-bottom-variant.svg deleted file mode 100644 index 9352db39..00000000 --- a/bes_theme/.icons/bes_theme/border-bottom-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/border-bottom.svg b/bes_theme/.icons/bes_theme/border-bottom.svg deleted file mode 100644 index b0b5ac1d..00000000 --- a/bes_theme/.icons/bes_theme/border-bottom.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/border-color.svg b/bes_theme/.icons/bes_theme/border-color.svg deleted file mode 100644 index 685b11d8..00000000 --- a/bes_theme/.icons/bes_theme/border-color.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/border-horizontal.svg b/bes_theme/.icons/bes_theme/border-horizontal.svg deleted file mode 100644 index d127c396..00000000 --- a/bes_theme/.icons/bes_theme/border-horizontal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/border-inside.svg b/bes_theme/.icons/bes_theme/border-inside.svg deleted file mode 100644 index 61233fac..00000000 --- a/bes_theme/.icons/bes_theme/border-inside.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/border-left-variant.svg b/bes_theme/.icons/bes_theme/border-left-variant.svg deleted file mode 100644 index 2e3aeee1..00000000 --- a/bes_theme/.icons/bes_theme/border-left-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/border-left.svg b/bes_theme/.icons/bes_theme/border-left.svg deleted file mode 100644 index c640e4d0..00000000 --- a/bes_theme/.icons/bes_theme/border-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/border-none-variant.svg b/bes_theme/.icons/bes_theme/border-none-variant.svg deleted file mode 100644 index e1ea4714..00000000 --- a/bes_theme/.icons/bes_theme/border-none-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/border-none.svg b/bes_theme/.icons/bes_theme/border-none.svg deleted file mode 100644 index 9afd75b1..00000000 --- a/bes_theme/.icons/bes_theme/border-none.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/border-outside.svg b/bes_theme/.icons/bes_theme/border-outside.svg deleted file mode 100644 index cfb1e5a2..00000000 --- a/bes_theme/.icons/bes_theme/border-outside.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/border-right-variant.svg b/bes_theme/.icons/bes_theme/border-right-variant.svg deleted file mode 100644 index e412a454..00000000 --- a/bes_theme/.icons/bes_theme/border-right-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/border-right.svg b/bes_theme/.icons/bes_theme/border-right.svg deleted file mode 100644 index 15ba7598..00000000 --- a/bes_theme/.icons/bes_theme/border-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/border-style.svg b/bes_theme/.icons/bes_theme/border-style.svg deleted file mode 100644 index ce567a61..00000000 --- a/bes_theme/.icons/bes_theme/border-style.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/border-top-variant.svg b/bes_theme/.icons/bes_theme/border-top-variant.svg deleted file mode 100644 index 7385c92e..00000000 --- a/bes_theme/.icons/bes_theme/border-top-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/border-top.svg b/bes_theme/.icons/bes_theme/border-top.svg deleted file mode 100644 index f031ab91..00000000 --- a/bes_theme/.icons/bes_theme/border-top.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/border-vertical.svg b/bes_theme/.icons/bes_theme/border-vertical.svg deleted file mode 100644 index 8c068b31..00000000 --- a/bes_theme/.icons/bes_theme/border-vertical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bottle-soda-classic-outline.svg b/bes_theme/.icons/bes_theme/bottle-soda-classic-outline.svg deleted file mode 100644 index e11e5828..00000000 --- a/bes_theme/.icons/bes_theme/bottle-soda-classic-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bottle-soda-classic.svg b/bes_theme/.icons/bes_theme/bottle-soda-classic.svg deleted file mode 100644 index ad07832f..00000000 --- a/bes_theme/.icons/bes_theme/bottle-soda-classic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bottle-soda-outline.svg b/bes_theme/.icons/bes_theme/bottle-soda-outline.svg deleted file mode 100644 index 053b598d..00000000 --- a/bes_theme/.icons/bes_theme/bottle-soda-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bottle-soda.svg b/bes_theme/.icons/bes_theme/bottle-soda.svg deleted file mode 100644 index 0e30c7c2..00000000 --- a/bes_theme/.icons/bes_theme/bottle-soda.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bottle-tonic-outline.svg b/bes_theme/.icons/bes_theme/bottle-tonic-outline.svg deleted file mode 100644 index 0d518315..00000000 --- a/bes_theme/.icons/bes_theme/bottle-tonic-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bottle-tonic-plus-outline.svg b/bes_theme/.icons/bes_theme/bottle-tonic-plus-outline.svg deleted file mode 100644 index 598d5f55..00000000 --- a/bes_theme/.icons/bes_theme/bottle-tonic-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bottle-tonic-plus.svg b/bes_theme/.icons/bes_theme/bottle-tonic-plus.svg deleted file mode 100644 index e7e31cde..00000000 --- a/bes_theme/.icons/bes_theme/bottle-tonic-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bottle-tonic-skull-outline.svg b/bes_theme/.icons/bes_theme/bottle-tonic-skull-outline.svg deleted file mode 100644 index b019b3e9..00000000 --- a/bes_theme/.icons/bes_theme/bottle-tonic-skull-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bottle-tonic-skull.svg b/bes_theme/.icons/bes_theme/bottle-tonic-skull.svg deleted file mode 100644 index 1a086f49..00000000 --- a/bes_theme/.icons/bes_theme/bottle-tonic-skull.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bottle-tonic.svg b/bes_theme/.icons/bes_theme/bottle-tonic.svg deleted file mode 100644 index c152a040..00000000 --- a/bes_theme/.icons/bes_theme/bottle-tonic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bottle-wine-outline.svg b/bes_theme/.icons/bes_theme/bottle-wine-outline.svg deleted file mode 100644 index ac7bf9ca..00000000 --- a/bes_theme/.icons/bes_theme/bottle-wine-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bottle-wine.svg b/bes_theme/.icons/bes_theme/bottle-wine.svg deleted file mode 100644 index 2cd156e9..00000000 --- a/bes_theme/.icons/bes_theme/bottle-wine.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bow-tie.svg b/bes_theme/.icons/bes_theme/bow-tie.svg deleted file mode 100644 index eeb8476d..00000000 --- a/bes_theme/.icons/bes_theme/bow-tie.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bowl-mix-outline.svg b/bes_theme/.icons/bes_theme/bowl-mix-outline.svg deleted file mode 100644 index 2c226383..00000000 --- a/bes_theme/.icons/bes_theme/bowl-mix-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bowl-mix.svg b/bes_theme/.icons/bes_theme/bowl-mix.svg deleted file mode 100644 index 67b32819..00000000 --- a/bes_theme/.icons/bes_theme/bowl-mix.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bowl-outline.svg b/bes_theme/.icons/bes_theme/bowl-outline.svg deleted file mode 100644 index 8c7f2ee2..00000000 --- a/bes_theme/.icons/bes_theme/bowl-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bowl.svg b/bes_theme/.icons/bes_theme/bowl.svg deleted file mode 100644 index b05aac40..00000000 --- a/bes_theme/.icons/bes_theme/bowl.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bowling.svg b/bes_theme/.icons/bes_theme/bowling.svg deleted file mode 100644 index dfc506c8..00000000 --- a/bes_theme/.icons/bes_theme/bowling.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/box-cutter-off.svg b/bes_theme/.icons/bes_theme/box-cutter-off.svg deleted file mode 100644 index 9afaa413..00000000 --- a/bes_theme/.icons/bes_theme/box-cutter-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/box-cutter.svg b/bes_theme/.icons/bes_theme/box-cutter.svg deleted file mode 100644 index 0f5e508e..00000000 --- a/bes_theme/.icons/bes_theme/box-cutter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/box-shadow.svg b/bes_theme/.icons/bes_theme/box-shadow.svg deleted file mode 100644 index 36fb97d8..00000000 --- a/bes_theme/.icons/bes_theme/box-shadow.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/box.svg b/bes_theme/.icons/bes_theme/box.svg deleted file mode 100644 index 50eae3ed..00000000 --- a/bes_theme/.icons/bes_theme/box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/boxing-glove.svg b/bes_theme/.icons/bes_theme/boxing-glove.svg deleted file mode 100644 index 1aa93188..00000000 --- a/bes_theme/.icons/bes_theme/boxing-glove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/braille.svg b/bes_theme/.icons/bes_theme/braille.svg deleted file mode 100644 index 8f8f9bf4..00000000 --- a/bes_theme/.icons/bes_theme/braille.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/brain.svg b/bes_theme/.icons/bes_theme/brain.svg deleted file mode 100644 index ae652320..00000000 --- a/bes_theme/.icons/bes_theme/brain.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bread-slice-outline.svg b/bes_theme/.icons/bes_theme/bread-slice-outline.svg deleted file mode 100644 index cf3d5da2..00000000 --- a/bes_theme/.icons/bes_theme/bread-slice-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bread-slice.svg b/bes_theme/.icons/bes_theme/bread-slice.svg deleted file mode 100644 index 63308fcf..00000000 --- a/bes_theme/.icons/bes_theme/bread-slice.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bridge.svg b/bes_theme/.icons/bes_theme/bridge.svg deleted file mode 100644 index 4a953eaa..00000000 --- a/bes_theme/.icons/bes_theme/bridge.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/briefcase-account-outline.svg b/bes_theme/.icons/bes_theme/briefcase-account-outline.svg deleted file mode 100644 index 5b7eadaf..00000000 --- a/bes_theme/.icons/bes_theme/briefcase-account-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/briefcase-account.svg b/bes_theme/.icons/bes_theme/briefcase-account.svg deleted file mode 100644 index 9f689281..00000000 --- a/bes_theme/.icons/bes_theme/briefcase-account.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/briefcase-check-outline.svg b/bes_theme/.icons/bes_theme/briefcase-check-outline.svg deleted file mode 100644 index bdf5dcb1..00000000 --- a/bes_theme/.icons/bes_theme/briefcase-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/briefcase-check.svg b/bes_theme/.icons/bes_theme/briefcase-check.svg deleted file mode 100644 index aae341f6..00000000 --- a/bes_theme/.icons/bes_theme/briefcase-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/briefcase-clock-outline.svg b/bes_theme/.icons/bes_theme/briefcase-clock-outline.svg deleted file mode 100644 index efddc764..00000000 --- a/bes_theme/.icons/bes_theme/briefcase-clock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/briefcase-clock.svg b/bes_theme/.icons/bes_theme/briefcase-clock.svg deleted file mode 100644 index 69b0bb74..00000000 --- a/bes_theme/.icons/bes_theme/briefcase-clock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/briefcase-download-outline.svg b/bes_theme/.icons/bes_theme/briefcase-download-outline.svg deleted file mode 100644 index a4c13e2b..00000000 --- a/bes_theme/.icons/bes_theme/briefcase-download-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/briefcase-download.svg b/bes_theme/.icons/bes_theme/briefcase-download.svg deleted file mode 100644 index 49b1fb69..00000000 --- a/bes_theme/.icons/bes_theme/briefcase-download.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/briefcase-edit-outline.svg b/bes_theme/.icons/bes_theme/briefcase-edit-outline.svg deleted file mode 100644 index 9844a440..00000000 --- a/bes_theme/.icons/bes_theme/briefcase-edit-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/briefcase-edit.svg b/bes_theme/.icons/bes_theme/briefcase-edit.svg deleted file mode 100644 index 127293e1..00000000 --- a/bes_theme/.icons/bes_theme/briefcase-edit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/briefcase-minus-outline.svg b/bes_theme/.icons/bes_theme/briefcase-minus-outline.svg deleted file mode 100644 index f924f3d1..00000000 --- a/bes_theme/.icons/bes_theme/briefcase-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/briefcase-minus.svg b/bes_theme/.icons/bes_theme/briefcase-minus.svg deleted file mode 100644 index f8ecdf2a..00000000 --- a/bes_theme/.icons/bes_theme/briefcase-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/briefcase-off-outline.svg b/bes_theme/.icons/bes_theme/briefcase-off-outline.svg deleted file mode 100644 index c1f3122b..00000000 --- a/bes_theme/.icons/bes_theme/briefcase-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/briefcase-off.svg b/bes_theme/.icons/bes_theme/briefcase-off.svg deleted file mode 100644 index 73b054fc..00000000 --- a/bes_theme/.icons/bes_theme/briefcase-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/briefcase-outline.svg b/bes_theme/.icons/bes_theme/briefcase-outline.svg deleted file mode 100644 index b9d5ec24..00000000 --- a/bes_theme/.icons/bes_theme/briefcase-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/briefcase-plus-outline.svg b/bes_theme/.icons/bes_theme/briefcase-plus-outline.svg deleted file mode 100644 index ff7223c0..00000000 --- a/bes_theme/.icons/bes_theme/briefcase-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/briefcase-plus.svg b/bes_theme/.icons/bes_theme/briefcase-plus.svg deleted file mode 100644 index 73dafca6..00000000 --- a/bes_theme/.icons/bes_theme/briefcase-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/briefcase-remove-outline.svg b/bes_theme/.icons/bes_theme/briefcase-remove-outline.svg deleted file mode 100644 index 7d682c59..00000000 --- a/bes_theme/.icons/bes_theme/briefcase-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/briefcase-remove.svg b/bes_theme/.icons/bes_theme/briefcase-remove.svg deleted file mode 100644 index a1ca378a..00000000 --- a/bes_theme/.icons/bes_theme/briefcase-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/briefcase-search-outline.svg b/bes_theme/.icons/bes_theme/briefcase-search-outline.svg deleted file mode 100644 index 1cae9735..00000000 --- a/bes_theme/.icons/bes_theme/briefcase-search-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/briefcase-search.svg b/bes_theme/.icons/bes_theme/briefcase-search.svg deleted file mode 100644 index df3fc9f4..00000000 --- a/bes_theme/.icons/bes_theme/briefcase-search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/briefcase-upload-outline.svg b/bes_theme/.icons/bes_theme/briefcase-upload-outline.svg deleted file mode 100644 index 822ece12..00000000 --- a/bes_theme/.icons/bes_theme/briefcase-upload-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/briefcase-upload.svg b/bes_theme/.icons/bes_theme/briefcase-upload.svg deleted file mode 100644 index 22944d65..00000000 --- a/bes_theme/.icons/bes_theme/briefcase-upload.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/briefcase-variant-off-outline.svg b/bes_theme/.icons/bes_theme/briefcase-variant-off-outline.svg deleted file mode 100644 index eff26d4b..00000000 --- a/bes_theme/.icons/bes_theme/briefcase-variant-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/briefcase-variant-off.svg b/bes_theme/.icons/bes_theme/briefcase-variant-off.svg deleted file mode 100644 index f55f4251..00000000 --- a/bes_theme/.icons/bes_theme/briefcase-variant-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/briefcase-variant-outline.svg b/bes_theme/.icons/bes_theme/briefcase-variant-outline.svg deleted file mode 100644 index d4ceb8eb..00000000 --- a/bes_theme/.icons/bes_theme/briefcase-variant-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/briefcase-variant.svg b/bes_theme/.icons/bes_theme/briefcase-variant.svg deleted file mode 100644 index 3cedde15..00000000 --- a/bes_theme/.icons/bes_theme/briefcase-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/briefcase.svg b/bes_theme/.icons/bes_theme/briefcase.svg deleted file mode 100644 index 86364aee..00000000 --- a/bes_theme/.icons/bes_theme/briefcase.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/brightness-1.svg b/bes_theme/.icons/bes_theme/brightness-1.svg deleted file mode 100644 index f7823f4f..00000000 --- a/bes_theme/.icons/bes_theme/brightness-1.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/brightness-2.svg b/bes_theme/.icons/bes_theme/brightness-2.svg deleted file mode 100644 index ce5e024e..00000000 --- a/bes_theme/.icons/bes_theme/brightness-2.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/brightness-3.svg b/bes_theme/.icons/bes_theme/brightness-3.svg deleted file mode 100644 index 4dfeaa43..00000000 --- a/bes_theme/.icons/bes_theme/brightness-3.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/brightness-4.svg b/bes_theme/.icons/bes_theme/brightness-4.svg deleted file mode 100644 index 1dfa7740..00000000 --- a/bes_theme/.icons/bes_theme/brightness-4.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/brightness-5.svg b/bes_theme/.icons/bes_theme/brightness-5.svg deleted file mode 100644 index fd57a6fa..00000000 --- a/bes_theme/.icons/bes_theme/brightness-5.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/brightness-6.svg b/bes_theme/.icons/bes_theme/brightness-6.svg deleted file mode 100644 index abbdac60..00000000 --- a/bes_theme/.icons/bes_theme/brightness-6.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/brightness-7.svg b/bes_theme/.icons/bes_theme/brightness-7.svg deleted file mode 100644 index 41d12b9d..00000000 --- a/bes_theme/.icons/bes_theme/brightness-7.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/brightness-auto.svg b/bes_theme/.icons/bes_theme/brightness-auto.svg deleted file mode 100644 index 91ef4ff6..00000000 --- a/bes_theme/.icons/bes_theme/brightness-auto.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/brightness-percent.svg b/bes_theme/.icons/bes_theme/brightness-percent.svg deleted file mode 100644 index 0a9fce3f..00000000 --- a/bes_theme/.icons/bes_theme/brightness-percent.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/broadcast-off.svg b/bes_theme/.icons/bes_theme/broadcast-off.svg deleted file mode 100644 index 380c94b6..00000000 --- a/bes_theme/.icons/bes_theme/broadcast-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/broadcast.svg b/bes_theme/.icons/bes_theme/broadcast.svg deleted file mode 100644 index 9c3148b6..00000000 --- a/bes_theme/.icons/bes_theme/broadcast.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/broom.svg b/bes_theme/.icons/bes_theme/broom.svg deleted file mode 100644 index 87562770..00000000 --- a/bes_theme/.icons/bes_theme/broom.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/brush.svg b/bes_theme/.icons/bes_theme/brush.svg deleted file mode 100644 index 770d18f8..00000000 --- a/bes_theme/.icons/bes_theme/brush.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bucket-outline.svg b/bes_theme/.icons/bes_theme/bucket-outline.svg deleted file mode 100644 index 05a962cb..00000000 --- a/bes_theme/.icons/bes_theme/bucket-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bucket.svg b/bes_theme/.icons/bes_theme/bucket.svg deleted file mode 100644 index 35944b67..00000000 --- a/bes_theme/.icons/bes_theme/bucket.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/buddhism.svg b/bes_theme/.icons/bes_theme/buddhism.svg deleted file mode 100644 index 3ad9bd82..00000000 --- a/bes_theme/.icons/bes_theme/buddhism.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/buffer.svg b/bes_theme/.icons/bes_theme/buffer.svg deleted file mode 100644 index d52b04e6..00000000 --- a/bes_theme/.icons/bes_theme/buffer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/buffet.svg b/bes_theme/.icons/bes_theme/buffet.svg deleted file mode 100644 index 20ce406e..00000000 --- a/bes_theme/.icons/bes_theme/buffet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bug-check-outline.svg b/bes_theme/.icons/bes_theme/bug-check-outline.svg deleted file mode 100644 index e0a0eb4b..00000000 --- a/bes_theme/.icons/bes_theme/bug-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bug-check.svg b/bes_theme/.icons/bes_theme/bug-check.svg deleted file mode 100644 index 27b99dc1..00000000 --- a/bes_theme/.icons/bes_theme/bug-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bug-outline.svg b/bes_theme/.icons/bes_theme/bug-outline.svg deleted file mode 100644 index c10c1aea..00000000 --- a/bes_theme/.icons/bes_theme/bug-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bug.svg b/bes_theme/.icons/bes_theme/bug.svg deleted file mode 100644 index 8e0c7b7d..00000000 --- a/bes_theme/.icons/bes_theme/bug.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bugle.svg b/bes_theme/.icons/bes_theme/bugle.svg deleted file mode 100644 index afe1d5c5..00000000 --- a/bes_theme/.icons/bes_theme/bugle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bulldozer.svg b/bes_theme/.icons/bes_theme/bulldozer.svg deleted file mode 100644 index 64b72cdf..00000000 --- a/bes_theme/.icons/bes_theme/bulldozer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bullet.svg b/bes_theme/.icons/bes_theme/bullet.svg deleted file mode 100644 index 83e74f3b..00000000 --- a/bes_theme/.icons/bes_theme/bullet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bulletin-board.svg b/bes_theme/.icons/bes_theme/bulletin-board.svg deleted file mode 100644 index 5cd68257..00000000 --- a/bes_theme/.icons/bes_theme/bulletin-board.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bullhorn-outline.svg b/bes_theme/.icons/bes_theme/bullhorn-outline.svg deleted file mode 100644 index 2981162c..00000000 --- a/bes_theme/.icons/bes_theme/bullhorn-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bullhorn.svg b/bes_theme/.icons/bes_theme/bullhorn.svg deleted file mode 100644 index 5bb23a44..00000000 --- a/bes_theme/.icons/bes_theme/bullhorn.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bullseye-arrow.svg b/bes_theme/.icons/bes_theme/bullseye-arrow.svg deleted file mode 100644 index b6553311..00000000 --- a/bes_theme/.icons/bes_theme/bullseye-arrow.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bullseye.svg b/bes_theme/.icons/bes_theme/bullseye.svg deleted file mode 100644 index a2c1cfc4..00000000 --- a/bes_theme/.icons/bes_theme/bullseye.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bulma.svg b/bes_theme/.icons/bes_theme/bulma.svg deleted file mode 100644 index 6fe262c0..00000000 --- a/bes_theme/.icons/bes_theme/bulma.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bunk-bed-outline.svg b/bes_theme/.icons/bes_theme/bunk-bed-outline.svg deleted file mode 100644 index ff9e674a..00000000 --- a/bes_theme/.icons/bes_theme/bunk-bed-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bunk-bed.svg b/bes_theme/.icons/bes_theme/bunk-bed.svg deleted file mode 100644 index 435f5813..00000000 --- a/bes_theme/.icons/bes_theme/bunk-bed.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bus-alert.svg b/bes_theme/.icons/bes_theme/bus-alert.svg deleted file mode 100644 index 1ae8e876..00000000 --- a/bes_theme/.icons/bes_theme/bus-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bus-articulated-end.svg b/bes_theme/.icons/bes_theme/bus-articulated-end.svg deleted file mode 100644 index 98f81313..00000000 --- a/bes_theme/.icons/bes_theme/bus-articulated-end.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bus-articulated-front.svg b/bes_theme/.icons/bes_theme/bus-articulated-front.svg deleted file mode 100644 index 691d540c..00000000 --- a/bes_theme/.icons/bes_theme/bus-articulated-front.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bus-clock.svg b/bes_theme/.icons/bes_theme/bus-clock.svg deleted file mode 100644 index bf7a5f9a..00000000 --- a/bes_theme/.icons/bes_theme/bus-clock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bus-double-decker.svg b/bes_theme/.icons/bes_theme/bus-double-decker.svg deleted file mode 100644 index b3a9cc2c..00000000 --- a/bes_theme/.icons/bes_theme/bus-double-decker.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bus-marker.svg b/bes_theme/.icons/bes_theme/bus-marker.svg deleted file mode 100644 index 3b580892..00000000 --- a/bes_theme/.icons/bes_theme/bus-marker.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bus-multiple.svg b/bes_theme/.icons/bes_theme/bus-multiple.svg deleted file mode 100644 index b6889e52..00000000 --- a/bes_theme/.icons/bes_theme/bus-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bus-school.svg b/bes_theme/.icons/bes_theme/bus-school.svg deleted file mode 100644 index 54223438..00000000 --- a/bes_theme/.icons/bes_theme/bus-school.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bus-side.svg b/bes_theme/.icons/bes_theme/bus-side.svg deleted file mode 100644 index a339d2eb..00000000 --- a/bes_theme/.icons/bes_theme/bus-side.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bus-stop-covered.svg b/bes_theme/.icons/bes_theme/bus-stop-covered.svg deleted file mode 100644 index 8564d83b..00000000 --- a/bes_theme/.icons/bes_theme/bus-stop-covered.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bus-stop-uncovered.svg b/bes_theme/.icons/bes_theme/bus-stop-uncovered.svg deleted file mode 100644 index 958265ee..00000000 --- a/bes_theme/.icons/bes_theme/bus-stop-uncovered.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bus-stop.svg b/bes_theme/.icons/bes_theme/bus-stop.svg deleted file mode 100644 index 1ac77ccc..00000000 --- a/bes_theme/.icons/bes_theme/bus-stop.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/bus.svg b/bes_theme/.icons/bes_theme/bus.svg deleted file mode 100644 index 250d88c3..00000000 --- a/bes_theme/.icons/bes_theme/bus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/butterfly-outline.svg b/bes_theme/.icons/bes_theme/butterfly-outline.svg deleted file mode 100644 index caed796a..00000000 --- a/bes_theme/.icons/bes_theme/butterfly-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/butterfly.svg b/bes_theme/.icons/bes_theme/butterfly.svg deleted file mode 100644 index 5fbacb3b..00000000 --- a/bes_theme/.icons/bes_theme/butterfly.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cable-data.svg b/bes_theme/.icons/bes_theme/cable-data.svg deleted file mode 100644 index aefb401e..00000000 --- a/bes_theme/.icons/bes_theme/cable-data.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cached.svg b/bes_theme/.icons/bes_theme/cached.svg deleted file mode 100644 index cd0e0402..00000000 --- a/bes_theme/.icons/bes_theme/cached.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cactus.svg b/bes_theme/.icons/bes_theme/cactus.svg deleted file mode 100644 index 88da74ae..00000000 --- a/bes_theme/.icons/bes_theme/cactus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cake-layered.svg b/bes_theme/.icons/bes_theme/cake-layered.svg deleted file mode 100644 index 8f8dd185..00000000 --- a/bes_theme/.icons/bes_theme/cake-layered.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cake-variant.svg b/bes_theme/.icons/bes_theme/cake-variant.svg deleted file mode 100644 index ea619128..00000000 --- a/bes_theme/.icons/bes_theme/cake-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cake.svg b/bes_theme/.icons/bes_theme/cake.svg deleted file mode 100644 index 6fa68b05..00000000 --- a/bes_theme/.icons/bes_theme/cake.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calculator-variant-outline.svg b/bes_theme/.icons/bes_theme/calculator-variant-outline.svg deleted file mode 100644 index 35c6e897..00000000 --- a/bes_theme/.icons/bes_theme/calculator-variant-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calculator-variant.svg b/bes_theme/.icons/bes_theme/calculator-variant.svg deleted file mode 100644 index b1129b2d..00000000 --- a/bes_theme/.icons/bes_theme/calculator-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calculator.svg b/bes_theme/.icons/bes_theme/calculator.svg deleted file mode 100644 index d47b7d64..00000000 --- a/bes_theme/.icons/bes_theme/calculator.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-account-outline.svg b/bes_theme/.icons/bes_theme/calendar-account-outline.svg deleted file mode 100644 index 2db83c76..00000000 --- a/bes_theme/.icons/bes_theme/calendar-account-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-account.svg b/bes_theme/.icons/bes_theme/calendar-account.svg deleted file mode 100644 index 1acdb1b9..00000000 --- a/bes_theme/.icons/bes_theme/calendar-account.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-alert.svg b/bes_theme/.icons/bes_theme/calendar-alert.svg deleted file mode 100644 index 70b295ef..00000000 --- a/bes_theme/.icons/bes_theme/calendar-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-arrow-left.svg b/bes_theme/.icons/bes_theme/calendar-arrow-left.svg deleted file mode 100644 index 6a18f6ea..00000000 --- a/bes_theme/.icons/bes_theme/calendar-arrow-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-arrow-right.svg b/bes_theme/.icons/bes_theme/calendar-arrow-right.svg deleted file mode 100644 index 6ece99af..00000000 --- a/bes_theme/.icons/bes_theme/calendar-arrow-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-blank-multiple.svg b/bes_theme/.icons/bes_theme/calendar-blank-multiple.svg deleted file mode 100644 index 0dd6a624..00000000 --- a/bes_theme/.icons/bes_theme/calendar-blank-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-blank-outline.svg b/bes_theme/.icons/bes_theme/calendar-blank-outline.svg deleted file mode 100644 index 28fb1fb2..00000000 --- a/bes_theme/.icons/bes_theme/calendar-blank-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-blank.svg b/bes_theme/.icons/bes_theme/calendar-blank.svg deleted file mode 100644 index f24b6c1d..00000000 --- a/bes_theme/.icons/bes_theme/calendar-blank.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-check-outline.svg b/bes_theme/.icons/bes_theme/calendar-check-outline.svg deleted file mode 100644 index 72441b08..00000000 --- a/bes_theme/.icons/bes_theme/calendar-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-check.svg b/bes_theme/.icons/bes_theme/calendar-check.svg deleted file mode 100644 index 00002650..00000000 --- a/bes_theme/.icons/bes_theme/calendar-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-clock-outline.svg b/bes_theme/.icons/bes_theme/calendar-clock-outline.svg deleted file mode 100644 index fef185b6..00000000 --- a/bes_theme/.icons/bes_theme/calendar-clock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-clock.svg b/bes_theme/.icons/bes_theme/calendar-clock.svg deleted file mode 100644 index 76220db0..00000000 --- a/bes_theme/.icons/bes_theme/calendar-clock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-cursor.svg b/bes_theme/.icons/bes_theme/calendar-cursor.svg deleted file mode 100644 index 209f3416..00000000 --- a/bes_theme/.icons/bes_theme/calendar-cursor.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-edit.svg b/bes_theme/.icons/bes_theme/calendar-edit.svg deleted file mode 100644 index 38d8314a..00000000 --- a/bes_theme/.icons/bes_theme/calendar-edit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-end.svg b/bes_theme/.icons/bes_theme/calendar-end.svg deleted file mode 100644 index cf0d5691..00000000 --- a/bes_theme/.icons/bes_theme/calendar-end.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-export.svg b/bes_theme/.icons/bes_theme/calendar-export.svg deleted file mode 100644 index 862466d2..00000000 --- a/bes_theme/.icons/bes_theme/calendar-export.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-heart.svg b/bes_theme/.icons/bes_theme/calendar-heart.svg deleted file mode 100644 index 0e42089c..00000000 --- a/bes_theme/.icons/bes_theme/calendar-heart.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-import.svg b/bes_theme/.icons/bes_theme/calendar-import.svg deleted file mode 100644 index 00f21c4e..00000000 --- a/bes_theme/.icons/bes_theme/calendar-import.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-lock-outline.svg b/bes_theme/.icons/bes_theme/calendar-lock-outline.svg deleted file mode 100644 index 7958f1ba..00000000 --- a/bes_theme/.icons/bes_theme/calendar-lock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-lock.svg b/bes_theme/.icons/bes_theme/calendar-lock.svg deleted file mode 100644 index f09fdd07..00000000 --- a/bes_theme/.icons/bes_theme/calendar-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-minus.svg b/bes_theme/.icons/bes_theme/calendar-minus.svg deleted file mode 100644 index 538c0dbf..00000000 --- a/bes_theme/.icons/bes_theme/calendar-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-month-outline.svg b/bes_theme/.icons/bes_theme/calendar-month-outline.svg deleted file mode 100644 index 90822adb..00000000 --- a/bes_theme/.icons/bes_theme/calendar-month-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-month.svg b/bes_theme/.icons/bes_theme/calendar-month.svg deleted file mode 100644 index e6a40568..00000000 --- a/bes_theme/.icons/bes_theme/calendar-month.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-multiple-check.svg b/bes_theme/.icons/bes_theme/calendar-multiple-check.svg deleted file mode 100644 index 40bd2343..00000000 --- a/bes_theme/.icons/bes_theme/calendar-multiple-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-multiple.svg b/bes_theme/.icons/bes_theme/calendar-multiple.svg deleted file mode 100644 index e8e25558..00000000 --- a/bes_theme/.icons/bes_theme/calendar-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-multiselect.svg b/bes_theme/.icons/bes_theme/calendar-multiselect.svg deleted file mode 100644 index d0aa2198..00000000 --- a/bes_theme/.icons/bes_theme/calendar-multiselect.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-outline.svg b/bes_theme/.icons/bes_theme/calendar-outline.svg deleted file mode 100644 index 63dff5b6..00000000 --- a/bes_theme/.icons/bes_theme/calendar-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-plus.svg b/bes_theme/.icons/bes_theme/calendar-plus.svg deleted file mode 100644 index f3942a9b..00000000 --- a/bes_theme/.icons/bes_theme/calendar-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-question.svg b/bes_theme/.icons/bes_theme/calendar-question.svg deleted file mode 100644 index 734dd32a..00000000 --- a/bes_theme/.icons/bes_theme/calendar-question.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-range-outline.svg b/bes_theme/.icons/bes_theme/calendar-range-outline.svg deleted file mode 100644 index 66e95ff5..00000000 --- a/bes_theme/.icons/bes_theme/calendar-range-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-range.svg b/bes_theme/.icons/bes_theme/calendar-range.svg deleted file mode 100644 index 3fa1aad4..00000000 --- a/bes_theme/.icons/bes_theme/calendar-range.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-refresh-outline.svg b/bes_theme/.icons/bes_theme/calendar-refresh-outline.svg deleted file mode 100644 index 508941b2..00000000 --- a/bes_theme/.icons/bes_theme/calendar-refresh-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-refresh.svg b/bes_theme/.icons/bes_theme/calendar-refresh.svg deleted file mode 100644 index bbe6b647..00000000 --- a/bes_theme/.icons/bes_theme/calendar-refresh.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-remove-outline.svg b/bes_theme/.icons/bes_theme/calendar-remove-outline.svg deleted file mode 100644 index ab6dd3b9..00000000 --- a/bes_theme/.icons/bes_theme/calendar-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-remove.svg b/bes_theme/.icons/bes_theme/calendar-remove.svg deleted file mode 100644 index 08b5c3fa..00000000 --- a/bes_theme/.icons/bes_theme/calendar-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-search.svg b/bes_theme/.icons/bes_theme/calendar-search.svg deleted file mode 100644 index 8daf995f..00000000 --- a/bes_theme/.icons/bes_theme/calendar-search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-star.svg b/bes_theme/.icons/bes_theme/calendar-star.svg deleted file mode 100644 index 3bfc1d43..00000000 --- a/bes_theme/.icons/bes_theme/calendar-star.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-start.svg b/bes_theme/.icons/bes_theme/calendar-start.svg deleted file mode 100644 index 2c36e4bb..00000000 --- a/bes_theme/.icons/bes_theme/calendar-start.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-sync-outline.svg b/bes_theme/.icons/bes_theme/calendar-sync-outline.svg deleted file mode 100644 index 4b5a09e3..00000000 --- a/bes_theme/.icons/bes_theme/calendar-sync-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-sync.svg b/bes_theme/.icons/bes_theme/calendar-sync.svg deleted file mode 100644 index 96067908..00000000 --- a/bes_theme/.icons/bes_theme/calendar-sync.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-text-outline.svg b/bes_theme/.icons/bes_theme/calendar-text-outline.svg deleted file mode 100644 index 687991d5..00000000 --- a/bes_theme/.icons/bes_theme/calendar-text-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-text.svg b/bes_theme/.icons/bes_theme/calendar-text.svg deleted file mode 100644 index d402610c..00000000 --- a/bes_theme/.icons/bes_theme/calendar-text.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-today.svg b/bes_theme/.icons/bes_theme/calendar-today.svg deleted file mode 100644 index 17a66dc7..00000000 --- a/bes_theme/.icons/bes_theme/calendar-today.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-week-begin.svg b/bes_theme/.icons/bes_theme/calendar-week-begin.svg deleted file mode 100644 index 3e4157d8..00000000 --- a/bes_theme/.icons/bes_theme/calendar-week-begin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-week.svg b/bes_theme/.icons/bes_theme/calendar-week.svg deleted file mode 100644 index 293d896e..00000000 --- a/bes_theme/.icons/bes_theme/calendar-week.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-weekend-outline.svg b/bes_theme/.icons/bes_theme/calendar-weekend-outline.svg deleted file mode 100644 index eec46adb..00000000 --- a/bes_theme/.icons/bes_theme/calendar-weekend-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar-weekend.svg b/bes_theme/.icons/bes_theme/calendar-weekend.svg deleted file mode 100644 index 82af2e5c..00000000 --- a/bes_theme/.icons/bes_theme/calendar-weekend.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/calendar.svg b/bes_theme/.icons/bes_theme/calendar.svg deleted file mode 100644 index 5acbbb00..00000000 --- a/bes_theme/.icons/bes_theme/calendar.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/call-made.svg b/bes_theme/.icons/bes_theme/call-made.svg deleted file mode 100644 index 59179a9b..00000000 --- a/bes_theme/.icons/bes_theme/call-made.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/call-merge.svg b/bes_theme/.icons/bes_theme/call-merge.svg deleted file mode 100644 index 388d4553..00000000 --- a/bes_theme/.icons/bes_theme/call-merge.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/call-missed.svg b/bes_theme/.icons/bes_theme/call-missed.svg deleted file mode 100644 index ceb831c0..00000000 --- a/bes_theme/.icons/bes_theme/call-missed.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/call-received.svg b/bes_theme/.icons/bes_theme/call-received.svg deleted file mode 100644 index 0c042ac6..00000000 --- a/bes_theme/.icons/bes_theme/call-received.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/call-split.svg b/bes_theme/.icons/bes_theme/call-split.svg deleted file mode 100644 index dc57a549..00000000 --- a/bes_theme/.icons/bes_theme/call-split.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camcorder-off.svg b/bes_theme/.icons/bes_theme/camcorder-off.svg deleted file mode 100644 index ec667dbf..00000000 --- a/bes_theme/.icons/bes_theme/camcorder-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camcorder.svg b/bes_theme/.icons/bes_theme/camcorder.svg deleted file mode 100644 index e44981a0..00000000 --- a/bes_theme/.icons/bes_theme/camcorder.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camera-account.svg b/bes_theme/.icons/bes_theme/camera-account.svg deleted file mode 100644 index ee8a4f23..00000000 --- a/bes_theme/.icons/bes_theme/camera-account.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camera-burst.svg b/bes_theme/.icons/bes_theme/camera-burst.svg deleted file mode 100644 index 1495bdbd..00000000 --- a/bes_theme/.icons/bes_theme/camera-burst.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camera-control.svg b/bes_theme/.icons/bes_theme/camera-control.svg deleted file mode 100644 index 75a9fac7..00000000 --- a/bes_theme/.icons/bes_theme/camera-control.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camera-enhance-outline.svg b/bes_theme/.icons/bes_theme/camera-enhance-outline.svg deleted file mode 100644 index d7b82bbf..00000000 --- a/bes_theme/.icons/bes_theme/camera-enhance-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camera-enhance.svg b/bes_theme/.icons/bes_theme/camera-enhance.svg deleted file mode 100644 index 9745b3f6..00000000 --- a/bes_theme/.icons/bes_theme/camera-enhance.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camera-flip-outline.svg b/bes_theme/.icons/bes_theme/camera-flip-outline.svg deleted file mode 100644 index 10c851d3..00000000 --- a/bes_theme/.icons/bes_theme/camera-flip-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camera-flip.svg b/bes_theme/.icons/bes_theme/camera-flip.svg deleted file mode 100644 index 9b6f1bfa..00000000 --- a/bes_theme/.icons/bes_theme/camera-flip.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camera-front-variant.svg b/bes_theme/.icons/bes_theme/camera-front-variant.svg deleted file mode 100644 index 9322577c..00000000 --- a/bes_theme/.icons/bes_theme/camera-front-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camera-front.svg b/bes_theme/.icons/bes_theme/camera-front.svg deleted file mode 100644 index ddbe3894..00000000 --- a/bes_theme/.icons/bes_theme/camera-front.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camera-gopro.svg b/bes_theme/.icons/bes_theme/camera-gopro.svg deleted file mode 100644 index 886d41b3..00000000 --- a/bes_theme/.icons/bes_theme/camera-gopro.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camera-image.svg b/bes_theme/.icons/bes_theme/camera-image.svg deleted file mode 100644 index f71d089e..00000000 --- a/bes_theme/.icons/bes_theme/camera-image.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camera-iris.svg b/bes_theme/.icons/bes_theme/camera-iris.svg deleted file mode 100644 index 78da7553..00000000 --- a/bes_theme/.icons/bes_theme/camera-iris.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camera-metering-center.svg b/bes_theme/.icons/bes_theme/camera-metering-center.svg deleted file mode 100644 index d80acf7b..00000000 --- a/bes_theme/.icons/bes_theme/camera-metering-center.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camera-metering-matrix.svg b/bes_theme/.icons/bes_theme/camera-metering-matrix.svg deleted file mode 100644 index 0acbcfa3..00000000 --- a/bes_theme/.icons/bes_theme/camera-metering-matrix.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camera-metering-partial.svg b/bes_theme/.icons/bes_theme/camera-metering-partial.svg deleted file mode 100644 index 1000a837..00000000 --- a/bes_theme/.icons/bes_theme/camera-metering-partial.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camera-metering-spot.svg b/bes_theme/.icons/bes_theme/camera-metering-spot.svg deleted file mode 100644 index 839fdd9b..00000000 --- a/bes_theme/.icons/bes_theme/camera-metering-spot.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camera-off.svg b/bes_theme/.icons/bes_theme/camera-off.svg deleted file mode 100644 index b8e39124..00000000 --- a/bes_theme/.icons/bes_theme/camera-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camera-outline.svg b/bes_theme/.icons/bes_theme/camera-outline.svg deleted file mode 100644 index 1745cb2e..00000000 --- a/bes_theme/.icons/bes_theme/camera-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camera-party-mode.svg b/bes_theme/.icons/bes_theme/camera-party-mode.svg deleted file mode 100644 index 089960fc..00000000 --- a/bes_theme/.icons/bes_theme/camera-party-mode.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camera-plus-outline.svg b/bes_theme/.icons/bes_theme/camera-plus-outline.svg deleted file mode 100644 index 6150524a..00000000 --- a/bes_theme/.icons/bes_theme/camera-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camera-plus.svg b/bes_theme/.icons/bes_theme/camera-plus.svg deleted file mode 100644 index 4d131650..00000000 --- a/bes_theme/.icons/bes_theme/camera-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camera-rear-variant.svg b/bes_theme/.icons/bes_theme/camera-rear-variant.svg deleted file mode 100644 index 52fb7565..00000000 --- a/bes_theme/.icons/bes_theme/camera-rear-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camera-rear.svg b/bes_theme/.icons/bes_theme/camera-rear.svg deleted file mode 100644 index 6a2171a0..00000000 --- a/bes_theme/.icons/bes_theme/camera-rear.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camera-retake-outline.svg b/bes_theme/.icons/bes_theme/camera-retake-outline.svg deleted file mode 100644 index 05a90182..00000000 --- a/bes_theme/.icons/bes_theme/camera-retake-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camera-retake.svg b/bes_theme/.icons/bes_theme/camera-retake.svg deleted file mode 100644 index 57c2db3d..00000000 --- a/bes_theme/.icons/bes_theme/camera-retake.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camera-switch-outline.svg b/bes_theme/.icons/bes_theme/camera-switch-outline.svg deleted file mode 100644 index 1ae29235..00000000 --- a/bes_theme/.icons/bes_theme/camera-switch-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camera-switch.svg b/bes_theme/.icons/bes_theme/camera-switch.svg deleted file mode 100644 index 041a72fb..00000000 --- a/bes_theme/.icons/bes_theme/camera-switch.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camera-timer.svg b/bes_theme/.icons/bes_theme/camera-timer.svg deleted file mode 100644 index 8be8b29e..00000000 --- a/bes_theme/.icons/bes_theme/camera-timer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camera-wireless-outline.svg b/bes_theme/.icons/bes_theme/camera-wireless-outline.svg deleted file mode 100644 index a9612032..00000000 --- a/bes_theme/.icons/bes_theme/camera-wireless-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camera-wireless.svg b/bes_theme/.icons/bes_theme/camera-wireless.svg deleted file mode 100644 index 4911268e..00000000 --- a/bes_theme/.icons/bes_theme/camera-wireless.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/camera.svg b/bes_theme/.icons/bes_theme/camera.svg deleted file mode 100644 index 89a80a60..00000000 --- a/bes_theme/.icons/bes_theme/camera.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/campfire.svg b/bes_theme/.icons/bes_theme/campfire.svg deleted file mode 100644 index 0ef24481..00000000 --- a/bes_theme/.icons/bes_theme/campfire.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cancel.svg b/bes_theme/.icons/bes_theme/cancel.svg deleted file mode 100644 index 93dbec30..00000000 --- a/bes_theme/.icons/bes_theme/cancel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/candle.svg b/bes_theme/.icons/bes_theme/candle.svg deleted file mode 100644 index 226bf318..00000000 --- a/bes_theme/.icons/bes_theme/candle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/candycane.svg b/bes_theme/.icons/bes_theme/candycane.svg deleted file mode 100644 index e0d47466..00000000 --- a/bes_theme/.icons/bes_theme/candycane.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cannabis-off.svg b/bes_theme/.icons/bes_theme/cannabis-off.svg deleted file mode 100644 index 9c51a461..00000000 --- a/bes_theme/.icons/bes_theme/cannabis-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cannabis.svg b/bes_theme/.icons/bes_theme/cannabis.svg deleted file mode 100644 index 7eae28c4..00000000 --- a/bes_theme/.icons/bes_theme/cannabis.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/caps-lock.svg b/bes_theme/.icons/bes_theme/caps-lock.svg deleted file mode 100644 index d752a436..00000000 --- a/bes_theme/.icons/bes_theme/caps-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-2-plus.svg b/bes_theme/.icons/bes_theme/car-2-plus.svg deleted file mode 100644 index 3b47baf5..00000000 --- a/bes_theme/.icons/bes_theme/car-2-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-3-plus.svg b/bes_theme/.icons/bes_theme/car-3-plus.svg deleted file mode 100644 index d929d548..00000000 --- a/bes_theme/.icons/bes_theme/car-3-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-arrow-left.svg b/bes_theme/.icons/bes_theme/car-arrow-left.svg deleted file mode 100644 index 033721b9..00000000 --- a/bes_theme/.icons/bes_theme/car-arrow-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-arrow-right.svg b/bes_theme/.icons/bes_theme/car-arrow-right.svg deleted file mode 100644 index 903034d0..00000000 --- a/bes_theme/.icons/bes_theme/car-arrow-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-back.svg b/bes_theme/.icons/bes_theme/car-back.svg deleted file mode 100644 index 18f8e9ca..00000000 --- a/bes_theme/.icons/bes_theme/car-back.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-battery.svg b/bes_theme/.icons/bes_theme/car-battery.svg deleted file mode 100644 index 351a5641..00000000 --- a/bes_theme/.icons/bes_theme/car-battery.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-brake-abs.svg b/bes_theme/.icons/bes_theme/car-brake-abs.svg deleted file mode 100644 index 4c8e290a..00000000 --- a/bes_theme/.icons/bes_theme/car-brake-abs.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-brake-alert.svg b/bes_theme/.icons/bes_theme/car-brake-alert.svg deleted file mode 100644 index b29ac725..00000000 --- a/bes_theme/.icons/bes_theme/car-brake-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-brake-hold.svg b/bes_theme/.icons/bes_theme/car-brake-hold.svg deleted file mode 100644 index 7846fbdb..00000000 --- a/bes_theme/.icons/bes_theme/car-brake-hold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-brake-parking.svg b/bes_theme/.icons/bes_theme/car-brake-parking.svg deleted file mode 100644 index 59c396c4..00000000 --- a/bes_theme/.icons/bes_theme/car-brake-parking.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-brake-retarder.svg b/bes_theme/.icons/bes_theme/car-brake-retarder.svg deleted file mode 100644 index 197785f6..00000000 --- a/bes_theme/.icons/bes_theme/car-brake-retarder.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-child-seat.svg b/bes_theme/.icons/bes_theme/car-child-seat.svg deleted file mode 100644 index 4bd8b7b3..00000000 --- a/bes_theme/.icons/bes_theme/car-child-seat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-clutch.svg b/bes_theme/.icons/bes_theme/car-clutch.svg deleted file mode 100644 index f47af8ad..00000000 --- a/bes_theme/.icons/bes_theme/car-clutch.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-cog.svg b/bes_theme/.icons/bes_theme/car-cog.svg deleted file mode 100644 index 0f805044..00000000 --- a/bes_theme/.icons/bes_theme/car-cog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-connected.svg b/bes_theme/.icons/bes_theme/car-connected.svg deleted file mode 100644 index 19f87419..00000000 --- a/bes_theme/.icons/bes_theme/car-connected.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-convertible.svg b/bes_theme/.icons/bes_theme/car-convertible.svg deleted file mode 100644 index 56409aa1..00000000 --- a/bes_theme/.icons/bes_theme/car-convertible.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-coolant-level.svg b/bes_theme/.icons/bes_theme/car-coolant-level.svg deleted file mode 100644 index 194b5733..00000000 --- a/bes_theme/.icons/bes_theme/car-coolant-level.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-cruise-control.svg b/bes_theme/.icons/bes_theme/car-cruise-control.svg deleted file mode 100644 index 22eab343..00000000 --- a/bes_theme/.icons/bes_theme/car-cruise-control.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-defrost-front.svg b/bes_theme/.icons/bes_theme/car-defrost-front.svg deleted file mode 100644 index c17e3aac..00000000 --- a/bes_theme/.icons/bes_theme/car-defrost-front.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-defrost-rear.svg b/bes_theme/.icons/bes_theme/car-defrost-rear.svg deleted file mode 100644 index d77a068e..00000000 --- a/bes_theme/.icons/bes_theme/car-defrost-rear.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-door-lock.svg b/bes_theme/.icons/bes_theme/car-door-lock.svg deleted file mode 100644 index 0611fb5a..00000000 --- a/bes_theme/.icons/bes_theme/car-door-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-door.svg b/bes_theme/.icons/bes_theme/car-door.svg deleted file mode 100644 index 6ccdee6d..00000000 --- a/bes_theme/.icons/bes_theme/car-door.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-electric-outline.svg b/bes_theme/.icons/bes_theme/car-electric-outline.svg deleted file mode 100644 index 95228d91..00000000 --- a/bes_theme/.icons/bes_theme/car-electric-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-electric.svg b/bes_theme/.icons/bes_theme/car-electric.svg deleted file mode 100644 index 904fb19a..00000000 --- a/bes_theme/.icons/bes_theme/car-electric.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-emergency.svg b/bes_theme/.icons/bes_theme/car-emergency.svg deleted file mode 100644 index 0bffd13c..00000000 --- a/bes_theme/.icons/bes_theme/car-emergency.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-esp.svg b/bes_theme/.icons/bes_theme/car-esp.svg deleted file mode 100644 index 00474563..00000000 --- a/bes_theme/.icons/bes_theme/car-esp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-estate.svg b/bes_theme/.icons/bes_theme/car-estate.svg deleted file mode 100644 index fea405e5..00000000 --- a/bes_theme/.icons/bes_theme/car-estate.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-hatchback.svg b/bes_theme/.icons/bes_theme/car-hatchback.svg deleted file mode 100644 index a72690d7..00000000 --- a/bes_theme/.icons/bes_theme/car-hatchback.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-info.svg b/bes_theme/.icons/bes_theme/car-info.svg deleted file mode 100644 index 1eba75d2..00000000 --- a/bes_theme/.icons/bes_theme/car-info.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-key.svg b/bes_theme/.icons/bes_theme/car-key.svg deleted file mode 100644 index 5da41018..00000000 --- a/bes_theme/.icons/bes_theme/car-key.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-lifted-pickup.svg b/bes_theme/.icons/bes_theme/car-lifted-pickup.svg deleted file mode 100644 index a967179f..00000000 --- a/bes_theme/.icons/bes_theme/car-lifted-pickup.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-light-dimmed.svg b/bes_theme/.icons/bes_theme/car-light-dimmed.svg deleted file mode 100644 index c4f36456..00000000 --- a/bes_theme/.icons/bes_theme/car-light-dimmed.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-light-fog.svg b/bes_theme/.icons/bes_theme/car-light-fog.svg deleted file mode 100644 index 944a4c4e..00000000 --- a/bes_theme/.icons/bes_theme/car-light-fog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-light-high.svg b/bes_theme/.icons/bes_theme/car-light-high.svg deleted file mode 100644 index da6de474..00000000 --- a/bes_theme/.icons/bes_theme/car-light-high.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-limousine.svg b/bes_theme/.icons/bes_theme/car-limousine.svg deleted file mode 100644 index 498adf4d..00000000 --- a/bes_theme/.icons/bes_theme/car-limousine.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-multiple.svg b/bes_theme/.icons/bes_theme/car-multiple.svg deleted file mode 100644 index d5c37252..00000000 --- a/bes_theme/.icons/bes_theme/car-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-off.svg b/bes_theme/.icons/bes_theme/car-off.svg deleted file mode 100644 index ec0dc31a..00000000 --- a/bes_theme/.icons/bes_theme/car-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-outline.svg b/bes_theme/.icons/bes_theme/car-outline.svg deleted file mode 100644 index 72f4ae05..00000000 --- a/bes_theme/.icons/bes_theme/car-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-parking-lights.svg b/bes_theme/.icons/bes_theme/car-parking-lights.svg deleted file mode 100644 index eaa3ba74..00000000 --- a/bes_theme/.icons/bes_theme/car-parking-lights.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-pickup.svg b/bes_theme/.icons/bes_theme/car-pickup.svg deleted file mode 100644 index 5af20609..00000000 --- a/bes_theme/.icons/bes_theme/car-pickup.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-seat-cooler.svg b/bes_theme/.icons/bes_theme/car-seat-cooler.svg deleted file mode 100644 index b572fb0c..00000000 --- a/bes_theme/.icons/bes_theme/car-seat-cooler.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-seat-heater.svg b/bes_theme/.icons/bes_theme/car-seat-heater.svg deleted file mode 100644 index 50c4545f..00000000 --- a/bes_theme/.icons/bes_theme/car-seat-heater.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-seat.svg b/bes_theme/.icons/bes_theme/car-seat.svg deleted file mode 100644 index 1a4b6603..00000000 --- a/bes_theme/.icons/bes_theme/car-seat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-settings.svg b/bes_theme/.icons/bes_theme/car-settings.svg deleted file mode 100644 index c5e0aa68..00000000 --- a/bes_theme/.icons/bes_theme/car-settings.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-shift-pattern.svg b/bes_theme/.icons/bes_theme/car-shift-pattern.svg deleted file mode 100644 index 1142e598..00000000 --- a/bes_theme/.icons/bes_theme/car-shift-pattern.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-side.svg b/bes_theme/.icons/bes_theme/car-side.svg deleted file mode 100644 index f2940f9d..00000000 --- a/bes_theme/.icons/bes_theme/car-side.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-sports.svg b/bes_theme/.icons/bes_theme/car-sports.svg deleted file mode 100644 index 2ffe78c9..00000000 --- a/bes_theme/.icons/bes_theme/car-sports.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-tire-alert.svg b/bes_theme/.icons/bes_theme/car-tire-alert.svg deleted file mode 100644 index 0e495862..00000000 --- a/bes_theme/.icons/bes_theme/car-tire-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-traction-control.svg b/bes_theme/.icons/bes_theme/car-traction-control.svg deleted file mode 100644 index 3870cc81..00000000 --- a/bes_theme/.icons/bes_theme/car-traction-control.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-turbocharger.svg b/bes_theme/.icons/bes_theme/car-turbocharger.svg deleted file mode 100644 index ff36769a..00000000 --- a/bes_theme/.icons/bes_theme/car-turbocharger.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-wash.svg b/bes_theme/.icons/bes_theme/car-wash.svg deleted file mode 100644 index 7143c4de..00000000 --- a/bes_theme/.icons/bes_theme/car-wash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-windshield-outline.svg b/bes_theme/.icons/bes_theme/car-windshield-outline.svg deleted file mode 100644 index b28411e2..00000000 --- a/bes_theme/.icons/bes_theme/car-windshield-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car-windshield.svg b/bes_theme/.icons/bes_theme/car-windshield.svg deleted file mode 100644 index 1689f4cf..00000000 --- a/bes_theme/.icons/bes_theme/car-windshield.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/car.svg b/bes_theme/.icons/bes_theme/car.svg deleted file mode 100644 index 01cc0f52..00000000 --- a/bes_theme/.icons/bes_theme/car.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/carabiner.svg b/bes_theme/.icons/bes_theme/carabiner.svg deleted file mode 100644 index 64cfe7b2..00000000 --- a/bes_theme/.icons/bes_theme/carabiner.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/caravan.svg b/bes_theme/.icons/bes_theme/caravan.svg deleted file mode 100644 index 0986fc53..00000000 --- a/bes_theme/.icons/bes_theme/caravan.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/card-account-details-outline.svg b/bes_theme/.icons/bes_theme/card-account-details-outline.svg deleted file mode 100644 index a0812cd6..00000000 --- a/bes_theme/.icons/bes_theme/card-account-details-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/card-account-details-star-outline.svg b/bes_theme/.icons/bes_theme/card-account-details-star-outline.svg deleted file mode 100644 index e9eb1f9d..00000000 --- a/bes_theme/.icons/bes_theme/card-account-details-star-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/card-account-details-star.svg b/bes_theme/.icons/bes_theme/card-account-details-star.svg deleted file mode 100644 index f5791d8a..00000000 --- a/bes_theme/.icons/bes_theme/card-account-details-star.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/card-account-details.svg b/bes_theme/.icons/bes_theme/card-account-details.svg deleted file mode 100644 index 32fefba3..00000000 --- a/bes_theme/.icons/bes_theme/card-account-details.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/card-account-mail-outline.svg b/bes_theme/.icons/bes_theme/card-account-mail-outline.svg deleted file mode 100644 index a4e07cc2..00000000 --- a/bes_theme/.icons/bes_theme/card-account-mail-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/card-account-mail.svg b/bes_theme/.icons/bes_theme/card-account-mail.svg deleted file mode 100644 index 0facb000..00000000 --- a/bes_theme/.icons/bes_theme/card-account-mail.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/card-account-phone-outline.svg b/bes_theme/.icons/bes_theme/card-account-phone-outline.svg deleted file mode 100644 index 4ef1ac16..00000000 --- a/bes_theme/.icons/bes_theme/card-account-phone-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/card-account-phone.svg b/bes_theme/.icons/bes_theme/card-account-phone.svg deleted file mode 100644 index 3c19110a..00000000 --- a/bes_theme/.icons/bes_theme/card-account-phone.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/card-bulleted-off-outline.svg b/bes_theme/.icons/bes_theme/card-bulleted-off-outline.svg deleted file mode 100644 index 834709b0..00000000 --- a/bes_theme/.icons/bes_theme/card-bulleted-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/card-bulleted-off.svg b/bes_theme/.icons/bes_theme/card-bulleted-off.svg deleted file mode 100644 index c720c11a..00000000 --- a/bes_theme/.icons/bes_theme/card-bulleted-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/card-bulleted-outline.svg b/bes_theme/.icons/bes_theme/card-bulleted-outline.svg deleted file mode 100644 index 0d8bcced..00000000 --- a/bes_theme/.icons/bes_theme/card-bulleted-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/card-bulleted-settings-outline.svg b/bes_theme/.icons/bes_theme/card-bulleted-settings-outline.svg deleted file mode 100644 index 8ae426eb..00000000 --- a/bes_theme/.icons/bes_theme/card-bulleted-settings-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/card-bulleted-settings.svg b/bes_theme/.icons/bes_theme/card-bulleted-settings.svg deleted file mode 100644 index 7fc56e33..00000000 --- a/bes_theme/.icons/bes_theme/card-bulleted-settings.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/card-bulleted.svg b/bes_theme/.icons/bes_theme/card-bulleted.svg deleted file mode 100644 index 97ad5e23..00000000 --- a/bes_theme/.icons/bes_theme/card-bulleted.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/card-minus-outline.svg b/bes_theme/.icons/bes_theme/card-minus-outline.svg deleted file mode 100644 index 7821ee7a..00000000 --- a/bes_theme/.icons/bes_theme/card-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/card-minus.svg b/bes_theme/.icons/bes_theme/card-minus.svg deleted file mode 100644 index 30b29313..00000000 --- a/bes_theme/.icons/bes_theme/card-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/card-off-outline.svg b/bes_theme/.icons/bes_theme/card-off-outline.svg deleted file mode 100644 index caaeca40..00000000 --- a/bes_theme/.icons/bes_theme/card-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/card-off.svg b/bes_theme/.icons/bes_theme/card-off.svg deleted file mode 100644 index 9d21d56c..00000000 --- a/bes_theme/.icons/bes_theme/card-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/card-outline.svg b/bes_theme/.icons/bes_theme/card-outline.svg deleted file mode 100644 index eed2f13e..00000000 --- a/bes_theme/.icons/bes_theme/card-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/card-plus-outline.svg b/bes_theme/.icons/bes_theme/card-plus-outline.svg deleted file mode 100644 index 44fef455..00000000 --- a/bes_theme/.icons/bes_theme/card-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/card-plus.svg b/bes_theme/.icons/bes_theme/card-plus.svg deleted file mode 100644 index e0d9e07e..00000000 --- a/bes_theme/.icons/bes_theme/card-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/card-remove-outline.svg b/bes_theme/.icons/bes_theme/card-remove-outline.svg deleted file mode 100644 index d1072570..00000000 --- a/bes_theme/.icons/bes_theme/card-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/card-remove.svg b/bes_theme/.icons/bes_theme/card-remove.svg deleted file mode 100644 index a4c98ee6..00000000 --- a/bes_theme/.icons/bes_theme/card-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/card-search-outline.svg b/bes_theme/.icons/bes_theme/card-search-outline.svg deleted file mode 100644 index 6549ae34..00000000 --- a/bes_theme/.icons/bes_theme/card-search-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/card-search.svg b/bes_theme/.icons/bes_theme/card-search.svg deleted file mode 100644 index fea1893f..00000000 --- a/bes_theme/.icons/bes_theme/card-search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/card-text-outline.svg b/bes_theme/.icons/bes_theme/card-text-outline.svg deleted file mode 100644 index 274a6bd7..00000000 --- a/bes_theme/.icons/bes_theme/card-text-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/card-text.svg b/bes_theme/.icons/bes_theme/card-text.svg deleted file mode 100644 index 5b4bbcef..00000000 --- a/bes_theme/.icons/bes_theme/card-text.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/card.svg b/bes_theme/.icons/bes_theme/card.svg deleted file mode 100644 index 384c0f13..00000000 --- a/bes_theme/.icons/bes_theme/card.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cards-club.svg b/bes_theme/.icons/bes_theme/cards-club.svg deleted file mode 100644 index fe4f3018..00000000 --- a/bes_theme/.icons/bes_theme/cards-club.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cards-diamond-outline.svg b/bes_theme/.icons/bes_theme/cards-diamond-outline.svg deleted file mode 100644 index 5dd75768..00000000 --- a/bes_theme/.icons/bes_theme/cards-diamond-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cards-diamond.svg b/bes_theme/.icons/bes_theme/cards-diamond.svg deleted file mode 100644 index df79a275..00000000 --- a/bes_theme/.icons/bes_theme/cards-diamond.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cards-heart.svg b/bes_theme/.icons/bes_theme/cards-heart.svg deleted file mode 100644 index d4471c1e..00000000 --- a/bes_theme/.icons/bes_theme/cards-heart.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cards-outline.svg b/bes_theme/.icons/bes_theme/cards-outline.svg deleted file mode 100644 index 07cca5d4..00000000 --- a/bes_theme/.icons/bes_theme/cards-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cards-playing-outline.svg b/bes_theme/.icons/bes_theme/cards-playing-outline.svg deleted file mode 100644 index 98828d17..00000000 --- a/bes_theme/.icons/bes_theme/cards-playing-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cards-spade.svg b/bes_theme/.icons/bes_theme/cards-spade.svg deleted file mode 100644 index daaf4f74..00000000 --- a/bes_theme/.icons/bes_theme/cards-spade.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cards-variant.svg b/bes_theme/.icons/bes_theme/cards-variant.svg deleted file mode 100644 index 3dd665a1..00000000 --- a/bes_theme/.icons/bes_theme/cards-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cards.svg b/bes_theme/.icons/bes_theme/cards.svg deleted file mode 100644 index 2c4fbb27..00000000 --- a/bes_theme/.icons/bes_theme/cards.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/carrot.svg b/bes_theme/.icons/bes_theme/carrot.svg deleted file mode 100644 index 1db8c9fa..00000000 --- a/bes_theme/.icons/bes_theme/carrot.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cart-arrow-down.svg b/bes_theme/.icons/bes_theme/cart-arrow-down.svg deleted file mode 100644 index bd41eaf8..00000000 --- a/bes_theme/.icons/bes_theme/cart-arrow-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cart-arrow-right.svg b/bes_theme/.icons/bes_theme/cart-arrow-right.svg deleted file mode 100644 index 6a8c30d5..00000000 --- a/bes_theme/.icons/bes_theme/cart-arrow-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cart-arrow-up.svg b/bes_theme/.icons/bes_theme/cart-arrow-up.svg deleted file mode 100644 index ff2139ea..00000000 --- a/bes_theme/.icons/bes_theme/cart-arrow-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cart-check.svg b/bes_theme/.icons/bes_theme/cart-check.svg deleted file mode 100644 index 372aa3e4..00000000 --- a/bes_theme/.icons/bes_theme/cart-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cart-minus.svg b/bes_theme/.icons/bes_theme/cart-minus.svg deleted file mode 100644 index f9a562d7..00000000 --- a/bes_theme/.icons/bes_theme/cart-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cart-off.svg b/bes_theme/.icons/bes_theme/cart-off.svg deleted file mode 100644 index e0128cb0..00000000 --- a/bes_theme/.icons/bes_theme/cart-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cart-outline.svg b/bes_theme/.icons/bes_theme/cart-outline.svg deleted file mode 100644 index 6fc1a365..00000000 --- a/bes_theme/.icons/bes_theme/cart-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cart-plus.svg b/bes_theme/.icons/bes_theme/cart-plus.svg deleted file mode 100644 index 9aae70d2..00000000 --- a/bes_theme/.icons/bes_theme/cart-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cart-remove.svg b/bes_theme/.icons/bes_theme/cart-remove.svg deleted file mode 100644 index 7ccdb4ac..00000000 --- a/bes_theme/.icons/bes_theme/cart-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cart-variant.svg b/bes_theme/.icons/bes_theme/cart-variant.svg deleted file mode 100644 index 6c6ce0cb..00000000 --- a/bes_theme/.icons/bes_theme/cart-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cart.svg b/bes_theme/.icons/bes_theme/cart.svg deleted file mode 100644 index dc2bfc9b..00000000 --- a/bes_theme/.icons/bes_theme/cart.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/case-sensitive-alt.svg b/bes_theme/.icons/bes_theme/case-sensitive-alt.svg deleted file mode 100644 index 6517b5c1..00000000 --- a/bes_theme/.icons/bes_theme/case-sensitive-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cash-100.svg b/bes_theme/.icons/bes_theme/cash-100.svg deleted file mode 100644 index 9b5ce36e..00000000 --- a/bes_theme/.icons/bes_theme/cash-100.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cash-check.svg b/bes_theme/.icons/bes_theme/cash-check.svg deleted file mode 100644 index 517f3733..00000000 --- a/bes_theme/.icons/bes_theme/cash-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cash-lock-open.svg b/bes_theme/.icons/bes_theme/cash-lock-open.svg deleted file mode 100644 index 2f519be4..00000000 --- a/bes_theme/.icons/bes_theme/cash-lock-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cash-lock.svg b/bes_theme/.icons/bes_theme/cash-lock.svg deleted file mode 100644 index abcbec6e..00000000 --- a/bes_theme/.icons/bes_theme/cash-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cash-marker.svg b/bes_theme/.icons/bes_theme/cash-marker.svg deleted file mode 100644 index 8686c92b..00000000 --- a/bes_theme/.icons/bes_theme/cash-marker.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cash-minus.svg b/bes_theme/.icons/bes_theme/cash-minus.svg deleted file mode 100644 index 320477c5..00000000 --- a/bes_theme/.icons/bes_theme/cash-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cash-multiple.svg b/bes_theme/.icons/bes_theme/cash-multiple.svg deleted file mode 100644 index b2a1ba8f..00000000 --- a/bes_theme/.icons/bes_theme/cash-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cash-plus.svg b/bes_theme/.icons/bes_theme/cash-plus.svg deleted file mode 100644 index 539eb483..00000000 --- a/bes_theme/.icons/bes_theme/cash-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cash-refund.svg b/bes_theme/.icons/bes_theme/cash-refund.svg deleted file mode 100644 index ea28b34a..00000000 --- a/bes_theme/.icons/bes_theme/cash-refund.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cash-register.svg b/bes_theme/.icons/bes_theme/cash-register.svg deleted file mode 100644 index 20a1c701..00000000 --- a/bes_theme/.icons/bes_theme/cash-register.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cash-remove.svg b/bes_theme/.icons/bes_theme/cash-remove.svg deleted file mode 100644 index a0778ece..00000000 --- a/bes_theme/.icons/bes_theme/cash-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cash-usd-outline.svg b/bes_theme/.icons/bes_theme/cash-usd-outline.svg deleted file mode 100644 index 6dc4c88c..00000000 --- a/bes_theme/.icons/bes_theme/cash-usd-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cash-usd.svg b/bes_theme/.icons/bes_theme/cash-usd.svg deleted file mode 100644 index 55f8dd77..00000000 --- a/bes_theme/.icons/bes_theme/cash-usd.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cash.svg b/bes_theme/.icons/bes_theme/cash.svg deleted file mode 100644 index cf43a5b1..00000000 --- a/bes_theme/.icons/bes_theme/cash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cassette.svg b/bes_theme/.icons/bes_theme/cassette.svg deleted file mode 100644 index 16b6b554..00000000 --- a/bes_theme/.icons/bes_theme/cassette.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cast-audio.svg b/bes_theme/.icons/bes_theme/cast-audio.svg deleted file mode 100644 index b0b3ef9d..00000000 --- a/bes_theme/.icons/bes_theme/cast-audio.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cast-connected.svg b/bes_theme/.icons/bes_theme/cast-connected.svg deleted file mode 100644 index 82c1e9ed..00000000 --- a/bes_theme/.icons/bes_theme/cast-connected.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cast-education.svg b/bes_theme/.icons/bes_theme/cast-education.svg deleted file mode 100644 index 40073dd9..00000000 --- a/bes_theme/.icons/bes_theme/cast-education.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cast-off.svg b/bes_theme/.icons/bes_theme/cast-off.svg deleted file mode 100644 index 71ab9573..00000000 --- a/bes_theme/.icons/bes_theme/cast-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cast.svg b/bes_theme/.icons/bes_theme/cast.svg deleted file mode 100644 index d1a892c6..00000000 --- a/bes_theme/.icons/bes_theme/cast.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/castle.svg b/bes_theme/.icons/bes_theme/castle.svg deleted file mode 100644 index 977a8137..00000000 --- a/bes_theme/.icons/bes_theme/castle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cat.svg b/bes_theme/.icons/bes_theme/cat.svg deleted file mode 100644 index 61a23ecc..00000000 --- a/bes_theme/.icons/bes_theme/cat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cctv.svg b/bes_theme/.icons/bes_theme/cctv.svg deleted file mode 100644 index 12142a33..00000000 --- a/bes_theme/.icons/bes_theme/cctv.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ceiling-light.svg b/bes_theme/.icons/bes_theme/ceiling-light.svg deleted file mode 100644 index 12f32172..00000000 --- a/bes_theme/.icons/bes_theme/ceiling-light.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cellphone-android.svg b/bes_theme/.icons/bes_theme/cellphone-android.svg deleted file mode 100644 index 8bd4afb6..00000000 --- a/bes_theme/.icons/bes_theme/cellphone-android.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cellphone-arrow-down.svg b/bes_theme/.icons/bes_theme/cellphone-arrow-down.svg deleted file mode 100644 index 5854b1c4..00000000 --- a/bes_theme/.icons/bes_theme/cellphone-arrow-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cellphone-basic.svg b/bes_theme/.icons/bes_theme/cellphone-basic.svg deleted file mode 100644 index 17de1088..00000000 --- a/bes_theme/.icons/bes_theme/cellphone-basic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cellphone-charging.svg b/bes_theme/.icons/bes_theme/cellphone-charging.svg deleted file mode 100644 index 4b404902..00000000 --- a/bes_theme/.icons/bes_theme/cellphone-charging.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cellphone-cog.svg b/bes_theme/.icons/bes_theme/cellphone-cog.svg deleted file mode 100644 index 9009f59b..00000000 --- a/bes_theme/.icons/bes_theme/cellphone-cog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cellphone-dock.svg b/bes_theme/.icons/bes_theme/cellphone-dock.svg deleted file mode 100644 index 58500572..00000000 --- a/bes_theme/.icons/bes_theme/cellphone-dock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cellphone-erase.svg b/bes_theme/.icons/bes_theme/cellphone-erase.svg deleted file mode 100644 index ab8712b0..00000000 --- a/bes_theme/.icons/bes_theme/cellphone-erase.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cellphone-information.svg b/bes_theme/.icons/bes_theme/cellphone-information.svg deleted file mode 100644 index cf705890..00000000 --- a/bes_theme/.icons/bes_theme/cellphone-information.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cellphone-iphone.svg b/bes_theme/.icons/bes_theme/cellphone-iphone.svg deleted file mode 100644 index fba07609..00000000 --- a/bes_theme/.icons/bes_theme/cellphone-iphone.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cellphone-key.svg b/bes_theme/.icons/bes_theme/cellphone-key.svg deleted file mode 100644 index 0d48380e..00000000 --- a/bes_theme/.icons/bes_theme/cellphone-key.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cellphone-link-off.svg b/bes_theme/.icons/bes_theme/cellphone-link-off.svg deleted file mode 100644 index 3df9f83d..00000000 --- a/bes_theme/.icons/bes_theme/cellphone-link-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cellphone-link.svg b/bes_theme/.icons/bes_theme/cellphone-link.svg deleted file mode 100644 index 6aa8a76f..00000000 --- a/bes_theme/.icons/bes_theme/cellphone-link.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cellphone-lock.svg b/bes_theme/.icons/bes_theme/cellphone-lock.svg deleted file mode 100644 index 1fad2803..00000000 --- a/bes_theme/.icons/bes_theme/cellphone-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cellphone-message-off.svg b/bes_theme/.icons/bes_theme/cellphone-message-off.svg deleted file mode 100644 index ae053b83..00000000 --- a/bes_theme/.icons/bes_theme/cellphone-message-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cellphone-message.svg b/bes_theme/.icons/bes_theme/cellphone-message.svg deleted file mode 100644 index 7317b7e6..00000000 --- a/bes_theme/.icons/bes_theme/cellphone-message.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cellphone-nfc-off.svg b/bes_theme/.icons/bes_theme/cellphone-nfc-off.svg deleted file mode 100644 index 228db327..00000000 --- a/bes_theme/.icons/bes_theme/cellphone-nfc-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cellphone-nfc.svg b/bes_theme/.icons/bes_theme/cellphone-nfc.svg deleted file mode 100644 index c8285bf0..00000000 --- a/bes_theme/.icons/bes_theme/cellphone-nfc.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cellphone-off.svg b/bes_theme/.icons/bes_theme/cellphone-off.svg deleted file mode 100644 index 830e2014..00000000 --- a/bes_theme/.icons/bes_theme/cellphone-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cellphone-play.svg b/bes_theme/.icons/bes_theme/cellphone-play.svg deleted file mode 100644 index 13b7800b..00000000 --- a/bes_theme/.icons/bes_theme/cellphone-play.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cellphone-screenshot.svg b/bes_theme/.icons/bes_theme/cellphone-screenshot.svg deleted file mode 100644 index 1d22a69e..00000000 --- a/bes_theme/.icons/bes_theme/cellphone-screenshot.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cellphone-settings.svg b/bes_theme/.icons/bes_theme/cellphone-settings.svg deleted file mode 100644 index f7af862d..00000000 --- a/bes_theme/.icons/bes_theme/cellphone-settings.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cellphone-sound.svg b/bes_theme/.icons/bes_theme/cellphone-sound.svg deleted file mode 100644 index 93f60fc5..00000000 --- a/bes_theme/.icons/bes_theme/cellphone-sound.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cellphone-text.svg b/bes_theme/.icons/bes_theme/cellphone-text.svg deleted file mode 100644 index 2a5c1402..00000000 --- a/bes_theme/.icons/bes_theme/cellphone-text.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cellphone-wireless.svg b/bes_theme/.icons/bes_theme/cellphone-wireless.svg deleted file mode 100644 index 550fbf9b..00000000 --- a/bes_theme/.icons/bes_theme/cellphone-wireless.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cellphone.svg b/bes_theme/.icons/bes_theme/cellphone.svg deleted file mode 100644 index f5d75330..00000000 --- a/bes_theme/.icons/bes_theme/cellphone.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/celtic-cross.svg b/bes_theme/.icons/bes_theme/celtic-cross.svg deleted file mode 100644 index 3cff2784..00000000 --- a/bes_theme/.icons/bes_theme/celtic-cross.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/centos.svg b/bes_theme/.icons/bes_theme/centos.svg deleted file mode 100644 index 074358c7..00000000 --- a/bes_theme/.icons/bes_theme/centos.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/certificate-outline.svg b/bes_theme/.icons/bes_theme/certificate-outline.svg deleted file mode 100644 index f481d8e8..00000000 --- a/bes_theme/.icons/bes_theme/certificate-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/certificate.svg b/bes_theme/.icons/bes_theme/certificate.svg deleted file mode 100644 index e09760ba..00000000 --- a/bes_theme/.icons/bes_theme/certificate.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chair-rolling.svg b/bes_theme/.icons/bes_theme/chair-rolling.svg deleted file mode 100644 index edd4ff27..00000000 --- a/bes_theme/.icons/bes_theme/chair-rolling.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chair-school.svg b/bes_theme/.icons/bes_theme/chair-school.svg deleted file mode 100644 index a8350cc9..00000000 --- a/bes_theme/.icons/bes_theme/chair-school.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/charity.svg b/bes_theme/.icons/bes_theme/charity.svg deleted file mode 100644 index fbf812d5..00000000 --- a/bes_theme/.icons/bes_theme/charity.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chart-arc.svg b/bes_theme/.icons/bes_theme/chart-arc.svg deleted file mode 100644 index 6c1c1c5f..00000000 --- a/bes_theme/.icons/bes_theme/chart-arc.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chart-areaspline-variant.svg b/bes_theme/.icons/bes_theme/chart-areaspline-variant.svg deleted file mode 100644 index ab8ec736..00000000 --- a/bes_theme/.icons/bes_theme/chart-areaspline-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chart-areaspline.svg b/bes_theme/.icons/bes_theme/chart-areaspline.svg deleted file mode 100644 index f4ca656a..00000000 --- a/bes_theme/.icons/bes_theme/chart-areaspline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chart-bar-stacked.svg b/bes_theme/.icons/bes_theme/chart-bar-stacked.svg deleted file mode 100644 index 7b1e6630..00000000 --- a/bes_theme/.icons/bes_theme/chart-bar-stacked.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chart-bar.svg b/bes_theme/.icons/bes_theme/chart-bar.svg deleted file mode 100644 index 2811a9eb..00000000 --- a/bes_theme/.icons/bes_theme/chart-bar.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chart-bell-curve-cumulative.svg b/bes_theme/.icons/bes_theme/chart-bell-curve-cumulative.svg deleted file mode 100644 index 944e4fec..00000000 --- a/bes_theme/.icons/bes_theme/chart-bell-curve-cumulative.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chart-bell-curve.svg b/bes_theme/.icons/bes_theme/chart-bell-curve.svg deleted file mode 100644 index 9c115ee1..00000000 --- a/bes_theme/.icons/bes_theme/chart-bell-curve.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chart-box-outline.svg b/bes_theme/.icons/bes_theme/chart-box-outline.svg deleted file mode 100644 index 592c0e0b..00000000 --- a/bes_theme/.icons/bes_theme/chart-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chart-box-plus-outline.svg b/bes_theme/.icons/bes_theme/chart-box-plus-outline.svg deleted file mode 100644 index 47b87629..00000000 --- a/bes_theme/.icons/bes_theme/chart-box-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chart-box.svg b/bes_theme/.icons/bes_theme/chart-box.svg deleted file mode 100644 index 25c6a298..00000000 --- a/bes_theme/.icons/bes_theme/chart-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chart-bubble.svg b/bes_theme/.icons/bes_theme/chart-bubble.svg deleted file mode 100644 index 7025684b..00000000 --- a/bes_theme/.icons/bes_theme/chart-bubble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chart-donut-variant.svg b/bes_theme/.icons/bes_theme/chart-donut-variant.svg deleted file mode 100644 index c24bb222..00000000 --- a/bes_theme/.icons/bes_theme/chart-donut-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chart-donut.svg b/bes_theme/.icons/bes_theme/chart-donut.svg deleted file mode 100644 index 808cb731..00000000 --- a/bes_theme/.icons/bes_theme/chart-donut.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chart-gantt.svg b/bes_theme/.icons/bes_theme/chart-gantt.svg deleted file mode 100644 index a72f9031..00000000 --- a/bes_theme/.icons/bes_theme/chart-gantt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chart-histogram.svg b/bes_theme/.icons/bes_theme/chart-histogram.svg deleted file mode 100644 index 4dd096b6..00000000 --- a/bes_theme/.icons/bes_theme/chart-histogram.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chart-line-stacked.svg b/bes_theme/.icons/bes_theme/chart-line-stacked.svg deleted file mode 100644 index b4850baf..00000000 --- a/bes_theme/.icons/bes_theme/chart-line-stacked.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chart-line-variant.svg b/bes_theme/.icons/bes_theme/chart-line-variant.svg deleted file mode 100644 index b1690fe6..00000000 --- a/bes_theme/.icons/bes_theme/chart-line-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chart-line.svg b/bes_theme/.icons/bes_theme/chart-line.svg deleted file mode 100644 index 36423f56..00000000 --- a/bes_theme/.icons/bes_theme/chart-line.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chart-multiline.svg b/bes_theme/.icons/bes_theme/chart-multiline.svg deleted file mode 100644 index e1753117..00000000 --- a/bes_theme/.icons/bes_theme/chart-multiline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chart-multiple.svg b/bes_theme/.icons/bes_theme/chart-multiple.svg deleted file mode 100644 index 40d98803..00000000 --- a/bes_theme/.icons/bes_theme/chart-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chart-pie.svg b/bes_theme/.icons/bes_theme/chart-pie.svg deleted file mode 100644 index 28df8dd5..00000000 --- a/bes_theme/.icons/bes_theme/chart-pie.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chart-ppf.svg b/bes_theme/.icons/bes_theme/chart-ppf.svg deleted file mode 100644 index d53e4238..00000000 --- a/bes_theme/.icons/bes_theme/chart-ppf.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chart-sankey-variant.svg b/bes_theme/.icons/bes_theme/chart-sankey-variant.svg deleted file mode 100644 index 36eafbad..00000000 --- a/bes_theme/.icons/bes_theme/chart-sankey-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chart-sankey.svg b/bes_theme/.icons/bes_theme/chart-sankey.svg deleted file mode 100644 index 220aef6b..00000000 --- a/bes_theme/.icons/bes_theme/chart-sankey.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chart-scatter-plot-hexbin.svg b/bes_theme/.icons/bes_theme/chart-scatter-plot-hexbin.svg deleted file mode 100644 index f14eba14..00000000 --- a/bes_theme/.icons/bes_theme/chart-scatter-plot-hexbin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chart-scatter-plot.svg b/bes_theme/.icons/bes_theme/chart-scatter-plot.svg deleted file mode 100644 index c7fbfef1..00000000 --- a/bes_theme/.icons/bes_theme/chart-scatter-plot.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chart-timeline-variant-shimmer.svg b/bes_theme/.icons/bes_theme/chart-timeline-variant-shimmer.svg deleted file mode 100644 index 2a04d2ba..00000000 --- a/bes_theme/.icons/bes_theme/chart-timeline-variant-shimmer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chart-timeline-variant.svg b/bes_theme/.icons/bes_theme/chart-timeline-variant.svg deleted file mode 100644 index 2acf9e67..00000000 --- a/bes_theme/.icons/bes_theme/chart-timeline-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chart-timeline.svg b/bes_theme/.icons/bes_theme/chart-timeline.svg deleted file mode 100644 index 0294d3b8..00000000 --- a/bes_theme/.icons/bes_theme/chart-timeline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chart-tree.svg b/bes_theme/.icons/bes_theme/chart-tree.svg deleted file mode 100644 index e6876c62..00000000 --- a/bes_theme/.icons/bes_theme/chart-tree.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chat-alert-outline.svg b/bes_theme/.icons/bes_theme/chat-alert-outline.svg deleted file mode 100644 index 40970c64..00000000 --- a/bes_theme/.icons/bes_theme/chat-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chat-alert.svg b/bes_theme/.icons/bes_theme/chat-alert.svg deleted file mode 100644 index 1b594cd8..00000000 --- a/bes_theme/.icons/bes_theme/chat-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chat-minus-outline.svg b/bes_theme/.icons/bes_theme/chat-minus-outline.svg deleted file mode 100644 index 97e47e42..00000000 --- a/bes_theme/.icons/bes_theme/chat-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chat-minus.svg b/bes_theme/.icons/bes_theme/chat-minus.svg deleted file mode 100644 index f5ffffdd..00000000 --- a/bes_theme/.icons/bes_theme/chat-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chat-outline.svg b/bes_theme/.icons/bes_theme/chat-outline.svg deleted file mode 100644 index fb803bfc..00000000 --- a/bes_theme/.icons/bes_theme/chat-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chat-plus-outline.svg b/bes_theme/.icons/bes_theme/chat-plus-outline.svg deleted file mode 100644 index 8bd17539..00000000 --- a/bes_theme/.icons/bes_theme/chat-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chat-plus.svg b/bes_theme/.icons/bes_theme/chat-plus.svg deleted file mode 100644 index 909ec933..00000000 --- a/bes_theme/.icons/bes_theme/chat-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chat-processing-outline.svg b/bes_theme/.icons/bes_theme/chat-processing-outline.svg deleted file mode 100644 index 14b7cb09..00000000 --- a/bes_theme/.icons/bes_theme/chat-processing-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chat-processing.svg b/bes_theme/.icons/bes_theme/chat-processing.svg deleted file mode 100644 index 993cbcd5..00000000 --- a/bes_theme/.icons/bes_theme/chat-processing.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chat-question-outline.svg b/bes_theme/.icons/bes_theme/chat-question-outline.svg deleted file mode 100644 index fd970899..00000000 --- a/bes_theme/.icons/bes_theme/chat-question-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chat-question.svg b/bes_theme/.icons/bes_theme/chat-question.svg deleted file mode 100644 index cf15843d..00000000 --- a/bes_theme/.icons/bes_theme/chat-question.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chat-remove-outline.svg b/bes_theme/.icons/bes_theme/chat-remove-outline.svg deleted file mode 100644 index 6cd5a9fc..00000000 --- a/bes_theme/.icons/bes_theme/chat-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chat-remove.svg b/bes_theme/.icons/bes_theme/chat-remove.svg deleted file mode 100644 index e360e8c8..00000000 --- a/bes_theme/.icons/bes_theme/chat-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chat-sleep-outline.svg b/bes_theme/.icons/bes_theme/chat-sleep-outline.svg deleted file mode 100644 index aebeccf0..00000000 --- a/bes_theme/.icons/bes_theme/chat-sleep-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chat-sleep.svg b/bes_theme/.icons/bes_theme/chat-sleep.svg deleted file mode 100644 index 23cd33e1..00000000 --- a/bes_theme/.icons/bes_theme/chat-sleep.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chat.svg b/bes_theme/.icons/bes_theme/chat.svg deleted file mode 100644 index d89d9f83..00000000 --- a/bes_theme/.icons/bes_theme/chat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/check-all.svg b/bes_theme/.icons/bes_theme/check-all.svg deleted file mode 100644 index 936098b5..00000000 --- a/bes_theme/.icons/bes_theme/check-all.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/check-bold.svg b/bes_theme/.icons/bes_theme/check-bold.svg deleted file mode 100644 index 7443dd3a..00000000 --- a/bes_theme/.icons/bes_theme/check-bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/check-box-multiple-outline.svg b/bes_theme/.icons/bes_theme/check-box-multiple-outline.svg deleted file mode 100644 index faf2d6e1..00000000 --- a/bes_theme/.icons/bes_theme/check-box-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/check-box-outline.svg b/bes_theme/.icons/bes_theme/check-box-outline.svg deleted file mode 100644 index e30dca64..00000000 --- a/bes_theme/.icons/bes_theme/check-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/check-circle-outline.svg b/bes_theme/.icons/bes_theme/check-circle-outline.svg deleted file mode 100644 index 0037f3fd..00000000 --- a/bes_theme/.icons/bes_theme/check-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/check-circle.svg b/bes_theme/.icons/bes_theme/check-circle.svg deleted file mode 100644 index 42a12042..00000000 --- a/bes_theme/.icons/bes_theme/check-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/check-decagram-outline.svg b/bes_theme/.icons/bes_theme/check-decagram-outline.svg deleted file mode 100644 index f3c4f46b..00000000 --- a/bes_theme/.icons/bes_theme/check-decagram-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/check-decagram.svg b/bes_theme/.icons/bes_theme/check-decagram.svg deleted file mode 100644 index 6bae0f53..00000000 --- a/bes_theme/.icons/bes_theme/check-decagram.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/check-network-outline.svg b/bes_theme/.icons/bes_theme/check-network-outline.svg deleted file mode 100644 index d707cd4a..00000000 --- a/bes_theme/.icons/bes_theme/check-network-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/check-network.svg b/bes_theme/.icons/bes_theme/check-network.svg deleted file mode 100644 index 444ed6c5..00000000 --- a/bes_theme/.icons/bes_theme/check-network.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/check-outline.svg b/bes_theme/.icons/bes_theme/check-outline.svg deleted file mode 100644 index b338813c..00000000 --- a/bes_theme/.icons/bes_theme/check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/check-underline-circle-outline.svg b/bes_theme/.icons/bes_theme/check-underline-circle-outline.svg deleted file mode 100644 index 3d63829e..00000000 --- a/bes_theme/.icons/bes_theme/check-underline-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/check-underline-circle.svg b/bes_theme/.icons/bes_theme/check-underline-circle.svg deleted file mode 100644 index 7bc80ec4..00000000 --- a/bes_theme/.icons/bes_theme/check-underline-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/check-underline.svg b/bes_theme/.icons/bes_theme/check-underline.svg deleted file mode 100644 index 57a7ab4a..00000000 --- a/bes_theme/.icons/bes_theme/check-underline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/check.svg b/bes_theme/.icons/bes_theme/check.svg deleted file mode 100644 index ea09c556..00000000 --- a/bes_theme/.icons/bes_theme/check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/checkbook.svg b/bes_theme/.icons/bes_theme/checkbook.svg deleted file mode 100644 index f7fc169d..00000000 --- a/bes_theme/.icons/bes_theme/checkbook.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/checkbox-blank-circle-outline.svg b/bes_theme/.icons/bes_theme/checkbox-blank-circle-outline.svg deleted file mode 100644 index d16843bb..00000000 --- a/bes_theme/.icons/bes_theme/checkbox-blank-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/checkbox-blank-circle.svg b/bes_theme/.icons/bes_theme/checkbox-blank-circle.svg deleted file mode 100644 index be0c6da4..00000000 --- a/bes_theme/.icons/bes_theme/checkbox-blank-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/checkbox-blank-off-outline.svg b/bes_theme/.icons/bes_theme/checkbox-blank-off-outline.svg deleted file mode 100644 index 4ce2aa42..00000000 --- a/bes_theme/.icons/bes_theme/checkbox-blank-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/checkbox-blank-off.svg b/bes_theme/.icons/bes_theme/checkbox-blank-off.svg deleted file mode 100644 index cbd3c4db..00000000 --- a/bes_theme/.icons/bes_theme/checkbox-blank-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/checkbox-blank-outline.svg b/bes_theme/.icons/bes_theme/checkbox-blank-outline.svg deleted file mode 100644 index 8ee7a464..00000000 --- a/bes_theme/.icons/bes_theme/checkbox-blank-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/checkbox-blank.svg b/bes_theme/.icons/bes_theme/checkbox-blank.svg deleted file mode 100644 index e2cf12c3..00000000 --- a/bes_theme/.icons/bes_theme/checkbox-blank.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/checkbox-intermediate.svg b/bes_theme/.icons/bes_theme/checkbox-intermediate.svg deleted file mode 100644 index e24058ba..00000000 --- a/bes_theme/.icons/bes_theme/checkbox-intermediate.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/checkbox-marked-circle-outline.svg b/bes_theme/.icons/bes_theme/checkbox-marked-circle-outline.svg deleted file mode 100644 index 2802524b..00000000 --- a/bes_theme/.icons/bes_theme/checkbox-marked-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/checkbox-marked-circle.svg b/bes_theme/.icons/bes_theme/checkbox-marked-circle.svg deleted file mode 100644 index 1539b0f9..00000000 --- a/bes_theme/.icons/bes_theme/checkbox-marked-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/checkbox-marked-outline.svg b/bes_theme/.icons/bes_theme/checkbox-marked-outline.svg deleted file mode 100644 index a9180146..00000000 --- a/bes_theme/.icons/bes_theme/checkbox-marked-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/checkbox-marked.svg b/bes_theme/.icons/bes_theme/checkbox-marked.svg deleted file mode 100644 index f90cd4e6..00000000 --- a/bes_theme/.icons/bes_theme/checkbox-marked.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/checkbox-multiple-blank-circle-outline.svg b/bes_theme/.icons/bes_theme/checkbox-multiple-blank-circle-outline.svg deleted file mode 100644 index fb659432..00000000 --- a/bes_theme/.icons/bes_theme/checkbox-multiple-blank-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/checkbox-multiple-blank-circle.svg b/bes_theme/.icons/bes_theme/checkbox-multiple-blank-circle.svg deleted file mode 100644 index ada9f711..00000000 --- a/bes_theme/.icons/bes_theme/checkbox-multiple-blank-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/checkbox-multiple-blank-outline.svg b/bes_theme/.icons/bes_theme/checkbox-multiple-blank-outline.svg deleted file mode 100644 index d423f8b4..00000000 --- a/bes_theme/.icons/bes_theme/checkbox-multiple-blank-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/checkbox-multiple-blank.svg b/bes_theme/.icons/bes_theme/checkbox-multiple-blank.svg deleted file mode 100644 index 2bee4d46..00000000 --- a/bes_theme/.icons/bes_theme/checkbox-multiple-blank.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/checkbox-multiple-marked-circle-outline.svg b/bes_theme/.icons/bes_theme/checkbox-multiple-marked-circle-outline.svg deleted file mode 100644 index a83c532d..00000000 --- a/bes_theme/.icons/bes_theme/checkbox-multiple-marked-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/checkbox-multiple-marked-circle.svg b/bes_theme/.icons/bes_theme/checkbox-multiple-marked-circle.svg deleted file mode 100644 index ea5b1f60..00000000 --- a/bes_theme/.icons/bes_theme/checkbox-multiple-marked-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/checkbox-multiple-marked-outline.svg b/bes_theme/.icons/bes_theme/checkbox-multiple-marked-outline.svg deleted file mode 100644 index 3bb9a874..00000000 --- a/bes_theme/.icons/bes_theme/checkbox-multiple-marked-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/checkbox-multiple-marked.svg b/bes_theme/.icons/bes_theme/checkbox-multiple-marked.svg deleted file mode 100644 index 218c2a81..00000000 --- a/bes_theme/.icons/bes_theme/checkbox-multiple-marked.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/checkerboard-minus.svg b/bes_theme/.icons/bes_theme/checkerboard-minus.svg deleted file mode 100644 index 14f3fd44..00000000 --- a/bes_theme/.icons/bes_theme/checkerboard-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/checkerboard-plus.svg b/bes_theme/.icons/bes_theme/checkerboard-plus.svg deleted file mode 100644 index 0d08f2fc..00000000 --- a/bes_theme/.icons/bes_theme/checkerboard-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/checkerboard-remove.svg b/bes_theme/.icons/bes_theme/checkerboard-remove.svg deleted file mode 100644 index 7b309268..00000000 --- a/bes_theme/.icons/bes_theme/checkerboard-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/checkerboard.svg b/bes_theme/.icons/bes_theme/checkerboard.svg deleted file mode 100644 index 230da149..00000000 --- a/bes_theme/.icons/bes_theme/checkerboard.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cheese-off.svg b/bes_theme/.icons/bes_theme/cheese-off.svg deleted file mode 100644 index a986bd79..00000000 --- a/bes_theme/.icons/bes_theme/cheese-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cheese.svg b/bes_theme/.icons/bes_theme/cheese.svg deleted file mode 100644 index d99d6c2c..00000000 --- a/bes_theme/.icons/bes_theme/cheese.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chef-hat.svg b/bes_theme/.icons/bes_theme/chef-hat.svg deleted file mode 100644 index b0d4cc6f..00000000 --- a/bes_theme/.icons/bes_theme/chef-hat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chemical-weapon.svg b/bes_theme/.icons/bes_theme/chemical-weapon.svg deleted file mode 100644 index c5043aa4..00000000 --- a/bes_theme/.icons/bes_theme/chemical-weapon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chess-bishop.svg b/bes_theme/.icons/bes_theme/chess-bishop.svg deleted file mode 100644 index 5c6884ba..00000000 --- a/bes_theme/.icons/bes_theme/chess-bishop.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chess-king.svg b/bes_theme/.icons/bes_theme/chess-king.svg deleted file mode 100644 index 1b10057f..00000000 --- a/bes_theme/.icons/bes_theme/chess-king.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chess-knight.svg b/bes_theme/.icons/bes_theme/chess-knight.svg deleted file mode 100644 index 49ac1d61..00000000 --- a/bes_theme/.icons/bes_theme/chess-knight.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chess-pawn.svg b/bes_theme/.icons/bes_theme/chess-pawn.svg deleted file mode 100644 index 62fc7495..00000000 --- a/bes_theme/.icons/bes_theme/chess-pawn.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chess-queen.svg b/bes_theme/.icons/bes_theme/chess-queen.svg deleted file mode 100644 index f78c7d05..00000000 --- a/bes_theme/.icons/bes_theme/chess-queen.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chess-rook.svg b/bes_theme/.icons/bes_theme/chess-rook.svg deleted file mode 100644 index 583f9ad9..00000000 --- a/bes_theme/.icons/bes_theme/chess-rook.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chevron-double-down.svg b/bes_theme/.icons/bes_theme/chevron-double-down.svg deleted file mode 100644 index 372de0cd..00000000 --- a/bes_theme/.icons/bes_theme/chevron-double-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chevron-double-left.svg b/bes_theme/.icons/bes_theme/chevron-double-left.svg deleted file mode 100644 index a2a5714d..00000000 --- a/bes_theme/.icons/bes_theme/chevron-double-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chevron-double-right.svg b/bes_theme/.icons/bes_theme/chevron-double-right.svg deleted file mode 100644 index 5083c1f9..00000000 --- a/bes_theme/.icons/bes_theme/chevron-double-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chevron-double-up.svg b/bes_theme/.icons/bes_theme/chevron-double-up.svg deleted file mode 100644 index ac94426d..00000000 --- a/bes_theme/.icons/bes_theme/chevron-double-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chevron-down-box-outline.svg b/bes_theme/.icons/bes_theme/chevron-down-box-outline.svg deleted file mode 100644 index 418afb42..00000000 --- a/bes_theme/.icons/bes_theme/chevron-down-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chevron-down-box.svg b/bes_theme/.icons/bes_theme/chevron-down-box.svg deleted file mode 100644 index c6f48987..00000000 --- a/bes_theme/.icons/bes_theme/chevron-down-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chevron-down-circle-outline.svg b/bes_theme/.icons/bes_theme/chevron-down-circle-outline.svg deleted file mode 100644 index 16ebd5c7..00000000 --- a/bes_theme/.icons/bes_theme/chevron-down-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chevron-down-circle.svg b/bes_theme/.icons/bes_theme/chevron-down-circle.svg deleted file mode 100644 index 4f4febc1..00000000 --- a/bes_theme/.icons/bes_theme/chevron-down-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chevron-down.svg b/bes_theme/.icons/bes_theme/chevron-down.svg deleted file mode 100644 index 79cecc00..00000000 --- a/bes_theme/.icons/bes_theme/chevron-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chevron-left-box-outline.svg b/bes_theme/.icons/bes_theme/chevron-left-box-outline.svg deleted file mode 100644 index f9d81ccf..00000000 --- a/bes_theme/.icons/bes_theme/chevron-left-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chevron-left-box.svg b/bes_theme/.icons/bes_theme/chevron-left-box.svg deleted file mode 100644 index 5a7515aa..00000000 --- a/bes_theme/.icons/bes_theme/chevron-left-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chevron-left-circle-outline.svg b/bes_theme/.icons/bes_theme/chevron-left-circle-outline.svg deleted file mode 100644 index 53b17d3a..00000000 --- a/bes_theme/.icons/bes_theme/chevron-left-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chevron-left-circle.svg b/bes_theme/.icons/bes_theme/chevron-left-circle.svg deleted file mode 100644 index 43086fde..00000000 --- a/bes_theme/.icons/bes_theme/chevron-left-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chevron-left.svg b/bes_theme/.icons/bes_theme/chevron-left.svg deleted file mode 100644 index 672a40ce..00000000 --- a/bes_theme/.icons/bes_theme/chevron-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chevron-right-box-outline.svg b/bes_theme/.icons/bes_theme/chevron-right-box-outline.svg deleted file mode 100644 index 66566df9..00000000 --- a/bes_theme/.icons/bes_theme/chevron-right-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chevron-right-box.svg b/bes_theme/.icons/bes_theme/chevron-right-box.svg deleted file mode 100644 index fa85941d..00000000 --- a/bes_theme/.icons/bes_theme/chevron-right-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chevron-right-circle-outline.svg b/bes_theme/.icons/bes_theme/chevron-right-circle-outline.svg deleted file mode 100644 index a03157e0..00000000 --- a/bes_theme/.icons/bes_theme/chevron-right-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chevron-right-circle.svg b/bes_theme/.icons/bes_theme/chevron-right-circle.svg deleted file mode 100644 index ad1e1d9f..00000000 --- a/bes_theme/.icons/bes_theme/chevron-right-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chevron-right.svg b/bes_theme/.icons/bes_theme/chevron-right.svg deleted file mode 100644 index 17525a4a..00000000 --- a/bes_theme/.icons/bes_theme/chevron-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chevron-triple-down.svg b/bes_theme/.icons/bes_theme/chevron-triple-down.svg deleted file mode 100644 index 3d925d92..00000000 --- a/bes_theme/.icons/bes_theme/chevron-triple-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chevron-triple-left.svg b/bes_theme/.icons/bes_theme/chevron-triple-left.svg deleted file mode 100644 index b1c2db11..00000000 --- a/bes_theme/.icons/bes_theme/chevron-triple-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chevron-triple-right.svg b/bes_theme/.icons/bes_theme/chevron-triple-right.svg deleted file mode 100644 index be1e349c..00000000 --- a/bes_theme/.icons/bes_theme/chevron-triple-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chevron-triple-up.svg b/bes_theme/.icons/bes_theme/chevron-triple-up.svg deleted file mode 100644 index 14e12a1f..00000000 --- a/bes_theme/.icons/bes_theme/chevron-triple-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chevron-up-box-outline.svg b/bes_theme/.icons/bes_theme/chevron-up-box-outline.svg deleted file mode 100644 index a0672f2e..00000000 --- a/bes_theme/.icons/bes_theme/chevron-up-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chevron-up-box.svg b/bes_theme/.icons/bes_theme/chevron-up-box.svg deleted file mode 100644 index 27c97fb4..00000000 --- a/bes_theme/.icons/bes_theme/chevron-up-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chevron-up-circle-outline.svg b/bes_theme/.icons/bes_theme/chevron-up-circle-outline.svg deleted file mode 100644 index d5c993ee..00000000 --- a/bes_theme/.icons/bes_theme/chevron-up-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chevron-up-circle.svg b/bes_theme/.icons/bes_theme/chevron-up-circle.svg deleted file mode 100644 index f074a8e0..00000000 --- a/bes_theme/.icons/bes_theme/chevron-up-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chevron-up.svg b/bes_theme/.icons/bes_theme/chevron-up.svg deleted file mode 100644 index d5ef41d9..00000000 --- a/bes_theme/.icons/bes_theme/chevron-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chili-hot.svg b/bes_theme/.icons/bes_theme/chili-hot.svg deleted file mode 100644 index b40a4f85..00000000 --- a/bes_theme/.icons/bes_theme/chili-hot.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chili-medium.svg b/bes_theme/.icons/bes_theme/chili-medium.svg deleted file mode 100644 index 968b8b17..00000000 --- a/bes_theme/.icons/bes_theme/chili-medium.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chili-mild.svg b/bes_theme/.icons/bes_theme/chili-mild.svg deleted file mode 100644 index 4a497cb0..00000000 --- a/bes_theme/.icons/bes_theme/chili-mild.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chili-off.svg b/bes_theme/.icons/bes_theme/chili-off.svg deleted file mode 100644 index dceb6727..00000000 --- a/bes_theme/.icons/bes_theme/chili-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/chip.svg b/bes_theme/.icons/bes_theme/chip.svg deleted file mode 100644 index 38992b6d..00000000 --- a/bes_theme/.icons/bes_theme/chip.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/christianity-outline.svg b/bes_theme/.icons/bes_theme/christianity-outline.svg deleted file mode 100644 index db706b5a..00000000 --- a/bes_theme/.icons/bes_theme/christianity-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/christianity.svg b/bes_theme/.icons/bes_theme/christianity.svg deleted file mode 100644 index 537d734c..00000000 --- a/bes_theme/.icons/bes_theme/christianity.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/church.svg b/bes_theme/.icons/bes_theme/church.svg deleted file mode 100644 index 18baf62c..00000000 --- a/bes_theme/.icons/bes_theme/church.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cigar-off.svg b/bes_theme/.icons/bes_theme/cigar-off.svg deleted file mode 100644 index fc29ec05..00000000 --- a/bes_theme/.icons/bes_theme/cigar-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cigar.svg b/bes_theme/.icons/bes_theme/cigar.svg deleted file mode 100644 index 16b3aa91..00000000 --- a/bes_theme/.icons/bes_theme/cigar.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/circle-box-outline.svg b/bes_theme/.icons/bes_theme/circle-box-outline.svg deleted file mode 100644 index c98e94f7..00000000 --- a/bes_theme/.icons/bes_theme/circle-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/circle-box.svg b/bes_theme/.icons/bes_theme/circle-box.svg deleted file mode 100644 index ff6c5e29..00000000 --- a/bes_theme/.icons/bes_theme/circle-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/circle-double.svg b/bes_theme/.icons/bes_theme/circle-double.svg deleted file mode 100644 index 5a86c480..00000000 --- a/bes_theme/.icons/bes_theme/circle-double.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/circle-edit-outline.svg b/bes_theme/.icons/bes_theme/circle-edit-outline.svg deleted file mode 100644 index 793331fb..00000000 --- a/bes_theme/.icons/bes_theme/circle-edit-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/circle-expand.svg b/bes_theme/.icons/bes_theme/circle-expand.svg deleted file mode 100644 index 1820f65d..00000000 --- a/bes_theme/.icons/bes_theme/circle-expand.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/circle-half-full.svg b/bes_theme/.icons/bes_theme/circle-half-full.svg deleted file mode 100644 index 1d7c7e4d..00000000 --- a/bes_theme/.icons/bes_theme/circle-half-full.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/circle-half.svg b/bes_theme/.icons/bes_theme/circle-half.svg deleted file mode 100644 index a348c76e..00000000 --- a/bes_theme/.icons/bes_theme/circle-half.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/circle-medium.svg b/bes_theme/.icons/bes_theme/circle-medium.svg deleted file mode 100644 index 8e9ecdb3..00000000 --- a/bes_theme/.icons/bes_theme/circle-medium.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/circle-multiple-outline.svg b/bes_theme/.icons/bes_theme/circle-multiple-outline.svg deleted file mode 100644 index 41ea8ca8..00000000 --- a/bes_theme/.icons/bes_theme/circle-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/circle-multiple.svg b/bes_theme/.icons/bes_theme/circle-multiple.svg deleted file mode 100644 index 46eee34d..00000000 --- a/bes_theme/.icons/bes_theme/circle-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/circle-off-outline.svg b/bes_theme/.icons/bes_theme/circle-off-outline.svg deleted file mode 100644 index a43cffb1..00000000 --- a/bes_theme/.icons/bes_theme/circle-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/circle-outline.svg b/bes_theme/.icons/bes_theme/circle-outline.svg deleted file mode 100644 index d16843bb..00000000 --- a/bes_theme/.icons/bes_theme/circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/circle-slice-1.svg b/bes_theme/.icons/bes_theme/circle-slice-1.svg deleted file mode 100644 index 3e15129b..00000000 --- a/bes_theme/.icons/bes_theme/circle-slice-1.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/circle-slice-2.svg b/bes_theme/.icons/bes_theme/circle-slice-2.svg deleted file mode 100644 index e9d70ce6..00000000 --- a/bes_theme/.icons/bes_theme/circle-slice-2.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/circle-slice-3.svg b/bes_theme/.icons/bes_theme/circle-slice-3.svg deleted file mode 100644 index 66be5e55..00000000 --- a/bes_theme/.icons/bes_theme/circle-slice-3.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/circle-slice-4.svg b/bes_theme/.icons/bes_theme/circle-slice-4.svg deleted file mode 100644 index 95c19996..00000000 --- a/bes_theme/.icons/bes_theme/circle-slice-4.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/circle-slice-5.svg b/bes_theme/.icons/bes_theme/circle-slice-5.svg deleted file mode 100644 index c3e8d1df..00000000 --- a/bes_theme/.icons/bes_theme/circle-slice-5.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/circle-slice-6.svg b/bes_theme/.icons/bes_theme/circle-slice-6.svg deleted file mode 100644 index f2a1cabb..00000000 --- a/bes_theme/.icons/bes_theme/circle-slice-6.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/circle-slice-7.svg b/bes_theme/.icons/bes_theme/circle-slice-7.svg deleted file mode 100644 index 86e6944a..00000000 --- a/bes_theme/.icons/bes_theme/circle-slice-7.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/circle-slice-8.svg b/bes_theme/.icons/bes_theme/circle-slice-8.svg deleted file mode 100644 index abd79c92..00000000 --- a/bes_theme/.icons/bes_theme/circle-slice-8.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/circle-small.svg b/bes_theme/.icons/bes_theme/circle-small.svg deleted file mode 100644 index 1450c7ca..00000000 --- a/bes_theme/.icons/bes_theme/circle-small.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/circle.svg b/bes_theme/.icons/bes_theme/circle.svg deleted file mode 100644 index be0c6da4..00000000 --- a/bes_theme/.icons/bes_theme/circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/circular-saw.svg b/bes_theme/.icons/bes_theme/circular-saw.svg deleted file mode 100644 index 0bb2228b..00000000 --- a/bes_theme/.icons/bes_theme/circular-saw.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/city-variant-outline.svg b/bes_theme/.icons/bes_theme/city-variant-outline.svg deleted file mode 100644 index 6d53dcb8..00000000 --- a/bes_theme/.icons/bes_theme/city-variant-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/city-variant.svg b/bes_theme/.icons/bes_theme/city-variant.svg deleted file mode 100644 index 01fcb201..00000000 --- a/bes_theme/.icons/bes_theme/city-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/city.svg b/bes_theme/.icons/bes_theme/city.svg deleted file mode 100644 index cfaf1e0f..00000000 --- a/bes_theme/.icons/bes_theme/city.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-account-outline.svg b/bes_theme/.icons/bes_theme/clipboard-account-outline.svg deleted file mode 100644 index a3319052..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-account-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-account.svg b/bes_theme/.icons/bes_theme/clipboard-account.svg deleted file mode 100644 index 7c10f2a8..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-account.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-alert-outline.svg b/bes_theme/.icons/bes_theme/clipboard-alert-outline.svg deleted file mode 100644 index 31986e8c..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-alert.svg b/bes_theme/.icons/bes_theme/clipboard-alert.svg deleted file mode 100644 index 6633f143..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-arrow-down-outline.svg b/bes_theme/.icons/bes_theme/clipboard-arrow-down-outline.svg deleted file mode 100644 index c2245772..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-arrow-down-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-arrow-down.svg b/bes_theme/.icons/bes_theme/clipboard-arrow-down.svg deleted file mode 100644 index d3bd05a7..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-arrow-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-arrow-left-outline.svg b/bes_theme/.icons/bes_theme/clipboard-arrow-left-outline.svg deleted file mode 100644 index f82ac0c3..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-arrow-left-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-arrow-left.svg b/bes_theme/.icons/bes_theme/clipboard-arrow-left.svg deleted file mode 100644 index d47d157a..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-arrow-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-arrow-right-outline.svg b/bes_theme/.icons/bes_theme/clipboard-arrow-right-outline.svg deleted file mode 100644 index 532dd635..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-arrow-right-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-arrow-right.svg b/bes_theme/.icons/bes_theme/clipboard-arrow-right.svg deleted file mode 100644 index 3eb9fad3..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-arrow-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-arrow-up-outline.svg b/bes_theme/.icons/bes_theme/clipboard-arrow-up-outline.svg deleted file mode 100644 index 654241d5..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-arrow-up-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-arrow-up.svg b/bes_theme/.icons/bes_theme/clipboard-arrow-up.svg deleted file mode 100644 index a54399fc..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-arrow-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-check-multiple-outline.svg b/bes_theme/.icons/bes_theme/clipboard-check-multiple-outline.svg deleted file mode 100644 index 938c80e6..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-check-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-check-multiple.svg b/bes_theme/.icons/bes_theme/clipboard-check-multiple.svg deleted file mode 100644 index aa2c5146..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-check-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-check-outline.svg b/bes_theme/.icons/bes_theme/clipboard-check-outline.svg deleted file mode 100644 index 98b20681..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-check.svg b/bes_theme/.icons/bes_theme/clipboard-check.svg deleted file mode 100644 index 3e70aed3..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-clock-outline.svg b/bes_theme/.icons/bes_theme/clipboard-clock-outline.svg deleted file mode 100644 index 7321219a..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-clock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-clock.svg b/bes_theme/.icons/bes_theme/clipboard-clock.svg deleted file mode 100644 index 1f302914..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-clock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-edit-outline.svg b/bes_theme/.icons/bes_theme/clipboard-edit-outline.svg deleted file mode 100644 index a78dadc5..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-edit-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-edit.svg b/bes_theme/.icons/bes_theme/clipboard-edit.svg deleted file mode 100644 index 5e4055d1..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-edit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-file-outline.svg b/bes_theme/.icons/bes_theme/clipboard-file-outline.svg deleted file mode 100644 index 0309279c..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-file-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-file.svg b/bes_theme/.icons/bes_theme/clipboard-file.svg deleted file mode 100644 index ac78fc23..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-file.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-flow-outline.svg b/bes_theme/.icons/bes_theme/clipboard-flow-outline.svg deleted file mode 100644 index c1f2bf87..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-flow-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-flow.svg b/bes_theme/.icons/bes_theme/clipboard-flow.svg deleted file mode 100644 index a166aa7f..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-flow.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-list-outline.svg b/bes_theme/.icons/bes_theme/clipboard-list-outline.svg deleted file mode 100644 index f8df2c4a..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-list-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-list.svg b/bes_theme/.icons/bes_theme/clipboard-list.svg deleted file mode 100644 index e74cf334..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-list.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-minus-outline.svg b/bes_theme/.icons/bes_theme/clipboard-minus-outline.svg deleted file mode 100644 index e7b4197f..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-minus.svg b/bes_theme/.icons/bes_theme/clipboard-minus.svg deleted file mode 100644 index 55c278a9..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-multiple-outline.svg b/bes_theme/.icons/bes_theme/clipboard-multiple-outline.svg deleted file mode 100644 index 56920881..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-multiple.svg b/bes_theme/.icons/bes_theme/clipboard-multiple.svg deleted file mode 100644 index da2750e3..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-off-outline.svg b/bes_theme/.icons/bes_theme/clipboard-off-outline.svg deleted file mode 100644 index c42c2691..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-off.svg b/bes_theme/.icons/bes_theme/clipboard-off.svg deleted file mode 100644 index ddd18844..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-outline.svg b/bes_theme/.icons/bes_theme/clipboard-outline.svg deleted file mode 100644 index 0455ef89..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-play-multiple-outline.svg b/bes_theme/.icons/bes_theme/clipboard-play-multiple-outline.svg deleted file mode 100644 index 783d2521..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-play-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-play-multiple.svg b/bes_theme/.icons/bes_theme/clipboard-play-multiple.svg deleted file mode 100644 index b805d13d..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-play-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-play-outline.svg b/bes_theme/.icons/bes_theme/clipboard-play-outline.svg deleted file mode 100644 index 8a57489d..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-play-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-play.svg b/bes_theme/.icons/bes_theme/clipboard-play.svg deleted file mode 100644 index a3afdd33..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-play.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-plus-outline.svg b/bes_theme/.icons/bes_theme/clipboard-plus-outline.svg deleted file mode 100644 index bed5ff47..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-plus.svg b/bes_theme/.icons/bes_theme/clipboard-plus.svg deleted file mode 100644 index 1620b915..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-pulse-outline.svg b/bes_theme/.icons/bes_theme/clipboard-pulse-outline.svg deleted file mode 100644 index b0535859..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-pulse-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-pulse.svg b/bes_theme/.icons/bes_theme/clipboard-pulse.svg deleted file mode 100644 index 8e319467..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-pulse.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-remove-outline.svg b/bes_theme/.icons/bes_theme/clipboard-remove-outline.svg deleted file mode 100644 index dbc67a62..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-remove.svg b/bes_theme/.icons/bes_theme/clipboard-remove.svg deleted file mode 100644 index acd783ae..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-search-outline.svg b/bes_theme/.icons/bes_theme/clipboard-search-outline.svg deleted file mode 100644 index 8c71b785..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-search-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-search.svg b/bes_theme/.icons/bes_theme/clipboard-search.svg deleted file mode 100644 index 38ddb872..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-text-multiple-outline.svg b/bes_theme/.icons/bes_theme/clipboard-text-multiple-outline.svg deleted file mode 100644 index 6fa1f933..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-text-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-text-multiple.svg b/bes_theme/.icons/bes_theme/clipboard-text-multiple.svg deleted file mode 100644 index 34f1e0c0..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-text-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-text-off-outline.svg b/bes_theme/.icons/bes_theme/clipboard-text-off-outline.svg deleted file mode 100644 index d7f2355b..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-text-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-text-off.svg b/bes_theme/.icons/bes_theme/clipboard-text-off.svg deleted file mode 100644 index 960677b5..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-text-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-text-outline.svg b/bes_theme/.icons/bes_theme/clipboard-text-outline.svg deleted file mode 100644 index 521a0f86..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-text-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-text-play-outline.svg b/bes_theme/.icons/bes_theme/clipboard-text-play-outline.svg deleted file mode 100644 index c500cecc..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-text-play-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-text-play.svg b/bes_theme/.icons/bes_theme/clipboard-text-play.svg deleted file mode 100644 index 0ac51b36..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-text-play.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-text-search-outline.svg b/bes_theme/.icons/bes_theme/clipboard-text-search-outline.svg deleted file mode 100644 index 15dff9c1..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-text-search-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-text-search.svg b/bes_theme/.icons/bes_theme/clipboard-text-search.svg deleted file mode 100644 index bebc2354..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-text-search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard-text.svg b/bes_theme/.icons/bes_theme/clipboard-text.svg deleted file mode 100644 index ff17bd3c..00000000 --- a/bes_theme/.icons/bes_theme/clipboard-text.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clipboard.svg b/bes_theme/.icons/bes_theme/clipboard.svg deleted file mode 100644 index fde72698..00000000 --- a/bes_theme/.icons/bes_theme/clipboard.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clippy.svg b/bes_theme/.icons/bes_theme/clippy.svg deleted file mode 100644 index fef28dde..00000000 --- a/bes_theme/.icons/bes_theme/clippy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-alert-outline.svg b/bes_theme/.icons/bes_theme/clock-alert-outline.svg deleted file mode 100644 index ef640b71..00000000 --- a/bes_theme/.icons/bes_theme/clock-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-alert.svg b/bes_theme/.icons/bes_theme/clock-alert.svg deleted file mode 100644 index a54a3648..00000000 --- a/bes_theme/.icons/bes_theme/clock-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-check-outline.svg b/bes_theme/.icons/bes_theme/clock-check-outline.svg deleted file mode 100644 index 93aeece1..00000000 --- a/bes_theme/.icons/bes_theme/clock-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-check.svg b/bes_theme/.icons/bes_theme/clock-check.svg deleted file mode 100644 index 380d1230..00000000 --- a/bes_theme/.icons/bes_theme/clock-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-digital.svg b/bes_theme/.icons/bes_theme/clock-digital.svg deleted file mode 100644 index eb5941be..00000000 --- a/bes_theme/.icons/bes_theme/clock-digital.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-end.svg b/bes_theme/.icons/bes_theme/clock-end.svg deleted file mode 100644 index 6ca90101..00000000 --- a/bes_theme/.icons/bes_theme/clock-end.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-fast.svg b/bes_theme/.icons/bes_theme/clock-fast.svg deleted file mode 100644 index 2b7af7aa..00000000 --- a/bes_theme/.icons/bes_theme/clock-fast.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-in.svg b/bes_theme/.icons/bes_theme/clock-in.svg deleted file mode 100644 index 057a70f3..00000000 --- a/bes_theme/.icons/bes_theme/clock-in.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-out.svg b/bes_theme/.icons/bes_theme/clock-out.svg deleted file mode 100644 index 7a800751..00000000 --- a/bes_theme/.icons/bes_theme/clock-out.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-outline.svg b/bes_theme/.icons/bes_theme/clock-outline.svg deleted file mode 100644 index 05266d6c..00000000 --- a/bes_theme/.icons/bes_theme/clock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-start.svg b/bes_theme/.icons/bes_theme/clock-start.svg deleted file mode 100644 index 422d84f5..00000000 --- a/bes_theme/.icons/bes_theme/clock-start.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-time-eight-outline.svg b/bes_theme/.icons/bes_theme/clock-time-eight-outline.svg deleted file mode 100644 index bc3de0ee..00000000 --- a/bes_theme/.icons/bes_theme/clock-time-eight-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-time-eight.svg b/bes_theme/.icons/bes_theme/clock-time-eight.svg deleted file mode 100644 index c40249af..00000000 --- a/bes_theme/.icons/bes_theme/clock-time-eight.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-time-eleven-outline.svg b/bes_theme/.icons/bes_theme/clock-time-eleven-outline.svg deleted file mode 100644 index ad4fc9af..00000000 --- a/bes_theme/.icons/bes_theme/clock-time-eleven-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-time-eleven.svg b/bes_theme/.icons/bes_theme/clock-time-eleven.svg deleted file mode 100644 index f5e4a062..00000000 --- a/bes_theme/.icons/bes_theme/clock-time-eleven.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-time-five-outline.svg b/bes_theme/.icons/bes_theme/clock-time-five-outline.svg deleted file mode 100644 index c20d438d..00000000 --- a/bes_theme/.icons/bes_theme/clock-time-five-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-time-five.svg b/bes_theme/.icons/bes_theme/clock-time-five.svg deleted file mode 100644 index c7e7412c..00000000 --- a/bes_theme/.icons/bes_theme/clock-time-five.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-time-four-outline.svg b/bes_theme/.icons/bes_theme/clock-time-four-outline.svg deleted file mode 100644 index a9f09f47..00000000 --- a/bes_theme/.icons/bes_theme/clock-time-four-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-time-four.svg b/bes_theme/.icons/bes_theme/clock-time-four.svg deleted file mode 100644 index 092ecff7..00000000 --- a/bes_theme/.icons/bes_theme/clock-time-four.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-time-nine-outline.svg b/bes_theme/.icons/bes_theme/clock-time-nine-outline.svg deleted file mode 100644 index 9612eb3c..00000000 --- a/bes_theme/.icons/bes_theme/clock-time-nine-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-time-nine.svg b/bes_theme/.icons/bes_theme/clock-time-nine.svg deleted file mode 100644 index 517d2b06..00000000 --- a/bes_theme/.icons/bes_theme/clock-time-nine.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-time-one-outline.svg b/bes_theme/.icons/bes_theme/clock-time-one-outline.svg deleted file mode 100644 index 8b2ebe09..00000000 --- a/bes_theme/.icons/bes_theme/clock-time-one-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-time-one.svg b/bes_theme/.icons/bes_theme/clock-time-one.svg deleted file mode 100644 index 0b7e3695..00000000 --- a/bes_theme/.icons/bes_theme/clock-time-one.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-time-seven-outline.svg b/bes_theme/.icons/bes_theme/clock-time-seven-outline.svg deleted file mode 100644 index f15b1e9a..00000000 --- a/bes_theme/.icons/bes_theme/clock-time-seven-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-time-seven.svg b/bes_theme/.icons/bes_theme/clock-time-seven.svg deleted file mode 100644 index a5cc3f3b..00000000 --- a/bes_theme/.icons/bes_theme/clock-time-seven.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-time-six-outline.svg b/bes_theme/.icons/bes_theme/clock-time-six-outline.svg deleted file mode 100644 index 0242ff50..00000000 --- a/bes_theme/.icons/bes_theme/clock-time-six-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-time-six.svg b/bes_theme/.icons/bes_theme/clock-time-six.svg deleted file mode 100644 index 09424bb2..00000000 --- a/bes_theme/.icons/bes_theme/clock-time-six.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-time-ten-outline.svg b/bes_theme/.icons/bes_theme/clock-time-ten-outline.svg deleted file mode 100644 index 09353889..00000000 --- a/bes_theme/.icons/bes_theme/clock-time-ten-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-time-ten.svg b/bes_theme/.icons/bes_theme/clock-time-ten.svg deleted file mode 100644 index 0c355c1d..00000000 --- a/bes_theme/.icons/bes_theme/clock-time-ten.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-time-three-outline.svg b/bes_theme/.icons/bes_theme/clock-time-three-outline.svg deleted file mode 100644 index fb499549..00000000 --- a/bes_theme/.icons/bes_theme/clock-time-three-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-time-three.svg b/bes_theme/.icons/bes_theme/clock-time-three.svg deleted file mode 100644 index b2c016cf..00000000 --- a/bes_theme/.icons/bes_theme/clock-time-three.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-time-twelve-outline.svg b/bes_theme/.icons/bes_theme/clock-time-twelve-outline.svg deleted file mode 100644 index 0589e2c8..00000000 --- a/bes_theme/.icons/bes_theme/clock-time-twelve-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-time-twelve.svg b/bes_theme/.icons/bes_theme/clock-time-twelve.svg deleted file mode 100644 index 04ca7c19..00000000 --- a/bes_theme/.icons/bes_theme/clock-time-twelve.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-time-two-outline.svg b/bes_theme/.icons/bes_theme/clock-time-two-outline.svg deleted file mode 100644 index 9e2c069d..00000000 --- a/bes_theme/.icons/bes_theme/clock-time-two-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock-time-two.svg b/bes_theme/.icons/bes_theme/clock-time-two.svg deleted file mode 100644 index e2bcec6c..00000000 --- a/bes_theme/.icons/bes_theme/clock-time-two.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clock.svg b/bes_theme/.icons/bes_theme/clock.svg deleted file mode 100644 index e957286d..00000000 --- a/bes_theme/.icons/bes_theme/clock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/close-box-multiple-outline.svg b/bes_theme/.icons/bes_theme/close-box-multiple-outline.svg deleted file mode 100644 index cd8fd152..00000000 --- a/bes_theme/.icons/bes_theme/close-box-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/close-box-multiple.svg b/bes_theme/.icons/bes_theme/close-box-multiple.svg deleted file mode 100644 index 65f43296..00000000 --- a/bes_theme/.icons/bes_theme/close-box-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/close-box-outline.svg b/bes_theme/.icons/bes_theme/close-box-outline.svg deleted file mode 100644 index 547fa1cb..00000000 --- a/bes_theme/.icons/bes_theme/close-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/close-box.svg b/bes_theme/.icons/bes_theme/close-box.svg deleted file mode 100644 index 68577cd8..00000000 --- a/bes_theme/.icons/bes_theme/close-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/close-circle-multiple-outline.svg b/bes_theme/.icons/bes_theme/close-circle-multiple-outline.svg deleted file mode 100644 index dc6acd2d..00000000 --- a/bes_theme/.icons/bes_theme/close-circle-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/close-circle-multiple.svg b/bes_theme/.icons/bes_theme/close-circle-multiple.svg deleted file mode 100644 index 71cc0b85..00000000 --- a/bes_theme/.icons/bes_theme/close-circle-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/close-circle-outline.svg b/bes_theme/.icons/bes_theme/close-circle-outline.svg deleted file mode 100644 index 05d6f711..00000000 --- a/bes_theme/.icons/bes_theme/close-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/close-circle.svg b/bes_theme/.icons/bes_theme/close-circle.svg deleted file mode 100644 index 7a6746ca..00000000 --- a/bes_theme/.icons/bes_theme/close-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/close-network-outline.svg b/bes_theme/.icons/bes_theme/close-network-outline.svg deleted file mode 100644 index 9f88ce4f..00000000 --- a/bes_theme/.icons/bes_theme/close-network-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/close-network.svg b/bes_theme/.icons/bes_theme/close-network.svg deleted file mode 100644 index b60822a8..00000000 --- a/bes_theme/.icons/bes_theme/close-network.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/close-octagon-outline.svg b/bes_theme/.icons/bes_theme/close-octagon-outline.svg deleted file mode 100644 index d8ac72fd..00000000 --- a/bes_theme/.icons/bes_theme/close-octagon-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/close-octagon.svg b/bes_theme/.icons/bes_theme/close-octagon.svg deleted file mode 100644 index 5646e3da..00000000 --- a/bes_theme/.icons/bes_theme/close-octagon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/close-outline.svg b/bes_theme/.icons/bes_theme/close-outline.svg deleted file mode 100644 index 877c6c0a..00000000 --- a/bes_theme/.icons/bes_theme/close-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/close-thick.svg b/bes_theme/.icons/bes_theme/close-thick.svg deleted file mode 100644 index 5eb8b0ac..00000000 --- a/bes_theme/.icons/bes_theme/close-thick.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/close.svg b/bes_theme/.icons/bes_theme/close.svg deleted file mode 100644 index 53d7b96a..00000000 --- a/bes_theme/.icons/bes_theme/close.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/closed-caption-outline.svg b/bes_theme/.icons/bes_theme/closed-caption-outline.svg deleted file mode 100644 index b85044d8..00000000 --- a/bes_theme/.icons/bes_theme/closed-caption-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/closed-caption.svg b/bes_theme/.icons/bes_theme/closed-caption.svg deleted file mode 100644 index b72f3a4d..00000000 --- a/bes_theme/.icons/bes_theme/closed-caption.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cloud-alert.svg b/bes_theme/.icons/bes_theme/cloud-alert.svg deleted file mode 100644 index 85b62562..00000000 --- a/bes_theme/.icons/bes_theme/cloud-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cloud-braces.svg b/bes_theme/.icons/bes_theme/cloud-braces.svg deleted file mode 100644 index 328479c6..00000000 --- a/bes_theme/.icons/bes_theme/cloud-braces.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cloud-check-outline.svg b/bes_theme/.icons/bes_theme/cloud-check-outline.svg deleted file mode 100644 index c4927271..00000000 --- a/bes_theme/.icons/bes_theme/cloud-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cloud-check.svg b/bes_theme/.icons/bes_theme/cloud-check.svg deleted file mode 100644 index 724f67c9..00000000 --- a/bes_theme/.icons/bes_theme/cloud-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cloud-circle.svg b/bes_theme/.icons/bes_theme/cloud-circle.svg deleted file mode 100644 index 805ba3ec..00000000 --- a/bes_theme/.icons/bes_theme/cloud-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cloud-download-outline.svg b/bes_theme/.icons/bes_theme/cloud-download-outline.svg deleted file mode 100644 index d5bdc5e0..00000000 --- a/bes_theme/.icons/bes_theme/cloud-download-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cloud-download.svg b/bes_theme/.icons/bes_theme/cloud-download.svg deleted file mode 100644 index 4e9b5c72..00000000 --- a/bes_theme/.icons/bes_theme/cloud-download.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cloud-lock-outline.svg b/bes_theme/.icons/bes_theme/cloud-lock-outline.svg deleted file mode 100644 index 1497f938..00000000 --- a/bes_theme/.icons/bes_theme/cloud-lock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cloud-lock.svg b/bes_theme/.icons/bes_theme/cloud-lock.svg deleted file mode 100644 index 6aed9f72..00000000 --- a/bes_theme/.icons/bes_theme/cloud-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cloud-off-outline.svg b/bes_theme/.icons/bes_theme/cloud-off-outline.svg deleted file mode 100644 index 908e2cd2..00000000 --- a/bes_theme/.icons/bes_theme/cloud-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cloud-outline.svg b/bes_theme/.icons/bes_theme/cloud-outline.svg deleted file mode 100644 index 3be3fd14..00000000 --- a/bes_theme/.icons/bes_theme/cloud-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cloud-print-outline.svg b/bes_theme/.icons/bes_theme/cloud-print-outline.svg deleted file mode 100644 index 8ca82c93..00000000 --- a/bes_theme/.icons/bes_theme/cloud-print-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cloud-print.svg b/bes_theme/.icons/bes_theme/cloud-print.svg deleted file mode 100644 index 3178ebd5..00000000 --- a/bes_theme/.icons/bes_theme/cloud-print.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cloud-question.svg b/bes_theme/.icons/bes_theme/cloud-question.svg deleted file mode 100644 index 07af4e6c..00000000 --- a/bes_theme/.icons/bes_theme/cloud-question.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cloud-refresh.svg b/bes_theme/.icons/bes_theme/cloud-refresh.svg deleted file mode 100644 index 1107d3fd..00000000 --- a/bes_theme/.icons/bes_theme/cloud-refresh.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cloud-search-outline.svg b/bes_theme/.icons/bes_theme/cloud-search-outline.svg deleted file mode 100644 index 997ec54d..00000000 --- a/bes_theme/.icons/bes_theme/cloud-search-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cloud-search.svg b/bes_theme/.icons/bes_theme/cloud-search.svg deleted file mode 100644 index fd57d147..00000000 --- a/bes_theme/.icons/bes_theme/cloud-search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cloud-sync-outline.svg b/bes_theme/.icons/bes_theme/cloud-sync-outline.svg deleted file mode 100644 index c698eef0..00000000 --- a/bes_theme/.icons/bes_theme/cloud-sync-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cloud-sync.svg b/bes_theme/.icons/bes_theme/cloud-sync.svg deleted file mode 100644 index 27eb74a5..00000000 --- a/bes_theme/.icons/bes_theme/cloud-sync.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cloud-tags.svg b/bes_theme/.icons/bes_theme/cloud-tags.svg deleted file mode 100644 index 2a3561c0..00000000 --- a/bes_theme/.icons/bes_theme/cloud-tags.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cloud-upload-outline.svg b/bes_theme/.icons/bes_theme/cloud-upload-outline.svg deleted file mode 100644 index ed8e25bf..00000000 --- a/bes_theme/.icons/bes_theme/cloud-upload-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cloud-upload.svg b/bes_theme/.icons/bes_theme/cloud-upload.svg deleted file mode 100644 index 5f5a2d6a..00000000 --- a/bes_theme/.icons/bes_theme/cloud-upload.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cloud.svg b/bes_theme/.icons/bes_theme/cloud.svg deleted file mode 100644 index 83709a0f..00000000 --- a/bes_theme/.icons/bes_theme/cloud.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/clover.svg b/bes_theme/.icons/bes_theme/clover.svg deleted file mode 100644 index f1a696e2..00000000 --- a/bes_theme/.icons/bes_theme/clover.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/coach-lamp.svg b/bes_theme/.icons/bes_theme/coach-lamp.svg deleted file mode 100644 index c940c883..00000000 --- a/bes_theme/.icons/bes_theme/coach-lamp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/coat-rack.svg b/bes_theme/.icons/bes_theme/coat-rack.svg deleted file mode 100644 index f09d2d7c..00000000 --- a/bes_theme/.icons/bes_theme/coat-rack.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/code-array.svg b/bes_theme/.icons/bes_theme/code-array.svg deleted file mode 100644 index 81710528..00000000 --- a/bes_theme/.icons/bes_theme/code-array.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/code-braces-box.svg b/bes_theme/.icons/bes_theme/code-braces-box.svg deleted file mode 100644 index 7c9fbee8..00000000 --- a/bes_theme/.icons/bes_theme/code-braces-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/code-braces.svg b/bes_theme/.icons/bes_theme/code-braces.svg deleted file mode 100644 index d8de3606..00000000 --- a/bes_theme/.icons/bes_theme/code-braces.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/code-brackets.svg b/bes_theme/.icons/bes_theme/code-brackets.svg deleted file mode 100644 index 58659528..00000000 --- a/bes_theme/.icons/bes_theme/code-brackets.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/code-equal.svg b/bes_theme/.icons/bes_theme/code-equal.svg deleted file mode 100644 index 6b079030..00000000 --- a/bes_theme/.icons/bes_theme/code-equal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/code-greater-than-or-equal.svg b/bes_theme/.icons/bes_theme/code-greater-than-or-equal.svg deleted file mode 100644 index 6985ea2c..00000000 --- a/bes_theme/.icons/bes_theme/code-greater-than-or-equal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/code-greater-than.svg b/bes_theme/.icons/bes_theme/code-greater-than.svg deleted file mode 100644 index 61c0eefa..00000000 --- a/bes_theme/.icons/bes_theme/code-greater-than.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/code-json.svg b/bes_theme/.icons/bes_theme/code-json.svg deleted file mode 100644 index 223d48cf..00000000 --- a/bes_theme/.icons/bes_theme/code-json.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/code-less-than-or-equal.svg b/bes_theme/.icons/bes_theme/code-less-than-or-equal.svg deleted file mode 100644 index dc0e1b53..00000000 --- a/bes_theme/.icons/bes_theme/code-less-than-or-equal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/code-less-than.svg b/bes_theme/.icons/bes_theme/code-less-than.svg deleted file mode 100644 index 23a9cec8..00000000 --- a/bes_theme/.icons/bes_theme/code-less-than.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/code-not-equal-variant.svg b/bes_theme/.icons/bes_theme/code-not-equal-variant.svg deleted file mode 100644 index 7cfe8b35..00000000 --- a/bes_theme/.icons/bes_theme/code-not-equal-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/code-not-equal.svg b/bes_theme/.icons/bes_theme/code-not-equal.svg deleted file mode 100644 index c484b034..00000000 --- a/bes_theme/.icons/bes_theme/code-not-equal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/code-parentheses-box.svg b/bes_theme/.icons/bes_theme/code-parentheses-box.svg deleted file mode 100644 index cac0b24c..00000000 --- a/bes_theme/.icons/bes_theme/code-parentheses-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/code-parentheses.svg b/bes_theme/.icons/bes_theme/code-parentheses.svg deleted file mode 100644 index 63f118fa..00000000 --- a/bes_theme/.icons/bes_theme/code-parentheses.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/code-string.svg b/bes_theme/.icons/bes_theme/code-string.svg deleted file mode 100644 index 1b6d9316..00000000 --- a/bes_theme/.icons/bes_theme/code-string.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/code-tags-check.svg b/bes_theme/.icons/bes_theme/code-tags-check.svg deleted file mode 100644 index 6cbb3424..00000000 --- a/bes_theme/.icons/bes_theme/code-tags-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/code-tags.svg b/bes_theme/.icons/bes_theme/code-tags.svg deleted file mode 100644 index 01335085..00000000 --- a/bes_theme/.icons/bes_theme/code-tags.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/codepen.svg b/bes_theme/.icons/bes_theme/codepen.svg deleted file mode 100644 index 7a408425..00000000 --- a/bes_theme/.icons/bes_theme/codepen.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/coffee-maker.svg b/bes_theme/.icons/bes_theme/coffee-maker.svg deleted file mode 100644 index 42806aef..00000000 --- a/bes_theme/.icons/bes_theme/coffee-maker.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/coffee-off-outline.svg b/bes_theme/.icons/bes_theme/coffee-off-outline.svg deleted file mode 100644 index b7450db3..00000000 --- a/bes_theme/.icons/bes_theme/coffee-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/coffee-off.svg b/bes_theme/.icons/bes_theme/coffee-off.svg deleted file mode 100644 index 83877c63..00000000 --- a/bes_theme/.icons/bes_theme/coffee-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/coffee-outline.svg b/bes_theme/.icons/bes_theme/coffee-outline.svg deleted file mode 100644 index 0f614069..00000000 --- a/bes_theme/.icons/bes_theme/coffee-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/coffee-to-go-outline.svg b/bes_theme/.icons/bes_theme/coffee-to-go-outline.svg deleted file mode 100644 index e5f98dcb..00000000 --- a/bes_theme/.icons/bes_theme/coffee-to-go-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/coffee-to-go.svg b/bes_theme/.icons/bes_theme/coffee-to-go.svg deleted file mode 100644 index 8c70b3ec..00000000 --- a/bes_theme/.icons/bes_theme/coffee-to-go.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/coffee.svg b/bes_theme/.icons/bes_theme/coffee.svg deleted file mode 100644 index 1f0e0194..00000000 --- a/bes_theme/.icons/bes_theme/coffee.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/coffin.svg b/bes_theme/.icons/bes_theme/coffin.svg deleted file mode 100644 index eb1aa7cd..00000000 --- a/bes_theme/.icons/bes_theme/coffin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cog-box.svg b/bes_theme/.icons/bes_theme/cog-box.svg deleted file mode 100644 index 8164e2d3..00000000 --- a/bes_theme/.icons/bes_theme/cog-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cog-clockwise.svg b/bes_theme/.icons/bes_theme/cog-clockwise.svg deleted file mode 100644 index a1d8736f..00000000 --- a/bes_theme/.icons/bes_theme/cog-clockwise.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cog-counterclockwise.svg b/bes_theme/.icons/bes_theme/cog-counterclockwise.svg deleted file mode 100644 index 48e30d8e..00000000 --- a/bes_theme/.icons/bes_theme/cog-counterclockwise.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cog-off-outline.svg b/bes_theme/.icons/bes_theme/cog-off-outline.svg deleted file mode 100644 index 092b0890..00000000 --- a/bes_theme/.icons/bes_theme/cog-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cog-off.svg b/bes_theme/.icons/bes_theme/cog-off.svg deleted file mode 100644 index 0afb062d..00000000 --- a/bes_theme/.icons/bes_theme/cog-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cog-outline.svg b/bes_theme/.icons/bes_theme/cog-outline.svg deleted file mode 100644 index 6503de74..00000000 --- a/bes_theme/.icons/bes_theme/cog-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cog-refresh-outline.svg b/bes_theme/.icons/bes_theme/cog-refresh-outline.svg deleted file mode 100644 index a5120885..00000000 --- a/bes_theme/.icons/bes_theme/cog-refresh-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cog-refresh.svg b/bes_theme/.icons/bes_theme/cog-refresh.svg deleted file mode 100644 index b2c91fd2..00000000 --- a/bes_theme/.icons/bes_theme/cog-refresh.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cog-sync-outline.svg b/bes_theme/.icons/bes_theme/cog-sync-outline.svg deleted file mode 100644 index ae1e13c4..00000000 --- a/bes_theme/.icons/bes_theme/cog-sync-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cog-sync.svg b/bes_theme/.icons/bes_theme/cog-sync.svg deleted file mode 100644 index 06522842..00000000 --- a/bes_theme/.icons/bes_theme/cog-sync.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cog-transfer-outline.svg b/bes_theme/.icons/bes_theme/cog-transfer-outline.svg deleted file mode 100644 index dbccba85..00000000 --- a/bes_theme/.icons/bes_theme/cog-transfer-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cog-transfer.svg b/bes_theme/.icons/bes_theme/cog-transfer.svg deleted file mode 100644 index 0dfbd5e1..00000000 --- a/bes_theme/.icons/bes_theme/cog-transfer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cog.svg b/bes_theme/.icons/bes_theme/cog.svg deleted file mode 100644 index d1c71337..00000000 --- a/bes_theme/.icons/bes_theme/cog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cogs.svg b/bes_theme/.icons/bes_theme/cogs.svg deleted file mode 100644 index 10315b84..00000000 --- a/bes_theme/.icons/bes_theme/cogs.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/collage.svg b/bes_theme/.icons/bes_theme/collage.svg deleted file mode 100644 index bab0f2f9..00000000 --- a/bes_theme/.icons/bes_theme/collage.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/collapse-all-outline.svg b/bes_theme/.icons/bes_theme/collapse-all-outline.svg deleted file mode 100644 index fe219869..00000000 --- a/bes_theme/.icons/bes_theme/collapse-all-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/collapse-all.svg b/bes_theme/.icons/bes_theme/collapse-all.svg deleted file mode 100644 index 13d54244..00000000 --- a/bes_theme/.icons/bes_theme/collapse-all.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/color-helper.svg b/bes_theme/.icons/bes_theme/color-helper.svg deleted file mode 100644 index 66028b36..00000000 --- a/bes_theme/.icons/bes_theme/color-helper.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comma-box-outline.svg b/bes_theme/.icons/bes_theme/comma-box-outline.svg deleted file mode 100644 index 74c7026e..00000000 --- a/bes_theme/.icons/bes_theme/comma-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comma-box.svg b/bes_theme/.icons/bes_theme/comma-box.svg deleted file mode 100644 index 18c269a3..00000000 --- a/bes_theme/.icons/bes_theme/comma-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comma-circle-outline.svg b/bes_theme/.icons/bes_theme/comma-circle-outline.svg deleted file mode 100644 index ce841413..00000000 --- a/bes_theme/.icons/bes_theme/comma-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comma-circle.svg b/bes_theme/.icons/bes_theme/comma-circle.svg deleted file mode 100644 index ea6abcd4..00000000 --- a/bes_theme/.icons/bes_theme/comma-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comma.svg b/bes_theme/.icons/bes_theme/comma.svg deleted file mode 100644 index 4c79c345..00000000 --- a/bes_theme/.icons/bes_theme/comma.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-account-outline.svg b/bes_theme/.icons/bes_theme/comment-account-outline.svg deleted file mode 100644 index a4ae7842..00000000 --- a/bes_theme/.icons/bes_theme/comment-account-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-account.svg b/bes_theme/.icons/bes_theme/comment-account.svg deleted file mode 100644 index b403bd22..00000000 --- a/bes_theme/.icons/bes_theme/comment-account.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-alert-outline.svg b/bes_theme/.icons/bes_theme/comment-alert-outline.svg deleted file mode 100644 index 455f181d..00000000 --- a/bes_theme/.icons/bes_theme/comment-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-alert.svg b/bes_theme/.icons/bes_theme/comment-alert.svg deleted file mode 100644 index 28c8757a..00000000 --- a/bes_theme/.icons/bes_theme/comment-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-arrow-left-outline.svg b/bes_theme/.icons/bes_theme/comment-arrow-left-outline.svg deleted file mode 100644 index a888547e..00000000 --- a/bes_theme/.icons/bes_theme/comment-arrow-left-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-arrow-left.svg b/bes_theme/.icons/bes_theme/comment-arrow-left.svg deleted file mode 100644 index ff7c340d..00000000 --- a/bes_theme/.icons/bes_theme/comment-arrow-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-arrow-right-outline.svg b/bes_theme/.icons/bes_theme/comment-arrow-right-outline.svg deleted file mode 100644 index e1aedfd4..00000000 --- a/bes_theme/.icons/bes_theme/comment-arrow-right-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-arrow-right.svg b/bes_theme/.icons/bes_theme/comment-arrow-right.svg deleted file mode 100644 index 8a0216e9..00000000 --- a/bes_theme/.icons/bes_theme/comment-arrow-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-bookmark-outline.svg b/bes_theme/.icons/bes_theme/comment-bookmark-outline.svg deleted file mode 100644 index bbb58644..00000000 --- a/bes_theme/.icons/bes_theme/comment-bookmark-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-bookmark.svg b/bes_theme/.icons/bes_theme/comment-bookmark.svg deleted file mode 100644 index f9fd646c..00000000 --- a/bes_theme/.icons/bes_theme/comment-bookmark.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-check-outline.svg b/bes_theme/.icons/bes_theme/comment-check-outline.svg deleted file mode 100644 index ec05ecd1..00000000 --- a/bes_theme/.icons/bes_theme/comment-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-check.svg b/bes_theme/.icons/bes_theme/comment-check.svg deleted file mode 100644 index 9bfbe6dd..00000000 --- a/bes_theme/.icons/bes_theme/comment-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-edit-outline.svg b/bes_theme/.icons/bes_theme/comment-edit-outline.svg deleted file mode 100644 index 878a22a8..00000000 --- a/bes_theme/.icons/bes_theme/comment-edit-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-edit.svg b/bes_theme/.icons/bes_theme/comment-edit.svg deleted file mode 100644 index d1b9885f..00000000 --- a/bes_theme/.icons/bes_theme/comment-edit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-eye-outline.svg b/bes_theme/.icons/bes_theme/comment-eye-outline.svg deleted file mode 100644 index 2e1baac0..00000000 --- a/bes_theme/.icons/bes_theme/comment-eye-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-eye.svg b/bes_theme/.icons/bes_theme/comment-eye.svg deleted file mode 100644 index 89dd2683..00000000 --- a/bes_theme/.icons/bes_theme/comment-eye.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-flash-outline.svg b/bes_theme/.icons/bes_theme/comment-flash-outline.svg deleted file mode 100644 index 5e3c4659..00000000 --- a/bes_theme/.icons/bes_theme/comment-flash-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-flash.svg b/bes_theme/.icons/bes_theme/comment-flash.svg deleted file mode 100644 index 1d5c4579..00000000 --- a/bes_theme/.icons/bes_theme/comment-flash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-minus-outline.svg b/bes_theme/.icons/bes_theme/comment-minus-outline.svg deleted file mode 100644 index 831127a6..00000000 --- a/bes_theme/.icons/bes_theme/comment-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-minus.svg b/bes_theme/.icons/bes_theme/comment-minus.svg deleted file mode 100644 index cd4091db..00000000 --- a/bes_theme/.icons/bes_theme/comment-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-multiple-outline.svg b/bes_theme/.icons/bes_theme/comment-multiple-outline.svg deleted file mode 100644 index b62a948c..00000000 --- a/bes_theme/.icons/bes_theme/comment-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-multiple.svg b/bes_theme/.icons/bes_theme/comment-multiple.svg deleted file mode 100644 index 4c856ceb..00000000 --- a/bes_theme/.icons/bes_theme/comment-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-off-outline.svg b/bes_theme/.icons/bes_theme/comment-off-outline.svg deleted file mode 100644 index 68ce56b8..00000000 --- a/bes_theme/.icons/bes_theme/comment-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-off.svg b/bes_theme/.icons/bes_theme/comment-off.svg deleted file mode 100644 index 9fd09e0d..00000000 --- a/bes_theme/.icons/bes_theme/comment-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-outline.svg b/bes_theme/.icons/bes_theme/comment-outline.svg deleted file mode 100644 index cb3d0337..00000000 --- a/bes_theme/.icons/bes_theme/comment-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-plus-outline.svg b/bes_theme/.icons/bes_theme/comment-plus-outline.svg deleted file mode 100644 index b31864d9..00000000 --- a/bes_theme/.icons/bes_theme/comment-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-plus.svg b/bes_theme/.icons/bes_theme/comment-plus.svg deleted file mode 100644 index fe43ea17..00000000 --- a/bes_theme/.icons/bes_theme/comment-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-processing-outline.svg b/bes_theme/.icons/bes_theme/comment-processing-outline.svg deleted file mode 100644 index 86c953fa..00000000 --- a/bes_theme/.icons/bes_theme/comment-processing-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-processing.svg b/bes_theme/.icons/bes_theme/comment-processing.svg deleted file mode 100644 index 28a69a0f..00000000 --- a/bes_theme/.icons/bes_theme/comment-processing.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-question-outline.svg b/bes_theme/.icons/bes_theme/comment-question-outline.svg deleted file mode 100644 index 7761064d..00000000 --- a/bes_theme/.icons/bes_theme/comment-question-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-question.svg b/bes_theme/.icons/bes_theme/comment-question.svg deleted file mode 100644 index 488152da..00000000 --- a/bes_theme/.icons/bes_theme/comment-question.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-quote-outline.svg b/bes_theme/.icons/bes_theme/comment-quote-outline.svg deleted file mode 100644 index 18bf27cc..00000000 --- a/bes_theme/.icons/bes_theme/comment-quote-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-quote.svg b/bes_theme/.icons/bes_theme/comment-quote.svg deleted file mode 100644 index 212fc1d9..00000000 --- a/bes_theme/.icons/bes_theme/comment-quote.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-remove-outline.svg b/bes_theme/.icons/bes_theme/comment-remove-outline.svg deleted file mode 100644 index 42ad8c92..00000000 --- a/bes_theme/.icons/bes_theme/comment-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-remove.svg b/bes_theme/.icons/bes_theme/comment-remove.svg deleted file mode 100644 index f59eaa34..00000000 --- a/bes_theme/.icons/bes_theme/comment-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-search-outline.svg b/bes_theme/.icons/bes_theme/comment-search-outline.svg deleted file mode 100644 index 141b9bcf..00000000 --- a/bes_theme/.icons/bes_theme/comment-search-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-search.svg b/bes_theme/.icons/bes_theme/comment-search.svg deleted file mode 100644 index 181551cf..00000000 --- a/bes_theme/.icons/bes_theme/comment-search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-text-multiple-outline.svg b/bes_theme/.icons/bes_theme/comment-text-multiple-outline.svg deleted file mode 100644 index c8ff793d..00000000 --- a/bes_theme/.icons/bes_theme/comment-text-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-text-multiple.svg b/bes_theme/.icons/bes_theme/comment-text-multiple.svg deleted file mode 100644 index b87604e8..00000000 --- a/bes_theme/.icons/bes_theme/comment-text-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-text-outline.svg b/bes_theme/.icons/bes_theme/comment-text-outline.svg deleted file mode 100644 index 224f5354..00000000 --- a/bes_theme/.icons/bes_theme/comment-text-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment-text.svg b/bes_theme/.icons/bes_theme/comment-text.svg deleted file mode 100644 index 672e2a8d..00000000 --- a/bes_theme/.icons/bes_theme/comment-text.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/comment.svg b/bes_theme/.icons/bes_theme/comment.svg deleted file mode 100644 index a0da068f..00000000 --- a/bes_theme/.icons/bes_theme/comment.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/compare-horizontal.svg b/bes_theme/.icons/bes_theme/compare-horizontal.svg deleted file mode 100644 index 4faba5a4..00000000 --- a/bes_theme/.icons/bes_theme/compare-horizontal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/compare-vertical.svg b/bes_theme/.icons/bes_theme/compare-vertical.svg deleted file mode 100644 index e0c02a97..00000000 --- a/bes_theme/.icons/bes_theme/compare-vertical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/compare.svg b/bes_theme/.icons/bes_theme/compare.svg deleted file mode 100644 index 3e6ba839..00000000 --- a/bes_theme/.icons/bes_theme/compare.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/compass-off-outline.svg b/bes_theme/.icons/bes_theme/compass-off-outline.svg deleted file mode 100644 index b2897701..00000000 --- a/bes_theme/.icons/bes_theme/compass-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/compass-off.svg b/bes_theme/.icons/bes_theme/compass-off.svg deleted file mode 100644 index 3487a184..00000000 --- a/bes_theme/.icons/bes_theme/compass-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/compass-outline.svg b/bes_theme/.icons/bes_theme/compass-outline.svg deleted file mode 100644 index aca07af7..00000000 --- a/bes_theme/.icons/bes_theme/compass-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/compass-rose.svg b/bes_theme/.icons/bes_theme/compass-rose.svg deleted file mode 100644 index fc017387..00000000 --- a/bes_theme/.icons/bes_theme/compass-rose.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/compass.svg b/bes_theme/.icons/bes_theme/compass.svg deleted file mode 100644 index 70e82e55..00000000 --- a/bes_theme/.icons/bes_theme/compass.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/concourse-ci.svg b/bes_theme/.icons/bes_theme/concourse-ci.svg deleted file mode 100644 index fad5b015..00000000 --- a/bes_theme/.icons/bes_theme/concourse-ci.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/connection.svg b/bes_theme/.icons/bes_theme/connection.svg deleted file mode 100644 index 76d97866..00000000 --- a/bes_theme/.icons/bes_theme/connection.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/console-line.svg b/bes_theme/.icons/bes_theme/console-line.svg deleted file mode 100644 index 9c1aa315..00000000 --- a/bes_theme/.icons/bes_theme/console-line.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/console-network-outline.svg b/bes_theme/.icons/bes_theme/console-network-outline.svg deleted file mode 100644 index c8bc1268..00000000 --- a/bes_theme/.icons/bes_theme/console-network-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/console-network.svg b/bes_theme/.icons/bes_theme/console-network.svg deleted file mode 100644 index a47994e1..00000000 --- a/bes_theme/.icons/bes_theme/console-network.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/console.svg b/bes_theme/.icons/bes_theme/console.svg deleted file mode 100644 index 3775a52a..00000000 --- a/bes_theme/.icons/bes_theme/console.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/consolidate.svg b/bes_theme/.icons/bes_theme/consolidate.svg deleted file mode 100644 index 4d30257b..00000000 --- a/bes_theme/.icons/bes_theme/consolidate.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/contactless-payment-circle-outline.svg b/bes_theme/.icons/bes_theme/contactless-payment-circle-outline.svg deleted file mode 100644 index 045397d1..00000000 --- a/bes_theme/.icons/bes_theme/contactless-payment-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/contactless-payment-circle.svg b/bes_theme/.icons/bes_theme/contactless-payment-circle.svg deleted file mode 100644 index d28356e2..00000000 --- a/bes_theme/.icons/bes_theme/contactless-payment-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/contactless-payment.svg b/bes_theme/.icons/bes_theme/contactless-payment.svg deleted file mode 100644 index 4367a249..00000000 --- a/bes_theme/.icons/bes_theme/contactless-payment.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/contacts-outline.svg b/bes_theme/.icons/bes_theme/contacts-outline.svg deleted file mode 100644 index 09ad1fc2..00000000 --- a/bes_theme/.icons/bes_theme/contacts-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/contacts.svg b/bes_theme/.icons/bes_theme/contacts.svg deleted file mode 100644 index ae47652a..00000000 --- a/bes_theme/.icons/bes_theme/contacts.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/contain-end.svg b/bes_theme/.icons/bes_theme/contain-end.svg deleted file mode 100644 index c2d8e6b4..00000000 --- a/bes_theme/.icons/bes_theme/contain-end.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/contain-start.svg b/bes_theme/.icons/bes_theme/contain-start.svg deleted file mode 100644 index cb48a2d8..00000000 --- a/bes_theme/.icons/bes_theme/contain-start.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/contain.svg b/bes_theme/.icons/bes_theme/contain.svg deleted file mode 100644 index e1a318dd..00000000 --- a/bes_theme/.icons/bes_theme/contain.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/content-copy.svg b/bes_theme/.icons/bes_theme/content-copy.svg deleted file mode 100644 index 3d0f5b32..00000000 --- a/bes_theme/.icons/bes_theme/content-copy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/content-cut.svg b/bes_theme/.icons/bes_theme/content-cut.svg deleted file mode 100644 index 68a26e79..00000000 --- a/bes_theme/.icons/bes_theme/content-cut.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/content-duplicate.svg b/bes_theme/.icons/bes_theme/content-duplicate.svg deleted file mode 100644 index 3bf0b363..00000000 --- a/bes_theme/.icons/bes_theme/content-duplicate.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/content-paste.svg b/bes_theme/.icons/bes_theme/content-paste.svg deleted file mode 100644 index dfb47a03..00000000 --- a/bes_theme/.icons/bes_theme/content-paste.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/content-save-alert-outline.svg b/bes_theme/.icons/bes_theme/content-save-alert-outline.svg deleted file mode 100644 index a89fa523..00000000 --- a/bes_theme/.icons/bes_theme/content-save-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/content-save-alert.svg b/bes_theme/.icons/bes_theme/content-save-alert.svg deleted file mode 100644 index 3519d606..00000000 --- a/bes_theme/.icons/bes_theme/content-save-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/content-save-all-outline.svg b/bes_theme/.icons/bes_theme/content-save-all-outline.svg deleted file mode 100644 index 64cd3c0d..00000000 --- a/bes_theme/.icons/bes_theme/content-save-all-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/content-save-all.svg b/bes_theme/.icons/bes_theme/content-save-all.svg deleted file mode 100644 index 3f5cd0e5..00000000 --- a/bes_theme/.icons/bes_theme/content-save-all.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/content-save-cog-outline.svg b/bes_theme/.icons/bes_theme/content-save-cog-outline.svg deleted file mode 100644 index 01e302b2..00000000 --- a/bes_theme/.icons/bes_theme/content-save-cog-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/content-save-cog.svg b/bes_theme/.icons/bes_theme/content-save-cog.svg deleted file mode 100644 index bdf32bbf..00000000 --- a/bes_theme/.icons/bes_theme/content-save-cog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/content-save-edit-outline.svg b/bes_theme/.icons/bes_theme/content-save-edit-outline.svg deleted file mode 100644 index fb229848..00000000 --- a/bes_theme/.icons/bes_theme/content-save-edit-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/content-save-edit.svg b/bes_theme/.icons/bes_theme/content-save-edit.svg deleted file mode 100644 index 3fc21df2..00000000 --- a/bes_theme/.icons/bes_theme/content-save-edit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/content-save-move-outline.svg b/bes_theme/.icons/bes_theme/content-save-move-outline.svg deleted file mode 100644 index 6361e104..00000000 --- a/bes_theme/.icons/bes_theme/content-save-move-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/content-save-move.svg b/bes_theme/.icons/bes_theme/content-save-move.svg deleted file mode 100644 index 209c3a24..00000000 --- a/bes_theme/.icons/bes_theme/content-save-move.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/content-save-off-outline.svg b/bes_theme/.icons/bes_theme/content-save-off-outline.svg deleted file mode 100644 index 48d8df05..00000000 --- a/bes_theme/.icons/bes_theme/content-save-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/content-save-off.svg b/bes_theme/.icons/bes_theme/content-save-off.svg deleted file mode 100644 index 2d506833..00000000 --- a/bes_theme/.icons/bes_theme/content-save-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/content-save-outline.svg b/bes_theme/.icons/bes_theme/content-save-outline.svg deleted file mode 100644 index 6465e690..00000000 --- a/bes_theme/.icons/bes_theme/content-save-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/content-save-settings-outline.svg b/bes_theme/.icons/bes_theme/content-save-settings-outline.svg deleted file mode 100644 index d901ea46..00000000 --- a/bes_theme/.icons/bes_theme/content-save-settings-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/content-save-settings.svg b/bes_theme/.icons/bes_theme/content-save-settings.svg deleted file mode 100644 index 53e3cea6..00000000 --- a/bes_theme/.icons/bes_theme/content-save-settings.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/content-save.svg b/bes_theme/.icons/bes_theme/content-save.svg deleted file mode 100644 index 4ea36458..00000000 --- a/bes_theme/.icons/bes_theme/content-save.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/contrast-box.svg b/bes_theme/.icons/bes_theme/contrast-box.svg deleted file mode 100644 index 8514c2d8..00000000 --- a/bes_theme/.icons/bes_theme/contrast-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/contrast-circle.svg b/bes_theme/.icons/bes_theme/contrast-circle.svg deleted file mode 100644 index b62ffd2b..00000000 --- a/bes_theme/.icons/bes_theme/contrast-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/contrast.svg b/bes_theme/.icons/bes_theme/contrast.svg deleted file mode 100644 index 8e68e161..00000000 --- a/bes_theme/.icons/bes_theme/contrast.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/controller-classic-outline.svg b/bes_theme/.icons/bes_theme/controller-classic-outline.svg deleted file mode 100644 index 8f68fa78..00000000 --- a/bes_theme/.icons/bes_theme/controller-classic-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/controller-classic.svg b/bes_theme/.icons/bes_theme/controller-classic.svg deleted file mode 100644 index 7f9ec0ba..00000000 --- a/bes_theme/.icons/bes_theme/controller-classic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cookie-alert-outline.svg b/bes_theme/.icons/bes_theme/cookie-alert-outline.svg deleted file mode 100644 index ebb5452b..00000000 --- a/bes_theme/.icons/bes_theme/cookie-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cookie-alert.svg b/bes_theme/.icons/bes_theme/cookie-alert.svg deleted file mode 100644 index 040cea5e..00000000 --- a/bes_theme/.icons/bes_theme/cookie-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cookie-check-outline.svg b/bes_theme/.icons/bes_theme/cookie-check-outline.svg deleted file mode 100644 index e5bb4691..00000000 --- a/bes_theme/.icons/bes_theme/cookie-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cookie-check.svg b/bes_theme/.icons/bes_theme/cookie-check.svg deleted file mode 100644 index 910015c0..00000000 --- a/bes_theme/.icons/bes_theme/cookie-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cookie-clock-outline.svg b/bes_theme/.icons/bes_theme/cookie-clock-outline.svg deleted file mode 100644 index 4828818c..00000000 --- a/bes_theme/.icons/bes_theme/cookie-clock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cookie-clock.svg b/bes_theme/.icons/bes_theme/cookie-clock.svg deleted file mode 100644 index 2a32c22f..00000000 --- a/bes_theme/.icons/bes_theme/cookie-clock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cookie-cog-outline.svg b/bes_theme/.icons/bes_theme/cookie-cog-outline.svg deleted file mode 100644 index 93333174..00000000 --- a/bes_theme/.icons/bes_theme/cookie-cog-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cookie-cog.svg b/bes_theme/.icons/bes_theme/cookie-cog.svg deleted file mode 100644 index 6b20c54a..00000000 --- a/bes_theme/.icons/bes_theme/cookie-cog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cookie-edit-outline.svg b/bes_theme/.icons/bes_theme/cookie-edit-outline.svg deleted file mode 100644 index 00a9483f..00000000 --- a/bes_theme/.icons/bes_theme/cookie-edit-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cookie-edit.svg b/bes_theme/.icons/bes_theme/cookie-edit.svg deleted file mode 100644 index 29c37e8c..00000000 --- a/bes_theme/.icons/bes_theme/cookie-edit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cookie-lock-outline.svg b/bes_theme/.icons/bes_theme/cookie-lock-outline.svg deleted file mode 100644 index 4a057b3b..00000000 --- a/bes_theme/.icons/bes_theme/cookie-lock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cookie-lock.svg b/bes_theme/.icons/bes_theme/cookie-lock.svg deleted file mode 100644 index f8ead78b..00000000 --- a/bes_theme/.icons/bes_theme/cookie-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cookie-minus-outline.svg b/bes_theme/.icons/bes_theme/cookie-minus-outline.svg deleted file mode 100644 index 2d77e635..00000000 --- a/bes_theme/.icons/bes_theme/cookie-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cookie-minus.svg b/bes_theme/.icons/bes_theme/cookie-minus.svg deleted file mode 100644 index 73f7912a..00000000 --- a/bes_theme/.icons/bes_theme/cookie-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cookie-off-outline.svg b/bes_theme/.icons/bes_theme/cookie-off-outline.svg deleted file mode 100644 index a520c844..00000000 --- a/bes_theme/.icons/bes_theme/cookie-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cookie-off.svg b/bes_theme/.icons/bes_theme/cookie-off.svg deleted file mode 100644 index d0e9a782..00000000 --- a/bes_theme/.icons/bes_theme/cookie-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cookie-outline.svg b/bes_theme/.icons/bes_theme/cookie-outline.svg deleted file mode 100644 index ecb2c79e..00000000 --- a/bes_theme/.icons/bes_theme/cookie-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cookie-plus-outline.svg b/bes_theme/.icons/bes_theme/cookie-plus-outline.svg deleted file mode 100644 index 125a8347..00000000 --- a/bes_theme/.icons/bes_theme/cookie-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cookie-plus.svg b/bes_theme/.icons/bes_theme/cookie-plus.svg deleted file mode 100644 index 1964f540..00000000 --- a/bes_theme/.icons/bes_theme/cookie-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cookie-refresh-outline.svg b/bes_theme/.icons/bes_theme/cookie-refresh-outline.svg deleted file mode 100644 index b86c1cce..00000000 --- a/bes_theme/.icons/bes_theme/cookie-refresh-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cookie-refresh.svg b/bes_theme/.icons/bes_theme/cookie-refresh.svg deleted file mode 100644 index 49c0df93..00000000 --- a/bes_theme/.icons/bes_theme/cookie-refresh.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cookie-remove-outline.svg b/bes_theme/.icons/bes_theme/cookie-remove-outline.svg deleted file mode 100644 index e0e7c052..00000000 --- a/bes_theme/.icons/bes_theme/cookie-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cookie-remove.svg b/bes_theme/.icons/bes_theme/cookie-remove.svg deleted file mode 100644 index 8689ecc9..00000000 --- a/bes_theme/.icons/bes_theme/cookie-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cookie-settings-outline.svg b/bes_theme/.icons/bes_theme/cookie-settings-outline.svg deleted file mode 100644 index d03c616f..00000000 --- a/bes_theme/.icons/bes_theme/cookie-settings-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cookie-settings.svg b/bes_theme/.icons/bes_theme/cookie-settings.svg deleted file mode 100644 index 5c6bc0f9..00000000 --- a/bes_theme/.icons/bes_theme/cookie-settings.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cookie.svg b/bes_theme/.icons/bes_theme/cookie.svg deleted file mode 100644 index b93b66b5..00000000 --- a/bes_theme/.icons/bes_theme/cookie.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/coolant-temperature.svg b/bes_theme/.icons/bes_theme/coolant-temperature.svg deleted file mode 100644 index 3f59abc8..00000000 --- a/bes_theme/.icons/bes_theme/coolant-temperature.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/copyright.svg b/bes_theme/.icons/bes_theme/copyright.svg deleted file mode 100644 index 34bd5f27..00000000 --- a/bes_theme/.icons/bes_theme/copyright.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cordova.svg b/bes_theme/.icons/bes_theme/cordova.svg deleted file mode 100644 index 688cc37c..00000000 --- a/bes_theme/.icons/bes_theme/cordova.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/corn-off.svg b/bes_theme/.icons/bes_theme/corn-off.svg deleted file mode 100644 index c1dbae66..00000000 --- a/bes_theme/.icons/bes_theme/corn-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/corn.svg b/bes_theme/.icons/bes_theme/corn.svg deleted file mode 100644 index 9fcfd812..00000000 --- a/bes_theme/.icons/bes_theme/corn.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cosine-wave.svg b/bes_theme/.icons/bes_theme/cosine-wave.svg deleted file mode 100644 index fd7120ff..00000000 --- a/bes_theme/.icons/bes_theme/cosine-wave.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/counter.svg b/bes_theme/.icons/bes_theme/counter.svg deleted file mode 100644 index 5f8b290d..00000000 --- a/bes_theme/.icons/bes_theme/counter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cow.svg b/bes_theme/.icons/bes_theme/cow.svg deleted file mode 100644 index 37298b0c..00000000 --- a/bes_theme/.icons/bes_theme/cow.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cpu-32-bit.svg b/bes_theme/.icons/bes_theme/cpu-32-bit.svg deleted file mode 100644 index a82b7df2..00000000 --- a/bes_theme/.icons/bes_theme/cpu-32-bit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cpu-64-bit.svg b/bes_theme/.icons/bes_theme/cpu-64-bit.svg deleted file mode 100644 index 5e7a717a..00000000 --- a/bes_theme/.icons/bes_theme/cpu-64-bit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/crane.svg b/bes_theme/.icons/bes_theme/crane.svg deleted file mode 100644 index 77c2bea8..00000000 --- a/bes_theme/.icons/bes_theme/crane.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/creation.svg b/bes_theme/.icons/bes_theme/creation.svg deleted file mode 100644 index 6f9caf5f..00000000 --- a/bes_theme/.icons/bes_theme/creation.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/creative-commons.svg b/bes_theme/.icons/bes_theme/creative-commons.svg deleted file mode 100644 index 64230cec..00000000 --- a/bes_theme/.icons/bes_theme/creative-commons.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-check-outline.svg b/bes_theme/.icons/bes_theme/credit-card-check-outline.svg deleted file mode 100644 index 4a5cd26c..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-check.svg b/bes_theme/.icons/bes_theme/credit-card-check.svg deleted file mode 100644 index cbc88afd..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-clock-outline.svg b/bes_theme/.icons/bes_theme/credit-card-clock-outline.svg deleted file mode 100644 index 79906569..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-clock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-clock.svg b/bes_theme/.icons/bes_theme/credit-card-clock.svg deleted file mode 100644 index c7aee682..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-clock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-marker-outline.svg b/bes_theme/.icons/bes_theme/credit-card-marker-outline.svg deleted file mode 100644 index 56137818..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-marker-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-marker.svg b/bes_theme/.icons/bes_theme/credit-card-marker.svg deleted file mode 100644 index edc61aa6..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-marker.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-minus-outline.svg b/bes_theme/.icons/bes_theme/credit-card-minus-outline.svg deleted file mode 100644 index c30f8984..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-minus.svg b/bes_theme/.icons/bes_theme/credit-card-minus.svg deleted file mode 100644 index b35b61c3..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-multiple-outline.svg b/bes_theme/.icons/bes_theme/credit-card-multiple-outline.svg deleted file mode 100644 index b88199ae..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-multiple.svg b/bes_theme/.icons/bes_theme/credit-card-multiple.svg deleted file mode 100644 index 6dd6d3af..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-off-outline.svg b/bes_theme/.icons/bes_theme/credit-card-off-outline.svg deleted file mode 100644 index 60d27fc9..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-off.svg b/bes_theme/.icons/bes_theme/credit-card-off.svg deleted file mode 100644 index c15548ef..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-outline.svg b/bes_theme/.icons/bes_theme/credit-card-outline.svg deleted file mode 100644 index f23e5128..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-plus-outline.svg b/bes_theme/.icons/bes_theme/credit-card-plus-outline.svg deleted file mode 100644 index 0275d989..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-plus.svg b/bes_theme/.icons/bes_theme/credit-card-plus.svg deleted file mode 100644 index 37e66acd..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-refresh-outline.svg b/bes_theme/.icons/bes_theme/credit-card-refresh-outline.svg deleted file mode 100644 index 904acf7a..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-refresh-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-refresh.svg b/bes_theme/.icons/bes_theme/credit-card-refresh.svg deleted file mode 100644 index e3644c20..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-refresh.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-refund-outline.svg b/bes_theme/.icons/bes_theme/credit-card-refund-outline.svg deleted file mode 100644 index 5f20283d..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-refund-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-refund.svg b/bes_theme/.icons/bes_theme/credit-card-refund.svg deleted file mode 100644 index 3979c3f0..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-refund.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-remove-outline.svg b/bes_theme/.icons/bes_theme/credit-card-remove-outline.svg deleted file mode 100644 index 096feaa0..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-remove.svg b/bes_theme/.icons/bes_theme/credit-card-remove.svg deleted file mode 100644 index b6628350..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-scan-outline.svg b/bes_theme/.icons/bes_theme/credit-card-scan-outline.svg deleted file mode 100644 index 35386d92..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-scan-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-scan.svg b/bes_theme/.icons/bes_theme/credit-card-scan.svg deleted file mode 100644 index b43de54d..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-scan.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-search-outline.svg b/bes_theme/.icons/bes_theme/credit-card-search-outline.svg deleted file mode 100644 index 8e0f9f25..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-search-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-search.svg b/bes_theme/.icons/bes_theme/credit-card-search.svg deleted file mode 100644 index 7112e801..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-settings-outline.svg b/bes_theme/.icons/bes_theme/credit-card-settings-outline.svg deleted file mode 100644 index e69bb0d1..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-settings-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-settings.svg b/bes_theme/.icons/bes_theme/credit-card-settings.svg deleted file mode 100644 index 42c8fee1..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-settings.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-sync-outline.svg b/bes_theme/.icons/bes_theme/credit-card-sync-outline.svg deleted file mode 100644 index dc988a99..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-sync-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-sync.svg b/bes_theme/.icons/bes_theme/credit-card-sync.svg deleted file mode 100644 index c6073c6f..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-sync.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-wireless-off-outline.svg b/bes_theme/.icons/bes_theme/credit-card-wireless-off-outline.svg deleted file mode 100644 index 0659626c..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-wireless-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-wireless-off.svg b/bes_theme/.icons/bes_theme/credit-card-wireless-off.svg deleted file mode 100644 index fb16fcfb..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-wireless-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-wireless-outline.svg b/bes_theme/.icons/bes_theme/credit-card-wireless-outline.svg deleted file mode 100644 index b773fa19..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-wireless-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card-wireless.svg b/bes_theme/.icons/bes_theme/credit-card-wireless.svg deleted file mode 100644 index 45a4797b..00000000 --- a/bes_theme/.icons/bes_theme/credit-card-wireless.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/credit-card.svg b/bes_theme/.icons/bes_theme/credit-card.svg deleted file mode 100644 index 2e54937e..00000000 --- a/bes_theme/.icons/bes_theme/credit-card.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cricket.svg b/bes_theme/.icons/bes_theme/cricket.svg deleted file mode 100644 index c0cd5017..00000000 --- a/bes_theme/.icons/bes_theme/cricket.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/crop-free.svg b/bes_theme/.icons/bes_theme/crop-free.svg deleted file mode 100644 index 95be1377..00000000 --- a/bes_theme/.icons/bes_theme/crop-free.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/crop-landscape.svg b/bes_theme/.icons/bes_theme/crop-landscape.svg deleted file mode 100644 index f99ee456..00000000 --- a/bes_theme/.icons/bes_theme/crop-landscape.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/crop-portrait.svg b/bes_theme/.icons/bes_theme/crop-portrait.svg deleted file mode 100644 index b79609b2..00000000 --- a/bes_theme/.icons/bes_theme/crop-portrait.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/crop-rotate.svg b/bes_theme/.icons/bes_theme/crop-rotate.svg deleted file mode 100644 index 71a9de7f..00000000 --- a/bes_theme/.icons/bes_theme/crop-rotate.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/crop-square.svg b/bes_theme/.icons/bes_theme/crop-square.svg deleted file mode 100644 index 79fde8b4..00000000 --- a/bes_theme/.icons/bes_theme/crop-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/crop.svg b/bes_theme/.icons/bes_theme/crop.svg deleted file mode 100644 index c3157699..00000000 --- a/bes_theme/.icons/bes_theme/crop.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/crosshairs-gps.svg b/bes_theme/.icons/bes_theme/crosshairs-gps.svg deleted file mode 100644 index 6a62fb2a..00000000 --- a/bes_theme/.icons/bes_theme/crosshairs-gps.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/crosshairs-off.svg b/bes_theme/.icons/bes_theme/crosshairs-off.svg deleted file mode 100644 index 5a4b10c2..00000000 --- a/bes_theme/.icons/bes_theme/crosshairs-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/crosshairs-question.svg b/bes_theme/.icons/bes_theme/crosshairs-question.svg deleted file mode 100644 index 07cacf88..00000000 --- a/bes_theme/.icons/bes_theme/crosshairs-question.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/crosshairs.svg b/bes_theme/.icons/bes_theme/crosshairs.svg deleted file mode 100644 index 6fa337bb..00000000 --- a/bes_theme/.icons/bes_theme/crosshairs.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/crown-outline.svg b/bes_theme/.icons/bes_theme/crown-outline.svg deleted file mode 100644 index 77718be4..00000000 --- a/bes_theme/.icons/bes_theme/crown-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/crown.svg b/bes_theme/.icons/bes_theme/crown.svg deleted file mode 100644 index 655a0056..00000000 --- a/bes_theme/.icons/bes_theme/crown.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cryengine.svg b/bes_theme/.icons/bes_theme/cryengine.svg deleted file mode 100644 index f3822be2..00000000 --- a/bes_theme/.icons/bes_theme/cryengine.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/crystal-ball.svg b/bes_theme/.icons/bes_theme/crystal-ball.svg deleted file mode 100644 index d09f4c3a..00000000 --- a/bes_theme/.icons/bes_theme/crystal-ball.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cube-off-outline.svg b/bes_theme/.icons/bes_theme/cube-off-outline.svg deleted file mode 100644 index 0969f81b..00000000 --- a/bes_theme/.icons/bes_theme/cube-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cube-off.svg b/bes_theme/.icons/bes_theme/cube-off.svg deleted file mode 100644 index e72dafb2..00000000 --- a/bes_theme/.icons/bes_theme/cube-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cube-outline.svg b/bes_theme/.icons/bes_theme/cube-outline.svg deleted file mode 100644 index 88411001..00000000 --- a/bes_theme/.icons/bes_theme/cube-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cube-scan.svg b/bes_theme/.icons/bes_theme/cube-scan.svg deleted file mode 100644 index 61fabc7f..00000000 --- a/bes_theme/.icons/bes_theme/cube-scan.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cube-send.svg b/bes_theme/.icons/bes_theme/cube-send.svg deleted file mode 100644 index fc7111e0..00000000 --- a/bes_theme/.icons/bes_theme/cube-send.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cube-unfolded.svg b/bes_theme/.icons/bes_theme/cube-unfolded.svg deleted file mode 100644 index d179b42e..00000000 --- a/bes_theme/.icons/bes_theme/cube-unfolded.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cube.svg b/bes_theme/.icons/bes_theme/cube.svg deleted file mode 100644 index d9ebdd3f..00000000 --- a/bes_theme/.icons/bes_theme/cube.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cup-off-outline.svg b/bes_theme/.icons/bes_theme/cup-off-outline.svg deleted file mode 100644 index da22c331..00000000 --- a/bes_theme/.icons/bes_theme/cup-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cup-off.svg b/bes_theme/.icons/bes_theme/cup-off.svg deleted file mode 100644 index 2d97dd8f..00000000 --- a/bes_theme/.icons/bes_theme/cup-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cup-outline.svg b/bes_theme/.icons/bes_theme/cup-outline.svg deleted file mode 100644 index 35117a31..00000000 --- a/bes_theme/.icons/bes_theme/cup-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cup-water.svg b/bes_theme/.icons/bes_theme/cup-water.svg deleted file mode 100644 index 663130a3..00000000 --- a/bes_theme/.icons/bes_theme/cup-water.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cup.svg b/bes_theme/.icons/bes_theme/cup.svg deleted file mode 100644 index 36f2090f..00000000 --- a/bes_theme/.icons/bes_theme/cup.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cupboard-outline.svg b/bes_theme/.icons/bes_theme/cupboard-outline.svg deleted file mode 100644 index 61f5ef6f..00000000 --- a/bes_theme/.icons/bes_theme/cupboard-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cupboard.svg b/bes_theme/.icons/bes_theme/cupboard.svg deleted file mode 100644 index dc85f766..00000000 --- a/bes_theme/.icons/bes_theme/cupboard.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cupcake.svg b/bes_theme/.icons/bes_theme/cupcake.svg deleted file mode 100644 index 597356fb..00000000 --- a/bes_theme/.icons/bes_theme/cupcake.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/curling.svg b/bes_theme/.icons/bes_theme/curling.svg deleted file mode 100644 index 45129fc1..00000000 --- a/bes_theme/.icons/bes_theme/curling.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/currency-bdt.svg b/bes_theme/.icons/bes_theme/currency-bdt.svg deleted file mode 100644 index 7fb55386..00000000 --- a/bes_theme/.icons/bes_theme/currency-bdt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/currency-brl.svg b/bes_theme/.icons/bes_theme/currency-brl.svg deleted file mode 100644 index f648d5dc..00000000 --- a/bes_theme/.icons/bes_theme/currency-brl.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/currency-btc.svg b/bes_theme/.icons/bes_theme/currency-btc.svg deleted file mode 100644 index 9615e26a..00000000 --- a/bes_theme/.icons/bes_theme/currency-btc.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/currency-cny.svg b/bes_theme/.icons/bes_theme/currency-cny.svg deleted file mode 100644 index 99e0d450..00000000 --- a/bes_theme/.icons/bes_theme/currency-cny.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/currency-eth.svg b/bes_theme/.icons/bes_theme/currency-eth.svg deleted file mode 100644 index 8f047643..00000000 --- a/bes_theme/.icons/bes_theme/currency-eth.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/currency-eur-off.svg b/bes_theme/.icons/bes_theme/currency-eur-off.svg deleted file mode 100644 index 11ee7593..00000000 --- a/bes_theme/.icons/bes_theme/currency-eur-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/currency-eur.svg b/bes_theme/.icons/bes_theme/currency-eur.svg deleted file mode 100644 index b49ece7a..00000000 --- a/bes_theme/.icons/bes_theme/currency-eur.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/currency-gbp.svg b/bes_theme/.icons/bes_theme/currency-gbp.svg deleted file mode 100644 index a8a89a08..00000000 --- a/bes_theme/.icons/bes_theme/currency-gbp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/currency-ils.svg b/bes_theme/.icons/bes_theme/currency-ils.svg deleted file mode 100644 index 10837f70..00000000 --- a/bes_theme/.icons/bes_theme/currency-ils.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/currency-inr.svg b/bes_theme/.icons/bes_theme/currency-inr.svg deleted file mode 100644 index 52dbe9c0..00000000 --- a/bes_theme/.icons/bes_theme/currency-inr.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/currency-jpy.svg b/bes_theme/.icons/bes_theme/currency-jpy.svg deleted file mode 100644 index 99e0d450..00000000 --- a/bes_theme/.icons/bes_theme/currency-jpy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/currency-krw.svg b/bes_theme/.icons/bes_theme/currency-krw.svg deleted file mode 100644 index a7f04708..00000000 --- a/bes_theme/.icons/bes_theme/currency-krw.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/currency-kzt.svg b/bes_theme/.icons/bes_theme/currency-kzt.svg deleted file mode 100644 index 60279f60..00000000 --- a/bes_theme/.icons/bes_theme/currency-kzt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/currency-mnt.svg b/bes_theme/.icons/bes_theme/currency-mnt.svg deleted file mode 100644 index af67b3b2..00000000 --- a/bes_theme/.icons/bes_theme/currency-mnt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/currency-ngn.svg b/bes_theme/.icons/bes_theme/currency-ngn.svg deleted file mode 100644 index cb4a04d0..00000000 --- a/bes_theme/.icons/bes_theme/currency-ngn.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/currency-php.svg b/bes_theme/.icons/bes_theme/currency-php.svg deleted file mode 100644 index 28244bc6..00000000 --- a/bes_theme/.icons/bes_theme/currency-php.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/currency-rial.svg b/bes_theme/.icons/bes_theme/currency-rial.svg deleted file mode 100644 index 3633a487..00000000 --- a/bes_theme/.icons/bes_theme/currency-rial.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/currency-rub.svg b/bes_theme/.icons/bes_theme/currency-rub.svg deleted file mode 100644 index 55e0517a..00000000 --- a/bes_theme/.icons/bes_theme/currency-rub.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/currency-sign.svg b/bes_theme/.icons/bes_theme/currency-sign.svg deleted file mode 100644 index dca7c5ce..00000000 --- a/bes_theme/.icons/bes_theme/currency-sign.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/currency-try.svg b/bes_theme/.icons/bes_theme/currency-try.svg deleted file mode 100644 index 76087df3..00000000 --- a/bes_theme/.icons/bes_theme/currency-try.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/currency-twd.svg b/bes_theme/.icons/bes_theme/currency-twd.svg deleted file mode 100644 index 74e33dcf..00000000 --- a/bes_theme/.icons/bes_theme/currency-twd.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/currency-usd-circle-outline.svg b/bes_theme/.icons/bes_theme/currency-usd-circle-outline.svg deleted file mode 100644 index f7118875..00000000 --- a/bes_theme/.icons/bes_theme/currency-usd-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/currency-usd-circle.svg b/bes_theme/.icons/bes_theme/currency-usd-circle.svg deleted file mode 100644 index 7add7b4d..00000000 --- a/bes_theme/.icons/bes_theme/currency-usd-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/currency-usd-off.svg b/bes_theme/.icons/bes_theme/currency-usd-off.svg deleted file mode 100644 index fa3e8e75..00000000 --- a/bes_theme/.icons/bes_theme/currency-usd-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/currency-usd.svg b/bes_theme/.icons/bes_theme/currency-usd.svg deleted file mode 100644 index 9ba1ef2f..00000000 --- a/bes_theme/.icons/bes_theme/currency-usd.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/current-ac.svg b/bes_theme/.icons/bes_theme/current-ac.svg deleted file mode 100644 index 0d3bf5ba..00000000 --- a/bes_theme/.icons/bes_theme/current-ac.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/current-dc.svg b/bes_theme/.icons/bes_theme/current-dc.svg deleted file mode 100644 index 282f6ad4..00000000 --- a/bes_theme/.icons/bes_theme/current-dc.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cursor-default-click-outline.svg b/bes_theme/.icons/bes_theme/cursor-default-click-outline.svg deleted file mode 100644 index 29f9b343..00000000 --- a/bes_theme/.icons/bes_theme/cursor-default-click-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cursor-default-click.svg b/bes_theme/.icons/bes_theme/cursor-default-click.svg deleted file mode 100644 index 5d96bfbd..00000000 --- a/bes_theme/.icons/bes_theme/cursor-default-click.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cursor-default-gesture-outline.svg b/bes_theme/.icons/bes_theme/cursor-default-gesture-outline.svg deleted file mode 100644 index 15ae4ae4..00000000 --- a/bes_theme/.icons/bes_theme/cursor-default-gesture-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cursor-default-gesture.svg b/bes_theme/.icons/bes_theme/cursor-default-gesture.svg deleted file mode 100644 index 41543c26..00000000 --- a/bes_theme/.icons/bes_theme/cursor-default-gesture.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cursor-default-outline.svg b/bes_theme/.icons/bes_theme/cursor-default-outline.svg deleted file mode 100644 index ae1b9f43..00000000 --- a/bes_theme/.icons/bes_theme/cursor-default-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cursor-default.svg b/bes_theme/.icons/bes_theme/cursor-default.svg deleted file mode 100644 index 440ae06e..00000000 --- a/bes_theme/.icons/bes_theme/cursor-default.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cursor-move.svg b/bes_theme/.icons/bes_theme/cursor-move.svg deleted file mode 100644 index e504fed8..00000000 --- a/bes_theme/.icons/bes_theme/cursor-move.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cursor-pointer.svg b/bes_theme/.icons/bes_theme/cursor-pointer.svg deleted file mode 100644 index 303fcc03..00000000 --- a/bes_theme/.icons/bes_theme/cursor-pointer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/cursor-text.svg b/bes_theme/.icons/bes_theme/cursor-text.svg deleted file mode 100644 index b9fd50fa..00000000 --- a/bes_theme/.icons/bes_theme/cursor-text.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dance-ballroom.svg b/bes_theme/.icons/bes_theme/dance-ballroom.svg deleted file mode 100644 index 918a25e7..00000000 --- a/bes_theme/.icons/bes_theme/dance-ballroom.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dance-pole.svg b/bes_theme/.icons/bes_theme/dance-pole.svg deleted file mode 100644 index 39a58a76..00000000 --- a/bes_theme/.icons/bes_theme/dance-pole.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/data-matrix-edit.svg b/bes_theme/.icons/bes_theme/data-matrix-edit.svg deleted file mode 100644 index 340dd709..00000000 --- a/bes_theme/.icons/bes_theme/data-matrix-edit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/data-matrix-minus.svg b/bes_theme/.icons/bes_theme/data-matrix-minus.svg deleted file mode 100644 index 2d6ea119..00000000 --- a/bes_theme/.icons/bes_theme/data-matrix-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/data-matrix-plus.svg b/bes_theme/.icons/bes_theme/data-matrix-plus.svg deleted file mode 100644 index 63cb5a35..00000000 --- a/bes_theme/.icons/bes_theme/data-matrix-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/data-matrix-remove.svg b/bes_theme/.icons/bes_theme/data-matrix-remove.svg deleted file mode 100644 index 22adb587..00000000 --- a/bes_theme/.icons/bes_theme/data-matrix-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/data-matrix-scan.svg b/bes_theme/.icons/bes_theme/data-matrix-scan.svg deleted file mode 100644 index 681e1e0e..00000000 --- a/bes_theme/.icons/bes_theme/data-matrix-scan.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/data-matrix.svg b/bes_theme/.icons/bes_theme/data-matrix.svg deleted file mode 100644 index 7f4ee4f1..00000000 --- a/bes_theme/.icons/bes_theme/data-matrix.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-alert-outline.svg b/bes_theme/.icons/bes_theme/database-alert-outline.svg deleted file mode 100644 index ec58d40d..00000000 --- a/bes_theme/.icons/bes_theme/database-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-alert.svg b/bes_theme/.icons/bes_theme/database-alert.svg deleted file mode 100644 index bc18fe35..00000000 --- a/bes_theme/.icons/bes_theme/database-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-arrow-down-outline.svg b/bes_theme/.icons/bes_theme/database-arrow-down-outline.svg deleted file mode 100644 index 2adfca47..00000000 --- a/bes_theme/.icons/bes_theme/database-arrow-down-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-arrow-down.svg b/bes_theme/.icons/bes_theme/database-arrow-down.svg deleted file mode 100644 index 86d17a73..00000000 --- a/bes_theme/.icons/bes_theme/database-arrow-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-arrow-left-outline.svg b/bes_theme/.icons/bes_theme/database-arrow-left-outline.svg deleted file mode 100644 index 6d4dd202..00000000 --- a/bes_theme/.icons/bes_theme/database-arrow-left-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-arrow-left.svg b/bes_theme/.icons/bes_theme/database-arrow-left.svg deleted file mode 100644 index 57112b35..00000000 --- a/bes_theme/.icons/bes_theme/database-arrow-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-arrow-right-outline.svg b/bes_theme/.icons/bes_theme/database-arrow-right-outline.svg deleted file mode 100644 index 0ea19fa5..00000000 --- a/bes_theme/.icons/bes_theme/database-arrow-right-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-arrow-right.svg b/bes_theme/.icons/bes_theme/database-arrow-right.svg deleted file mode 100644 index d2c8ba91..00000000 --- a/bes_theme/.icons/bes_theme/database-arrow-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-arrow-up-outline.svg b/bes_theme/.icons/bes_theme/database-arrow-up-outline.svg deleted file mode 100644 index c5f54e49..00000000 --- a/bes_theme/.icons/bes_theme/database-arrow-up-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-arrow-up.svg b/bes_theme/.icons/bes_theme/database-arrow-up.svg deleted file mode 100644 index 0d7043fa..00000000 --- a/bes_theme/.icons/bes_theme/database-arrow-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-check-outline.svg b/bes_theme/.icons/bes_theme/database-check-outline.svg deleted file mode 100644 index be151640..00000000 --- a/bes_theme/.icons/bes_theme/database-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-check.svg b/bes_theme/.icons/bes_theme/database-check.svg deleted file mode 100644 index abf79fb1..00000000 --- a/bes_theme/.icons/bes_theme/database-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-clock-outline.svg b/bes_theme/.icons/bes_theme/database-clock-outline.svg deleted file mode 100644 index a4590ab1..00000000 --- a/bes_theme/.icons/bes_theme/database-clock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-clock.svg b/bes_theme/.icons/bes_theme/database-clock.svg deleted file mode 100644 index 8ca8b1be..00000000 --- a/bes_theme/.icons/bes_theme/database-clock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-cog-outline.svg b/bes_theme/.icons/bes_theme/database-cog-outline.svg deleted file mode 100644 index 5973ae4e..00000000 --- a/bes_theme/.icons/bes_theme/database-cog-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-cog.svg b/bes_theme/.icons/bes_theme/database-cog.svg deleted file mode 100644 index e82044be..00000000 --- a/bes_theme/.icons/bes_theme/database-cog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-edit-outline.svg b/bes_theme/.icons/bes_theme/database-edit-outline.svg deleted file mode 100644 index 369dc935..00000000 --- a/bes_theme/.icons/bes_theme/database-edit-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-edit.svg b/bes_theme/.icons/bes_theme/database-edit.svg deleted file mode 100644 index 31d7507b..00000000 --- a/bes_theme/.icons/bes_theme/database-edit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-export-outline.svg b/bes_theme/.icons/bes_theme/database-export-outline.svg deleted file mode 100644 index 4aec5bc2..00000000 --- a/bes_theme/.icons/bes_theme/database-export-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-export.svg b/bes_theme/.icons/bes_theme/database-export.svg deleted file mode 100644 index 6cbe251f..00000000 --- a/bes_theme/.icons/bes_theme/database-export.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-import-outline.svg b/bes_theme/.icons/bes_theme/database-import-outline.svg deleted file mode 100644 index d6d19b4a..00000000 --- a/bes_theme/.icons/bes_theme/database-import-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-import.svg b/bes_theme/.icons/bes_theme/database-import.svg deleted file mode 100644 index 425a3f7c..00000000 --- a/bes_theme/.icons/bes_theme/database-import.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-lock-outline.svg b/bes_theme/.icons/bes_theme/database-lock-outline.svg deleted file mode 100644 index 39c65a90..00000000 --- a/bes_theme/.icons/bes_theme/database-lock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-lock.svg b/bes_theme/.icons/bes_theme/database-lock.svg deleted file mode 100644 index a789b772..00000000 --- a/bes_theme/.icons/bes_theme/database-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-marker-outline.svg b/bes_theme/.icons/bes_theme/database-marker-outline.svg deleted file mode 100644 index 127d0499..00000000 --- a/bes_theme/.icons/bes_theme/database-marker-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-marker.svg b/bes_theme/.icons/bes_theme/database-marker.svg deleted file mode 100644 index 38127992..00000000 --- a/bes_theme/.icons/bes_theme/database-marker.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-minus-outline.svg b/bes_theme/.icons/bes_theme/database-minus-outline.svg deleted file mode 100644 index 666e91cf..00000000 --- a/bes_theme/.icons/bes_theme/database-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-minus.svg b/bes_theme/.icons/bes_theme/database-minus.svg deleted file mode 100644 index 05e76bc0..00000000 --- a/bes_theme/.icons/bes_theme/database-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-off-outline.svg b/bes_theme/.icons/bes_theme/database-off-outline.svg deleted file mode 100644 index 2a7791c3..00000000 --- a/bes_theme/.icons/bes_theme/database-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-off.svg b/bes_theme/.icons/bes_theme/database-off.svg deleted file mode 100644 index 42e2ed40..00000000 --- a/bes_theme/.icons/bes_theme/database-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-outline.svg b/bes_theme/.icons/bes_theme/database-outline.svg deleted file mode 100644 index dd618571..00000000 --- a/bes_theme/.icons/bes_theme/database-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-plus-outline.svg b/bes_theme/.icons/bes_theme/database-plus-outline.svg deleted file mode 100644 index a92d7b04..00000000 --- a/bes_theme/.icons/bes_theme/database-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-plus.svg b/bes_theme/.icons/bes_theme/database-plus.svg deleted file mode 100644 index 678f53dd..00000000 --- a/bes_theme/.icons/bes_theme/database-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-refresh-outline.svg b/bes_theme/.icons/bes_theme/database-refresh-outline.svg deleted file mode 100644 index 789f4c00..00000000 --- a/bes_theme/.icons/bes_theme/database-refresh-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-refresh.svg b/bes_theme/.icons/bes_theme/database-refresh.svg deleted file mode 100644 index 17c81b18..00000000 --- a/bes_theme/.icons/bes_theme/database-refresh.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-remove-outline.svg b/bes_theme/.icons/bes_theme/database-remove-outline.svg deleted file mode 100644 index c2afa719..00000000 --- a/bes_theme/.icons/bes_theme/database-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-remove.svg b/bes_theme/.icons/bes_theme/database-remove.svg deleted file mode 100644 index 14f3cae7..00000000 --- a/bes_theme/.icons/bes_theme/database-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-search-outline.svg b/bes_theme/.icons/bes_theme/database-search-outline.svg deleted file mode 100644 index 2d6db599..00000000 --- a/bes_theme/.icons/bes_theme/database-search-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-search.svg b/bes_theme/.icons/bes_theme/database-search.svg deleted file mode 100644 index ec0c31d3..00000000 --- a/bes_theme/.icons/bes_theme/database-search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-settings-outline.svg b/bes_theme/.icons/bes_theme/database-settings-outline.svg deleted file mode 100644 index 96264315..00000000 --- a/bes_theme/.icons/bes_theme/database-settings-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-settings.svg b/bes_theme/.icons/bes_theme/database-settings.svg deleted file mode 100644 index a1f87ebe..00000000 --- a/bes_theme/.icons/bes_theme/database-settings.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-sync-outline.svg b/bes_theme/.icons/bes_theme/database-sync-outline.svg deleted file mode 100644 index be7bf7a2..00000000 --- a/bes_theme/.icons/bes_theme/database-sync-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database-sync.svg b/bes_theme/.icons/bes_theme/database-sync.svg deleted file mode 100644 index cf14aeb9..00000000 --- a/bes_theme/.icons/bes_theme/database-sync.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/database.svg b/bes_theme/.icons/bes_theme/database.svg deleted file mode 100644 index 6e95c2b5..00000000 --- a/bes_theme/.icons/bes_theme/database.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/death-star-variant.svg b/bes_theme/.icons/bes_theme/death-star-variant.svg deleted file mode 100644 index 015a5e5d..00000000 --- a/bes_theme/.icons/bes_theme/death-star-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/death-star.svg b/bes_theme/.icons/bes_theme/death-star.svg deleted file mode 100644 index a31188d1..00000000 --- a/bes_theme/.icons/bes_theme/death-star.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/deathly-hallows.svg b/bes_theme/.icons/bes_theme/deathly-hallows.svg deleted file mode 100644 index 5347ad04..00000000 --- a/bes_theme/.icons/bes_theme/deathly-hallows.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/debian.svg b/bes_theme/.icons/bes_theme/debian.svg deleted file mode 100644 index 6643ce90..00000000 --- a/bes_theme/.icons/bes_theme/debian.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/debug-step-into.svg b/bes_theme/.icons/bes_theme/debug-step-into.svg deleted file mode 100644 index 63b7d216..00000000 --- a/bes_theme/.icons/bes_theme/debug-step-into.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/debug-step-out.svg b/bes_theme/.icons/bes_theme/debug-step-out.svg deleted file mode 100644 index cbe695d8..00000000 --- a/bes_theme/.icons/bes_theme/debug-step-out.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/debug-step-over.svg b/bes_theme/.icons/bes_theme/debug-step-over.svg deleted file mode 100644 index 6efa354e..00000000 --- a/bes_theme/.icons/bes_theme/debug-step-over.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/decagram-outline.svg b/bes_theme/.icons/bes_theme/decagram-outline.svg deleted file mode 100644 index 5e29b2c8..00000000 --- a/bes_theme/.icons/bes_theme/decagram-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/decagram.svg b/bes_theme/.icons/bes_theme/decagram.svg deleted file mode 100644 index 3cb2d0f9..00000000 --- a/bes_theme/.icons/bes_theme/decagram.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/decimal-comma-decrease.svg b/bes_theme/.icons/bes_theme/decimal-comma-decrease.svg deleted file mode 100644 index 0d38dce8..00000000 --- a/bes_theme/.icons/bes_theme/decimal-comma-decrease.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/decimal-comma-increase.svg b/bes_theme/.icons/bes_theme/decimal-comma-increase.svg deleted file mode 100644 index 52ad1537..00000000 --- a/bes_theme/.icons/bes_theme/decimal-comma-increase.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/decimal-comma.svg b/bes_theme/.icons/bes_theme/decimal-comma.svg deleted file mode 100644 index 9e5445ac..00000000 --- a/bes_theme/.icons/bes_theme/decimal-comma.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/decimal-decrease.svg b/bes_theme/.icons/bes_theme/decimal-decrease.svg deleted file mode 100644 index c8a25cb0..00000000 --- a/bes_theme/.icons/bes_theme/decimal-decrease.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/decimal-increase.svg b/bes_theme/.icons/bes_theme/decimal-increase.svg deleted file mode 100644 index df8544db..00000000 --- a/bes_theme/.icons/bes_theme/decimal-increase.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/decimal.svg b/bes_theme/.icons/bes_theme/decimal.svg deleted file mode 100644 index 7a57af88..00000000 --- a/bes_theme/.icons/bes_theme/decimal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/delete-alert-outline.svg b/bes_theme/.icons/bes_theme/delete-alert-outline.svg deleted file mode 100644 index 9eeb836a..00000000 --- a/bes_theme/.icons/bes_theme/delete-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/delete-alert.svg b/bes_theme/.icons/bes_theme/delete-alert.svg deleted file mode 100644 index 9431c40d..00000000 --- a/bes_theme/.icons/bes_theme/delete-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/delete-circle-outline.svg b/bes_theme/.icons/bes_theme/delete-circle-outline.svg deleted file mode 100644 index 3432e643..00000000 --- a/bes_theme/.icons/bes_theme/delete-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/delete-circle.svg b/bes_theme/.icons/bes_theme/delete-circle.svg deleted file mode 100644 index 69333e2c..00000000 --- a/bes_theme/.icons/bes_theme/delete-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/delete-clock-outline.svg b/bes_theme/.icons/bes_theme/delete-clock-outline.svg deleted file mode 100644 index 849b123a..00000000 --- a/bes_theme/.icons/bes_theme/delete-clock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/delete-clock.svg b/bes_theme/.icons/bes_theme/delete-clock.svg deleted file mode 100644 index 36505906..00000000 --- a/bes_theme/.icons/bes_theme/delete-clock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/delete-empty-outline.svg b/bes_theme/.icons/bes_theme/delete-empty-outline.svg deleted file mode 100644 index 13ac9371..00000000 --- a/bes_theme/.icons/bes_theme/delete-empty-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/delete-empty.svg b/bes_theme/.icons/bes_theme/delete-empty.svg deleted file mode 100644 index 3a567568..00000000 --- a/bes_theme/.icons/bes_theme/delete-empty.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/delete-forever-outline.svg b/bes_theme/.icons/bes_theme/delete-forever-outline.svg deleted file mode 100644 index 6d4d53ff..00000000 --- a/bes_theme/.icons/bes_theme/delete-forever-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/delete-forever.svg b/bes_theme/.icons/bes_theme/delete-forever.svg deleted file mode 100644 index 691f6935..00000000 --- a/bes_theme/.icons/bes_theme/delete-forever.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/delete-off-outline.svg b/bes_theme/.icons/bes_theme/delete-off-outline.svg deleted file mode 100644 index 2d3567ce..00000000 --- a/bes_theme/.icons/bes_theme/delete-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/delete-off.svg b/bes_theme/.icons/bes_theme/delete-off.svg deleted file mode 100644 index c8478b5c..00000000 --- a/bes_theme/.icons/bes_theme/delete-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/delete-outline.svg b/bes_theme/.icons/bes_theme/delete-outline.svg deleted file mode 100644 index a8dfa60a..00000000 --- a/bes_theme/.icons/bes_theme/delete-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/delete-restore.svg b/bes_theme/.icons/bes_theme/delete-restore.svg deleted file mode 100644 index be6e111d..00000000 --- a/bes_theme/.icons/bes_theme/delete-restore.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/delete-sweep-outline.svg b/bes_theme/.icons/bes_theme/delete-sweep-outline.svg deleted file mode 100644 index 992d1311..00000000 --- a/bes_theme/.icons/bes_theme/delete-sweep-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/delete-sweep.svg b/bes_theme/.icons/bes_theme/delete-sweep.svg deleted file mode 100644 index f2aed99d..00000000 --- a/bes_theme/.icons/bes_theme/delete-sweep.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/delete-variant.svg b/bes_theme/.icons/bes_theme/delete-variant.svg deleted file mode 100644 index 69e08161..00000000 --- a/bes_theme/.icons/bes_theme/delete-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/delete.svg b/bes_theme/.icons/bes_theme/delete.svg deleted file mode 100644 index 5854d5c6..00000000 --- a/bes_theme/.icons/bes_theme/delete.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/delta.svg b/bes_theme/.icons/bes_theme/delta.svg deleted file mode 100644 index 09667f3d..00000000 --- a/bes_theme/.icons/bes_theme/delta.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/desk-lamp.svg b/bes_theme/.icons/bes_theme/desk-lamp.svg deleted file mode 100644 index 6a6fdc1c..00000000 --- a/bes_theme/.icons/bes_theme/desk-lamp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/desk.svg b/bes_theme/.icons/bes_theme/desk.svg deleted file mode 100644 index 542a2a39..00000000 --- a/bes_theme/.icons/bes_theme/desk.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/deskphone.svg b/bes_theme/.icons/bes_theme/deskphone.svg deleted file mode 100644 index d98d5522..00000000 --- a/bes_theme/.icons/bes_theme/deskphone.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/desktop-classic.svg b/bes_theme/.icons/bes_theme/desktop-classic.svg deleted file mode 100644 index 9fd4114f..00000000 --- a/bes_theme/.icons/bes_theme/desktop-classic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/desktop-mac-dashboard.svg b/bes_theme/.icons/bes_theme/desktop-mac-dashboard.svg deleted file mode 100644 index 8a2c33dc..00000000 --- a/bes_theme/.icons/bes_theme/desktop-mac-dashboard.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/desktop-mac.svg b/bes_theme/.icons/bes_theme/desktop-mac.svg deleted file mode 100644 index d16a547c..00000000 --- a/bes_theme/.icons/bes_theme/desktop-mac.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/desktop-tower-monitor.svg b/bes_theme/.icons/bes_theme/desktop-tower-monitor.svg deleted file mode 100644 index d5dcb78a..00000000 --- a/bes_theme/.icons/bes_theme/desktop-tower-monitor.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/desktop-tower.svg b/bes_theme/.icons/bes_theme/desktop-tower.svg deleted file mode 100644 index a69d0a0f..00000000 --- a/bes_theme/.icons/bes_theme/desktop-tower.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/details.svg b/bes_theme/.icons/bes_theme/details.svg deleted file mode 100644 index 8cc7aada..00000000 --- a/bes_theme/.icons/bes_theme/details.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dev-to.svg b/bes_theme/.icons/bes_theme/dev-to.svg deleted file mode 100644 index 3d1d3bc0..00000000 --- a/bes_theme/.icons/bes_theme/dev-to.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/developer-board.svg b/bes_theme/.icons/bes_theme/developer-board.svg deleted file mode 100644 index a7ef57ac..00000000 --- a/bes_theme/.icons/bes_theme/developer-board.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/deviantart.svg b/bes_theme/.icons/bes_theme/deviantart.svg deleted file mode 100644 index affbd3f3..00000000 --- a/bes_theme/.icons/bes_theme/deviantart.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/devices.svg b/bes_theme/.icons/bes_theme/devices.svg deleted file mode 100644 index 8c9aac93..00000000 --- a/bes_theme/.icons/bes_theme/devices.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/diabetes.svg b/bes_theme/.icons/bes_theme/diabetes.svg deleted file mode 100644 index fb28ed37..00000000 --- a/bes_theme/.icons/bes_theme/diabetes.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dialpad.svg b/bes_theme/.icons/bes_theme/dialpad.svg deleted file mode 100644 index 8d5c2a9e..00000000 --- a/bes_theme/.icons/bes_theme/dialpad.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/diameter-outline.svg b/bes_theme/.icons/bes_theme/diameter-outline.svg deleted file mode 100644 index 26b28ec1..00000000 --- a/bes_theme/.icons/bes_theme/diameter-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/diameter-variant.svg b/bes_theme/.icons/bes_theme/diameter-variant.svg deleted file mode 100644 index ac729a0d..00000000 --- a/bes_theme/.icons/bes_theme/diameter-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/diameter.svg b/bes_theme/.icons/bes_theme/diameter.svg deleted file mode 100644 index f46365ab..00000000 --- a/bes_theme/.icons/bes_theme/diameter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/diamond-outline.svg b/bes_theme/.icons/bes_theme/diamond-outline.svg deleted file mode 100644 index 9eb6a1c7..00000000 --- a/bes_theme/.icons/bes_theme/diamond-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/diamond-stone.svg b/bes_theme/.icons/bes_theme/diamond-stone.svg deleted file mode 100644 index 63194e7c..00000000 --- a/bes_theme/.icons/bes_theme/diamond-stone.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/diamond.svg b/bes_theme/.icons/bes_theme/diamond.svg deleted file mode 100644 index 5dab9fe4..00000000 --- a/bes_theme/.icons/bes_theme/diamond.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dice-1-outline.svg b/bes_theme/.icons/bes_theme/dice-1-outline.svg deleted file mode 100644 index 427df784..00000000 --- a/bes_theme/.icons/bes_theme/dice-1-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dice-1.svg b/bes_theme/.icons/bes_theme/dice-1.svg deleted file mode 100644 index baf4b277..00000000 --- a/bes_theme/.icons/bes_theme/dice-1.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dice-2-outline.svg b/bes_theme/.icons/bes_theme/dice-2-outline.svg deleted file mode 100644 index 4618c6d9..00000000 --- a/bes_theme/.icons/bes_theme/dice-2-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dice-2.svg b/bes_theme/.icons/bes_theme/dice-2.svg deleted file mode 100644 index cddd2788..00000000 --- a/bes_theme/.icons/bes_theme/dice-2.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dice-3-outline.svg b/bes_theme/.icons/bes_theme/dice-3-outline.svg deleted file mode 100644 index 904d6e34..00000000 --- a/bes_theme/.icons/bes_theme/dice-3-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dice-3.svg b/bes_theme/.icons/bes_theme/dice-3.svg deleted file mode 100644 index 72d60008..00000000 --- a/bes_theme/.icons/bes_theme/dice-3.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dice-4-outline.svg b/bes_theme/.icons/bes_theme/dice-4-outline.svg deleted file mode 100644 index 10ff87aa..00000000 --- a/bes_theme/.icons/bes_theme/dice-4-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dice-4.svg b/bes_theme/.icons/bes_theme/dice-4.svg deleted file mode 100644 index 0bf60300..00000000 --- a/bes_theme/.icons/bes_theme/dice-4.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dice-5-outline.svg b/bes_theme/.icons/bes_theme/dice-5-outline.svg deleted file mode 100644 index 65aeb346..00000000 --- a/bes_theme/.icons/bes_theme/dice-5-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dice-5.svg b/bes_theme/.icons/bes_theme/dice-5.svg deleted file mode 100644 index cc677eb4..00000000 --- a/bes_theme/.icons/bes_theme/dice-5.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dice-6-outline.svg b/bes_theme/.icons/bes_theme/dice-6-outline.svg deleted file mode 100644 index e87d3561..00000000 --- a/bes_theme/.icons/bes_theme/dice-6-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dice-6.svg b/bes_theme/.icons/bes_theme/dice-6.svg deleted file mode 100644 index e05ce246..00000000 --- a/bes_theme/.icons/bes_theme/dice-6.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dice-d10-outline.svg b/bes_theme/.icons/bes_theme/dice-d10-outline.svg deleted file mode 100644 index ac18aa9b..00000000 --- a/bes_theme/.icons/bes_theme/dice-d10-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dice-d10.svg b/bes_theme/.icons/bes_theme/dice-d10.svg deleted file mode 100644 index 06e2838c..00000000 --- a/bes_theme/.icons/bes_theme/dice-d10.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dice-d12-outline.svg b/bes_theme/.icons/bes_theme/dice-d12-outline.svg deleted file mode 100644 index 05a4d72f..00000000 --- a/bes_theme/.icons/bes_theme/dice-d12-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dice-d12.svg b/bes_theme/.icons/bes_theme/dice-d12.svg deleted file mode 100644 index a2feb8c6..00000000 --- a/bes_theme/.icons/bes_theme/dice-d12.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dice-d20-outline.svg b/bes_theme/.icons/bes_theme/dice-d20-outline.svg deleted file mode 100644 index a4ee72e0..00000000 --- a/bes_theme/.icons/bes_theme/dice-d20-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dice-d20.svg b/bes_theme/.icons/bes_theme/dice-d20.svg deleted file mode 100644 index a424efde..00000000 --- a/bes_theme/.icons/bes_theme/dice-d20.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dice-d4-outline.svg b/bes_theme/.icons/bes_theme/dice-d4-outline.svg deleted file mode 100644 index ad8ca389..00000000 --- a/bes_theme/.icons/bes_theme/dice-d4-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dice-d4.svg b/bes_theme/.icons/bes_theme/dice-d4.svg deleted file mode 100644 index 82e83446..00000000 --- a/bes_theme/.icons/bes_theme/dice-d4.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dice-d6-outline.svg b/bes_theme/.icons/bes_theme/dice-d6-outline.svg deleted file mode 100644 index db7315d5..00000000 --- a/bes_theme/.icons/bes_theme/dice-d6-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dice-d6.svg b/bes_theme/.icons/bes_theme/dice-d6.svg deleted file mode 100644 index d86821ad..00000000 --- a/bes_theme/.icons/bes_theme/dice-d6.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dice-d8-outline.svg b/bes_theme/.icons/bes_theme/dice-d8-outline.svg deleted file mode 100644 index 2b7660ae..00000000 --- a/bes_theme/.icons/bes_theme/dice-d8-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dice-d8.svg b/bes_theme/.icons/bes_theme/dice-d8.svg deleted file mode 100644 index aaa2db39..00000000 --- a/bes_theme/.icons/bes_theme/dice-d8.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dice-multiple-outline.svg b/bes_theme/.icons/bes_theme/dice-multiple-outline.svg deleted file mode 100644 index 5ad947a5..00000000 --- a/bes_theme/.icons/bes_theme/dice-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dice-multiple.svg b/bes_theme/.icons/bes_theme/dice-multiple.svg deleted file mode 100644 index 8117f721..00000000 --- a/bes_theme/.icons/bes_theme/dice-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/digital-ocean.svg b/bes_theme/.icons/bes_theme/digital-ocean.svg deleted file mode 100644 index afe7c5c6..00000000 --- a/bes_theme/.icons/bes_theme/digital-ocean.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dip-switch.svg b/bes_theme/.icons/bes_theme/dip-switch.svg deleted file mode 100644 index 9e7171c8..00000000 --- a/bes_theme/.icons/bes_theme/dip-switch.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/directions-fork.svg b/bes_theme/.icons/bes_theme/directions-fork.svg deleted file mode 100644 index 000fe4df..00000000 --- a/bes_theme/.icons/bes_theme/directions-fork.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/directions.svg b/bes_theme/.icons/bes_theme/directions.svg deleted file mode 100644 index 08691e93..00000000 --- a/bes_theme/.icons/bes_theme/directions.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/disc-alert.svg b/bes_theme/.icons/bes_theme/disc-alert.svg deleted file mode 100644 index a22eb23b..00000000 --- a/bes_theme/.icons/bes_theme/disc-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/disc-player.svg b/bes_theme/.icons/bes_theme/disc-player.svg deleted file mode 100644 index 94ffc107..00000000 --- a/bes_theme/.icons/bes_theme/disc-player.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/disc.svg b/bes_theme/.icons/bes_theme/disc.svg deleted file mode 100644 index 4179ade3..00000000 --- a/bes_theme/.icons/bes_theme/disc.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/discord.svg b/bes_theme/.icons/bes_theme/discord.svg deleted file mode 100644 index 95699894..00000000 --- a/bes_theme/.icons/bes_theme/discord.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dishwasher-alert.svg b/bes_theme/.icons/bes_theme/dishwasher-alert.svg deleted file mode 100644 index c419adbd..00000000 --- a/bes_theme/.icons/bes_theme/dishwasher-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dishwasher-off.svg b/bes_theme/.icons/bes_theme/dishwasher-off.svg deleted file mode 100644 index 42090854..00000000 --- a/bes_theme/.icons/bes_theme/dishwasher-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dishwasher.svg b/bes_theme/.icons/bes_theme/dishwasher.svg deleted file mode 100644 index 59280b09..00000000 --- a/bes_theme/.icons/bes_theme/dishwasher.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/disqus.svg b/bes_theme/.icons/bes_theme/disqus.svg deleted file mode 100644 index 06882678..00000000 --- a/bes_theme/.icons/bes_theme/disqus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/distribute-horizontal-center.svg b/bes_theme/.icons/bes_theme/distribute-horizontal-center.svg deleted file mode 100644 index 273f2be6..00000000 --- a/bes_theme/.icons/bes_theme/distribute-horizontal-center.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/distribute-horizontal-left.svg b/bes_theme/.icons/bes_theme/distribute-horizontal-left.svg deleted file mode 100644 index 795c45af..00000000 --- a/bes_theme/.icons/bes_theme/distribute-horizontal-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/distribute-horizontal-right.svg b/bes_theme/.icons/bes_theme/distribute-horizontal-right.svg deleted file mode 100644 index 292f8eb5..00000000 --- a/bes_theme/.icons/bes_theme/distribute-horizontal-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/distribute-vertical-bottom.svg b/bes_theme/.icons/bes_theme/distribute-vertical-bottom.svg deleted file mode 100644 index 1391d366..00000000 --- a/bes_theme/.icons/bes_theme/distribute-vertical-bottom.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/distribute-vertical-center.svg b/bes_theme/.icons/bes_theme/distribute-vertical-center.svg deleted file mode 100644 index a5bb7338..00000000 --- a/bes_theme/.icons/bes_theme/distribute-vertical-center.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/distribute-vertical-top.svg b/bes_theme/.icons/bes_theme/distribute-vertical-top.svg deleted file mode 100644 index d6e91f9a..00000000 --- a/bes_theme/.icons/bes_theme/distribute-vertical-top.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/diving-flippers.svg b/bes_theme/.icons/bes_theme/diving-flippers.svg deleted file mode 100644 index 8fab095f..00000000 --- a/bes_theme/.icons/bes_theme/diving-flippers.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/diving-helmet.svg b/bes_theme/.icons/bes_theme/diving-helmet.svg deleted file mode 100644 index 16089381..00000000 --- a/bes_theme/.icons/bes_theme/diving-helmet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/diving-scuba-flag.svg b/bes_theme/.icons/bes_theme/diving-scuba-flag.svg deleted file mode 100644 index 95c02f28..00000000 --- a/bes_theme/.icons/bes_theme/diving-scuba-flag.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/diving-scuba-tank-multiple.svg b/bes_theme/.icons/bes_theme/diving-scuba-tank-multiple.svg deleted file mode 100644 index b7d7151e..00000000 --- a/bes_theme/.icons/bes_theme/diving-scuba-tank-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/diving-scuba-tank.svg b/bes_theme/.icons/bes_theme/diving-scuba-tank.svg deleted file mode 100644 index 479e8548..00000000 --- a/bes_theme/.icons/bes_theme/diving-scuba-tank.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/diving-scuba.svg b/bes_theme/.icons/bes_theme/diving-scuba.svg deleted file mode 100644 index 214b8646..00000000 --- a/bes_theme/.icons/bes_theme/diving-scuba.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/diving-snorkel.svg b/bes_theme/.icons/bes_theme/diving-snorkel.svg deleted file mode 100644 index 76f442da..00000000 --- a/bes_theme/.icons/bes_theme/diving-snorkel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/division-box.svg b/bes_theme/.icons/bes_theme/division-box.svg deleted file mode 100644 index 4b159682..00000000 --- a/bes_theme/.icons/bes_theme/division-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/division.svg b/bes_theme/.icons/bes_theme/division.svg deleted file mode 100644 index b26a5d9e..00000000 --- a/bes_theme/.icons/bes_theme/division.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dlna.svg b/bes_theme/.icons/bes_theme/dlna.svg deleted file mode 100644 index 0c6bab17..00000000 --- a/bes_theme/.icons/bes_theme/dlna.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dna.svg b/bes_theme/.icons/bes_theme/dna.svg deleted file mode 100644 index b5c06135..00000000 --- a/bes_theme/.icons/bes_theme/dna.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dns-outline.svg b/bes_theme/.icons/bes_theme/dns-outline.svg deleted file mode 100644 index 73245ecb..00000000 --- a/bes_theme/.icons/bes_theme/dns-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dns.svg b/bes_theme/.icons/bes_theme/dns.svg deleted file mode 100644 index 4bd15ead..00000000 --- a/bes_theme/.icons/bes_theme/dns.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/do-not-disturb-off.svg b/bes_theme/.icons/bes_theme/do-not-disturb-off.svg deleted file mode 100644 index 52e9d1cd..00000000 --- a/bes_theme/.icons/bes_theme/do-not-disturb-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/do-not-disturb.svg b/bes_theme/.icons/bes_theme/do-not-disturb.svg deleted file mode 100644 index 4d3c793d..00000000 --- a/bes_theme/.icons/bes_theme/do-not-disturb.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dock-bottom.svg b/bes_theme/.icons/bes_theme/dock-bottom.svg deleted file mode 100644 index 0f27250f..00000000 --- a/bes_theme/.icons/bes_theme/dock-bottom.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dock-left.svg b/bes_theme/.icons/bes_theme/dock-left.svg deleted file mode 100644 index 7ace34d2..00000000 --- a/bes_theme/.icons/bes_theme/dock-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dock-right.svg b/bes_theme/.icons/bes_theme/dock-right.svg deleted file mode 100644 index da5d6b07..00000000 --- a/bes_theme/.icons/bes_theme/dock-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dock-top.svg b/bes_theme/.icons/bes_theme/dock-top.svg deleted file mode 100644 index ac7bf6fc..00000000 --- a/bes_theme/.icons/bes_theme/dock-top.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dock-window.svg b/bes_theme/.icons/bes_theme/dock-window.svg deleted file mode 100644 index 9974cb38..00000000 --- a/bes_theme/.icons/bes_theme/dock-window.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/docker.svg b/bes_theme/.icons/bes_theme/docker.svg deleted file mode 100644 index 892b6bad..00000000 --- a/bes_theme/.icons/bes_theme/docker.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/doctor.svg b/bes_theme/.icons/bes_theme/doctor.svg deleted file mode 100644 index fb7e3c41..00000000 --- a/bes_theme/.icons/bes_theme/doctor.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dog-service.svg b/bes_theme/.icons/bes_theme/dog-service.svg deleted file mode 100644 index 6ef8271f..00000000 --- a/bes_theme/.icons/bes_theme/dog-service.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dog-side-off.svg b/bes_theme/.icons/bes_theme/dog-side-off.svg deleted file mode 100644 index ec90ed2a..00000000 --- a/bes_theme/.icons/bes_theme/dog-side-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dog-side.svg b/bes_theme/.icons/bes_theme/dog-side.svg deleted file mode 100644 index 068b18f6..00000000 --- a/bes_theme/.icons/bes_theme/dog-side.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dog.svg b/bes_theme/.icons/bes_theme/dog.svg deleted file mode 100644 index aa8853a8..00000000 --- a/bes_theme/.icons/bes_theme/dog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dolby.svg b/bes_theme/.icons/bes_theme/dolby.svg deleted file mode 100644 index 73762ca9..00000000 --- a/bes_theme/.icons/bes_theme/dolby.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dolly.svg b/bes_theme/.icons/bes_theme/dolly.svg deleted file mode 100644 index f69bf8a0..00000000 --- a/bes_theme/.icons/bes_theme/dolly.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/domain-off.svg b/bes_theme/.icons/bes_theme/domain-off.svg deleted file mode 100644 index 1f10fc1a..00000000 --- a/bes_theme/.icons/bes_theme/domain-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/domain-plus.svg b/bes_theme/.icons/bes_theme/domain-plus.svg deleted file mode 100644 index 43c0f1e4..00000000 --- a/bes_theme/.icons/bes_theme/domain-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/domain-remove.svg b/bes_theme/.icons/bes_theme/domain-remove.svg deleted file mode 100644 index ed1cd097..00000000 --- a/bes_theme/.icons/bes_theme/domain-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/domain.svg b/bes_theme/.icons/bes_theme/domain.svg deleted file mode 100644 index 7d8a92f2..00000000 --- a/bes_theme/.icons/bes_theme/domain.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dome-light.svg b/bes_theme/.icons/bes_theme/dome-light.svg deleted file mode 100644 index 3b02c891..00000000 --- a/bes_theme/.icons/bes_theme/dome-light.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/domino-mask.svg b/bes_theme/.icons/bes_theme/domino-mask.svg deleted file mode 100644 index 969e2844..00000000 --- a/bes_theme/.icons/bes_theme/domino-mask.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/donkey.svg b/bes_theme/.icons/bes_theme/donkey.svg deleted file mode 100644 index 8bce8807..00000000 --- a/bes_theme/.icons/bes_theme/donkey.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/door-closed-lock.svg b/bes_theme/.icons/bes_theme/door-closed-lock.svg deleted file mode 100644 index 9b98f58b..00000000 --- a/bes_theme/.icons/bes_theme/door-closed-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/door-closed.svg b/bes_theme/.icons/bes_theme/door-closed.svg deleted file mode 100644 index 591bc752..00000000 --- a/bes_theme/.icons/bes_theme/door-closed.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/door-open.svg b/bes_theme/.icons/bes_theme/door-open.svg deleted file mode 100644 index 93714d8a..00000000 --- a/bes_theme/.icons/bes_theme/door-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/door.svg b/bes_theme/.icons/bes_theme/door.svg deleted file mode 100644 index ae3c44b5..00000000 --- a/bes_theme/.icons/bes_theme/door.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/doorbell-video.svg b/bes_theme/.icons/bes_theme/doorbell-video.svg deleted file mode 100644 index 873acf6e..00000000 --- a/bes_theme/.icons/bes_theme/doorbell-video.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/doorbell.svg b/bes_theme/.icons/bes_theme/doorbell.svg deleted file mode 100644 index 7611a15a..00000000 --- a/bes_theme/.icons/bes_theme/doorbell.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dot-net.svg b/bes_theme/.icons/bes_theme/dot-net.svg deleted file mode 100644 index 444be548..00000000 --- a/bes_theme/.icons/bes_theme/dot-net.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dots-grid.svg b/bes_theme/.icons/bes_theme/dots-grid.svg deleted file mode 100644 index f9e74313..00000000 --- a/bes_theme/.icons/bes_theme/dots-grid.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dots-hexagon.svg b/bes_theme/.icons/bes_theme/dots-hexagon.svg deleted file mode 100644 index b707ec6f..00000000 --- a/bes_theme/.icons/bes_theme/dots-hexagon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dots-horizontal-circle-outline.svg b/bes_theme/.icons/bes_theme/dots-horizontal-circle-outline.svg deleted file mode 100644 index 62ca60ef..00000000 --- a/bes_theme/.icons/bes_theme/dots-horizontal-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dots-horizontal-circle.svg b/bes_theme/.icons/bes_theme/dots-horizontal-circle.svg deleted file mode 100644 index 2eb0b97c..00000000 --- a/bes_theme/.icons/bes_theme/dots-horizontal-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dots-horizontal.svg b/bes_theme/.icons/bes_theme/dots-horizontal.svg deleted file mode 100644 index a41ad872..00000000 --- a/bes_theme/.icons/bes_theme/dots-horizontal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dots-square.svg b/bes_theme/.icons/bes_theme/dots-square.svg deleted file mode 100644 index 324c2e39..00000000 --- a/bes_theme/.icons/bes_theme/dots-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dots-triangle.svg b/bes_theme/.icons/bes_theme/dots-triangle.svg deleted file mode 100644 index 43a0b58e..00000000 --- a/bes_theme/.icons/bes_theme/dots-triangle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dots-vertical-circle-outline.svg b/bes_theme/.icons/bes_theme/dots-vertical-circle-outline.svg deleted file mode 100644 index b1ad2e2a..00000000 --- a/bes_theme/.icons/bes_theme/dots-vertical-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dots-vertical-circle.svg b/bes_theme/.icons/bes_theme/dots-vertical-circle.svg deleted file mode 100644 index 560406e4..00000000 --- a/bes_theme/.icons/bes_theme/dots-vertical-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dots-vertical.svg b/bes_theme/.icons/bes_theme/dots-vertical.svg deleted file mode 100644 index a01e0904..00000000 --- a/bes_theme/.icons/bes_theme/dots-vertical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/douban.svg b/bes_theme/.icons/bes_theme/douban.svg deleted file mode 100644 index c777be88..00000000 --- a/bes_theme/.icons/bes_theme/douban.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/download-box-outline.svg b/bes_theme/.icons/bes_theme/download-box-outline.svg deleted file mode 100644 index f373e2e1..00000000 --- a/bes_theme/.icons/bes_theme/download-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/download-box.svg b/bes_theme/.icons/bes_theme/download-box.svg deleted file mode 100644 index ab70912d..00000000 --- a/bes_theme/.icons/bes_theme/download-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/download-circle-outline.svg b/bes_theme/.icons/bes_theme/download-circle-outline.svg deleted file mode 100644 index 664739b0..00000000 --- a/bes_theme/.icons/bes_theme/download-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/download-circle.svg b/bes_theme/.icons/bes_theme/download-circle.svg deleted file mode 100644 index 0c7f9993..00000000 --- a/bes_theme/.icons/bes_theme/download-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/download-lock-outline.svg b/bes_theme/.icons/bes_theme/download-lock-outline.svg deleted file mode 100644 index de84ae8a..00000000 --- a/bes_theme/.icons/bes_theme/download-lock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/download-lock.svg b/bes_theme/.icons/bes_theme/download-lock.svg deleted file mode 100644 index c5921406..00000000 --- a/bes_theme/.icons/bes_theme/download-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/download-multiple.svg b/bes_theme/.icons/bes_theme/download-multiple.svg deleted file mode 100644 index 3bab463a..00000000 --- a/bes_theme/.icons/bes_theme/download-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/download-network-outline.svg b/bes_theme/.icons/bes_theme/download-network-outline.svg deleted file mode 100644 index 67148a46..00000000 --- a/bes_theme/.icons/bes_theme/download-network-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/download-network.svg b/bes_theme/.icons/bes_theme/download-network.svg deleted file mode 100644 index e020ae57..00000000 --- a/bes_theme/.icons/bes_theme/download-network.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/download-off-outline.svg b/bes_theme/.icons/bes_theme/download-off-outline.svg deleted file mode 100644 index 8a309117..00000000 --- a/bes_theme/.icons/bes_theme/download-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/download-off.svg b/bes_theme/.icons/bes_theme/download-off.svg deleted file mode 100644 index d147a075..00000000 --- a/bes_theme/.icons/bes_theme/download-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/download-outline.svg b/bes_theme/.icons/bes_theme/download-outline.svg deleted file mode 100644 index 405e72eb..00000000 --- a/bes_theme/.icons/bes_theme/download-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/download.svg b/bes_theme/.icons/bes_theme/download.svg deleted file mode 100644 index 8ff54628..00000000 --- a/bes_theme/.icons/bes_theme/download.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/drag-horizontal-variant.svg b/bes_theme/.icons/bes_theme/drag-horizontal-variant.svg deleted file mode 100644 index 96480e25..00000000 --- a/bes_theme/.icons/bes_theme/drag-horizontal-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/drag-horizontal.svg b/bes_theme/.icons/bes_theme/drag-horizontal.svg deleted file mode 100644 index 77f65b8e..00000000 --- a/bes_theme/.icons/bes_theme/drag-horizontal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/drag-variant.svg b/bes_theme/.icons/bes_theme/drag-variant.svg deleted file mode 100644 index 1c42bad1..00000000 --- a/bes_theme/.icons/bes_theme/drag-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/drag-vertical-variant.svg b/bes_theme/.icons/bes_theme/drag-vertical-variant.svg deleted file mode 100644 index 5a98931b..00000000 --- a/bes_theme/.icons/bes_theme/drag-vertical-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/drag-vertical.svg b/bes_theme/.icons/bes_theme/drag-vertical.svg deleted file mode 100644 index 0f86f74f..00000000 --- a/bes_theme/.icons/bes_theme/drag-vertical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/drag.svg b/bes_theme/.icons/bes_theme/drag.svg deleted file mode 100644 index 1cccd3c6..00000000 --- a/bes_theme/.icons/bes_theme/drag.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/drama-masks.svg b/bes_theme/.icons/bes_theme/drama-masks.svg deleted file mode 100644 index 9e21ce76..00000000 --- a/bes_theme/.icons/bes_theme/drama-masks.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/draw.svg b/bes_theme/.icons/bes_theme/draw.svg deleted file mode 100644 index 7bb8e20e..00000000 --- a/bes_theme/.icons/bes_theme/draw.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/drawing-box.svg b/bes_theme/.icons/bes_theme/drawing-box.svg deleted file mode 100644 index 42e80a0d..00000000 --- a/bes_theme/.icons/bes_theme/drawing-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/drawing.svg b/bes_theme/.icons/bes_theme/drawing.svg deleted file mode 100644 index 95bebd35..00000000 --- a/bes_theme/.icons/bes_theme/drawing.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dresser-outline.svg b/bes_theme/.icons/bes_theme/dresser-outline.svg deleted file mode 100644 index 039a1ffb..00000000 --- a/bes_theme/.icons/bes_theme/dresser-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dresser.svg b/bes_theme/.icons/bes_theme/dresser.svg deleted file mode 100644 index 94b70b6a..00000000 --- a/bes_theme/.icons/bes_theme/dresser.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/drone.svg b/bes_theme/.icons/bes_theme/drone.svg deleted file mode 100644 index 50d203c9..00000000 --- a/bes_theme/.icons/bes_theme/drone.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dropbox.svg b/bes_theme/.icons/bes_theme/dropbox.svg deleted file mode 100644 index 20badbc5..00000000 --- a/bes_theme/.icons/bes_theme/dropbox.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/drupal.svg b/bes_theme/.icons/bes_theme/drupal.svg deleted file mode 100644 index 50469fcc..00000000 --- a/bes_theme/.icons/bes_theme/drupal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/duck.svg b/bes_theme/.icons/bes_theme/duck.svg deleted file mode 100644 index 6fffaab4..00000000 --- a/bes_theme/.icons/bes_theme/duck.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dumbbell.svg b/bes_theme/.icons/bes_theme/dumbbell.svg deleted file mode 100644 index 7a80fd1b..00000000 --- a/bes_theme/.icons/bes_theme/dumbbell.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/dump-truck.svg b/bes_theme/.icons/bes_theme/dump-truck.svg deleted file mode 100644 index e6555f86..00000000 --- a/bes_theme/.icons/bes_theme/dump-truck.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ear-hearing-off.svg b/bes_theme/.icons/bes_theme/ear-hearing-off.svg deleted file mode 100644 index 38763a6c..00000000 --- a/bes_theme/.icons/bes_theme/ear-hearing-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ear-hearing.svg b/bes_theme/.icons/bes_theme/ear-hearing.svg deleted file mode 100644 index 912faf42..00000000 --- a/bes_theme/.icons/bes_theme/ear-hearing.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/earth-arrow-right.svg b/bes_theme/.icons/bes_theme/earth-arrow-right.svg deleted file mode 100644 index b9270825..00000000 --- a/bes_theme/.icons/bes_theme/earth-arrow-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/earth-box-minus.svg b/bes_theme/.icons/bes_theme/earth-box-minus.svg deleted file mode 100644 index 34421c4d..00000000 --- a/bes_theme/.icons/bes_theme/earth-box-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/earth-box-off.svg b/bes_theme/.icons/bes_theme/earth-box-off.svg deleted file mode 100644 index 56d90080..00000000 --- a/bes_theme/.icons/bes_theme/earth-box-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/earth-box-plus.svg b/bes_theme/.icons/bes_theme/earth-box-plus.svg deleted file mode 100644 index 1a03b59f..00000000 --- a/bes_theme/.icons/bes_theme/earth-box-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/earth-box-remove.svg b/bes_theme/.icons/bes_theme/earth-box-remove.svg deleted file mode 100644 index 305944b6..00000000 --- a/bes_theme/.icons/bes_theme/earth-box-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/earth-box.svg b/bes_theme/.icons/bes_theme/earth-box.svg deleted file mode 100644 index e42b8075..00000000 --- a/bes_theme/.icons/bes_theme/earth-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/earth-minus.svg b/bes_theme/.icons/bes_theme/earth-minus.svg deleted file mode 100644 index 001ef36e..00000000 --- a/bes_theme/.icons/bes_theme/earth-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/earth-off.svg b/bes_theme/.icons/bes_theme/earth-off.svg deleted file mode 100644 index 66f8f797..00000000 --- a/bes_theme/.icons/bes_theme/earth-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/earth-plus.svg b/bes_theme/.icons/bes_theme/earth-plus.svg deleted file mode 100644 index ab05a324..00000000 --- a/bes_theme/.icons/bes_theme/earth-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/earth-remove.svg b/bes_theme/.icons/bes_theme/earth-remove.svg deleted file mode 100644 index 39766c7a..00000000 --- a/bes_theme/.icons/bes_theme/earth-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/earth.svg b/bes_theme/.icons/bes_theme/earth.svg deleted file mode 100644 index aa9f3500..00000000 --- a/bes_theme/.icons/bes_theme/earth.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/egg-easter.svg b/bes_theme/.icons/bes_theme/egg-easter.svg deleted file mode 100644 index 67e2c27c..00000000 --- a/bes_theme/.icons/bes_theme/egg-easter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/egg-off-outline.svg b/bes_theme/.icons/bes_theme/egg-off-outline.svg deleted file mode 100644 index cd40cd80..00000000 --- a/bes_theme/.icons/bes_theme/egg-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/egg-off.svg b/bes_theme/.icons/bes_theme/egg-off.svg deleted file mode 100644 index 0daa5ce0..00000000 --- a/bes_theme/.icons/bes_theme/egg-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/egg-outline.svg b/bes_theme/.icons/bes_theme/egg-outline.svg deleted file mode 100644 index 8f498baf..00000000 --- a/bes_theme/.icons/bes_theme/egg-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/egg.svg b/bes_theme/.icons/bes_theme/egg.svg deleted file mode 100644 index 482e03d6..00000000 --- a/bes_theme/.icons/bes_theme/egg.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/eiffel-tower.svg b/bes_theme/.icons/bes_theme/eiffel-tower.svg deleted file mode 100644 index e1f48498..00000000 --- a/bes_theme/.icons/bes_theme/eiffel-tower.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/eight-track.svg b/bes_theme/.icons/bes_theme/eight-track.svg deleted file mode 100644 index 74a034e9..00000000 --- a/bes_theme/.icons/bes_theme/eight-track.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/eject-outline.svg b/bes_theme/.icons/bes_theme/eject-outline.svg deleted file mode 100644 index 8017d04b..00000000 --- a/bes_theme/.icons/bes_theme/eject-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/eject.svg b/bes_theme/.icons/bes_theme/eject.svg deleted file mode 100644 index e39b44bb..00000000 --- a/bes_theme/.icons/bes_theme/eject.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/electric-switch-closed.svg b/bes_theme/.icons/bes_theme/electric-switch-closed.svg deleted file mode 100644 index cf9ccc51..00000000 --- a/bes_theme/.icons/bes_theme/electric-switch-closed.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/electric-switch.svg b/bes_theme/.icons/bes_theme/electric-switch.svg deleted file mode 100644 index 5a871f02..00000000 --- a/bes_theme/.icons/bes_theme/electric-switch.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/electron-framework.svg b/bes_theme/.icons/bes_theme/electron-framework.svg deleted file mode 100644 index 7d38f21d..00000000 --- a/bes_theme/.icons/bes_theme/electron-framework.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/elephant.svg b/bes_theme/.icons/bes_theme/elephant.svg deleted file mode 100644 index 388c3c19..00000000 --- a/bes_theme/.icons/bes_theme/elephant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/elevation-decline.svg b/bes_theme/.icons/bes_theme/elevation-decline.svg deleted file mode 100644 index 08aa1937..00000000 --- a/bes_theme/.icons/bes_theme/elevation-decline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/elevation-rise.svg b/bes_theme/.icons/bes_theme/elevation-rise.svg deleted file mode 100644 index b4dfe77b..00000000 --- a/bes_theme/.icons/bes_theme/elevation-rise.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/elevator-down.svg b/bes_theme/.icons/bes_theme/elevator-down.svg deleted file mode 100644 index b2fb9a7a..00000000 --- a/bes_theme/.icons/bes_theme/elevator-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/elevator-passenger.svg b/bes_theme/.icons/bes_theme/elevator-passenger.svg deleted file mode 100644 index 6931506d..00000000 --- a/bes_theme/.icons/bes_theme/elevator-passenger.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/elevator-up.svg b/bes_theme/.icons/bes_theme/elevator-up.svg deleted file mode 100644 index 6fa9b7bb..00000000 --- a/bes_theme/.icons/bes_theme/elevator-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/elevator.svg b/bes_theme/.icons/bes_theme/elevator.svg deleted file mode 100644 index a6c9311f..00000000 --- a/bes_theme/.icons/bes_theme/elevator.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ellipse-outline.svg b/bes_theme/.icons/bes_theme/ellipse-outline.svg deleted file mode 100644 index be8d4eb7..00000000 --- a/bes_theme/.icons/bes_theme/ellipse-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ellipse.svg b/bes_theme/.icons/bes_theme/ellipse.svg deleted file mode 100644 index c8ebdf80..00000000 --- a/bes_theme/.icons/bes_theme/ellipse.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-alert-outline.svg b/bes_theme/.icons/bes_theme/email-alert-outline.svg deleted file mode 100644 index 01e678b7..00000000 --- a/bes_theme/.icons/bes_theme/email-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-alert.svg b/bes_theme/.icons/bes_theme/email-alert.svg deleted file mode 100644 index 5e4930a9..00000000 --- a/bes_theme/.icons/bes_theme/email-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-box.svg b/bes_theme/.icons/bes_theme/email-box.svg deleted file mode 100644 index d3e4afbf..00000000 --- a/bes_theme/.icons/bes_theme/email-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-check-outline.svg b/bes_theme/.icons/bes_theme/email-check-outline.svg deleted file mode 100644 index b5555a43..00000000 --- a/bes_theme/.icons/bes_theme/email-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-check.svg b/bes_theme/.icons/bes_theme/email-check.svg deleted file mode 100644 index ca401950..00000000 --- a/bes_theme/.icons/bes_theme/email-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-edit-outline.svg b/bes_theme/.icons/bes_theme/email-edit-outline.svg deleted file mode 100644 index cab68583..00000000 --- a/bes_theme/.icons/bes_theme/email-edit-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-edit.svg b/bes_theme/.icons/bes_theme/email-edit.svg deleted file mode 100644 index a1f9d777..00000000 --- a/bes_theme/.icons/bes_theme/email-edit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-lock.svg b/bes_theme/.icons/bes_theme/email-lock.svg deleted file mode 100644 index ae73ef27..00000000 --- a/bes_theme/.icons/bes_theme/email-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-mark-as-unread.svg b/bes_theme/.icons/bes_theme/email-mark-as-unread.svg deleted file mode 100644 index e47e1caf..00000000 --- a/bes_theme/.icons/bes_theme/email-mark-as-unread.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-minus-outline.svg b/bes_theme/.icons/bes_theme/email-minus-outline.svg deleted file mode 100644 index d520c228..00000000 --- a/bes_theme/.icons/bes_theme/email-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-minus.svg b/bes_theme/.icons/bes_theme/email-minus.svg deleted file mode 100644 index 4776cb4a..00000000 --- a/bes_theme/.icons/bes_theme/email-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-multiple-outline.svg b/bes_theme/.icons/bes_theme/email-multiple-outline.svg deleted file mode 100644 index c8ce64aa..00000000 --- a/bes_theme/.icons/bes_theme/email-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-multiple.svg b/bes_theme/.icons/bes_theme/email-multiple.svg deleted file mode 100644 index e236aa37..00000000 --- a/bes_theme/.icons/bes_theme/email-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-newsletter.svg b/bes_theme/.icons/bes_theme/email-newsletter.svg deleted file mode 100644 index de68e7bb..00000000 --- a/bes_theme/.icons/bes_theme/email-newsletter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-off-outline.svg b/bes_theme/.icons/bes_theme/email-off-outline.svg deleted file mode 100644 index 207768eb..00000000 --- a/bes_theme/.icons/bes_theme/email-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-off.svg b/bes_theme/.icons/bes_theme/email-off.svg deleted file mode 100644 index 7822dda1..00000000 --- a/bes_theme/.icons/bes_theme/email-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-open-multiple-outline.svg b/bes_theme/.icons/bes_theme/email-open-multiple-outline.svg deleted file mode 100644 index 41532ea0..00000000 --- a/bes_theme/.icons/bes_theme/email-open-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-open-multiple.svg b/bes_theme/.icons/bes_theme/email-open-multiple.svg deleted file mode 100644 index 316e9b41..00000000 --- a/bes_theme/.icons/bes_theme/email-open-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-open-outline.svg b/bes_theme/.icons/bes_theme/email-open-outline.svg deleted file mode 100644 index 85c6a0a5..00000000 --- a/bes_theme/.icons/bes_theme/email-open-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-open.svg b/bes_theme/.icons/bes_theme/email-open.svg deleted file mode 100644 index e0e19aad..00000000 --- a/bes_theme/.icons/bes_theme/email-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-outline.svg b/bes_theme/.icons/bes_theme/email-outline.svg deleted file mode 100644 index 86d705ca..00000000 --- a/bes_theme/.icons/bes_theme/email-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-plus-outline.svg b/bes_theme/.icons/bes_theme/email-plus-outline.svg deleted file mode 100644 index 901adce1..00000000 --- a/bes_theme/.icons/bes_theme/email-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-plus.svg b/bes_theme/.icons/bes_theme/email-plus.svg deleted file mode 100644 index a902abed..00000000 --- a/bes_theme/.icons/bes_theme/email-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-receive-outline.svg b/bes_theme/.icons/bes_theme/email-receive-outline.svg deleted file mode 100644 index 8c25a81b..00000000 --- a/bes_theme/.icons/bes_theme/email-receive-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-receive.svg b/bes_theme/.icons/bes_theme/email-receive.svg deleted file mode 100644 index 272db680..00000000 --- a/bes_theme/.icons/bes_theme/email-receive.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-remove-outline.svg b/bes_theme/.icons/bes_theme/email-remove-outline.svg deleted file mode 100644 index ab6a2fe7..00000000 --- a/bes_theme/.icons/bes_theme/email-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-remove.svg b/bes_theme/.icons/bes_theme/email-remove.svg deleted file mode 100644 index 1f016831..00000000 --- a/bes_theme/.icons/bes_theme/email-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-search-outline.svg b/bes_theme/.icons/bes_theme/email-search-outline.svg deleted file mode 100644 index 3c26d6c2..00000000 --- a/bes_theme/.icons/bes_theme/email-search-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-search.svg b/bes_theme/.icons/bes_theme/email-search.svg deleted file mode 100644 index 6bd8965d..00000000 --- a/bes_theme/.icons/bes_theme/email-search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-send-outline.svg b/bes_theme/.icons/bes_theme/email-send-outline.svg deleted file mode 100644 index b3a15397..00000000 --- a/bes_theme/.icons/bes_theme/email-send-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-send.svg b/bes_theme/.icons/bes_theme/email-send.svg deleted file mode 100644 index a486cb83..00000000 --- a/bes_theme/.icons/bes_theme/email-send.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-sync-outline.svg b/bes_theme/.icons/bes_theme/email-sync-outline.svg deleted file mode 100644 index 49d7f6fd..00000000 --- a/bes_theme/.icons/bes_theme/email-sync-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-sync.svg b/bes_theme/.icons/bes_theme/email-sync.svg deleted file mode 100644 index eae59681..00000000 --- a/bes_theme/.icons/bes_theme/email-sync.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email-variant.svg b/bes_theme/.icons/bes_theme/email-variant.svg deleted file mode 100644 index 35ecdf5a..00000000 --- a/bes_theme/.icons/bes_theme/email-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/email.svg b/bes_theme/.icons/bes_theme/email.svg deleted file mode 100644 index 628000f9..00000000 --- a/bes_theme/.icons/bes_theme/email.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ember.svg b/bes_theme/.icons/bes_theme/ember.svg deleted file mode 100644 index dbff395c..00000000 --- a/bes_theme/.icons/bes_theme/ember.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emby.svg b/bes_theme/.icons/bes_theme/emby.svg deleted file mode 100644 index c659f6fd..00000000 --- a/bes_theme/.icons/bes_theme/emby.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-angry-outline.svg b/bes_theme/.icons/bes_theme/emoticon-angry-outline.svg deleted file mode 100644 index 054e90aa..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-angry-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-angry.svg b/bes_theme/.icons/bes_theme/emoticon-angry.svg deleted file mode 100644 index b31e7c65..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-angry.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-confused-outline.svg b/bes_theme/.icons/bes_theme/emoticon-confused-outline.svg deleted file mode 100644 index e694b758..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-confused-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-confused.svg b/bes_theme/.icons/bes_theme/emoticon-confused.svg deleted file mode 100644 index 51735a5f..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-confused.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-cool-outline.svg b/bes_theme/.icons/bes_theme/emoticon-cool-outline.svg deleted file mode 100644 index e8a3ee6c..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-cool-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-cool.svg b/bes_theme/.icons/bes_theme/emoticon-cool.svg deleted file mode 100644 index 7065baf9..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-cool.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-cry-outline.svg b/bes_theme/.icons/bes_theme/emoticon-cry-outline.svg deleted file mode 100644 index 215fc82b..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-cry-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-cry.svg b/bes_theme/.icons/bes_theme/emoticon-cry.svg deleted file mode 100644 index 2b8f0ad5..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-cry.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-dead-outline.svg b/bes_theme/.icons/bes_theme/emoticon-dead-outline.svg deleted file mode 100644 index 77f41090..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-dead-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-dead.svg b/bes_theme/.icons/bes_theme/emoticon-dead.svg deleted file mode 100644 index 862b067b..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-dead.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-devil-outline.svg b/bes_theme/.icons/bes_theme/emoticon-devil-outline.svg deleted file mode 100644 index 324517fd..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-devil-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-devil.svg b/bes_theme/.icons/bes_theme/emoticon-devil.svg deleted file mode 100644 index e3a26441..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-devil.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-excited-outline.svg b/bes_theme/.icons/bes_theme/emoticon-excited-outline.svg deleted file mode 100644 index 9a78e122..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-excited-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-excited.svg b/bes_theme/.icons/bes_theme/emoticon-excited.svg deleted file mode 100644 index 13a7ce7c..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-excited.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-frown-outline.svg b/bes_theme/.icons/bes_theme/emoticon-frown-outline.svg deleted file mode 100644 index 34ca565c..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-frown-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-frown.svg b/bes_theme/.icons/bes_theme/emoticon-frown.svg deleted file mode 100644 index cb0c9bef..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-frown.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-happy-outline.svg b/bes_theme/.icons/bes_theme/emoticon-happy-outline.svg deleted file mode 100644 index 270da425..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-happy-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-happy.svg b/bes_theme/.icons/bes_theme/emoticon-happy.svg deleted file mode 100644 index 3c503dea..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-happy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-kiss-outline.svg b/bes_theme/.icons/bes_theme/emoticon-kiss-outline.svg deleted file mode 100644 index e31e00b8..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-kiss-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-kiss.svg b/bes_theme/.icons/bes_theme/emoticon-kiss.svg deleted file mode 100644 index 48b1e3bf..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-kiss.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-lol-outline.svg b/bes_theme/.icons/bes_theme/emoticon-lol-outline.svg deleted file mode 100644 index c0b7e173..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-lol-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-lol.svg b/bes_theme/.icons/bes_theme/emoticon-lol.svg deleted file mode 100644 index fae7311d..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-lol.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-neutral-outline.svg b/bes_theme/.icons/bes_theme/emoticon-neutral-outline.svg deleted file mode 100644 index f9c426b1..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-neutral-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-neutral.svg b/bes_theme/.icons/bes_theme/emoticon-neutral.svg deleted file mode 100644 index 01977baa..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-neutral.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-outline.svg b/bes_theme/.icons/bes_theme/emoticon-outline.svg deleted file mode 100644 index 2e036733..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-poop-outline.svg b/bes_theme/.icons/bes_theme/emoticon-poop-outline.svg deleted file mode 100644 index da085850..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-poop-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-poop.svg b/bes_theme/.icons/bes_theme/emoticon-poop.svg deleted file mode 100644 index e3de4d8a..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-poop.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-sad-outline.svg b/bes_theme/.icons/bes_theme/emoticon-sad-outline.svg deleted file mode 100644 index 76fd9ce6..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-sad-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-sad.svg b/bes_theme/.icons/bes_theme/emoticon-sad.svg deleted file mode 100644 index 49da8f49..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-sad.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-sick-outline.svg b/bes_theme/.icons/bes_theme/emoticon-sick-outline.svg deleted file mode 100644 index c9ba9164..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-sick-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-sick.svg b/bes_theme/.icons/bes_theme/emoticon-sick.svg deleted file mode 100644 index 9f2778d8..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-sick.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-tongue-outline.svg b/bes_theme/.icons/bes_theme/emoticon-tongue-outline.svg deleted file mode 100644 index 177441c8..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-tongue-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-tongue.svg b/bes_theme/.icons/bes_theme/emoticon-tongue.svg deleted file mode 100644 index 3c6423b6..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-tongue.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-wink-outline.svg b/bes_theme/.icons/bes_theme/emoticon-wink-outline.svg deleted file mode 100644 index 9aec14ad..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-wink-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon-wink.svg b/bes_theme/.icons/bes_theme/emoticon-wink.svg deleted file mode 100644 index 9517427b..00000000 --- a/bes_theme/.icons/bes_theme/emoticon-wink.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/emoticon.svg b/bes_theme/.icons/bes_theme/emoticon.svg deleted file mode 100644 index 40705857..00000000 --- a/bes_theme/.icons/bes_theme/emoticon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/engine-off-outline.svg b/bes_theme/.icons/bes_theme/engine-off-outline.svg deleted file mode 100644 index 3a98e877..00000000 --- a/bes_theme/.icons/bes_theme/engine-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/engine-off.svg b/bes_theme/.icons/bes_theme/engine-off.svg deleted file mode 100644 index c5018dfd..00000000 --- a/bes_theme/.icons/bes_theme/engine-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/engine-outline.svg b/bes_theme/.icons/bes_theme/engine-outline.svg deleted file mode 100644 index a844b725..00000000 --- a/bes_theme/.icons/bes_theme/engine-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/engine.svg b/bes_theme/.icons/bes_theme/engine.svg deleted file mode 100644 index e84116f8..00000000 --- a/bes_theme/.icons/bes_theme/engine.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/epsilon.svg b/bes_theme/.icons/bes_theme/epsilon.svg deleted file mode 100644 index ed870826..00000000 --- a/bes_theme/.icons/bes_theme/epsilon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/equal-box.svg b/bes_theme/.icons/bes_theme/equal-box.svg deleted file mode 100644 index 896ed4ca..00000000 --- a/bes_theme/.icons/bes_theme/equal-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/equal.svg b/bes_theme/.icons/bes_theme/equal.svg deleted file mode 100644 index ddc31064..00000000 --- a/bes_theme/.icons/bes_theme/equal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/equalizer-outline.svg b/bes_theme/.icons/bes_theme/equalizer-outline.svg deleted file mode 100644 index 8da8d0a2..00000000 --- a/bes_theme/.icons/bes_theme/equalizer-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/equalizer.svg b/bes_theme/.icons/bes_theme/equalizer.svg deleted file mode 100644 index 4d5b9a8d..00000000 --- a/bes_theme/.icons/bes_theme/equalizer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/eraser-variant.svg b/bes_theme/.icons/bes_theme/eraser-variant.svg deleted file mode 100644 index 10fd341e..00000000 --- a/bes_theme/.icons/bes_theme/eraser-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/eraser.svg b/bes_theme/.icons/bes_theme/eraser.svg deleted file mode 100644 index 14004b1a..00000000 --- a/bes_theme/.icons/bes_theme/eraser.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/escalator-box.svg b/bes_theme/.icons/bes_theme/escalator-box.svg deleted file mode 100644 index 5f1d68c0..00000000 --- a/bes_theme/.icons/bes_theme/escalator-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/escalator-down.svg b/bes_theme/.icons/bes_theme/escalator-down.svg deleted file mode 100644 index 18878725..00000000 --- a/bes_theme/.icons/bes_theme/escalator-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/escalator-up.svg b/bes_theme/.icons/bes_theme/escalator-up.svg deleted file mode 100644 index fe6f0ec2..00000000 --- a/bes_theme/.icons/bes_theme/escalator-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/escalator.svg b/bes_theme/.icons/bes_theme/escalator.svg deleted file mode 100644 index 1467714f..00000000 --- a/bes_theme/.icons/bes_theme/escalator.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/eslint.svg b/bes_theme/.icons/bes_theme/eslint.svg deleted file mode 100644 index 9f6d0705..00000000 --- a/bes_theme/.icons/bes_theme/eslint.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/et.svg b/bes_theme/.icons/bes_theme/et.svg deleted file mode 100644 index 1174a798..00000000 --- a/bes_theme/.icons/bes_theme/et.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ethereum.svg b/bes_theme/.icons/bes_theme/ethereum.svg deleted file mode 100644 index 6552e41a..00000000 --- a/bes_theme/.icons/bes_theme/ethereum.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ethernet-cable-off.svg b/bes_theme/.icons/bes_theme/ethernet-cable-off.svg deleted file mode 100644 index fd615e1f..00000000 --- a/bes_theme/.icons/bes_theme/ethernet-cable-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ethernet-cable.svg b/bes_theme/.icons/bes_theme/ethernet-cable.svg deleted file mode 100644 index 4f58688c..00000000 --- a/bes_theme/.icons/bes_theme/ethernet-cable.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ethernet.svg b/bes_theme/.icons/bes_theme/ethernet.svg deleted file mode 100644 index da2c8178..00000000 --- a/bes_theme/.icons/bes_theme/ethernet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ev-plug-ccs1.svg b/bes_theme/.icons/bes_theme/ev-plug-ccs1.svg deleted file mode 100644 index bca6229d..00000000 --- a/bes_theme/.icons/bes_theme/ev-plug-ccs1.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ev-plug-ccs2.svg b/bes_theme/.icons/bes_theme/ev-plug-ccs2.svg deleted file mode 100644 index c7dce4c4..00000000 --- a/bes_theme/.icons/bes_theme/ev-plug-ccs2.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ev-plug-chademo.svg b/bes_theme/.icons/bes_theme/ev-plug-chademo.svg deleted file mode 100644 index a3c987fa..00000000 --- a/bes_theme/.icons/bes_theme/ev-plug-chademo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ev-plug-tesla.svg b/bes_theme/.icons/bes_theme/ev-plug-tesla.svg deleted file mode 100644 index 0155f0d4..00000000 --- a/bes_theme/.icons/bes_theme/ev-plug-tesla.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ev-plug-type1.svg b/bes_theme/.icons/bes_theme/ev-plug-type1.svg deleted file mode 100644 index b26385cc..00000000 --- a/bes_theme/.icons/bes_theme/ev-plug-type1.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ev-plug-type2.svg b/bes_theme/.icons/bes_theme/ev-plug-type2.svg deleted file mode 100644 index f3d14f33..00000000 --- a/bes_theme/.icons/bes_theme/ev-plug-type2.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ev-station.svg b/bes_theme/.icons/bes_theme/ev-station.svg deleted file mode 100644 index 051b89bc..00000000 --- a/bes_theme/.icons/bes_theme/ev-station.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/evernote.svg b/bes_theme/.icons/bes_theme/evernote.svg deleted file mode 100644 index d554945c..00000000 --- a/bes_theme/.icons/bes_theme/evernote.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/excavator.svg b/bes_theme/.icons/bes_theme/excavator.svg deleted file mode 100644 index 9d38cadb..00000000 --- a/bes_theme/.icons/bes_theme/excavator.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/exclamation-thick.svg b/bes_theme/.icons/bes_theme/exclamation-thick.svg deleted file mode 100644 index 9dcfb094..00000000 --- a/bes_theme/.icons/bes_theme/exclamation-thick.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/exclamation.svg b/bes_theme/.icons/bes_theme/exclamation.svg deleted file mode 100644 index 8288f1bb..00000000 --- a/bes_theme/.icons/bes_theme/exclamation.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/exit-run.svg b/bes_theme/.icons/bes_theme/exit-run.svg deleted file mode 100644 index e3d26f2b..00000000 --- a/bes_theme/.icons/bes_theme/exit-run.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/exit-to-app.svg b/bes_theme/.icons/bes_theme/exit-to-app.svg deleted file mode 100644 index a444ddca..00000000 --- a/bes_theme/.icons/bes_theme/exit-to-app.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/expand-all-outline.svg b/bes_theme/.icons/bes_theme/expand-all-outline.svg deleted file mode 100644 index 524b9d31..00000000 --- a/bes_theme/.icons/bes_theme/expand-all-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/expand-all.svg b/bes_theme/.icons/bes_theme/expand-all.svg deleted file mode 100644 index 47526b49..00000000 --- a/bes_theme/.icons/bes_theme/expand-all.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/expansion-card-variant.svg b/bes_theme/.icons/bes_theme/expansion-card-variant.svg deleted file mode 100644 index eb006bc3..00000000 --- a/bes_theme/.icons/bes_theme/expansion-card-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/expansion-card.svg b/bes_theme/.icons/bes_theme/expansion-card.svg deleted file mode 100644 index f64ad4a5..00000000 --- a/bes_theme/.icons/bes_theme/expansion-card.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/exponent-box.svg b/bes_theme/.icons/bes_theme/exponent-box.svg deleted file mode 100644 index 760fe2b5..00000000 --- a/bes_theme/.icons/bes_theme/exponent-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/exponent.svg b/bes_theme/.icons/bes_theme/exponent.svg deleted file mode 100644 index 8c7d97ca..00000000 --- a/bes_theme/.icons/bes_theme/exponent.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/export-variant.svg b/bes_theme/.icons/bes_theme/export-variant.svg deleted file mode 100644 index 59e6b98e..00000000 --- a/bes_theme/.icons/bes_theme/export-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/export.svg b/bes_theme/.icons/bes_theme/export.svg deleted file mode 100644 index e47bdca3..00000000 --- a/bes_theme/.icons/bes_theme/export.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/eye-check-outline.svg b/bes_theme/.icons/bes_theme/eye-check-outline.svg deleted file mode 100644 index f67131eb..00000000 --- a/bes_theme/.icons/bes_theme/eye-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/eye-check.svg b/bes_theme/.icons/bes_theme/eye-check.svg deleted file mode 100644 index 54d26bb4..00000000 --- a/bes_theme/.icons/bes_theme/eye-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/eye-circle-outline.svg b/bes_theme/.icons/bes_theme/eye-circle-outline.svg deleted file mode 100644 index 64a2fedf..00000000 --- a/bes_theme/.icons/bes_theme/eye-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/eye-circle.svg b/bes_theme/.icons/bes_theme/eye-circle.svg deleted file mode 100644 index 1138def6..00000000 --- a/bes_theme/.icons/bes_theme/eye-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/eye-minus-outline.svg b/bes_theme/.icons/bes_theme/eye-minus-outline.svg deleted file mode 100644 index 988728bf..00000000 --- a/bes_theme/.icons/bes_theme/eye-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/eye-minus.svg b/bes_theme/.icons/bes_theme/eye-minus.svg deleted file mode 100644 index 37d29c53..00000000 --- a/bes_theme/.icons/bes_theme/eye-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/eye-off-outline.svg b/bes_theme/.icons/bes_theme/eye-off-outline.svg deleted file mode 100644 index 26da2302..00000000 --- a/bes_theme/.icons/bes_theme/eye-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/eye-off.svg b/bes_theme/.icons/bes_theme/eye-off.svg deleted file mode 100644 index cfa21959..00000000 --- a/bes_theme/.icons/bes_theme/eye-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/eye-outline.svg b/bes_theme/.icons/bes_theme/eye-outline.svg deleted file mode 100644 index 5060b82c..00000000 --- a/bes_theme/.icons/bes_theme/eye-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/eye-plus-outline.svg b/bes_theme/.icons/bes_theme/eye-plus-outline.svg deleted file mode 100644 index 7ebaa291..00000000 --- a/bes_theme/.icons/bes_theme/eye-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/eye-plus.svg b/bes_theme/.icons/bes_theme/eye-plus.svg deleted file mode 100644 index ed8ad97a..00000000 --- a/bes_theme/.icons/bes_theme/eye-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/eye-remove-outline.svg b/bes_theme/.icons/bes_theme/eye-remove-outline.svg deleted file mode 100644 index 2694c1ae..00000000 --- a/bes_theme/.icons/bes_theme/eye-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/eye-remove.svg b/bes_theme/.icons/bes_theme/eye-remove.svg deleted file mode 100644 index ed14347a..00000000 --- a/bes_theme/.icons/bes_theme/eye-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/eye-settings-outline.svg b/bes_theme/.icons/bes_theme/eye-settings-outline.svg deleted file mode 100644 index 11a4f713..00000000 --- a/bes_theme/.icons/bes_theme/eye-settings-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/eye-settings.svg b/bes_theme/.icons/bes_theme/eye-settings.svg deleted file mode 100644 index f7b7b563..00000000 --- a/bes_theme/.icons/bes_theme/eye-settings.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/eye.svg b/bes_theme/.icons/bes_theme/eye.svg deleted file mode 100644 index 1a98dfe1..00000000 --- a/bes_theme/.icons/bes_theme/eye.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/eyedropper-minus.svg b/bes_theme/.icons/bes_theme/eyedropper-minus.svg deleted file mode 100644 index b5758f25..00000000 --- a/bes_theme/.icons/bes_theme/eyedropper-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/eyedropper-off.svg b/bes_theme/.icons/bes_theme/eyedropper-off.svg deleted file mode 100644 index 00a99a1c..00000000 --- a/bes_theme/.icons/bes_theme/eyedropper-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/eyedropper-plus.svg b/bes_theme/.icons/bes_theme/eyedropper-plus.svg deleted file mode 100644 index ca6e4b7d..00000000 --- a/bes_theme/.icons/bes_theme/eyedropper-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/eyedropper-remove.svg b/bes_theme/.icons/bes_theme/eyedropper-remove.svg deleted file mode 100644 index aee484a7..00000000 --- a/bes_theme/.icons/bes_theme/eyedropper-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/eyedropper-variant.svg b/bes_theme/.icons/bes_theme/eyedropper-variant.svg deleted file mode 100644 index 5e7853b1..00000000 --- a/bes_theme/.icons/bes_theme/eyedropper-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/eyedropper.svg b/bes_theme/.icons/bes_theme/eyedropper.svg deleted file mode 100644 index 1ae355d8..00000000 --- a/bes_theme/.icons/bes_theme/eyedropper.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/face-agent.svg b/bes_theme/.icons/bes_theme/face-agent.svg deleted file mode 100644 index bdea1789..00000000 --- a/bes_theme/.icons/bes_theme/face-agent.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/face-mask-outline.svg b/bes_theme/.icons/bes_theme/face-mask-outline.svg deleted file mode 100644 index 67f511a2..00000000 --- a/bes_theme/.icons/bes_theme/face-mask-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/face-mask.svg b/bes_theme/.icons/bes_theme/face-mask.svg deleted file mode 100644 index 336ede3c..00000000 --- a/bes_theme/.icons/bes_theme/face-mask.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/face-outline.svg b/bes_theme/.icons/bes_theme/face-outline.svg deleted file mode 100644 index f5e05622..00000000 --- a/bes_theme/.icons/bes_theme/face-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/face-profile-woman.svg b/bes_theme/.icons/bes_theme/face-profile-woman.svg deleted file mode 100644 index 4a40abd2..00000000 --- a/bes_theme/.icons/bes_theme/face-profile-woman.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/face-profile.svg b/bes_theme/.icons/bes_theme/face-profile.svg deleted file mode 100644 index e47d60db..00000000 --- a/bes_theme/.icons/bes_theme/face-profile.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/face-recognition.svg b/bes_theme/.icons/bes_theme/face-recognition.svg deleted file mode 100644 index 9652ae56..00000000 --- a/bes_theme/.icons/bes_theme/face-recognition.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/face-shimmer-outline.svg b/bes_theme/.icons/bes_theme/face-shimmer-outline.svg deleted file mode 100644 index 21de66e1..00000000 --- a/bes_theme/.icons/bes_theme/face-shimmer-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/face-shimmer.svg b/bes_theme/.icons/bes_theme/face-shimmer.svg deleted file mode 100644 index 270fe055..00000000 --- a/bes_theme/.icons/bes_theme/face-shimmer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/face-woman-outline.svg b/bes_theme/.icons/bes_theme/face-woman-outline.svg deleted file mode 100644 index de86cb7c..00000000 --- a/bes_theme/.icons/bes_theme/face-woman-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/face-woman-shimmer-outline.svg b/bes_theme/.icons/bes_theme/face-woman-shimmer-outline.svg deleted file mode 100644 index f80c33f1..00000000 --- a/bes_theme/.icons/bes_theme/face-woman-shimmer-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/face-woman-shimmer.svg b/bes_theme/.icons/bes_theme/face-woman-shimmer.svg deleted file mode 100644 index eedd571f..00000000 --- a/bes_theme/.icons/bes_theme/face-woman-shimmer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/face-woman.svg b/bes_theme/.icons/bes_theme/face-woman.svg deleted file mode 100644 index 03a313d7..00000000 --- a/bes_theme/.icons/bes_theme/face-woman.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/face.svg b/bes_theme/.icons/bes_theme/face.svg deleted file mode 100644 index 1181b114..00000000 --- a/bes_theme/.icons/bes_theme/face.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/facebook-gaming.svg b/bes_theme/.icons/bes_theme/facebook-gaming.svg deleted file mode 100644 index 63a44441..00000000 --- a/bes_theme/.icons/bes_theme/facebook-gaming.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/facebook-messenger.svg b/bes_theme/.icons/bes_theme/facebook-messenger.svg deleted file mode 100644 index 0c221451..00000000 --- a/bes_theme/.icons/bes_theme/facebook-messenger.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/facebook-workplace.svg b/bes_theme/.icons/bes_theme/facebook-workplace.svg deleted file mode 100644 index dddcf90b..00000000 --- a/bes_theme/.icons/bes_theme/facebook-workplace.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/facebook.svg b/bes_theme/.icons/bes_theme/facebook.svg deleted file mode 100644 index 3003a605..00000000 --- a/bes_theme/.icons/bes_theme/facebook.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/factory.svg b/bes_theme/.icons/bes_theme/factory.svg deleted file mode 100644 index a455ca64..00000000 --- a/bes_theme/.icons/bes_theme/factory.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/family-tree.svg b/bes_theme/.icons/bes_theme/family-tree.svg deleted file mode 100644 index 82153194..00000000 --- a/bes_theme/.icons/bes_theme/family-tree.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fan-alert.svg b/bes_theme/.icons/bes_theme/fan-alert.svg deleted file mode 100644 index bdc1e2d1..00000000 --- a/bes_theme/.icons/bes_theme/fan-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fan-auto.svg b/bes_theme/.icons/bes_theme/fan-auto.svg deleted file mode 100644 index 62c382c9..00000000 --- a/bes_theme/.icons/bes_theme/fan-auto.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fan-chevron-down.svg b/bes_theme/.icons/bes_theme/fan-chevron-down.svg deleted file mode 100644 index 3d10562c..00000000 --- a/bes_theme/.icons/bes_theme/fan-chevron-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fan-chevron-up.svg b/bes_theme/.icons/bes_theme/fan-chevron-up.svg deleted file mode 100644 index 398ee4ed..00000000 --- a/bes_theme/.icons/bes_theme/fan-chevron-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fan-minus.svg b/bes_theme/.icons/bes_theme/fan-minus.svg deleted file mode 100644 index 494cdb7a..00000000 --- a/bes_theme/.icons/bes_theme/fan-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fan-off.svg b/bes_theme/.icons/bes_theme/fan-off.svg deleted file mode 100644 index ce5da5d6..00000000 --- a/bes_theme/.icons/bes_theme/fan-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fan-plus.svg b/bes_theme/.icons/bes_theme/fan-plus.svg deleted file mode 100644 index 45857af7..00000000 --- a/bes_theme/.icons/bes_theme/fan-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fan-remove.svg b/bes_theme/.icons/bes_theme/fan-remove.svg deleted file mode 100644 index 59c7e082..00000000 --- a/bes_theme/.icons/bes_theme/fan-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fan-speed-1.svg b/bes_theme/.icons/bes_theme/fan-speed-1.svg deleted file mode 100644 index b0530322..00000000 --- a/bes_theme/.icons/bes_theme/fan-speed-1.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fan-speed-2.svg b/bes_theme/.icons/bes_theme/fan-speed-2.svg deleted file mode 100644 index 10fd31cd..00000000 --- a/bes_theme/.icons/bes_theme/fan-speed-2.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fan-speed-3.svg b/bes_theme/.icons/bes_theme/fan-speed-3.svg deleted file mode 100644 index 2313e35d..00000000 --- a/bes_theme/.icons/bes_theme/fan-speed-3.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fan.svg b/bes_theme/.icons/bes_theme/fan.svg deleted file mode 100644 index 30ac2749..00000000 --- a/bes_theme/.icons/bes_theme/fan.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fast-forward-10.svg b/bes_theme/.icons/bes_theme/fast-forward-10.svg deleted file mode 100644 index b63b9b6a..00000000 --- a/bes_theme/.icons/bes_theme/fast-forward-10.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fast-forward-30.svg b/bes_theme/.icons/bes_theme/fast-forward-30.svg deleted file mode 100644 index 13656a74..00000000 --- a/bes_theme/.icons/bes_theme/fast-forward-30.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fast-forward-5.svg b/bes_theme/.icons/bes_theme/fast-forward-5.svg deleted file mode 100644 index 4bc6b13b..00000000 --- a/bes_theme/.icons/bes_theme/fast-forward-5.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fast-forward-60.svg b/bes_theme/.icons/bes_theme/fast-forward-60.svg deleted file mode 100644 index ca2171ba..00000000 --- a/bes_theme/.icons/bes_theme/fast-forward-60.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fast-forward-outline.svg b/bes_theme/.icons/bes_theme/fast-forward-outline.svg deleted file mode 100644 index 8d3b06ea..00000000 --- a/bes_theme/.icons/bes_theme/fast-forward-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fast-forward.svg b/bes_theme/.icons/bes_theme/fast-forward.svg deleted file mode 100644 index 75f45314..00000000 --- a/bes_theme/.icons/bes_theme/fast-forward.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fax.svg b/bes_theme/.icons/bes_theme/fax.svg deleted file mode 100644 index ce819c96..00000000 --- a/bes_theme/.icons/bes_theme/fax.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/feather.svg b/bes_theme/.icons/bes_theme/feather.svg deleted file mode 100644 index b86c5ba1..00000000 --- a/bes_theme/.icons/bes_theme/feather.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/feature-search-outline.svg b/bes_theme/.icons/bes_theme/feature-search-outline.svg deleted file mode 100644 index 270e29a5..00000000 --- a/bes_theme/.icons/bes_theme/feature-search-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/feature-search.svg b/bes_theme/.icons/bes_theme/feature-search.svg deleted file mode 100644 index 3e07ec05..00000000 --- a/bes_theme/.icons/bes_theme/feature-search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fedora.svg b/bes_theme/.icons/bes_theme/fedora.svg deleted file mode 100644 index ecbb3fb0..00000000 --- a/bes_theme/.icons/bes_theme/fedora.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fencing.svg b/bes_theme/.icons/bes_theme/fencing.svg deleted file mode 100644 index e82cb1a5..00000000 --- a/bes_theme/.icons/bes_theme/fencing.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ferris-wheel.svg b/bes_theme/.icons/bes_theme/ferris-wheel.svg deleted file mode 100644 index 67d60964..00000000 --- a/bes_theme/.icons/bes_theme/ferris-wheel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ferry.svg b/bes_theme/.icons/bes_theme/ferry.svg deleted file mode 100644 index bae1767c..00000000 --- a/bes_theme/.icons/bes_theme/ferry.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-account-outline.svg b/bes_theme/.icons/bes_theme/file-account-outline.svg deleted file mode 100644 index d174ef0d..00000000 --- a/bes_theme/.icons/bes_theme/file-account-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-account.svg b/bes_theme/.icons/bes_theme/file-account.svg deleted file mode 100644 index 26de7c51..00000000 --- a/bes_theme/.icons/bes_theme/file-account.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-alert-outline.svg b/bes_theme/.icons/bes_theme/file-alert-outline.svg deleted file mode 100644 index 8f78860a..00000000 --- a/bes_theme/.icons/bes_theme/file-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-alert.svg b/bes_theme/.icons/bes_theme/file-alert.svg deleted file mode 100644 index f3e0cb9a..00000000 --- a/bes_theme/.icons/bes_theme/file-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-cabinet.svg b/bes_theme/.icons/bes_theme/file-cabinet.svg deleted file mode 100644 index 8be3cdba..00000000 --- a/bes_theme/.icons/bes_theme/file-cabinet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-cad-box.svg b/bes_theme/.icons/bes_theme/file-cad-box.svg deleted file mode 100644 index 99012c21..00000000 --- a/bes_theme/.icons/bes_theme/file-cad-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-cad.svg b/bes_theme/.icons/bes_theme/file-cad.svg deleted file mode 100644 index 66d129b3..00000000 --- a/bes_theme/.icons/bes_theme/file-cad.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-cancel-outline.svg b/bes_theme/.icons/bes_theme/file-cancel-outline.svg deleted file mode 100644 index 093a90a5..00000000 --- a/bes_theme/.icons/bes_theme/file-cancel-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-cancel.svg b/bes_theme/.icons/bes_theme/file-cancel.svg deleted file mode 100644 index d5cd7a24..00000000 --- a/bes_theme/.icons/bes_theme/file-cancel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-certificate-outline.svg b/bes_theme/.icons/bes_theme/file-certificate-outline.svg deleted file mode 100644 index e10ea9df..00000000 --- a/bes_theme/.icons/bes_theme/file-certificate-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-certificate.svg b/bes_theme/.icons/bes_theme/file-certificate.svg deleted file mode 100644 index b15793db..00000000 --- a/bes_theme/.icons/bes_theme/file-certificate.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-chart-outline.svg b/bes_theme/.icons/bes_theme/file-chart-outline.svg deleted file mode 100644 index 38e3caf3..00000000 --- a/bes_theme/.icons/bes_theme/file-chart-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-chart.svg b/bes_theme/.icons/bes_theme/file-chart.svg deleted file mode 100644 index 675b1d4a..00000000 --- a/bes_theme/.icons/bes_theme/file-chart.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-check-outline.svg b/bes_theme/.icons/bes_theme/file-check-outline.svg deleted file mode 100644 index e8db846a..00000000 --- a/bes_theme/.icons/bes_theme/file-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-check.svg b/bes_theme/.icons/bes_theme/file-check.svg deleted file mode 100644 index 3a035423..00000000 --- a/bes_theme/.icons/bes_theme/file-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-clock-outline.svg b/bes_theme/.icons/bes_theme/file-clock-outline.svg deleted file mode 100644 index b86d6028..00000000 --- a/bes_theme/.icons/bes_theme/file-clock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-clock.svg b/bes_theme/.icons/bes_theme/file-clock.svg deleted file mode 100644 index ed080b63..00000000 --- a/bes_theme/.icons/bes_theme/file-clock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-cloud-outline.svg b/bes_theme/.icons/bes_theme/file-cloud-outline.svg deleted file mode 100644 index 075308d2..00000000 --- a/bes_theme/.icons/bes_theme/file-cloud-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-cloud.svg b/bes_theme/.icons/bes_theme/file-cloud.svg deleted file mode 100644 index c8289f12..00000000 --- a/bes_theme/.icons/bes_theme/file-cloud.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-code-outline.svg b/bes_theme/.icons/bes_theme/file-code-outline.svg deleted file mode 100644 index 51c673e9..00000000 --- a/bes_theme/.icons/bes_theme/file-code-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-code.svg b/bes_theme/.icons/bes_theme/file-code.svg deleted file mode 100644 index 340edbde..00000000 --- a/bes_theme/.icons/bes_theme/file-code.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-cog-outline.svg b/bes_theme/.icons/bes_theme/file-cog-outline.svg deleted file mode 100644 index e3b8d3eb..00000000 --- a/bes_theme/.icons/bes_theme/file-cog-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-cog.svg b/bes_theme/.icons/bes_theme/file-cog.svg deleted file mode 100644 index 7e293584..00000000 --- a/bes_theme/.icons/bes_theme/file-cog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-compare.svg b/bes_theme/.icons/bes_theme/file-compare.svg deleted file mode 100644 index 66d454f7..00000000 --- a/bes_theme/.icons/bes_theme/file-compare.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-delimited-outline.svg b/bes_theme/.icons/bes_theme/file-delimited-outline.svg deleted file mode 100644 index 76612d5c..00000000 --- a/bes_theme/.icons/bes_theme/file-delimited-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-delimited.svg b/bes_theme/.icons/bes_theme/file-delimited.svg deleted file mode 100644 index 4afb8a38..00000000 --- a/bes_theme/.icons/bes_theme/file-delimited.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-document-edit-outline.svg b/bes_theme/.icons/bes_theme/file-document-edit-outline.svg deleted file mode 100644 index f302d5c5..00000000 --- a/bes_theme/.icons/bes_theme/file-document-edit-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-document-edit.svg b/bes_theme/.icons/bes_theme/file-document-edit.svg deleted file mode 100644 index f0c271c7..00000000 --- a/bes_theme/.icons/bes_theme/file-document-edit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-document-multiple-outline.svg b/bes_theme/.icons/bes_theme/file-document-multiple-outline.svg deleted file mode 100644 index 1f1a87b3..00000000 --- a/bes_theme/.icons/bes_theme/file-document-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-document-multiple.svg b/bes_theme/.icons/bes_theme/file-document-multiple.svg deleted file mode 100644 index 2b2569b7..00000000 --- a/bes_theme/.icons/bes_theme/file-document-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-document-outline.svg b/bes_theme/.icons/bes_theme/file-document-outline.svg deleted file mode 100644 index fad26459..00000000 --- a/bes_theme/.icons/bes_theme/file-document-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-document.svg b/bes_theme/.icons/bes_theme/file-document.svg deleted file mode 100644 index 04232349..00000000 --- a/bes_theme/.icons/bes_theme/file-document.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-download-outline.svg b/bes_theme/.icons/bes_theme/file-download-outline.svg deleted file mode 100644 index da203170..00000000 --- a/bes_theme/.icons/bes_theme/file-download-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-download.svg b/bes_theme/.icons/bes_theme/file-download.svg deleted file mode 100644 index c75996e5..00000000 --- a/bes_theme/.icons/bes_theme/file-download.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-edit-outline.svg b/bes_theme/.icons/bes_theme/file-edit-outline.svg deleted file mode 100644 index fdf3ce90..00000000 --- a/bes_theme/.icons/bes_theme/file-edit-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-edit.svg b/bes_theme/.icons/bes_theme/file-edit.svg deleted file mode 100644 index 3846090a..00000000 --- a/bes_theme/.icons/bes_theme/file-edit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-excel-box-outline.svg b/bes_theme/.icons/bes_theme/file-excel-box-outline.svg deleted file mode 100644 index ddb46700..00000000 --- a/bes_theme/.icons/bes_theme/file-excel-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-excel-box.svg b/bes_theme/.icons/bes_theme/file-excel-box.svg deleted file mode 100644 index fc11dfc8..00000000 --- a/bes_theme/.icons/bes_theme/file-excel-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-excel-outline.svg b/bes_theme/.icons/bes_theme/file-excel-outline.svg deleted file mode 100644 index 4d5b9d23..00000000 --- a/bes_theme/.icons/bes_theme/file-excel-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-excel.svg b/bes_theme/.icons/bes_theme/file-excel.svg deleted file mode 100644 index 63884ef8..00000000 --- a/bes_theme/.icons/bes_theme/file-excel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-export-outline.svg b/bes_theme/.icons/bes_theme/file-export-outline.svg deleted file mode 100644 index 3206bf61..00000000 --- a/bes_theme/.icons/bes_theme/file-export-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-export.svg b/bes_theme/.icons/bes_theme/file-export.svg deleted file mode 100644 index 8f77fe4c..00000000 --- a/bes_theme/.icons/bes_theme/file-export.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-eye-outline.svg b/bes_theme/.icons/bes_theme/file-eye-outline.svg deleted file mode 100644 index e020d80f..00000000 --- a/bes_theme/.icons/bes_theme/file-eye-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-eye.svg b/bes_theme/.icons/bes_theme/file-eye.svg deleted file mode 100644 index 11b96b90..00000000 --- a/bes_theme/.icons/bes_theme/file-eye.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-find-outline.svg b/bes_theme/.icons/bes_theme/file-find-outline.svg deleted file mode 100644 index 478d7fbf..00000000 --- a/bes_theme/.icons/bes_theme/file-find-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-find.svg b/bes_theme/.icons/bes_theme/file-find.svg deleted file mode 100644 index b78ba415..00000000 --- a/bes_theme/.icons/bes_theme/file-find.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-hidden.svg b/bes_theme/.icons/bes_theme/file-hidden.svg deleted file mode 100644 index 8260ccf4..00000000 --- a/bes_theme/.icons/bes_theme/file-hidden.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-image-outline.svg b/bes_theme/.icons/bes_theme/file-image-outline.svg deleted file mode 100644 index 453af8ed..00000000 --- a/bes_theme/.icons/bes_theme/file-image-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-image.svg b/bes_theme/.icons/bes_theme/file-image.svg deleted file mode 100644 index 79d63a2e..00000000 --- a/bes_theme/.icons/bes_theme/file-image.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-import-outline.svg b/bes_theme/.icons/bes_theme/file-import-outline.svg deleted file mode 100644 index 5ba62f11..00000000 --- a/bes_theme/.icons/bes_theme/file-import-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-import.svg b/bes_theme/.icons/bes_theme/file-import.svg deleted file mode 100644 index a364839d..00000000 --- a/bes_theme/.icons/bes_theme/file-import.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-key-outline.svg b/bes_theme/.icons/bes_theme/file-key-outline.svg deleted file mode 100644 index aacfdbce..00000000 --- a/bes_theme/.icons/bes_theme/file-key-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-key.svg b/bes_theme/.icons/bes_theme/file-key.svg deleted file mode 100644 index 8308beab..00000000 --- a/bes_theme/.icons/bes_theme/file-key.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-link-outline.svg b/bes_theme/.icons/bes_theme/file-link-outline.svg deleted file mode 100644 index 7af45a6f..00000000 --- a/bes_theme/.icons/bes_theme/file-link-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-link.svg b/bes_theme/.icons/bes_theme/file-link.svg deleted file mode 100644 index 20ee84c8..00000000 --- a/bes_theme/.icons/bes_theme/file-link.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-lock-outline.svg b/bes_theme/.icons/bes_theme/file-lock-outline.svg deleted file mode 100644 index 493ac84e..00000000 --- a/bes_theme/.icons/bes_theme/file-lock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-lock.svg b/bes_theme/.icons/bes_theme/file-lock.svg deleted file mode 100644 index 31a5d47a..00000000 --- a/bes_theme/.icons/bes_theme/file-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-move-outline.svg b/bes_theme/.icons/bes_theme/file-move-outline.svg deleted file mode 100644 index 15dcf826..00000000 --- a/bes_theme/.icons/bes_theme/file-move-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-move.svg b/bes_theme/.icons/bes_theme/file-move.svg deleted file mode 100644 index 6213d0f1..00000000 --- a/bes_theme/.icons/bes_theme/file-move.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-multiple-outline.svg b/bes_theme/.icons/bes_theme/file-multiple-outline.svg deleted file mode 100644 index 0b3860f0..00000000 --- a/bes_theme/.icons/bes_theme/file-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-multiple.svg b/bes_theme/.icons/bes_theme/file-multiple.svg deleted file mode 100644 index 3ba6b33b..00000000 --- a/bes_theme/.icons/bes_theme/file-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-music-outline.svg b/bes_theme/.icons/bes_theme/file-music-outline.svg deleted file mode 100644 index 308f76bb..00000000 --- a/bes_theme/.icons/bes_theme/file-music-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-music.svg b/bes_theme/.icons/bes_theme/file-music.svg deleted file mode 100644 index fee7985d..00000000 --- a/bes_theme/.icons/bes_theme/file-music.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-outline.svg b/bes_theme/.icons/bes_theme/file-outline.svg deleted file mode 100644 index 8b389244..00000000 --- a/bes_theme/.icons/bes_theme/file-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-pdf-box-outline.svg b/bes_theme/.icons/bes_theme/file-pdf-box-outline.svg deleted file mode 100644 index 3da5ad50..00000000 --- a/bes_theme/.icons/bes_theme/file-pdf-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-pdf-box.svg b/bes_theme/.icons/bes_theme/file-pdf-box.svg deleted file mode 100644 index 01a3b89c..00000000 --- a/bes_theme/.icons/bes_theme/file-pdf-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-pdf-outline.svg b/bes_theme/.icons/bes_theme/file-pdf-outline.svg deleted file mode 100644 index 617fb32f..00000000 --- a/bes_theme/.icons/bes_theme/file-pdf-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-pdf.svg b/bes_theme/.icons/bes_theme/file-pdf.svg deleted file mode 100644 index 2c6baafa..00000000 --- a/bes_theme/.icons/bes_theme/file-pdf.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-percent-outline.svg b/bes_theme/.icons/bes_theme/file-percent-outline.svg deleted file mode 100644 index 4391b6d7..00000000 --- a/bes_theme/.icons/bes_theme/file-percent-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-percent.svg b/bes_theme/.icons/bes_theme/file-percent.svg deleted file mode 100644 index 94ee572a..00000000 --- a/bes_theme/.icons/bes_theme/file-percent.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-phone-outline.svg b/bes_theme/.icons/bes_theme/file-phone-outline.svg deleted file mode 100644 index f6a96025..00000000 --- a/bes_theme/.icons/bes_theme/file-phone-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-phone.svg b/bes_theme/.icons/bes_theme/file-phone.svg deleted file mode 100644 index 3ed8d716..00000000 --- a/bes_theme/.icons/bes_theme/file-phone.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-plus-outline.svg b/bes_theme/.icons/bes_theme/file-plus-outline.svg deleted file mode 100644 index f8bb0966..00000000 --- a/bes_theme/.icons/bes_theme/file-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-plus.svg b/bes_theme/.icons/bes_theme/file-plus.svg deleted file mode 100644 index a3889330..00000000 --- a/bes_theme/.icons/bes_theme/file-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-powerpoint-box-outline.svg b/bes_theme/.icons/bes_theme/file-powerpoint-box-outline.svg deleted file mode 100644 index 674a94db..00000000 --- a/bes_theme/.icons/bes_theme/file-powerpoint-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-powerpoint-box.svg b/bes_theme/.icons/bes_theme/file-powerpoint-box.svg deleted file mode 100644 index c2432103..00000000 --- a/bes_theme/.icons/bes_theme/file-powerpoint-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-powerpoint-outline.svg b/bes_theme/.icons/bes_theme/file-powerpoint-outline.svg deleted file mode 100644 index d87f38cb..00000000 --- a/bes_theme/.icons/bes_theme/file-powerpoint-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-powerpoint.svg b/bes_theme/.icons/bes_theme/file-powerpoint.svg deleted file mode 100644 index 417bf9b9..00000000 --- a/bes_theme/.icons/bes_theme/file-powerpoint.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-presentation-box.svg b/bes_theme/.icons/bes_theme/file-presentation-box.svg deleted file mode 100644 index 903f9157..00000000 --- a/bes_theme/.icons/bes_theme/file-presentation-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-question-outline.svg b/bes_theme/.icons/bes_theme/file-question-outline.svg deleted file mode 100644 index 1dc7d38b..00000000 --- a/bes_theme/.icons/bes_theme/file-question-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-question.svg b/bes_theme/.icons/bes_theme/file-question.svg deleted file mode 100644 index 75048830..00000000 --- a/bes_theme/.icons/bes_theme/file-question.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-refresh-outline.svg b/bes_theme/.icons/bes_theme/file-refresh-outline.svg deleted file mode 100644 index 4a6537b0..00000000 --- a/bes_theme/.icons/bes_theme/file-refresh-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-refresh.svg b/bes_theme/.icons/bes_theme/file-refresh.svg deleted file mode 100644 index 0c22c338..00000000 --- a/bes_theme/.icons/bes_theme/file-refresh.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-remove-outline.svg b/bes_theme/.icons/bes_theme/file-remove-outline.svg deleted file mode 100644 index c5cd22f9..00000000 --- a/bes_theme/.icons/bes_theme/file-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-remove.svg b/bes_theme/.icons/bes_theme/file-remove.svg deleted file mode 100644 index 7d7e1f13..00000000 --- a/bes_theme/.icons/bes_theme/file-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-replace-outline.svg b/bes_theme/.icons/bes_theme/file-replace-outline.svg deleted file mode 100644 index 0fa7ce09..00000000 --- a/bes_theme/.icons/bes_theme/file-replace-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-replace.svg b/bes_theme/.icons/bes_theme/file-replace.svg deleted file mode 100644 index fbeeffd4..00000000 --- a/bes_theme/.icons/bes_theme/file-replace.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-restore-outline.svg b/bes_theme/.icons/bes_theme/file-restore-outline.svg deleted file mode 100644 index 704d0a78..00000000 --- a/bes_theme/.icons/bes_theme/file-restore-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-restore.svg b/bes_theme/.icons/bes_theme/file-restore.svg deleted file mode 100644 index 92e26ebf..00000000 --- a/bes_theme/.icons/bes_theme/file-restore.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-search-outline.svg b/bes_theme/.icons/bes_theme/file-search-outline.svg deleted file mode 100644 index 9fa5b1f5..00000000 --- a/bes_theme/.icons/bes_theme/file-search-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-search.svg b/bes_theme/.icons/bes_theme/file-search.svg deleted file mode 100644 index 66e6544e..00000000 --- a/bes_theme/.icons/bes_theme/file-search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-send-outline.svg b/bes_theme/.icons/bes_theme/file-send-outline.svg deleted file mode 100644 index f634a464..00000000 --- a/bes_theme/.icons/bes_theme/file-send-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-send.svg b/bes_theme/.icons/bes_theme/file-send.svg deleted file mode 100644 index e7ab152a..00000000 --- a/bes_theme/.icons/bes_theme/file-send.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-settings-outline.svg b/bes_theme/.icons/bes_theme/file-settings-outline.svg deleted file mode 100644 index 142887a9..00000000 --- a/bes_theme/.icons/bes_theme/file-settings-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-settings.svg b/bes_theme/.icons/bes_theme/file-settings.svg deleted file mode 100644 index 02632f6a..00000000 --- a/bes_theme/.icons/bes_theme/file-settings.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-star-outline.svg b/bes_theme/.icons/bes_theme/file-star-outline.svg deleted file mode 100644 index 8f48cc49..00000000 --- a/bes_theme/.icons/bes_theme/file-star-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-star.svg b/bes_theme/.icons/bes_theme/file-star.svg deleted file mode 100644 index 46a906c9..00000000 --- a/bes_theme/.icons/bes_theme/file-star.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-swap-outline.svg b/bes_theme/.icons/bes_theme/file-swap-outline.svg deleted file mode 100644 index 99fae1ec..00000000 --- a/bes_theme/.icons/bes_theme/file-swap-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-swap.svg b/bes_theme/.icons/bes_theme/file-swap.svg deleted file mode 100644 index f2b2a1fe..00000000 --- a/bes_theme/.icons/bes_theme/file-swap.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-sync-outline.svg b/bes_theme/.icons/bes_theme/file-sync-outline.svg deleted file mode 100644 index c874f110..00000000 --- a/bes_theme/.icons/bes_theme/file-sync-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-sync.svg b/bes_theme/.icons/bes_theme/file-sync.svg deleted file mode 100644 index 798c3913..00000000 --- a/bes_theme/.icons/bes_theme/file-sync.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-table-box-multiple-outline.svg b/bes_theme/.icons/bes_theme/file-table-box-multiple-outline.svg deleted file mode 100644 index fe6d347d..00000000 --- a/bes_theme/.icons/bes_theme/file-table-box-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-table-box-multiple.svg b/bes_theme/.icons/bes_theme/file-table-box-multiple.svg deleted file mode 100644 index b3690190..00000000 --- a/bes_theme/.icons/bes_theme/file-table-box-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-table-box-outline.svg b/bes_theme/.icons/bes_theme/file-table-box-outline.svg deleted file mode 100644 index 4b25c10b..00000000 --- a/bes_theme/.icons/bes_theme/file-table-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-table-box.svg b/bes_theme/.icons/bes_theme/file-table-box.svg deleted file mode 100644 index 7c24cdf7..00000000 --- a/bes_theme/.icons/bes_theme/file-table-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-table-outline.svg b/bes_theme/.icons/bes_theme/file-table-outline.svg deleted file mode 100644 index 814b7691..00000000 --- a/bes_theme/.icons/bes_theme/file-table-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-table.svg b/bes_theme/.icons/bes_theme/file-table.svg deleted file mode 100644 index b0c1892d..00000000 --- a/bes_theme/.icons/bes_theme/file-table.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-tree-outline.svg b/bes_theme/.icons/bes_theme/file-tree-outline.svg deleted file mode 100644 index 0e15430f..00000000 --- a/bes_theme/.icons/bes_theme/file-tree-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-tree.svg b/bes_theme/.icons/bes_theme/file-tree.svg deleted file mode 100644 index c637d71f..00000000 --- a/bes_theme/.icons/bes_theme/file-tree.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-undo-outline.svg b/bes_theme/.icons/bes_theme/file-undo-outline.svg deleted file mode 100644 index bead4e48..00000000 --- a/bes_theme/.icons/bes_theme/file-undo-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-undo.svg b/bes_theme/.icons/bes_theme/file-undo.svg deleted file mode 100644 index 7df2bd94..00000000 --- a/bes_theme/.icons/bes_theme/file-undo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-upload-outline.svg b/bes_theme/.icons/bes_theme/file-upload-outline.svg deleted file mode 100644 index 61b39186..00000000 --- a/bes_theme/.icons/bes_theme/file-upload-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-upload.svg b/bes_theme/.icons/bes_theme/file-upload.svg deleted file mode 100644 index 49851771..00000000 --- a/bes_theme/.icons/bes_theme/file-upload.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-video-outline.svg b/bes_theme/.icons/bes_theme/file-video-outline.svg deleted file mode 100644 index 87cf071d..00000000 --- a/bes_theme/.icons/bes_theme/file-video-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-video.svg b/bes_theme/.icons/bes_theme/file-video.svg deleted file mode 100644 index 3631b5e6..00000000 --- a/bes_theme/.icons/bes_theme/file-video.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-word-box-outline.svg b/bes_theme/.icons/bes_theme/file-word-box-outline.svg deleted file mode 100644 index d5968d8d..00000000 --- a/bes_theme/.icons/bes_theme/file-word-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-word-box.svg b/bes_theme/.icons/bes_theme/file-word-box.svg deleted file mode 100644 index fe3bd2e5..00000000 --- a/bes_theme/.icons/bes_theme/file-word-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-word-outline.svg b/bes_theme/.icons/bes_theme/file-word-outline.svg deleted file mode 100644 index 231328e3..00000000 --- a/bes_theme/.icons/bes_theme/file-word-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file-word.svg b/bes_theme/.icons/bes_theme/file-word.svg deleted file mode 100644 index d23ca02d..00000000 --- a/bes_theme/.icons/bes_theme/file-word.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/file.svg b/bes_theme/.icons/bes_theme/file.svg deleted file mode 100644 index c8ecaeb0..00000000 --- a/bes_theme/.icons/bes_theme/file.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/film.svg b/bes_theme/.icons/bes_theme/film.svg deleted file mode 100644 index 64d9ea6c..00000000 --- a/bes_theme/.icons/bes_theme/film.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/filmstrip-box-multiple.svg b/bes_theme/.icons/bes_theme/filmstrip-box-multiple.svg deleted file mode 100644 index 9c86893b..00000000 --- a/bes_theme/.icons/bes_theme/filmstrip-box-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/filmstrip-box.svg b/bes_theme/.icons/bes_theme/filmstrip-box.svg deleted file mode 100644 index ba5c5176..00000000 --- a/bes_theme/.icons/bes_theme/filmstrip-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/filmstrip-off.svg b/bes_theme/.icons/bes_theme/filmstrip-off.svg deleted file mode 100644 index c5feb042..00000000 --- a/bes_theme/.icons/bes_theme/filmstrip-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/filmstrip.svg b/bes_theme/.icons/bes_theme/filmstrip.svg deleted file mode 100644 index b21cd9ae..00000000 --- a/bes_theme/.icons/bes_theme/filmstrip.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/filter-menu-outline.svg b/bes_theme/.icons/bes_theme/filter-menu-outline.svg deleted file mode 100644 index 8a01f196..00000000 --- a/bes_theme/.icons/bes_theme/filter-menu-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/filter-menu.svg b/bes_theme/.icons/bes_theme/filter-menu.svg deleted file mode 100644 index e9568a94..00000000 --- a/bes_theme/.icons/bes_theme/filter-menu.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/filter-minus-outline.svg b/bes_theme/.icons/bes_theme/filter-minus-outline.svg deleted file mode 100644 index 03d3fb8b..00000000 --- a/bes_theme/.icons/bes_theme/filter-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/filter-minus.svg b/bes_theme/.icons/bes_theme/filter-minus.svg deleted file mode 100644 index 3be71a3b..00000000 --- a/bes_theme/.icons/bes_theme/filter-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/filter-off-outline.svg b/bes_theme/.icons/bes_theme/filter-off-outline.svg deleted file mode 100644 index eba13c79..00000000 --- a/bes_theme/.icons/bes_theme/filter-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/filter-off.svg b/bes_theme/.icons/bes_theme/filter-off.svg deleted file mode 100644 index 4043e627..00000000 --- a/bes_theme/.icons/bes_theme/filter-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/filter-outline.svg b/bes_theme/.icons/bes_theme/filter-outline.svg deleted file mode 100644 index a5bf7046..00000000 --- a/bes_theme/.icons/bes_theme/filter-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/filter-plus-outline.svg b/bes_theme/.icons/bes_theme/filter-plus-outline.svg deleted file mode 100644 index 4b0e562c..00000000 --- a/bes_theme/.icons/bes_theme/filter-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/filter-plus.svg b/bes_theme/.icons/bes_theme/filter-plus.svg deleted file mode 100644 index 4493fc88..00000000 --- a/bes_theme/.icons/bes_theme/filter-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/filter-remove-outline.svg b/bes_theme/.icons/bes_theme/filter-remove-outline.svg deleted file mode 100644 index e5e37348..00000000 --- a/bes_theme/.icons/bes_theme/filter-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/filter-remove.svg b/bes_theme/.icons/bes_theme/filter-remove.svg deleted file mode 100644 index cf8b32e3..00000000 --- a/bes_theme/.icons/bes_theme/filter-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/filter-variant-minus.svg b/bes_theme/.icons/bes_theme/filter-variant-minus.svg deleted file mode 100644 index 4230cc66..00000000 --- a/bes_theme/.icons/bes_theme/filter-variant-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/filter-variant-plus.svg b/bes_theme/.icons/bes_theme/filter-variant-plus.svg deleted file mode 100644 index 1dc17665..00000000 --- a/bes_theme/.icons/bes_theme/filter-variant-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/filter-variant-remove.svg b/bes_theme/.icons/bes_theme/filter-variant-remove.svg deleted file mode 100644 index 7aee3b72..00000000 --- a/bes_theme/.icons/bes_theme/filter-variant-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/filter-variant.svg b/bes_theme/.icons/bes_theme/filter-variant.svg deleted file mode 100644 index fd96c28a..00000000 --- a/bes_theme/.icons/bes_theme/filter-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/filter.svg b/bes_theme/.icons/bes_theme/filter.svg deleted file mode 100644 index 7082974f..00000000 --- a/bes_theme/.icons/bes_theme/filter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/finance.svg b/bes_theme/.icons/bes_theme/finance.svg deleted file mode 100644 index ff788464..00000000 --- a/bes_theme/.icons/bes_theme/finance.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/find-replace.svg b/bes_theme/.icons/bes_theme/find-replace.svg deleted file mode 100644 index faad8fd8..00000000 --- a/bes_theme/.icons/bes_theme/find-replace.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fingerprint-off.svg b/bes_theme/.icons/bes_theme/fingerprint-off.svg deleted file mode 100644 index 34d3b22e..00000000 --- a/bes_theme/.icons/bes_theme/fingerprint-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fingerprint.svg b/bes_theme/.icons/bes_theme/fingerprint.svg deleted file mode 100644 index e70892e7..00000000 --- a/bes_theme/.icons/bes_theme/fingerprint.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fire-alert.svg b/bes_theme/.icons/bes_theme/fire-alert.svg deleted file mode 100644 index 601dbcc3..00000000 --- a/bes_theme/.icons/bes_theme/fire-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fire-extinguisher.svg b/bes_theme/.icons/bes_theme/fire-extinguisher.svg deleted file mode 100644 index 457affda..00000000 --- a/bes_theme/.icons/bes_theme/fire-extinguisher.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fire-hydrant-alert.svg b/bes_theme/.icons/bes_theme/fire-hydrant-alert.svg deleted file mode 100644 index e8f78163..00000000 --- a/bes_theme/.icons/bes_theme/fire-hydrant-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fire-hydrant-off.svg b/bes_theme/.icons/bes_theme/fire-hydrant-off.svg deleted file mode 100644 index bc23a6bb..00000000 --- a/bes_theme/.icons/bes_theme/fire-hydrant-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fire-hydrant.svg b/bes_theme/.icons/bes_theme/fire-hydrant.svg deleted file mode 100644 index b7c4de3b..00000000 --- a/bes_theme/.icons/bes_theme/fire-hydrant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fire-off.svg b/bes_theme/.icons/bes_theme/fire-off.svg deleted file mode 100644 index 1dc9df66..00000000 --- a/bes_theme/.icons/bes_theme/fire-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fire-truck.svg b/bes_theme/.icons/bes_theme/fire-truck.svg deleted file mode 100644 index 6b42192e..00000000 --- a/bes_theme/.icons/bes_theme/fire-truck.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fire.svg b/bes_theme/.icons/bes_theme/fire.svg deleted file mode 100644 index 9db95c75..00000000 --- a/bes_theme/.icons/bes_theme/fire.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/firebase.svg b/bes_theme/.icons/bes_theme/firebase.svg deleted file mode 100644 index b4678b62..00000000 --- a/bes_theme/.icons/bes_theme/firebase.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/firefox.svg b/bes_theme/.icons/bes_theme/firefox.svg deleted file mode 100644 index 08819def..00000000 --- a/bes_theme/.icons/bes_theme/firefox.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fireplace-off.svg b/bes_theme/.icons/bes_theme/fireplace-off.svg deleted file mode 100644 index b864c79f..00000000 --- a/bes_theme/.icons/bes_theme/fireplace-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fireplace.svg b/bes_theme/.icons/bes_theme/fireplace.svg deleted file mode 100644 index fbd2a19e..00000000 --- a/bes_theme/.icons/bes_theme/fireplace.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/firework-off.svg b/bes_theme/.icons/bes_theme/firework-off.svg deleted file mode 100644 index 4e097d90..00000000 --- a/bes_theme/.icons/bes_theme/firework-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/firework.svg b/bes_theme/.icons/bes_theme/firework.svg deleted file mode 100644 index 52803409..00000000 --- a/bes_theme/.icons/bes_theme/firework.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fish-off.svg b/bes_theme/.icons/bes_theme/fish-off.svg deleted file mode 100644 index 0ec3e986..00000000 --- a/bes_theme/.icons/bes_theme/fish-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fish.svg b/bes_theme/.icons/bes_theme/fish.svg deleted file mode 100644 index 2a2e5198..00000000 --- a/bes_theme/.icons/bes_theme/fish.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fishbowl-outline.svg b/bes_theme/.icons/bes_theme/fishbowl-outline.svg deleted file mode 100644 index 53979a93..00000000 --- a/bes_theme/.icons/bes_theme/fishbowl-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fishbowl.svg b/bes_theme/.icons/bes_theme/fishbowl.svg deleted file mode 100644 index 56ac21b0..00000000 --- a/bes_theme/.icons/bes_theme/fishbowl.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fit-to-page-outline.svg b/bes_theme/.icons/bes_theme/fit-to-page-outline.svg deleted file mode 100644 index 4c2b75ba..00000000 --- a/bes_theme/.icons/bes_theme/fit-to-page-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fit-to-page.svg b/bes_theme/.icons/bes_theme/fit-to-page.svg deleted file mode 100644 index e0d46b14..00000000 --- a/bes_theme/.icons/bes_theme/fit-to-page.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flag-checkered.svg b/bes_theme/.icons/bes_theme/flag-checkered.svg deleted file mode 100644 index 73ed4f84..00000000 --- a/bes_theme/.icons/bes_theme/flag-checkered.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flag-minus-outline.svg b/bes_theme/.icons/bes_theme/flag-minus-outline.svg deleted file mode 100644 index 8a91eb90..00000000 --- a/bes_theme/.icons/bes_theme/flag-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flag-minus.svg b/bes_theme/.icons/bes_theme/flag-minus.svg deleted file mode 100644 index 243280f8..00000000 --- a/bes_theme/.icons/bes_theme/flag-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flag-outline.svg b/bes_theme/.icons/bes_theme/flag-outline.svg deleted file mode 100644 index 4df5d0ad..00000000 --- a/bes_theme/.icons/bes_theme/flag-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flag-plus-outline.svg b/bes_theme/.icons/bes_theme/flag-plus-outline.svg deleted file mode 100644 index ce75a04e..00000000 --- a/bes_theme/.icons/bes_theme/flag-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flag-plus.svg b/bes_theme/.icons/bes_theme/flag-plus.svg deleted file mode 100644 index 160aee3f..00000000 --- a/bes_theme/.icons/bes_theme/flag-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flag-remove-outline.svg b/bes_theme/.icons/bes_theme/flag-remove-outline.svg deleted file mode 100644 index ff43144c..00000000 --- a/bes_theme/.icons/bes_theme/flag-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flag-remove.svg b/bes_theme/.icons/bes_theme/flag-remove.svg deleted file mode 100644 index 525613ae..00000000 --- a/bes_theme/.icons/bes_theme/flag-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flag-triangle.svg b/bes_theme/.icons/bes_theme/flag-triangle.svg deleted file mode 100644 index 25f037a2..00000000 --- a/bes_theme/.icons/bes_theme/flag-triangle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flag-variant-outline.svg b/bes_theme/.icons/bes_theme/flag-variant-outline.svg deleted file mode 100644 index 378cbcdc..00000000 --- a/bes_theme/.icons/bes_theme/flag-variant-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flag-variant.svg b/bes_theme/.icons/bes_theme/flag-variant.svg deleted file mode 100644 index 4e54854e..00000000 --- a/bes_theme/.icons/bes_theme/flag-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flag.svg b/bes_theme/.icons/bes_theme/flag.svg deleted file mode 100644 index 1bb4a591..00000000 --- a/bes_theme/.icons/bes_theme/flag.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flare.svg b/bes_theme/.icons/bes_theme/flare.svg deleted file mode 100644 index da0df3c5..00000000 --- a/bes_theme/.icons/bes_theme/flare.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flash-alert-outline.svg b/bes_theme/.icons/bes_theme/flash-alert-outline.svg deleted file mode 100644 index c9b1f344..00000000 --- a/bes_theme/.icons/bes_theme/flash-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flash-alert.svg b/bes_theme/.icons/bes_theme/flash-alert.svg deleted file mode 100644 index 09ac1f45..00000000 --- a/bes_theme/.icons/bes_theme/flash-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flash-auto.svg b/bes_theme/.icons/bes_theme/flash-auto.svg deleted file mode 100644 index 84557710..00000000 --- a/bes_theme/.icons/bes_theme/flash-auto.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flash-circle.svg b/bes_theme/.icons/bes_theme/flash-circle.svg deleted file mode 100644 index c2b31856..00000000 --- a/bes_theme/.icons/bes_theme/flash-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flash-off.svg b/bes_theme/.icons/bes_theme/flash-off.svg deleted file mode 100644 index dd1d6af3..00000000 --- a/bes_theme/.icons/bes_theme/flash-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flash-outline.svg b/bes_theme/.icons/bes_theme/flash-outline.svg deleted file mode 100644 index 2cbb706b..00000000 --- a/bes_theme/.icons/bes_theme/flash-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flash-red-eye.svg b/bes_theme/.icons/bes_theme/flash-red-eye.svg deleted file mode 100644 index b344ca4d..00000000 --- a/bes_theme/.icons/bes_theme/flash-red-eye.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flash.svg b/bes_theme/.icons/bes_theme/flash.svg deleted file mode 100644 index 73f182a4..00000000 --- a/bes_theme/.icons/bes_theme/flash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flashlight-off.svg b/bes_theme/.icons/bes_theme/flashlight-off.svg deleted file mode 100644 index 059160a1..00000000 --- a/bes_theme/.icons/bes_theme/flashlight-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flashlight.svg b/bes_theme/.icons/bes_theme/flashlight.svg deleted file mode 100644 index 84f25909..00000000 --- a/bes_theme/.icons/bes_theme/flashlight.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flask-empty-minus-outline.svg b/bes_theme/.icons/bes_theme/flask-empty-minus-outline.svg deleted file mode 100644 index 174414c1..00000000 --- a/bes_theme/.icons/bes_theme/flask-empty-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flask-empty-minus.svg b/bes_theme/.icons/bes_theme/flask-empty-minus.svg deleted file mode 100644 index 285ff955..00000000 --- a/bes_theme/.icons/bes_theme/flask-empty-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flask-empty-off-outline.svg b/bes_theme/.icons/bes_theme/flask-empty-off-outline.svg deleted file mode 100644 index a1861777..00000000 --- a/bes_theme/.icons/bes_theme/flask-empty-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flask-empty-off.svg b/bes_theme/.icons/bes_theme/flask-empty-off.svg deleted file mode 100644 index f20b21eb..00000000 --- a/bes_theme/.icons/bes_theme/flask-empty-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flask-empty-outline.svg b/bes_theme/.icons/bes_theme/flask-empty-outline.svg deleted file mode 100644 index c71efb73..00000000 --- a/bes_theme/.icons/bes_theme/flask-empty-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flask-empty-plus-outline.svg b/bes_theme/.icons/bes_theme/flask-empty-plus-outline.svg deleted file mode 100644 index 58010a10..00000000 --- a/bes_theme/.icons/bes_theme/flask-empty-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flask-empty-plus.svg b/bes_theme/.icons/bes_theme/flask-empty-plus.svg deleted file mode 100644 index c572069f..00000000 --- a/bes_theme/.icons/bes_theme/flask-empty-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flask-empty-remove-outline.svg b/bes_theme/.icons/bes_theme/flask-empty-remove-outline.svg deleted file mode 100644 index cbe4edd4..00000000 --- a/bes_theme/.icons/bes_theme/flask-empty-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flask-empty-remove.svg b/bes_theme/.icons/bes_theme/flask-empty-remove.svg deleted file mode 100644 index 0cb56dea..00000000 --- a/bes_theme/.icons/bes_theme/flask-empty-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flask-empty.svg b/bes_theme/.icons/bes_theme/flask-empty.svg deleted file mode 100644 index 06ae541a..00000000 --- a/bes_theme/.icons/bes_theme/flask-empty.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flask-minus-outline.svg b/bes_theme/.icons/bes_theme/flask-minus-outline.svg deleted file mode 100644 index 5909e107..00000000 --- a/bes_theme/.icons/bes_theme/flask-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flask-minus.svg b/bes_theme/.icons/bes_theme/flask-minus.svg deleted file mode 100644 index 046f6a17..00000000 --- a/bes_theme/.icons/bes_theme/flask-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flask-off-outline.svg b/bes_theme/.icons/bes_theme/flask-off-outline.svg deleted file mode 100644 index b01c35e8..00000000 --- a/bes_theme/.icons/bes_theme/flask-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flask-off.svg b/bes_theme/.icons/bes_theme/flask-off.svg deleted file mode 100644 index 4e0e2831..00000000 --- a/bes_theme/.icons/bes_theme/flask-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flask-outline.svg b/bes_theme/.icons/bes_theme/flask-outline.svg deleted file mode 100644 index de971e1c..00000000 --- a/bes_theme/.icons/bes_theme/flask-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flask-plus-outline.svg b/bes_theme/.icons/bes_theme/flask-plus-outline.svg deleted file mode 100644 index 64d9c2bc..00000000 --- a/bes_theme/.icons/bes_theme/flask-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flask-plus.svg b/bes_theme/.icons/bes_theme/flask-plus.svg deleted file mode 100644 index 5c2a2d64..00000000 --- a/bes_theme/.icons/bes_theme/flask-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flask-remove-outline.svg b/bes_theme/.icons/bes_theme/flask-remove-outline.svg deleted file mode 100644 index 77421b0c..00000000 --- a/bes_theme/.icons/bes_theme/flask-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flask-remove.svg b/bes_theme/.icons/bes_theme/flask-remove.svg deleted file mode 100644 index e6b30f49..00000000 --- a/bes_theme/.icons/bes_theme/flask-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flask-round-bottom-empty-outline.svg b/bes_theme/.icons/bes_theme/flask-round-bottom-empty-outline.svg deleted file mode 100644 index ac018126..00000000 --- a/bes_theme/.icons/bes_theme/flask-round-bottom-empty-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flask-round-bottom-empty.svg b/bes_theme/.icons/bes_theme/flask-round-bottom-empty.svg deleted file mode 100644 index fc94f819..00000000 --- a/bes_theme/.icons/bes_theme/flask-round-bottom-empty.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flask-round-bottom-outline.svg b/bes_theme/.icons/bes_theme/flask-round-bottom-outline.svg deleted file mode 100644 index 5cdec57d..00000000 --- a/bes_theme/.icons/bes_theme/flask-round-bottom-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flask-round-bottom.svg b/bes_theme/.icons/bes_theme/flask-round-bottom.svg deleted file mode 100644 index 10814f0e..00000000 --- a/bes_theme/.icons/bes_theme/flask-round-bottom.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flask.svg b/bes_theme/.icons/bes_theme/flask.svg deleted file mode 100644 index 6cb7aadf..00000000 --- a/bes_theme/.icons/bes_theme/flask.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fleur-de-lis.svg b/bes_theme/.icons/bes_theme/fleur-de-lis.svg deleted file mode 100644 index 90c36ce9..00000000 --- a/bes_theme/.icons/bes_theme/fleur-de-lis.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flip-horizontal.svg b/bes_theme/.icons/bes_theme/flip-horizontal.svg deleted file mode 100644 index 9518e5ee..00000000 --- a/bes_theme/.icons/bes_theme/flip-horizontal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flip-to-back.svg b/bes_theme/.icons/bes_theme/flip-to-back.svg deleted file mode 100644 index c475d44c..00000000 --- a/bes_theme/.icons/bes_theme/flip-to-back.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flip-to-front.svg b/bes_theme/.icons/bes_theme/flip-to-front.svg deleted file mode 100644 index eb6d5d45..00000000 --- a/bes_theme/.icons/bes_theme/flip-to-front.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flip-vertical.svg b/bes_theme/.icons/bes_theme/flip-vertical.svg deleted file mode 100644 index 88110c3a..00000000 --- a/bes_theme/.icons/bes_theme/flip-vertical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/floor-lamp-dual.svg b/bes_theme/.icons/bes_theme/floor-lamp-dual.svg deleted file mode 100644 index 91457246..00000000 --- a/bes_theme/.icons/bes_theme/floor-lamp-dual.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/floor-lamp-variant.svg b/bes_theme/.icons/bes_theme/floor-lamp-variant.svg deleted file mode 100644 index b8e9220b..00000000 --- a/bes_theme/.icons/bes_theme/floor-lamp-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/floor-lamp.svg b/bes_theme/.icons/bes_theme/floor-lamp.svg deleted file mode 100644 index 8f71387f..00000000 --- a/bes_theme/.icons/bes_theme/floor-lamp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/floor-plan.svg b/bes_theme/.icons/bes_theme/floor-plan.svg deleted file mode 100644 index c1814dca..00000000 --- a/bes_theme/.icons/bes_theme/floor-plan.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/floppy-variant.svg b/bes_theme/.icons/bes_theme/floppy-variant.svg deleted file mode 100644 index 9868606e..00000000 --- a/bes_theme/.icons/bes_theme/floppy-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/floppy.svg b/bes_theme/.icons/bes_theme/floppy.svg deleted file mode 100644 index 8bcf9c73..00000000 --- a/bes_theme/.icons/bes_theme/floppy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flower-outline.svg b/bes_theme/.icons/bes_theme/flower-outline.svg deleted file mode 100644 index c1bd4136..00000000 --- a/bes_theme/.icons/bes_theme/flower-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flower-poppy.svg b/bes_theme/.icons/bes_theme/flower-poppy.svg deleted file mode 100644 index 49d7f968..00000000 --- a/bes_theme/.icons/bes_theme/flower-poppy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flower-tulip-outline.svg b/bes_theme/.icons/bes_theme/flower-tulip-outline.svg deleted file mode 100644 index c7d15445..00000000 --- a/bes_theme/.icons/bes_theme/flower-tulip-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flower-tulip.svg b/bes_theme/.icons/bes_theme/flower-tulip.svg deleted file mode 100644 index a1b76d71..00000000 --- a/bes_theme/.icons/bes_theme/flower-tulip.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/flower.svg b/bes_theme/.icons/bes_theme/flower.svg deleted file mode 100644 index 4d507634..00000000 --- a/bes_theme/.icons/bes_theme/flower.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/focus-auto.svg b/bes_theme/.icons/bes_theme/focus-auto.svg deleted file mode 100644 index 8311329e..00000000 --- a/bes_theme/.icons/bes_theme/focus-auto.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/focus-field-horizontal.svg b/bes_theme/.icons/bes_theme/focus-field-horizontal.svg deleted file mode 100644 index c91b27d7..00000000 --- a/bes_theme/.icons/bes_theme/focus-field-horizontal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/focus-field-vertical.svg b/bes_theme/.icons/bes_theme/focus-field-vertical.svg deleted file mode 100644 index 22a74b79..00000000 --- a/bes_theme/.icons/bes_theme/focus-field-vertical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/focus-field.svg b/bes_theme/.icons/bes_theme/focus-field.svg deleted file mode 100644 index 4ce5c9d0..00000000 --- a/bes_theme/.icons/bes_theme/focus-field.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-account-outline.svg b/bes_theme/.icons/bes_theme/folder-account-outline.svg deleted file mode 100644 index 90f10de7..00000000 --- a/bes_theme/.icons/bes_theme/folder-account-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-account.svg b/bes_theme/.icons/bes_theme/folder-account.svg deleted file mode 100644 index 299be284..00000000 --- a/bes_theme/.icons/bes_theme/folder-account.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-alert-outline.svg b/bes_theme/.icons/bes_theme/folder-alert-outline.svg deleted file mode 100644 index 6a1345b2..00000000 --- a/bes_theme/.icons/bes_theme/folder-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-alert.svg b/bes_theme/.icons/bes_theme/folder-alert.svg deleted file mode 100644 index 7a1075df..00000000 --- a/bes_theme/.icons/bes_theme/folder-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-clock-outline.svg b/bes_theme/.icons/bes_theme/folder-clock-outline.svg deleted file mode 100644 index 1121167e..00000000 --- a/bes_theme/.icons/bes_theme/folder-clock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-clock.svg b/bes_theme/.icons/bes_theme/folder-clock.svg deleted file mode 100644 index c1adf79a..00000000 --- a/bes_theme/.icons/bes_theme/folder-clock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-cog-outline.svg b/bes_theme/.icons/bes_theme/folder-cog-outline.svg deleted file mode 100644 index 5fd3fc59..00000000 --- a/bes_theme/.icons/bes_theme/folder-cog-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-cog.svg b/bes_theme/.icons/bes_theme/folder-cog.svg deleted file mode 100644 index cfa83712..00000000 --- a/bes_theme/.icons/bes_theme/folder-cog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-download-outline.svg b/bes_theme/.icons/bes_theme/folder-download-outline.svg deleted file mode 100644 index 1548ccd9..00000000 --- a/bes_theme/.icons/bes_theme/folder-download-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-download.svg b/bes_theme/.icons/bes_theme/folder-download.svg deleted file mode 100644 index a921a90d..00000000 --- a/bes_theme/.icons/bes_theme/folder-download.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-edit-outline.svg b/bes_theme/.icons/bes_theme/folder-edit-outline.svg deleted file mode 100644 index 20db40f8..00000000 --- a/bes_theme/.icons/bes_theme/folder-edit-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-edit.svg b/bes_theme/.icons/bes_theme/folder-edit.svg deleted file mode 100644 index 660e1263..00000000 --- a/bes_theme/.icons/bes_theme/folder-edit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-google-drive.svg b/bes_theme/.icons/bes_theme/folder-google-drive.svg deleted file mode 100644 index 73ec5bf2..00000000 --- a/bes_theme/.icons/bes_theme/folder-google-drive.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-heart-outline.svg b/bes_theme/.icons/bes_theme/folder-heart-outline.svg deleted file mode 100644 index ecebdc33..00000000 --- a/bes_theme/.icons/bes_theme/folder-heart-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-heart.svg b/bes_theme/.icons/bes_theme/folder-heart.svg deleted file mode 100644 index b5143e87..00000000 --- a/bes_theme/.icons/bes_theme/folder-heart.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-home-outline.svg b/bes_theme/.icons/bes_theme/folder-home-outline.svg deleted file mode 100644 index 84e3a212..00000000 --- a/bes_theme/.icons/bes_theme/folder-home-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-home.svg b/bes_theme/.icons/bes_theme/folder-home.svg deleted file mode 100644 index 35deae72..00000000 --- a/bes_theme/.icons/bes_theme/folder-home.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-image.svg b/bes_theme/.icons/bes_theme/folder-image.svg deleted file mode 100644 index fd1ac85b..00000000 --- a/bes_theme/.icons/bes_theme/folder-image.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-information-outline.svg b/bes_theme/.icons/bes_theme/folder-information-outline.svg deleted file mode 100644 index 094fd81a..00000000 --- a/bes_theme/.icons/bes_theme/folder-information-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-information.svg b/bes_theme/.icons/bes_theme/folder-information.svg deleted file mode 100644 index f7abacc6..00000000 --- a/bes_theme/.icons/bes_theme/folder-information.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-key-network-outline.svg b/bes_theme/.icons/bes_theme/folder-key-network-outline.svg deleted file mode 100644 index a46ad76a..00000000 --- a/bes_theme/.icons/bes_theme/folder-key-network-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-key-network.svg b/bes_theme/.icons/bes_theme/folder-key-network.svg deleted file mode 100644 index 6f54b89d..00000000 --- a/bes_theme/.icons/bes_theme/folder-key-network.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-key-outline.svg b/bes_theme/.icons/bes_theme/folder-key-outline.svg deleted file mode 100644 index 753e66c1..00000000 --- a/bes_theme/.icons/bes_theme/folder-key-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-key.svg b/bes_theme/.icons/bes_theme/folder-key.svg deleted file mode 100644 index e71a88c2..00000000 --- a/bes_theme/.icons/bes_theme/folder-key.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-lock-open.svg b/bes_theme/.icons/bes_theme/folder-lock-open.svg deleted file mode 100644 index eb3514a9..00000000 --- a/bes_theme/.icons/bes_theme/folder-lock-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-lock.svg b/bes_theme/.icons/bes_theme/folder-lock.svg deleted file mode 100644 index 7b60ffa4..00000000 --- a/bes_theme/.icons/bes_theme/folder-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-marker-outline.svg b/bes_theme/.icons/bes_theme/folder-marker-outline.svg deleted file mode 100644 index 9e3fdb4c..00000000 --- a/bes_theme/.icons/bes_theme/folder-marker-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-marker.svg b/bes_theme/.icons/bes_theme/folder-marker.svg deleted file mode 100644 index 815de0d8..00000000 --- a/bes_theme/.icons/bes_theme/folder-marker.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-move-outline.svg b/bes_theme/.icons/bes_theme/folder-move-outline.svg deleted file mode 100644 index ccfb3546..00000000 --- a/bes_theme/.icons/bes_theme/folder-move-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-move.svg b/bes_theme/.icons/bes_theme/folder-move.svg deleted file mode 100644 index 1d8e5fe2..00000000 --- a/bes_theme/.icons/bes_theme/folder-move.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-multiple-image.svg b/bes_theme/.icons/bes_theme/folder-multiple-image.svg deleted file mode 100644 index 3b27c601..00000000 --- a/bes_theme/.icons/bes_theme/folder-multiple-image.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-multiple-outline.svg b/bes_theme/.icons/bes_theme/folder-multiple-outline.svg deleted file mode 100644 index f0f44d76..00000000 --- a/bes_theme/.icons/bes_theme/folder-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-multiple-plus-outline.svg b/bes_theme/.icons/bes_theme/folder-multiple-plus-outline.svg deleted file mode 100644 index fec7cbad..00000000 --- a/bes_theme/.icons/bes_theme/folder-multiple-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-multiple-plus.svg b/bes_theme/.icons/bes_theme/folder-multiple-plus.svg deleted file mode 100644 index 9c7d8bc1..00000000 --- a/bes_theme/.icons/bes_theme/folder-multiple-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-multiple.svg b/bes_theme/.icons/bes_theme/folder-multiple.svg deleted file mode 100644 index 4d1cfacb..00000000 --- a/bes_theme/.icons/bes_theme/folder-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-music-outline.svg b/bes_theme/.icons/bes_theme/folder-music-outline.svg deleted file mode 100644 index 9c247038..00000000 --- a/bes_theme/.icons/bes_theme/folder-music-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-music.svg b/bes_theme/.icons/bes_theme/folder-music.svg deleted file mode 100644 index 6033de5d..00000000 --- a/bes_theme/.icons/bes_theme/folder-music.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-network-outline.svg b/bes_theme/.icons/bes_theme/folder-network-outline.svg deleted file mode 100644 index 32eb049c..00000000 --- a/bes_theme/.icons/bes_theme/folder-network-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-network.svg b/bes_theme/.icons/bes_theme/folder-network.svg deleted file mode 100644 index e0bd08c6..00000000 --- a/bes_theme/.icons/bes_theme/folder-network.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-open-outline.svg b/bes_theme/.icons/bes_theme/folder-open-outline.svg deleted file mode 100644 index 700c4b11..00000000 --- a/bes_theme/.icons/bes_theme/folder-open-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-open.svg b/bes_theme/.icons/bes_theme/folder-open.svg deleted file mode 100644 index 15989852..00000000 --- a/bes_theme/.icons/bes_theme/folder-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-outline.svg b/bes_theme/.icons/bes_theme/folder-outline.svg deleted file mode 100644 index 0e6cac8d..00000000 --- a/bes_theme/.icons/bes_theme/folder-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-plus-outline.svg b/bes_theme/.icons/bes_theme/folder-plus-outline.svg deleted file mode 100644 index ceadd8d9..00000000 --- a/bes_theme/.icons/bes_theme/folder-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-plus.svg b/bes_theme/.icons/bes_theme/folder-plus.svg deleted file mode 100644 index 8792677c..00000000 --- a/bes_theme/.icons/bes_theme/folder-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-pound-outline.svg b/bes_theme/.icons/bes_theme/folder-pound-outline.svg deleted file mode 100644 index 0ebade36..00000000 --- a/bes_theme/.icons/bes_theme/folder-pound-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-pound.svg b/bes_theme/.icons/bes_theme/folder-pound.svg deleted file mode 100644 index 54b6baef..00000000 --- a/bes_theme/.icons/bes_theme/folder-pound.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-refresh-outline.svg b/bes_theme/.icons/bes_theme/folder-refresh-outline.svg deleted file mode 100644 index 16fa80f1..00000000 --- a/bes_theme/.icons/bes_theme/folder-refresh-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-refresh.svg b/bes_theme/.icons/bes_theme/folder-refresh.svg deleted file mode 100644 index e1d1586e..00000000 --- a/bes_theme/.icons/bes_theme/folder-refresh.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-remove-outline.svg b/bes_theme/.icons/bes_theme/folder-remove-outline.svg deleted file mode 100644 index 621af9e2..00000000 --- a/bes_theme/.icons/bes_theme/folder-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-remove.svg b/bes_theme/.icons/bes_theme/folder-remove.svg deleted file mode 100644 index d47e6c2e..00000000 --- a/bes_theme/.icons/bes_theme/folder-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-search-outline.svg b/bes_theme/.icons/bes_theme/folder-search-outline.svg deleted file mode 100644 index 30d7a648..00000000 --- a/bes_theme/.icons/bes_theme/folder-search-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-search.svg b/bes_theme/.icons/bes_theme/folder-search.svg deleted file mode 100644 index 5456edbd..00000000 --- a/bes_theme/.icons/bes_theme/folder-search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-settings-outline.svg b/bes_theme/.icons/bes_theme/folder-settings-outline.svg deleted file mode 100644 index 86833431..00000000 --- a/bes_theme/.icons/bes_theme/folder-settings-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-settings.svg b/bes_theme/.icons/bes_theme/folder-settings.svg deleted file mode 100644 index 52952215..00000000 --- a/bes_theme/.icons/bes_theme/folder-settings.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-star-multiple-outline.svg b/bes_theme/.icons/bes_theme/folder-star-multiple-outline.svg deleted file mode 100644 index 6faf44a3..00000000 --- a/bes_theme/.icons/bes_theme/folder-star-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-star-multiple.svg b/bes_theme/.icons/bes_theme/folder-star-multiple.svg deleted file mode 100644 index 164fa338..00000000 --- a/bes_theme/.icons/bes_theme/folder-star-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-star-outline.svg b/bes_theme/.icons/bes_theme/folder-star-outline.svg deleted file mode 100644 index b9896032..00000000 --- a/bes_theme/.icons/bes_theme/folder-star-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-star.svg b/bes_theme/.icons/bes_theme/folder-star.svg deleted file mode 100644 index ada6d613..00000000 --- a/bes_theme/.icons/bes_theme/folder-star.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-swap-outline.svg b/bes_theme/.icons/bes_theme/folder-swap-outline.svg deleted file mode 100644 index d03c9ead..00000000 --- a/bes_theme/.icons/bes_theme/folder-swap-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-swap.svg b/bes_theme/.icons/bes_theme/folder-swap.svg deleted file mode 100644 index e52e4fca..00000000 --- a/bes_theme/.icons/bes_theme/folder-swap.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-sync-outline.svg b/bes_theme/.icons/bes_theme/folder-sync-outline.svg deleted file mode 100644 index 4525165f..00000000 --- a/bes_theme/.icons/bes_theme/folder-sync-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-sync.svg b/bes_theme/.icons/bes_theme/folder-sync.svg deleted file mode 100644 index 7ed47d30..00000000 --- a/bes_theme/.icons/bes_theme/folder-sync.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-table-outline.svg b/bes_theme/.icons/bes_theme/folder-table-outline.svg deleted file mode 100644 index e7c0ab9e..00000000 --- a/bes_theme/.icons/bes_theme/folder-table-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-table.svg b/bes_theme/.icons/bes_theme/folder-table.svg deleted file mode 100644 index 9321b282..00000000 --- a/bes_theme/.icons/bes_theme/folder-table.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-text-outline.svg b/bes_theme/.icons/bes_theme/folder-text-outline.svg deleted file mode 100644 index 02453d15..00000000 --- a/bes_theme/.icons/bes_theme/folder-text-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-text.svg b/bes_theme/.icons/bes_theme/folder-text.svg deleted file mode 100644 index dba5c1f7..00000000 --- a/bes_theme/.icons/bes_theme/folder-text.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-upload-outline.svg b/bes_theme/.icons/bes_theme/folder-upload-outline.svg deleted file mode 100644 index c02e3761..00000000 --- a/bes_theme/.icons/bes_theme/folder-upload-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-upload.svg b/bes_theme/.icons/bes_theme/folder-upload.svg deleted file mode 100644 index e47c00cb..00000000 --- a/bes_theme/.icons/bes_theme/folder-upload.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-zip-outline.svg b/bes_theme/.icons/bes_theme/folder-zip-outline.svg deleted file mode 100644 index e0496168..00000000 --- a/bes_theme/.icons/bes_theme/folder-zip-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder-zip.svg b/bes_theme/.icons/bes_theme/folder-zip.svg deleted file mode 100644 index 06f88455..00000000 --- a/bes_theme/.icons/bes_theme/folder-zip.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/folder.svg b/bes_theme/.icons/bes_theme/folder.svg deleted file mode 100644 index b1f5dbeb..00000000 --- a/bes_theme/.icons/bes_theme/folder.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/font-awesome.svg b/bes_theme/.icons/bes_theme/font-awesome.svg deleted file mode 100644 index 8eae8265..00000000 --- a/bes_theme/.icons/bes_theme/font-awesome.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/food-apple-outline.svg b/bes_theme/.icons/bes_theme/food-apple-outline.svg deleted file mode 100644 index b7a0cc35..00000000 --- a/bes_theme/.icons/bes_theme/food-apple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/food-apple.svg b/bes_theme/.icons/bes_theme/food-apple.svg deleted file mode 100644 index a58e8c6a..00000000 --- a/bes_theme/.icons/bes_theme/food-apple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/food-croissant.svg b/bes_theme/.icons/bes_theme/food-croissant.svg deleted file mode 100644 index 14f7cb4f..00000000 --- a/bes_theme/.icons/bes_theme/food-croissant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/food-drumstick-off-outline.svg b/bes_theme/.icons/bes_theme/food-drumstick-off-outline.svg deleted file mode 100644 index cdbd8e17..00000000 --- a/bes_theme/.icons/bes_theme/food-drumstick-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/food-drumstick-off.svg b/bes_theme/.icons/bes_theme/food-drumstick-off.svg deleted file mode 100644 index ad47c08c..00000000 --- a/bes_theme/.icons/bes_theme/food-drumstick-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/food-drumstick-outline.svg b/bes_theme/.icons/bes_theme/food-drumstick-outline.svg deleted file mode 100644 index c89a069f..00000000 --- a/bes_theme/.icons/bes_theme/food-drumstick-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/food-drumstick.svg b/bes_theme/.icons/bes_theme/food-drumstick.svg deleted file mode 100644 index 283e61fb..00000000 --- a/bes_theme/.icons/bes_theme/food-drumstick.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/food-fork-drink.svg b/bes_theme/.icons/bes_theme/food-fork-drink.svg deleted file mode 100644 index 5c347120..00000000 --- a/bes_theme/.icons/bes_theme/food-fork-drink.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/food-halal.svg b/bes_theme/.icons/bes_theme/food-halal.svg deleted file mode 100644 index 7ed1eba6..00000000 --- a/bes_theme/.icons/bes_theme/food-halal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/food-kosher.svg b/bes_theme/.icons/bes_theme/food-kosher.svg deleted file mode 100644 index 2f569d60..00000000 --- a/bes_theme/.icons/bes_theme/food-kosher.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/food-off.svg b/bes_theme/.icons/bes_theme/food-off.svg deleted file mode 100644 index 3acb0941..00000000 --- a/bes_theme/.icons/bes_theme/food-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/food-steak-off.svg b/bes_theme/.icons/bes_theme/food-steak-off.svg deleted file mode 100644 index 778d06fc..00000000 --- a/bes_theme/.icons/bes_theme/food-steak-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/food-steak.svg b/bes_theme/.icons/bes_theme/food-steak.svg deleted file mode 100644 index dadf27ca..00000000 --- a/bes_theme/.icons/bes_theme/food-steak.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/food-turkey.svg b/bes_theme/.icons/bes_theme/food-turkey.svg deleted file mode 100644 index 80f8de33..00000000 --- a/bes_theme/.icons/bes_theme/food-turkey.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/food-variant-off.svg b/bes_theme/.icons/bes_theme/food-variant-off.svg deleted file mode 100644 index 31f78ea4..00000000 --- a/bes_theme/.icons/bes_theme/food-variant-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/food-variant.svg b/bes_theme/.icons/bes_theme/food-variant.svg deleted file mode 100644 index c3b35cf5..00000000 --- a/bes_theme/.icons/bes_theme/food-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/food.svg b/bes_theme/.icons/bes_theme/food.svg deleted file mode 100644 index bf2ee518..00000000 --- a/bes_theme/.icons/bes_theme/food.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/foot-print.svg b/bes_theme/.icons/bes_theme/foot-print.svg deleted file mode 100644 index 932b4b85..00000000 --- a/bes_theme/.icons/bes_theme/foot-print.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/football-australian.svg b/bes_theme/.icons/bes_theme/football-australian.svg deleted file mode 100644 index 623bce35..00000000 --- a/bes_theme/.icons/bes_theme/football-australian.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/football-helmet.svg b/bes_theme/.icons/bes_theme/football-helmet.svg deleted file mode 100644 index 4fbb930a..00000000 --- a/bes_theme/.icons/bes_theme/football-helmet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/football.svg b/bes_theme/.icons/bes_theme/football.svg deleted file mode 100644 index 7028eece..00000000 --- a/bes_theme/.icons/bes_theme/football.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/forklift.svg b/bes_theme/.icons/bes_theme/forklift.svg deleted file mode 100644 index ebe4ad1d..00000000 --- a/bes_theme/.icons/bes_theme/forklift.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/form-dropdown.svg b/bes_theme/.icons/bes_theme/form-dropdown.svg deleted file mode 100644 index 85b9f33f..00000000 --- a/bes_theme/.icons/bes_theme/form-dropdown.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/form-select.svg b/bes_theme/.icons/bes_theme/form-select.svg deleted file mode 100644 index 6e89975e..00000000 --- a/bes_theme/.icons/bes_theme/form-select.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/form-textarea.svg b/bes_theme/.icons/bes_theme/form-textarea.svg deleted file mode 100644 index 50772482..00000000 --- a/bes_theme/.icons/bes_theme/form-textarea.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/form-textbox-lock.svg b/bes_theme/.icons/bes_theme/form-textbox-lock.svg deleted file mode 100644 index 298978fe..00000000 --- a/bes_theme/.icons/bes_theme/form-textbox-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/form-textbox-password.svg b/bes_theme/.icons/bes_theme/form-textbox-password.svg deleted file mode 100644 index d24e9cc8..00000000 --- a/bes_theme/.icons/bes_theme/form-textbox-password.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/form-textbox.svg b/bes_theme/.icons/bes_theme/form-textbox.svg deleted file mode 100644 index a33dfb78..00000000 --- a/bes_theme/.icons/bes_theme/form-textbox.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-align-bottom.svg b/bes_theme/.icons/bes_theme/format-align-bottom.svg deleted file mode 100644 index 7ea96ef9..00000000 --- a/bes_theme/.icons/bes_theme/format-align-bottom.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-align-center.svg b/bes_theme/.icons/bes_theme/format-align-center.svg deleted file mode 100644 index 9ca2c15d..00000000 --- a/bes_theme/.icons/bes_theme/format-align-center.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-align-justify.svg b/bes_theme/.icons/bes_theme/format-align-justify.svg deleted file mode 100644 index 5c8cf208..00000000 --- a/bes_theme/.icons/bes_theme/format-align-justify.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-align-left.svg b/bes_theme/.icons/bes_theme/format-align-left.svg deleted file mode 100644 index e003c3f8..00000000 --- a/bes_theme/.icons/bes_theme/format-align-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-align-middle.svg b/bes_theme/.icons/bes_theme/format-align-middle.svg deleted file mode 100644 index 2f1d3f1c..00000000 --- a/bes_theme/.icons/bes_theme/format-align-middle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-align-right.svg b/bes_theme/.icons/bes_theme/format-align-right.svg deleted file mode 100644 index e60bae70..00000000 --- a/bes_theme/.icons/bes_theme/format-align-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-align-top.svg b/bes_theme/.icons/bes_theme/format-align-top.svg deleted file mode 100644 index 69b16dc0..00000000 --- a/bes_theme/.icons/bes_theme/format-align-top.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-annotation-minus.svg b/bes_theme/.icons/bes_theme/format-annotation-minus.svg deleted file mode 100644 index 9a233ffc..00000000 --- a/bes_theme/.icons/bes_theme/format-annotation-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-annotation-plus.svg b/bes_theme/.icons/bes_theme/format-annotation-plus.svg deleted file mode 100644 index 42b1dc4f..00000000 --- a/bes_theme/.icons/bes_theme/format-annotation-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-bold.svg b/bes_theme/.icons/bes_theme/format-bold.svg deleted file mode 100644 index 613ca500..00000000 --- a/bes_theme/.icons/bes_theme/format-bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-clear.svg b/bes_theme/.icons/bes_theme/format-clear.svg deleted file mode 100644 index 59c95f3f..00000000 --- a/bes_theme/.icons/bes_theme/format-clear.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-color-fill.svg b/bes_theme/.icons/bes_theme/format-color-fill.svg deleted file mode 100644 index 7dea12fe..00000000 --- a/bes_theme/.icons/bes_theme/format-color-fill.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-color-highlight.svg b/bes_theme/.icons/bes_theme/format-color-highlight.svg deleted file mode 100644 index 5a6b59b5..00000000 --- a/bes_theme/.icons/bes_theme/format-color-highlight.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-color-marker-cancel.svg b/bes_theme/.icons/bes_theme/format-color-marker-cancel.svg deleted file mode 100644 index 437d8526..00000000 --- a/bes_theme/.icons/bes_theme/format-color-marker-cancel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-color-text.svg b/bes_theme/.icons/bes_theme/format-color-text.svg deleted file mode 100644 index f0c7a0e0..00000000 --- a/bes_theme/.icons/bes_theme/format-color-text.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-columns.svg b/bes_theme/.icons/bes_theme/format-columns.svg deleted file mode 100644 index 699461f5..00000000 --- a/bes_theme/.icons/bes_theme/format-columns.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-float-center.svg b/bes_theme/.icons/bes_theme/format-float-center.svg deleted file mode 100644 index 4e2c1f02..00000000 --- a/bes_theme/.icons/bes_theme/format-float-center.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-float-left.svg b/bes_theme/.icons/bes_theme/format-float-left.svg deleted file mode 100644 index 3acc92c0..00000000 --- a/bes_theme/.icons/bes_theme/format-float-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-float-none.svg b/bes_theme/.icons/bes_theme/format-float-none.svg deleted file mode 100644 index fdd128fc..00000000 --- a/bes_theme/.icons/bes_theme/format-float-none.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-float-right.svg b/bes_theme/.icons/bes_theme/format-float-right.svg deleted file mode 100644 index 180cb824..00000000 --- a/bes_theme/.icons/bes_theme/format-float-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-font-size-decrease.svg b/bes_theme/.icons/bes_theme/format-font-size-decrease.svg deleted file mode 100644 index 29fc0c45..00000000 --- a/bes_theme/.icons/bes_theme/format-font-size-decrease.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-font-size-increase.svg b/bes_theme/.icons/bes_theme/format-font-size-increase.svg deleted file mode 100644 index 23bbec8f..00000000 --- a/bes_theme/.icons/bes_theme/format-font-size-increase.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-font.svg b/bes_theme/.icons/bes_theme/format-font.svg deleted file mode 100644 index f2c86b61..00000000 --- a/bes_theme/.icons/bes_theme/format-font.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-header-1.svg b/bes_theme/.icons/bes_theme/format-header-1.svg deleted file mode 100644 index f00b2b92..00000000 --- a/bes_theme/.icons/bes_theme/format-header-1.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-header-2.svg b/bes_theme/.icons/bes_theme/format-header-2.svg deleted file mode 100644 index ca0e488a..00000000 --- a/bes_theme/.icons/bes_theme/format-header-2.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-header-3.svg b/bes_theme/.icons/bes_theme/format-header-3.svg deleted file mode 100644 index 5e9b3750..00000000 --- a/bes_theme/.icons/bes_theme/format-header-3.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-header-4.svg b/bes_theme/.icons/bes_theme/format-header-4.svg deleted file mode 100644 index 940a983d..00000000 --- a/bes_theme/.icons/bes_theme/format-header-4.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-header-5.svg b/bes_theme/.icons/bes_theme/format-header-5.svg deleted file mode 100644 index ae3a0f13..00000000 --- a/bes_theme/.icons/bes_theme/format-header-5.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-header-6.svg b/bes_theme/.icons/bes_theme/format-header-6.svg deleted file mode 100644 index d490600f..00000000 --- a/bes_theme/.icons/bes_theme/format-header-6.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-header-decrease.svg b/bes_theme/.icons/bes_theme/format-header-decrease.svg deleted file mode 100644 index 972ac4c6..00000000 --- a/bes_theme/.icons/bes_theme/format-header-decrease.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-header-equal.svg b/bes_theme/.icons/bes_theme/format-header-equal.svg deleted file mode 100644 index eb362ba9..00000000 --- a/bes_theme/.icons/bes_theme/format-header-equal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-header-increase.svg b/bes_theme/.icons/bes_theme/format-header-increase.svg deleted file mode 100644 index 81f5fe70..00000000 --- a/bes_theme/.icons/bes_theme/format-header-increase.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-header-pound.svg b/bes_theme/.icons/bes_theme/format-header-pound.svg deleted file mode 100644 index 27c6006d..00000000 --- a/bes_theme/.icons/bes_theme/format-header-pound.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-horizontal-align-center.svg b/bes_theme/.icons/bes_theme/format-horizontal-align-center.svg deleted file mode 100644 index 10b6dadd..00000000 --- a/bes_theme/.icons/bes_theme/format-horizontal-align-center.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-horizontal-align-left.svg b/bes_theme/.icons/bes_theme/format-horizontal-align-left.svg deleted file mode 100644 index 59a36346..00000000 --- a/bes_theme/.icons/bes_theme/format-horizontal-align-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-horizontal-align-right.svg b/bes_theme/.icons/bes_theme/format-horizontal-align-right.svg deleted file mode 100644 index 6f90ef19..00000000 --- a/bes_theme/.icons/bes_theme/format-horizontal-align-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-indent-decrease.svg b/bes_theme/.icons/bes_theme/format-indent-decrease.svg deleted file mode 100644 index 0b39c73f..00000000 --- a/bes_theme/.icons/bes_theme/format-indent-decrease.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-indent-increase.svg b/bes_theme/.icons/bes_theme/format-indent-increase.svg deleted file mode 100644 index 34b8c145..00000000 --- a/bes_theme/.icons/bes_theme/format-indent-increase.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-italic.svg b/bes_theme/.icons/bes_theme/format-italic.svg deleted file mode 100644 index acf7c87a..00000000 --- a/bes_theme/.icons/bes_theme/format-italic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-letter-case-lower.svg b/bes_theme/.icons/bes_theme/format-letter-case-lower.svg deleted file mode 100644 index 8ee01077..00000000 --- a/bes_theme/.icons/bes_theme/format-letter-case-lower.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-letter-case-upper.svg b/bes_theme/.icons/bes_theme/format-letter-case-upper.svg deleted file mode 100644 index 71502396..00000000 --- a/bes_theme/.icons/bes_theme/format-letter-case-upper.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-letter-case.svg b/bes_theme/.icons/bes_theme/format-letter-case.svg deleted file mode 100644 index fcb1dc9d..00000000 --- a/bes_theme/.icons/bes_theme/format-letter-case.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-letter-ends-with.svg b/bes_theme/.icons/bes_theme/format-letter-ends-with.svg deleted file mode 100644 index d59efeb7..00000000 --- a/bes_theme/.icons/bes_theme/format-letter-ends-with.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-letter-matches.svg b/bes_theme/.icons/bes_theme/format-letter-matches.svg deleted file mode 100644 index 5316daf4..00000000 --- a/bes_theme/.icons/bes_theme/format-letter-matches.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-letter-starts-with.svg b/bes_theme/.icons/bes_theme/format-letter-starts-with.svg deleted file mode 100644 index ed1667b5..00000000 --- a/bes_theme/.icons/bes_theme/format-letter-starts-with.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-line-spacing.svg b/bes_theme/.icons/bes_theme/format-line-spacing.svg deleted file mode 100644 index 28167422..00000000 --- a/bes_theme/.icons/bes_theme/format-line-spacing.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-line-style.svg b/bes_theme/.icons/bes_theme/format-line-style.svg deleted file mode 100644 index 61b5e58d..00000000 --- a/bes_theme/.icons/bes_theme/format-line-style.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-line-weight.svg b/bes_theme/.icons/bes_theme/format-line-weight.svg deleted file mode 100644 index f1143abe..00000000 --- a/bes_theme/.icons/bes_theme/format-line-weight.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-list-bulleted-square.svg b/bes_theme/.icons/bes_theme/format-list-bulleted-square.svg deleted file mode 100644 index cc42e4a9..00000000 --- a/bes_theme/.icons/bes_theme/format-list-bulleted-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-list-bulleted-triangle.svg b/bes_theme/.icons/bes_theme/format-list-bulleted-triangle.svg deleted file mode 100644 index aa51d0e7..00000000 --- a/bes_theme/.icons/bes_theme/format-list-bulleted-triangle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-list-bulleted-type.svg b/bes_theme/.icons/bes_theme/format-list-bulleted-type.svg deleted file mode 100644 index 5cbfcea9..00000000 --- a/bes_theme/.icons/bes_theme/format-list-bulleted-type.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-list-bulleted.svg b/bes_theme/.icons/bes_theme/format-list-bulleted.svg deleted file mode 100644 index bbc3ace5..00000000 --- a/bes_theme/.icons/bes_theme/format-list-bulleted.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-list-checkbox.svg b/bes_theme/.icons/bes_theme/format-list-checkbox.svg deleted file mode 100644 index 4630e740..00000000 --- a/bes_theme/.icons/bes_theme/format-list-checkbox.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-list-checks.svg b/bes_theme/.icons/bes_theme/format-list-checks.svg deleted file mode 100644 index de06233c..00000000 --- a/bes_theme/.icons/bes_theme/format-list-checks.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-list-numbered-rtl.svg b/bes_theme/.icons/bes_theme/format-list-numbered-rtl.svg deleted file mode 100644 index bf36c5e4..00000000 --- a/bes_theme/.icons/bes_theme/format-list-numbered-rtl.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-list-numbered.svg b/bes_theme/.icons/bes_theme/format-list-numbered.svg deleted file mode 100644 index 1a858b36..00000000 --- a/bes_theme/.icons/bes_theme/format-list-numbered.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-list-text.svg b/bes_theme/.icons/bes_theme/format-list-text.svg deleted file mode 100644 index 60d6b1a0..00000000 --- a/bes_theme/.icons/bes_theme/format-list-text.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-overline.svg b/bes_theme/.icons/bes_theme/format-overline.svg deleted file mode 100644 index ea5510d2..00000000 --- a/bes_theme/.icons/bes_theme/format-overline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-page-break.svg b/bes_theme/.icons/bes_theme/format-page-break.svg deleted file mode 100644 index d677684d..00000000 --- a/bes_theme/.icons/bes_theme/format-page-break.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-paint.svg b/bes_theme/.icons/bes_theme/format-paint.svg deleted file mode 100644 index d22deac8..00000000 --- a/bes_theme/.icons/bes_theme/format-paint.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-paragraph.svg b/bes_theme/.icons/bes_theme/format-paragraph.svg deleted file mode 100644 index bc928976..00000000 --- a/bes_theme/.icons/bes_theme/format-paragraph.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-pilcrow.svg b/bes_theme/.icons/bes_theme/format-pilcrow.svg deleted file mode 100644 index eb7d4e02..00000000 --- a/bes_theme/.icons/bes_theme/format-pilcrow.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-quote-close-outline.svg b/bes_theme/.icons/bes_theme/format-quote-close-outline.svg deleted file mode 100644 index ede2f930..00000000 --- a/bes_theme/.icons/bes_theme/format-quote-close-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-quote-close.svg b/bes_theme/.icons/bes_theme/format-quote-close.svg deleted file mode 100644 index e95118a9..00000000 --- a/bes_theme/.icons/bes_theme/format-quote-close.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-quote-open-outline.svg b/bes_theme/.icons/bes_theme/format-quote-open-outline.svg deleted file mode 100644 index 5376a360..00000000 --- a/bes_theme/.icons/bes_theme/format-quote-open-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-quote-open.svg b/bes_theme/.icons/bes_theme/format-quote-open.svg deleted file mode 100644 index 86657fbc..00000000 --- a/bes_theme/.icons/bes_theme/format-quote-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-rotate-90.svg b/bes_theme/.icons/bes_theme/format-rotate-90.svg deleted file mode 100644 index f94e3464..00000000 --- a/bes_theme/.icons/bes_theme/format-rotate-90.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-section.svg b/bes_theme/.icons/bes_theme/format-section.svg deleted file mode 100644 index e013ced6..00000000 --- a/bes_theme/.icons/bes_theme/format-section.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-size.svg b/bes_theme/.icons/bes_theme/format-size.svg deleted file mode 100644 index 3556ab39..00000000 --- a/bes_theme/.icons/bes_theme/format-size.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-strikethrough-variant.svg b/bes_theme/.icons/bes_theme/format-strikethrough-variant.svg deleted file mode 100644 index 5fdc63f7..00000000 --- a/bes_theme/.icons/bes_theme/format-strikethrough-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-strikethrough.svg b/bes_theme/.icons/bes_theme/format-strikethrough.svg deleted file mode 100644 index 60c07b5f..00000000 --- a/bes_theme/.icons/bes_theme/format-strikethrough.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-subscript.svg b/bes_theme/.icons/bes_theme/format-subscript.svg deleted file mode 100644 index 6ab70eb1..00000000 --- a/bes_theme/.icons/bes_theme/format-subscript.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-superscript.svg b/bes_theme/.icons/bes_theme/format-superscript.svg deleted file mode 100644 index b4aea334..00000000 --- a/bes_theme/.icons/bes_theme/format-superscript.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-text-rotation-angle-down.svg b/bes_theme/.icons/bes_theme/format-text-rotation-angle-down.svg deleted file mode 100644 index 22240b14..00000000 --- a/bes_theme/.icons/bes_theme/format-text-rotation-angle-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-text-rotation-angle-up.svg b/bes_theme/.icons/bes_theme/format-text-rotation-angle-up.svg deleted file mode 100644 index e958e14f..00000000 --- a/bes_theme/.icons/bes_theme/format-text-rotation-angle-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-text-rotation-down-vertical.svg b/bes_theme/.icons/bes_theme/format-text-rotation-down-vertical.svg deleted file mode 100644 index 35c37d49..00000000 --- a/bes_theme/.icons/bes_theme/format-text-rotation-down-vertical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-text-rotation-down.svg b/bes_theme/.icons/bes_theme/format-text-rotation-down.svg deleted file mode 100644 index 69874658..00000000 --- a/bes_theme/.icons/bes_theme/format-text-rotation-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-text-rotation-none.svg b/bes_theme/.icons/bes_theme/format-text-rotation-none.svg deleted file mode 100644 index 54d331f2..00000000 --- a/bes_theme/.icons/bes_theme/format-text-rotation-none.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-text-rotation-up.svg b/bes_theme/.icons/bes_theme/format-text-rotation-up.svg deleted file mode 100644 index bf4340bc..00000000 --- a/bes_theme/.icons/bes_theme/format-text-rotation-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-text-rotation-vertical.svg b/bes_theme/.icons/bes_theme/format-text-rotation-vertical.svg deleted file mode 100644 index e4a2c1cc..00000000 --- a/bes_theme/.icons/bes_theme/format-text-rotation-vertical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-text-variant-outline.svg b/bes_theme/.icons/bes_theme/format-text-variant-outline.svg deleted file mode 100644 index 3d65ef34..00000000 --- a/bes_theme/.icons/bes_theme/format-text-variant-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-text-variant.svg b/bes_theme/.icons/bes_theme/format-text-variant.svg deleted file mode 100644 index 8ebb78ef..00000000 --- a/bes_theme/.icons/bes_theme/format-text-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-text-wrapping-clip.svg b/bes_theme/.icons/bes_theme/format-text-wrapping-clip.svg deleted file mode 100644 index 1c543fea..00000000 --- a/bes_theme/.icons/bes_theme/format-text-wrapping-clip.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-text-wrapping-overflow.svg b/bes_theme/.icons/bes_theme/format-text-wrapping-overflow.svg deleted file mode 100644 index 9275bcfb..00000000 --- a/bes_theme/.icons/bes_theme/format-text-wrapping-overflow.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-text-wrapping-wrap.svg b/bes_theme/.icons/bes_theme/format-text-wrapping-wrap.svg deleted file mode 100644 index 3b2ed4a9..00000000 --- a/bes_theme/.icons/bes_theme/format-text-wrapping-wrap.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-text.svg b/bes_theme/.icons/bes_theme/format-text.svg deleted file mode 100644 index ab634c78..00000000 --- a/bes_theme/.icons/bes_theme/format-text.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-textbox.svg b/bes_theme/.icons/bes_theme/format-textbox.svg deleted file mode 100644 index c9b2880a..00000000 --- a/bes_theme/.icons/bes_theme/format-textbox.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-textdirection-l-to-r.svg b/bes_theme/.icons/bes_theme/format-textdirection-l-to-r.svg deleted file mode 100644 index e8ca0663..00000000 --- a/bes_theme/.icons/bes_theme/format-textdirection-l-to-r.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-textdirection-r-to-l.svg b/bes_theme/.icons/bes_theme/format-textdirection-r-to-l.svg deleted file mode 100644 index 82d97ab6..00000000 --- a/bes_theme/.icons/bes_theme/format-textdirection-r-to-l.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-title.svg b/bes_theme/.icons/bes_theme/format-title.svg deleted file mode 100644 index 03728aa5..00000000 --- a/bes_theme/.icons/bes_theme/format-title.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-underline.svg b/bes_theme/.icons/bes_theme/format-underline.svg deleted file mode 100644 index 8a85e043..00000000 --- a/bes_theme/.icons/bes_theme/format-underline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-vertical-align-bottom.svg b/bes_theme/.icons/bes_theme/format-vertical-align-bottom.svg deleted file mode 100644 index c1f66a3c..00000000 --- a/bes_theme/.icons/bes_theme/format-vertical-align-bottom.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-vertical-align-center.svg b/bes_theme/.icons/bes_theme/format-vertical-align-center.svg deleted file mode 100644 index 1f05a771..00000000 --- a/bes_theme/.icons/bes_theme/format-vertical-align-center.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-vertical-align-top.svg b/bes_theme/.icons/bes_theme/format-vertical-align-top.svg deleted file mode 100644 index fe5e0ad2..00000000 --- a/bes_theme/.icons/bes_theme/format-vertical-align-top.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-wrap-inline.svg b/bes_theme/.icons/bes_theme/format-wrap-inline.svg deleted file mode 100644 index f174571a..00000000 --- a/bes_theme/.icons/bes_theme/format-wrap-inline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-wrap-square.svg b/bes_theme/.icons/bes_theme/format-wrap-square.svg deleted file mode 100644 index 28cc0140..00000000 --- a/bes_theme/.icons/bes_theme/format-wrap-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-wrap-tight.svg b/bes_theme/.icons/bes_theme/format-wrap-tight.svg deleted file mode 100644 index 3c36d358..00000000 --- a/bes_theme/.icons/bes_theme/format-wrap-tight.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/format-wrap-top-bottom.svg b/bes_theme/.icons/bes_theme/format-wrap-top-bottom.svg deleted file mode 100644 index 0a39df49..00000000 --- a/bes_theme/.icons/bes_theme/format-wrap-top-bottom.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/forum-outline.svg b/bes_theme/.icons/bes_theme/forum-outline.svg deleted file mode 100644 index cb5e0f4f..00000000 --- a/bes_theme/.icons/bes_theme/forum-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/forum.svg b/bes_theme/.icons/bes_theme/forum.svg deleted file mode 100644 index ff082dc2..00000000 --- a/bes_theme/.icons/bes_theme/forum.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/forward.svg b/bes_theme/.icons/bes_theme/forward.svg deleted file mode 100644 index 2a7e1720..00000000 --- a/bes_theme/.icons/bes_theme/forward.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/forwardburger.svg b/bes_theme/.icons/bes_theme/forwardburger.svg deleted file mode 100644 index 1f58e4cb..00000000 --- a/bes_theme/.icons/bes_theme/forwardburger.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fountain-pen-tip.svg b/bes_theme/.icons/bes_theme/fountain-pen-tip.svg deleted file mode 100644 index fa126ddd..00000000 --- a/bes_theme/.icons/bes_theme/fountain-pen-tip.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fountain-pen.svg b/bes_theme/.icons/bes_theme/fountain-pen.svg deleted file mode 100644 index 808b9978..00000000 --- a/bes_theme/.icons/bes_theme/fountain-pen.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fountain.svg b/bes_theme/.icons/bes_theme/fountain.svg deleted file mode 100644 index 4c21cc35..00000000 --- a/bes_theme/.icons/bes_theme/fountain.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/freebsd.svg b/bes_theme/.icons/bes_theme/freebsd.svg deleted file mode 100644 index 2f846601..00000000 --- a/bes_theme/.icons/bes_theme/freebsd.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/frequently-asked-questions.svg b/bes_theme/.icons/bes_theme/frequently-asked-questions.svg deleted file mode 100644 index 989641ed..00000000 --- a/bes_theme/.icons/bes_theme/frequently-asked-questions.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fridge-alert-outline.svg b/bes_theme/.icons/bes_theme/fridge-alert-outline.svg deleted file mode 100644 index fe7d9ab5..00000000 --- a/bes_theme/.icons/bes_theme/fridge-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fridge-alert.svg b/bes_theme/.icons/bes_theme/fridge-alert.svg deleted file mode 100644 index 898ea623..00000000 --- a/bes_theme/.icons/bes_theme/fridge-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fridge-bottom.svg b/bes_theme/.icons/bes_theme/fridge-bottom.svg deleted file mode 100644 index 649891cc..00000000 --- a/bes_theme/.icons/bes_theme/fridge-bottom.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fridge-industrial-alert-outline.svg b/bes_theme/.icons/bes_theme/fridge-industrial-alert-outline.svg deleted file mode 100644 index cd0daadc..00000000 --- a/bes_theme/.icons/bes_theme/fridge-industrial-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fridge-industrial-alert.svg b/bes_theme/.icons/bes_theme/fridge-industrial-alert.svg deleted file mode 100644 index 2c3ee537..00000000 --- a/bes_theme/.icons/bes_theme/fridge-industrial-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fridge-industrial-off-outline.svg b/bes_theme/.icons/bes_theme/fridge-industrial-off-outline.svg deleted file mode 100644 index ff1fc848..00000000 --- a/bes_theme/.icons/bes_theme/fridge-industrial-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fridge-industrial-off.svg b/bes_theme/.icons/bes_theme/fridge-industrial-off.svg deleted file mode 100644 index 581a82bb..00000000 --- a/bes_theme/.icons/bes_theme/fridge-industrial-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fridge-industrial-outline.svg b/bes_theme/.icons/bes_theme/fridge-industrial-outline.svg deleted file mode 100644 index 238e139b..00000000 --- a/bes_theme/.icons/bes_theme/fridge-industrial-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fridge-industrial.svg b/bes_theme/.icons/bes_theme/fridge-industrial.svg deleted file mode 100644 index 272520d6..00000000 --- a/bes_theme/.icons/bes_theme/fridge-industrial.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fridge-off-outline.svg b/bes_theme/.icons/bes_theme/fridge-off-outline.svg deleted file mode 100644 index 4376b3de..00000000 --- a/bes_theme/.icons/bes_theme/fridge-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fridge-off.svg b/bes_theme/.icons/bes_theme/fridge-off.svg deleted file mode 100644 index 9a3197c0..00000000 --- a/bes_theme/.icons/bes_theme/fridge-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fridge-outline.svg b/bes_theme/.icons/bes_theme/fridge-outline.svg deleted file mode 100644 index d79169b6..00000000 --- a/bes_theme/.icons/bes_theme/fridge-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fridge-top.svg b/bes_theme/.icons/bes_theme/fridge-top.svg deleted file mode 100644 index ec05648d..00000000 --- a/bes_theme/.icons/bes_theme/fridge-top.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fridge-variant-alert-outline.svg b/bes_theme/.icons/bes_theme/fridge-variant-alert-outline.svg deleted file mode 100644 index 05f55245..00000000 --- a/bes_theme/.icons/bes_theme/fridge-variant-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fridge-variant-alert.svg b/bes_theme/.icons/bes_theme/fridge-variant-alert.svg deleted file mode 100644 index a5a03eee..00000000 --- a/bes_theme/.icons/bes_theme/fridge-variant-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fridge-variant-off-outline.svg b/bes_theme/.icons/bes_theme/fridge-variant-off-outline.svg deleted file mode 100644 index f06d55a3..00000000 --- a/bes_theme/.icons/bes_theme/fridge-variant-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fridge-variant-off.svg b/bes_theme/.icons/bes_theme/fridge-variant-off.svg deleted file mode 100644 index 58022046..00000000 --- a/bes_theme/.icons/bes_theme/fridge-variant-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fridge-variant-outline.svg b/bes_theme/.icons/bes_theme/fridge-variant-outline.svg deleted file mode 100644 index f0f34c31..00000000 --- a/bes_theme/.icons/bes_theme/fridge-variant-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fridge-variant.svg b/bes_theme/.icons/bes_theme/fridge-variant.svg deleted file mode 100644 index 6d5f5439..00000000 --- a/bes_theme/.icons/bes_theme/fridge-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fridge.svg b/bes_theme/.icons/bes_theme/fridge.svg deleted file mode 100644 index 6462cf76..00000000 --- a/bes_theme/.icons/bes_theme/fridge.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fruit-cherries-off.svg b/bes_theme/.icons/bes_theme/fruit-cherries-off.svg deleted file mode 100644 index 9965102e..00000000 --- a/bes_theme/.icons/bes_theme/fruit-cherries-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fruit-cherries.svg b/bes_theme/.icons/bes_theme/fruit-cherries.svg deleted file mode 100644 index cf2b21a9..00000000 --- a/bes_theme/.icons/bes_theme/fruit-cherries.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fruit-citrus-off.svg b/bes_theme/.icons/bes_theme/fruit-citrus-off.svg deleted file mode 100644 index 0d706714..00000000 --- a/bes_theme/.icons/bes_theme/fruit-citrus-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fruit-citrus.svg b/bes_theme/.icons/bes_theme/fruit-citrus.svg deleted file mode 100644 index af26d4bd..00000000 --- a/bes_theme/.icons/bes_theme/fruit-citrus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fruit-grapes-outline.svg b/bes_theme/.icons/bes_theme/fruit-grapes-outline.svg deleted file mode 100644 index 89d441b1..00000000 --- a/bes_theme/.icons/bes_theme/fruit-grapes-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fruit-grapes.svg b/bes_theme/.icons/bes_theme/fruit-grapes.svg deleted file mode 100644 index 18bd9f90..00000000 --- a/bes_theme/.icons/bes_theme/fruit-grapes.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fruit-pineapple.svg b/bes_theme/.icons/bes_theme/fruit-pineapple.svg deleted file mode 100644 index b174a57a..00000000 --- a/bes_theme/.icons/bes_theme/fruit-pineapple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fruit-watermelon.svg b/bes_theme/.icons/bes_theme/fruit-watermelon.svg deleted file mode 100644 index 3111019d..00000000 --- a/bes_theme/.icons/bes_theme/fruit-watermelon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fuel.svg b/bes_theme/.icons/bes_theme/fuel.svg deleted file mode 100644 index 00cdd3d8..00000000 --- a/bes_theme/.icons/bes_theme/fuel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fullscreen-exit.svg b/bes_theme/.icons/bes_theme/fullscreen-exit.svg deleted file mode 100644 index 51f6547e..00000000 --- a/bes_theme/.icons/bes_theme/fullscreen-exit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fullscreen.svg b/bes_theme/.icons/bes_theme/fullscreen.svg deleted file mode 100644 index 58054ae3..00000000 --- a/bes_theme/.icons/bes_theme/fullscreen.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/function-variant.svg b/bes_theme/.icons/bes_theme/function-variant.svg deleted file mode 100644 index bb3f9f6a..00000000 --- a/bes_theme/.icons/bes_theme/function-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/function.svg b/bes_theme/.icons/bes_theme/function.svg deleted file mode 100644 index 738ae14a..00000000 --- a/bes_theme/.icons/bes_theme/function.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/furigana-horizontal.svg b/bes_theme/.icons/bes_theme/furigana-horizontal.svg deleted file mode 100644 index 65c9ac88..00000000 --- a/bes_theme/.icons/bes_theme/furigana-horizontal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/furigana-vertical.svg b/bes_theme/.icons/bes_theme/furigana-vertical.svg deleted file mode 100644 index dcc17a64..00000000 --- a/bes_theme/.icons/bes_theme/furigana-vertical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fuse-alert.svg b/bes_theme/.icons/bes_theme/fuse-alert.svg deleted file mode 100644 index e8f86c57..00000000 --- a/bes_theme/.icons/bes_theme/fuse-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fuse-blade.svg b/bes_theme/.icons/bes_theme/fuse-blade.svg deleted file mode 100644 index 59397104..00000000 --- a/bes_theme/.icons/bes_theme/fuse-blade.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fuse-off.svg b/bes_theme/.icons/bes_theme/fuse-off.svg deleted file mode 100644 index 195f888b..00000000 --- a/bes_theme/.icons/bes_theme/fuse-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/fuse.svg b/bes_theme/.icons/bes_theme/fuse.svg deleted file mode 100644 index 95fac307..00000000 --- a/bes_theme/.icons/bes_theme/fuse.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gamepad-circle-down.svg b/bes_theme/.icons/bes_theme/gamepad-circle-down.svg deleted file mode 100644 index 4b787553..00000000 --- a/bes_theme/.icons/bes_theme/gamepad-circle-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gamepad-circle-left.svg b/bes_theme/.icons/bes_theme/gamepad-circle-left.svg deleted file mode 100644 index 9b02a97f..00000000 --- a/bes_theme/.icons/bes_theme/gamepad-circle-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gamepad-circle-outline.svg b/bes_theme/.icons/bes_theme/gamepad-circle-outline.svg deleted file mode 100644 index 6ff8dc0f..00000000 --- a/bes_theme/.icons/bes_theme/gamepad-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gamepad-circle-right.svg b/bes_theme/.icons/bes_theme/gamepad-circle-right.svg deleted file mode 100644 index 389f52d8..00000000 --- a/bes_theme/.icons/bes_theme/gamepad-circle-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gamepad-circle-up.svg b/bes_theme/.icons/bes_theme/gamepad-circle-up.svg deleted file mode 100644 index 2bf5e405..00000000 --- a/bes_theme/.icons/bes_theme/gamepad-circle-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gamepad-circle.svg b/bes_theme/.icons/bes_theme/gamepad-circle.svg deleted file mode 100644 index 9cfb06d6..00000000 --- a/bes_theme/.icons/bes_theme/gamepad-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gamepad-down.svg b/bes_theme/.icons/bes_theme/gamepad-down.svg deleted file mode 100644 index f44ee556..00000000 --- a/bes_theme/.icons/bes_theme/gamepad-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gamepad-left.svg b/bes_theme/.icons/bes_theme/gamepad-left.svg deleted file mode 100644 index 243dbf78..00000000 --- a/bes_theme/.icons/bes_theme/gamepad-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gamepad-right.svg b/bes_theme/.icons/bes_theme/gamepad-right.svg deleted file mode 100644 index a3c9bde3..00000000 --- a/bes_theme/.icons/bes_theme/gamepad-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gamepad-round-down.svg b/bes_theme/.icons/bes_theme/gamepad-round-down.svg deleted file mode 100644 index 94896522..00000000 --- a/bes_theme/.icons/bes_theme/gamepad-round-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gamepad-round-left.svg b/bes_theme/.icons/bes_theme/gamepad-round-left.svg deleted file mode 100644 index 351dcd32..00000000 --- a/bes_theme/.icons/bes_theme/gamepad-round-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gamepad-round-outline.svg b/bes_theme/.icons/bes_theme/gamepad-round-outline.svg deleted file mode 100644 index 7b63a664..00000000 --- a/bes_theme/.icons/bes_theme/gamepad-round-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gamepad-round-right.svg b/bes_theme/.icons/bes_theme/gamepad-round-right.svg deleted file mode 100644 index 35aa7c51..00000000 --- a/bes_theme/.icons/bes_theme/gamepad-round-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gamepad-round-up.svg b/bes_theme/.icons/bes_theme/gamepad-round-up.svg deleted file mode 100644 index 90c31fe6..00000000 --- a/bes_theme/.icons/bes_theme/gamepad-round-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gamepad-round.svg b/bes_theme/.icons/bes_theme/gamepad-round.svg deleted file mode 100644 index 09b22469..00000000 --- a/bes_theme/.icons/bes_theme/gamepad-round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gamepad-square-outline.svg b/bes_theme/.icons/bes_theme/gamepad-square-outline.svg deleted file mode 100644 index 4e34adb0..00000000 --- a/bes_theme/.icons/bes_theme/gamepad-square-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gamepad-square.svg b/bes_theme/.icons/bes_theme/gamepad-square.svg deleted file mode 100644 index a0b21b82..00000000 --- a/bes_theme/.icons/bes_theme/gamepad-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gamepad-up.svg b/bes_theme/.icons/bes_theme/gamepad-up.svg deleted file mode 100644 index 938d7784..00000000 --- a/bes_theme/.icons/bes_theme/gamepad-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gamepad-variant-outline.svg b/bes_theme/.icons/bes_theme/gamepad-variant-outline.svg deleted file mode 100644 index b9acdf75..00000000 --- a/bes_theme/.icons/bes_theme/gamepad-variant-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gamepad-variant.svg b/bes_theme/.icons/bes_theme/gamepad-variant.svg deleted file mode 100644 index 7a4c6b33..00000000 --- a/bes_theme/.icons/bes_theme/gamepad-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gamepad.svg b/bes_theme/.icons/bes_theme/gamepad.svg deleted file mode 100644 index 550542d6..00000000 --- a/bes_theme/.icons/bes_theme/gamepad.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gamma.svg b/bes_theme/.icons/bes_theme/gamma.svg deleted file mode 100644 index 79d96bc9..00000000 --- a/bes_theme/.icons/bes_theme/gamma.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gantry-crane.svg b/bes_theme/.icons/bes_theme/gantry-crane.svg deleted file mode 100644 index d3ae4944..00000000 --- a/bes_theme/.icons/bes_theme/gantry-crane.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/garage-alert-variant.svg b/bes_theme/.icons/bes_theme/garage-alert-variant.svg deleted file mode 100644 index 7b6fb0d4..00000000 --- a/bes_theme/.icons/bes_theme/garage-alert-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/garage-alert.svg b/bes_theme/.icons/bes_theme/garage-alert.svg deleted file mode 100644 index 7cdcdf21..00000000 --- a/bes_theme/.icons/bes_theme/garage-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/garage-open-variant.svg b/bes_theme/.icons/bes_theme/garage-open-variant.svg deleted file mode 100644 index 10a70caa..00000000 --- a/bes_theme/.icons/bes_theme/garage-open-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/garage-open.svg b/bes_theme/.icons/bes_theme/garage-open.svg deleted file mode 100644 index 35e87573..00000000 --- a/bes_theme/.icons/bes_theme/garage-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/garage-variant.svg b/bes_theme/.icons/bes_theme/garage-variant.svg deleted file mode 100644 index d0988d8d..00000000 --- a/bes_theme/.icons/bes_theme/garage-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/garage.svg b/bes_theme/.icons/bes_theme/garage.svg deleted file mode 100644 index 3ff1e2e0..00000000 --- a/bes_theme/.icons/bes_theme/garage.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gas-cylinder.svg b/bes_theme/.icons/bes_theme/gas-cylinder.svg deleted file mode 100644 index 6468a403..00000000 --- a/bes_theme/.icons/bes_theme/gas-cylinder.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gas-station-off-outline.svg b/bes_theme/.icons/bes_theme/gas-station-off-outline.svg deleted file mode 100644 index 4b6e888b..00000000 --- a/bes_theme/.icons/bes_theme/gas-station-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gas-station-off.svg b/bes_theme/.icons/bes_theme/gas-station-off.svg deleted file mode 100644 index 91ce48f7..00000000 --- a/bes_theme/.icons/bes_theme/gas-station-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gas-station-outline.svg b/bes_theme/.icons/bes_theme/gas-station-outline.svg deleted file mode 100644 index d76d676a..00000000 --- a/bes_theme/.icons/bes_theme/gas-station-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gas-station.svg b/bes_theme/.icons/bes_theme/gas-station.svg deleted file mode 100644 index f2da53e2..00000000 --- a/bes_theme/.icons/bes_theme/gas-station.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gate-and.svg b/bes_theme/.icons/bes_theme/gate-and.svg deleted file mode 100644 index 5a87fc96..00000000 --- a/bes_theme/.icons/bes_theme/gate-and.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gate-arrow-right.svg b/bes_theme/.icons/bes_theme/gate-arrow-right.svg deleted file mode 100644 index c8fccca3..00000000 --- a/bes_theme/.icons/bes_theme/gate-arrow-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gate-nand.svg b/bes_theme/.icons/bes_theme/gate-nand.svg deleted file mode 100644 index 2b5d2fbb..00000000 --- a/bes_theme/.icons/bes_theme/gate-nand.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gate-nor.svg b/bes_theme/.icons/bes_theme/gate-nor.svg deleted file mode 100644 index a7aed451..00000000 --- a/bes_theme/.icons/bes_theme/gate-nor.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gate-not.svg b/bes_theme/.icons/bes_theme/gate-not.svg deleted file mode 100644 index 7ff4a45d..00000000 --- a/bes_theme/.icons/bes_theme/gate-not.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gate-open.svg b/bes_theme/.icons/bes_theme/gate-open.svg deleted file mode 100644 index a231171e..00000000 --- a/bes_theme/.icons/bes_theme/gate-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gate-or.svg b/bes_theme/.icons/bes_theme/gate-or.svg deleted file mode 100644 index 2f39a38c..00000000 --- a/bes_theme/.icons/bes_theme/gate-or.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gate-xnor.svg b/bes_theme/.icons/bes_theme/gate-xnor.svg deleted file mode 100644 index 31b936c4..00000000 --- a/bes_theme/.icons/bes_theme/gate-xnor.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gate-xor.svg b/bes_theme/.icons/bes_theme/gate-xor.svg deleted file mode 100644 index 1c063acc..00000000 --- a/bes_theme/.icons/bes_theme/gate-xor.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gate.svg b/bes_theme/.icons/bes_theme/gate.svg deleted file mode 100644 index ff9fff19..00000000 --- a/bes_theme/.icons/bes_theme/gate.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gatsby.svg b/bes_theme/.icons/bes_theme/gatsby.svg deleted file mode 100644 index f320eafc..00000000 --- a/bes_theme/.icons/bes_theme/gatsby.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gauge-empty.svg b/bes_theme/.icons/bes_theme/gauge-empty.svg deleted file mode 100644 index ab7aaf10..00000000 --- a/bes_theme/.icons/bes_theme/gauge-empty.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gauge-full.svg b/bes_theme/.icons/bes_theme/gauge-full.svg deleted file mode 100644 index d07a3d83..00000000 --- a/bes_theme/.icons/bes_theme/gauge-full.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gauge-low.svg b/bes_theme/.icons/bes_theme/gauge-low.svg deleted file mode 100644 index 9ecfb491..00000000 --- a/bes_theme/.icons/bes_theme/gauge-low.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gauge.svg b/bes_theme/.icons/bes_theme/gauge.svg deleted file mode 100644 index f4dc23a1..00000000 --- a/bes_theme/.icons/bes_theme/gauge.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gavel.svg b/bes_theme/.icons/bes_theme/gavel.svg deleted file mode 100644 index 1ded0cf1..00000000 --- a/bes_theme/.icons/bes_theme/gavel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gender-female.svg b/bes_theme/.icons/bes_theme/gender-female.svg deleted file mode 100644 index 413017db..00000000 --- a/bes_theme/.icons/bes_theme/gender-female.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gender-male-female-variant.svg b/bes_theme/.icons/bes_theme/gender-male-female-variant.svg deleted file mode 100644 index 0a4511ff..00000000 --- a/bes_theme/.icons/bes_theme/gender-male-female-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gender-male-female.svg b/bes_theme/.icons/bes_theme/gender-male-female.svg deleted file mode 100644 index f66f7ff2..00000000 --- a/bes_theme/.icons/bes_theme/gender-male-female.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gender-male.svg b/bes_theme/.icons/bes_theme/gender-male.svg deleted file mode 100644 index f5217dd6..00000000 --- a/bes_theme/.icons/bes_theme/gender-male.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gender-non-binary.svg b/bes_theme/.icons/bes_theme/gender-non-binary.svg deleted file mode 100644 index eacf615e..00000000 --- a/bes_theme/.icons/bes_theme/gender-non-binary.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gender-transgender.svg b/bes_theme/.icons/bes_theme/gender-transgender.svg deleted file mode 100644 index 51ac1fe6..00000000 --- a/bes_theme/.icons/bes_theme/gender-transgender.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gentoo.svg b/bes_theme/.icons/bes_theme/gentoo.svg deleted file mode 100644 index 1bd1c67d..00000000 --- a/bes_theme/.icons/bes_theme/gentoo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gesture-double-tap.svg b/bes_theme/.icons/bes_theme/gesture-double-tap.svg deleted file mode 100644 index 87de1d11..00000000 --- a/bes_theme/.icons/bes_theme/gesture-double-tap.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gesture-pinch.svg b/bes_theme/.icons/bes_theme/gesture-pinch.svg deleted file mode 100644 index 0a4213a5..00000000 --- a/bes_theme/.icons/bes_theme/gesture-pinch.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gesture-spread.svg b/bes_theme/.icons/bes_theme/gesture-spread.svg deleted file mode 100644 index 2501135b..00000000 --- a/bes_theme/.icons/bes_theme/gesture-spread.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gesture-swipe-down.svg b/bes_theme/.icons/bes_theme/gesture-swipe-down.svg deleted file mode 100644 index 538f3f09..00000000 --- a/bes_theme/.icons/bes_theme/gesture-swipe-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gesture-swipe-horizontal.svg b/bes_theme/.icons/bes_theme/gesture-swipe-horizontal.svg deleted file mode 100644 index 36e4800c..00000000 --- a/bes_theme/.icons/bes_theme/gesture-swipe-horizontal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gesture-swipe-left.svg b/bes_theme/.icons/bes_theme/gesture-swipe-left.svg deleted file mode 100644 index 864b9c94..00000000 --- a/bes_theme/.icons/bes_theme/gesture-swipe-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gesture-swipe-right.svg b/bes_theme/.icons/bes_theme/gesture-swipe-right.svg deleted file mode 100644 index f631288b..00000000 --- a/bes_theme/.icons/bes_theme/gesture-swipe-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gesture-swipe-up.svg b/bes_theme/.icons/bes_theme/gesture-swipe-up.svg deleted file mode 100644 index 920e12a6..00000000 --- a/bes_theme/.icons/bes_theme/gesture-swipe-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gesture-swipe-vertical.svg b/bes_theme/.icons/bes_theme/gesture-swipe-vertical.svg deleted file mode 100644 index 1e29fcb0..00000000 --- a/bes_theme/.icons/bes_theme/gesture-swipe-vertical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gesture-swipe.svg b/bes_theme/.icons/bes_theme/gesture-swipe.svg deleted file mode 100644 index 2229b532..00000000 --- a/bes_theme/.icons/bes_theme/gesture-swipe.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gesture-tap-box.svg b/bes_theme/.icons/bes_theme/gesture-tap-box.svg deleted file mode 100644 index d09baf07..00000000 --- a/bes_theme/.icons/bes_theme/gesture-tap-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gesture-tap-button.svg b/bes_theme/.icons/bes_theme/gesture-tap-button.svg deleted file mode 100644 index a459c2b7..00000000 --- a/bes_theme/.icons/bes_theme/gesture-tap-button.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gesture-tap-hold.svg b/bes_theme/.icons/bes_theme/gesture-tap-hold.svg deleted file mode 100644 index 9b1fa7e9..00000000 --- a/bes_theme/.icons/bes_theme/gesture-tap-hold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gesture-tap.svg b/bes_theme/.icons/bes_theme/gesture-tap.svg deleted file mode 100644 index bc2006db..00000000 --- a/bes_theme/.icons/bes_theme/gesture-tap.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gesture-two-double-tap.svg b/bes_theme/.icons/bes_theme/gesture-two-double-tap.svg deleted file mode 100644 index d4b29e0b..00000000 --- a/bes_theme/.icons/bes_theme/gesture-two-double-tap.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gesture-two-tap.svg b/bes_theme/.icons/bes_theme/gesture-two-tap.svg deleted file mode 100644 index e7d66578..00000000 --- a/bes_theme/.icons/bes_theme/gesture-two-tap.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gesture.svg b/bes_theme/.icons/bes_theme/gesture.svg deleted file mode 100644 index 9e6101ec..00000000 --- a/bes_theme/.icons/bes_theme/gesture.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ghost-off-outline.svg b/bes_theme/.icons/bes_theme/ghost-off-outline.svg deleted file mode 100644 index 4c9c5194..00000000 --- a/bes_theme/.icons/bes_theme/ghost-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ghost-off.svg b/bes_theme/.icons/bes_theme/ghost-off.svg deleted file mode 100644 index 3b11adc0..00000000 --- a/bes_theme/.icons/bes_theme/ghost-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ghost-outline.svg b/bes_theme/.icons/bes_theme/ghost-outline.svg deleted file mode 100644 index f2928719..00000000 --- a/bes_theme/.icons/bes_theme/ghost-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ghost.svg b/bes_theme/.icons/bes_theme/ghost.svg deleted file mode 100644 index 315a412c..00000000 --- a/bes_theme/.icons/bes_theme/ghost.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gif.svg b/bes_theme/.icons/bes_theme/gif.svg deleted file mode 100644 index e9f92288..00000000 --- a/bes_theme/.icons/bes_theme/gif.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gift-off-outline.svg b/bes_theme/.icons/bes_theme/gift-off-outline.svg deleted file mode 100644 index 4bf3c99f..00000000 --- a/bes_theme/.icons/bes_theme/gift-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gift-off.svg b/bes_theme/.icons/bes_theme/gift-off.svg deleted file mode 100644 index 29c591b5..00000000 --- a/bes_theme/.icons/bes_theme/gift-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gift-open-outline.svg b/bes_theme/.icons/bes_theme/gift-open-outline.svg deleted file mode 100644 index d9b2bf16..00000000 --- a/bes_theme/.icons/bes_theme/gift-open-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gift-open.svg b/bes_theme/.icons/bes_theme/gift-open.svg deleted file mode 100644 index 32e7ca60..00000000 --- a/bes_theme/.icons/bes_theme/gift-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gift-outline.svg b/bes_theme/.icons/bes_theme/gift-outline.svg deleted file mode 100644 index f96bc123..00000000 --- a/bes_theme/.icons/bes_theme/gift-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gift.svg b/bes_theme/.icons/bes_theme/gift.svg deleted file mode 100644 index 8d9e4ec8..00000000 --- a/bes_theme/.icons/bes_theme/gift.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/git.svg b/bes_theme/.icons/bes_theme/git.svg deleted file mode 100644 index d75660da..00000000 --- a/bes_theme/.icons/bes_theme/git.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/github.svg b/bes_theme/.icons/bes_theme/github.svg deleted file mode 100644 index 3e216faa..00000000 --- a/bes_theme/.icons/bes_theme/github.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gitlab.svg b/bes_theme/.icons/bes_theme/gitlab.svg deleted file mode 100644 index 62ca0c51..00000000 --- a/bes_theme/.icons/bes_theme/gitlab.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/glass-cocktail-off.svg b/bes_theme/.icons/bes_theme/glass-cocktail-off.svg deleted file mode 100644 index f9d4e084..00000000 --- a/bes_theme/.icons/bes_theme/glass-cocktail-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/glass-cocktail.svg b/bes_theme/.icons/bes_theme/glass-cocktail.svg deleted file mode 100644 index 9f92a5ef..00000000 --- a/bes_theme/.icons/bes_theme/glass-cocktail.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/glass-flute.svg b/bes_theme/.icons/bes_theme/glass-flute.svg deleted file mode 100644 index bc41ce89..00000000 --- a/bes_theme/.icons/bes_theme/glass-flute.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/glass-mug-off.svg b/bes_theme/.icons/bes_theme/glass-mug-off.svg deleted file mode 100644 index 5f7b90a9..00000000 --- a/bes_theme/.icons/bes_theme/glass-mug-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/glass-mug-variant-off.svg b/bes_theme/.icons/bes_theme/glass-mug-variant-off.svg deleted file mode 100644 index a34f6568..00000000 --- a/bes_theme/.icons/bes_theme/glass-mug-variant-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/glass-mug-variant.svg b/bes_theme/.icons/bes_theme/glass-mug-variant.svg deleted file mode 100644 index d3daebaf..00000000 --- a/bes_theme/.icons/bes_theme/glass-mug-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/glass-mug.svg b/bes_theme/.icons/bes_theme/glass-mug.svg deleted file mode 100644 index 54941ebe..00000000 --- a/bes_theme/.icons/bes_theme/glass-mug.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/glass-pint-outline.svg b/bes_theme/.icons/bes_theme/glass-pint-outline.svg deleted file mode 100644 index 79a879d6..00000000 --- a/bes_theme/.icons/bes_theme/glass-pint-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/glass-stange.svg b/bes_theme/.icons/bes_theme/glass-stange.svg deleted file mode 100644 index b72ae51f..00000000 --- a/bes_theme/.icons/bes_theme/glass-stange.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/glass-tulip.svg b/bes_theme/.icons/bes_theme/glass-tulip.svg deleted file mode 100644 index b4bacb77..00000000 --- a/bes_theme/.icons/bes_theme/glass-tulip.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/glass-wine.svg b/bes_theme/.icons/bes_theme/glass-wine.svg deleted file mode 100644 index 776ba798..00000000 --- a/bes_theme/.icons/bes_theme/glass-wine.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/glasses.svg b/bes_theme/.icons/bes_theme/glasses.svg deleted file mode 100644 index 98458633..00000000 --- a/bes_theme/.icons/bes_theme/glasses.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/globe-light.svg b/bes_theme/.icons/bes_theme/globe-light.svg deleted file mode 100644 index bbbca0e8..00000000 --- a/bes_theme/.icons/bes_theme/globe-light.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/globe-model.svg b/bes_theme/.icons/bes_theme/globe-model.svg deleted file mode 100644 index e0407554..00000000 --- a/bes_theme/.icons/bes_theme/globe-model.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gmail.svg b/bes_theme/.icons/bes_theme/gmail.svg deleted file mode 100644 index 9dbf60ca..00000000 --- a/bes_theme/.icons/bes_theme/gmail.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gnome.svg b/bes_theme/.icons/bes_theme/gnome.svg deleted file mode 100644 index 3ce291b2..00000000 --- a/bes_theme/.icons/bes_theme/gnome.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/go-kart-track.svg b/bes_theme/.icons/bes_theme/go-kart-track.svg deleted file mode 100644 index d96f2b73..00000000 --- a/bes_theme/.icons/bes_theme/go-kart-track.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/go-kart.svg b/bes_theme/.icons/bes_theme/go-kart.svg deleted file mode 100644 index 122acacb..00000000 --- a/bes_theme/.icons/bes_theme/go-kart.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gog.svg b/bes_theme/.icons/bes_theme/gog.svg deleted file mode 100644 index b463a78f..00000000 --- a/bes_theme/.icons/bes_theme/gog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gold.svg b/bes_theme/.icons/bes_theme/gold.svg deleted file mode 100644 index 33202006..00000000 --- a/bes_theme/.icons/bes_theme/gold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/golf-cart.svg b/bes_theme/.icons/bes_theme/golf-cart.svg deleted file mode 100644 index 8debc31d..00000000 --- a/bes_theme/.icons/bes_theme/golf-cart.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/golf-tee.svg b/bes_theme/.icons/bes_theme/golf-tee.svg deleted file mode 100644 index 9d7b4528..00000000 --- a/bes_theme/.icons/bes_theme/golf-tee.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/golf.svg b/bes_theme/.icons/bes_theme/golf.svg deleted file mode 100644 index 207e587f..00000000 --- a/bes_theme/.icons/bes_theme/golf.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gondola.svg b/bes_theme/.icons/bes_theme/gondola.svg deleted file mode 100644 index c534c660..00000000 --- a/bes_theme/.icons/bes_theme/gondola.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/goodreads.svg b/bes_theme/.icons/bes_theme/goodreads.svg deleted file mode 100644 index 7db4d645..00000000 --- a/bes_theme/.icons/bes_theme/goodreads.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google-ads.svg b/bes_theme/.icons/bes_theme/google-ads.svg deleted file mode 100644 index 9c6f5b70..00000000 --- a/bes_theme/.icons/bes_theme/google-ads.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google-analytics.svg b/bes_theme/.icons/bes_theme/google-analytics.svg deleted file mode 100644 index be31251d..00000000 --- a/bes_theme/.icons/bes_theme/google-analytics.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google-assistant.svg b/bes_theme/.icons/bes_theme/google-assistant.svg deleted file mode 100644 index 8ffafad6..00000000 --- a/bes_theme/.icons/bes_theme/google-assistant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google-cardboard.svg b/bes_theme/.icons/bes_theme/google-cardboard.svg deleted file mode 100644 index c0b4e3be..00000000 --- a/bes_theme/.icons/bes_theme/google-cardboard.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google-chrome.svg b/bes_theme/.icons/bes_theme/google-chrome.svg deleted file mode 100644 index 6fdc1078..00000000 --- a/bes_theme/.icons/bes_theme/google-chrome.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google-circles-communities.svg b/bes_theme/.icons/bes_theme/google-circles-communities.svg deleted file mode 100644 index 5945493d..00000000 --- a/bes_theme/.icons/bes_theme/google-circles-communities.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google-circles-extended.svg b/bes_theme/.icons/bes_theme/google-circles-extended.svg deleted file mode 100644 index c9bafaf8..00000000 --- a/bes_theme/.icons/bes_theme/google-circles-extended.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google-circles-group.svg b/bes_theme/.icons/bes_theme/google-circles-group.svg deleted file mode 100644 index b3c06f93..00000000 --- a/bes_theme/.icons/bes_theme/google-circles-group.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google-circles.svg b/bes_theme/.icons/bes_theme/google-circles.svg deleted file mode 100644 index 4b1b49fa..00000000 --- a/bes_theme/.icons/bes_theme/google-circles.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google-classroom.svg b/bes_theme/.icons/bes_theme/google-classroom.svg deleted file mode 100644 index 41c459db..00000000 --- a/bes_theme/.icons/bes_theme/google-classroom.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google-cloud.svg b/bes_theme/.icons/bes_theme/google-cloud.svg deleted file mode 100644 index c9caf442..00000000 --- a/bes_theme/.icons/bes_theme/google-cloud.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google-controller-off.svg b/bes_theme/.icons/bes_theme/google-controller-off.svg deleted file mode 100644 index b07cf449..00000000 --- a/bes_theme/.icons/bes_theme/google-controller-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google-controller.svg b/bes_theme/.icons/bes_theme/google-controller.svg deleted file mode 100644 index ad42f0cb..00000000 --- a/bes_theme/.icons/bes_theme/google-controller.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google-downasaur.svg b/bes_theme/.icons/bes_theme/google-downasaur.svg deleted file mode 100644 index cdad5534..00000000 --- a/bes_theme/.icons/bes_theme/google-downasaur.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google-drive.svg b/bes_theme/.icons/bes_theme/google-drive.svg deleted file mode 100644 index 4cbbf1a9..00000000 --- a/bes_theme/.icons/bes_theme/google-drive.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google-earth.svg b/bes_theme/.icons/bes_theme/google-earth.svg deleted file mode 100644 index f0c8fd0c..00000000 --- a/bes_theme/.icons/bes_theme/google-earth.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google-fit.svg b/bes_theme/.icons/bes_theme/google-fit.svg deleted file mode 100644 index 3b6b8ae0..00000000 --- a/bes_theme/.icons/bes_theme/google-fit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google-glass.svg b/bes_theme/.icons/bes_theme/google-glass.svg deleted file mode 100644 index 79955fbc..00000000 --- a/bes_theme/.icons/bes_theme/google-glass.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google-hangouts.svg b/bes_theme/.icons/bes_theme/google-hangouts.svg deleted file mode 100644 index 96c6bd3a..00000000 --- a/bes_theme/.icons/bes_theme/google-hangouts.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google-home.svg b/bes_theme/.icons/bes_theme/google-home.svg deleted file mode 100644 index 874948e3..00000000 --- a/bes_theme/.icons/bes_theme/google-home.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google-keep.svg b/bes_theme/.icons/bes_theme/google-keep.svg deleted file mode 100644 index 38fd4d4d..00000000 --- a/bes_theme/.icons/bes_theme/google-keep.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google-lens.svg b/bes_theme/.icons/bes_theme/google-lens.svg deleted file mode 100644 index 5db91aa6..00000000 --- a/bes_theme/.icons/bes_theme/google-lens.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google-maps.svg b/bes_theme/.icons/bes_theme/google-maps.svg deleted file mode 100644 index fc35a968..00000000 --- a/bes_theme/.icons/bes_theme/google-maps.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google-my-business.svg b/bes_theme/.icons/bes_theme/google-my-business.svg deleted file mode 100644 index e08a25c6..00000000 --- a/bes_theme/.icons/bes_theme/google-my-business.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google-nearby.svg b/bes_theme/.icons/bes_theme/google-nearby.svg deleted file mode 100644 index 9fd138a4..00000000 --- a/bes_theme/.icons/bes_theme/google-nearby.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google-photos.svg b/bes_theme/.icons/bes_theme/google-photos.svg deleted file mode 100644 index 162cc630..00000000 --- a/bes_theme/.icons/bes_theme/google-photos.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google-play.svg b/bes_theme/.icons/bes_theme/google-play.svg deleted file mode 100644 index b3cf1150..00000000 --- a/bes_theme/.icons/bes_theme/google-play.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google-plus.svg b/bes_theme/.icons/bes_theme/google-plus.svg deleted file mode 100644 index 685d0258..00000000 --- a/bes_theme/.icons/bes_theme/google-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google-podcast.svg b/bes_theme/.icons/bes_theme/google-podcast.svg deleted file mode 100644 index 5fc13e75..00000000 --- a/bes_theme/.icons/bes_theme/google-podcast.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google-spreadsheet.svg b/bes_theme/.icons/bes_theme/google-spreadsheet.svg deleted file mode 100644 index 3eac6dee..00000000 --- a/bes_theme/.icons/bes_theme/google-spreadsheet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google-street-view.svg b/bes_theme/.icons/bes_theme/google-street-view.svg deleted file mode 100644 index a04d8562..00000000 --- a/bes_theme/.icons/bes_theme/google-street-view.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google-translate.svg b/bes_theme/.icons/bes_theme/google-translate.svg deleted file mode 100644 index 69bc1ee0..00000000 --- a/bes_theme/.icons/bes_theme/google-translate.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/google.svg b/bes_theme/.icons/bes_theme/google.svg deleted file mode 100644 index 7be010f7..00000000 --- a/bes_theme/.icons/bes_theme/google.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/gradient.svg b/bes_theme/.icons/bes_theme/gradient.svg deleted file mode 100644 index 84b1a61d..00000000 --- a/bes_theme/.icons/bes_theme/gradient.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/grain.svg b/bes_theme/.icons/bes_theme/grain.svg deleted file mode 100644 index ae6f8995..00000000 --- a/bes_theme/.icons/bes_theme/grain.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/graph-outline.svg b/bes_theme/.icons/bes_theme/graph-outline.svg deleted file mode 100644 index 33e1d021..00000000 --- a/bes_theme/.icons/bes_theme/graph-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/graph.svg b/bes_theme/.icons/bes_theme/graph.svg deleted file mode 100644 index a3acb829..00000000 --- a/bes_theme/.icons/bes_theme/graph.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/graphql.svg b/bes_theme/.icons/bes_theme/graphql.svg deleted file mode 100644 index 62b7d655..00000000 --- a/bes_theme/.icons/bes_theme/graphql.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/grass.svg b/bes_theme/.icons/bes_theme/grass.svg deleted file mode 100644 index 83f285bb..00000000 --- a/bes_theme/.icons/bes_theme/grass.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/grave-stone.svg b/bes_theme/.icons/bes_theme/grave-stone.svg deleted file mode 100644 index 1151abea..00000000 --- a/bes_theme/.icons/bes_theme/grave-stone.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/grease-pencil.svg b/bes_theme/.icons/bes_theme/grease-pencil.svg deleted file mode 100644 index 1e75df7b..00000000 --- a/bes_theme/.icons/bes_theme/grease-pencil.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/greater-than-or-equal.svg b/bes_theme/.icons/bes_theme/greater-than-or-equal.svg deleted file mode 100644 index d8ce81b5..00000000 --- a/bes_theme/.icons/bes_theme/greater-than-or-equal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/greater-than.svg b/bes_theme/.icons/bes_theme/greater-than.svg deleted file mode 100644 index 99a14d0b..00000000 --- a/bes_theme/.icons/bes_theme/greater-than.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/grid-large.svg b/bes_theme/.icons/bes_theme/grid-large.svg deleted file mode 100644 index 62542f13..00000000 --- a/bes_theme/.icons/bes_theme/grid-large.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/grid-off.svg b/bes_theme/.icons/bes_theme/grid-off.svg deleted file mode 100644 index 671c2802..00000000 --- a/bes_theme/.icons/bes_theme/grid-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/grid.svg b/bes_theme/.icons/bes_theme/grid.svg deleted file mode 100644 index 51fbcc68..00000000 --- a/bes_theme/.icons/bes_theme/grid.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/grill-outline.svg b/bes_theme/.icons/bes_theme/grill-outline.svg deleted file mode 100644 index 37bc5f5e..00000000 --- a/bes_theme/.icons/bes_theme/grill-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/grill.svg b/bes_theme/.icons/bes_theme/grill.svg deleted file mode 100644 index a0f8b03c..00000000 --- a/bes_theme/.icons/bes_theme/grill.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/group.svg b/bes_theme/.icons/bes_theme/group.svg deleted file mode 100644 index e25bcc6d..00000000 --- a/bes_theme/.icons/bes_theme/group.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/guitar-acoustic.svg b/bes_theme/.icons/bes_theme/guitar-acoustic.svg deleted file mode 100644 index a28b365d..00000000 --- a/bes_theme/.icons/bes_theme/guitar-acoustic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/guitar-electric.svg b/bes_theme/.icons/bes_theme/guitar-electric.svg deleted file mode 100644 index 6d3376ac..00000000 --- a/bes_theme/.icons/bes_theme/guitar-electric.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/guitar-pick-outline.svg b/bes_theme/.icons/bes_theme/guitar-pick-outline.svg deleted file mode 100644 index 001aa589..00000000 --- a/bes_theme/.icons/bes_theme/guitar-pick-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/guitar-pick.svg b/bes_theme/.icons/bes_theme/guitar-pick.svg deleted file mode 100644 index aacf2da9..00000000 --- a/bes_theme/.icons/bes_theme/guitar-pick.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/guy-fawkes-mask.svg b/bes_theme/.icons/bes_theme/guy-fawkes-mask.svg deleted file mode 100644 index cd026641..00000000 --- a/bes_theme/.icons/bes_theme/guy-fawkes-mask.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hail.svg b/bes_theme/.icons/bes_theme/hail.svg deleted file mode 100644 index 0f274933..00000000 --- a/bes_theme/.icons/bes_theme/hail.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hair-dryer-outline.svg b/bes_theme/.icons/bes_theme/hair-dryer-outline.svg deleted file mode 100644 index 85f07f73..00000000 --- a/bes_theme/.icons/bes_theme/hair-dryer-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hair-dryer.svg b/bes_theme/.icons/bes_theme/hair-dryer.svg deleted file mode 100644 index 15638dd5..00000000 --- a/bes_theme/.icons/bes_theme/hair-dryer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/halloween.svg b/bes_theme/.icons/bes_theme/halloween.svg deleted file mode 100644 index 0ef6260f..00000000 --- a/bes_theme/.icons/bes_theme/halloween.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hamburger.svg b/bes_theme/.icons/bes_theme/hamburger.svg deleted file mode 100644 index 7537b1c7..00000000 --- a/bes_theme/.icons/bes_theme/hamburger.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hammer-screwdriver.svg b/bes_theme/.icons/bes_theme/hammer-screwdriver.svg deleted file mode 100644 index a9cdfafa..00000000 --- a/bes_theme/.icons/bes_theme/hammer-screwdriver.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hammer-wrench.svg b/bes_theme/.icons/bes_theme/hammer-wrench.svg deleted file mode 100644 index d1378408..00000000 --- a/bes_theme/.icons/bes_theme/hammer-wrench.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hammer.svg b/bes_theme/.icons/bes_theme/hammer.svg deleted file mode 100644 index b86adb30..00000000 --- a/bes_theme/.icons/bes_theme/hammer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hand-heart-outline.svg b/bes_theme/.icons/bes_theme/hand-heart-outline.svg deleted file mode 100644 index 2938d479..00000000 --- a/bes_theme/.icons/bes_theme/hand-heart-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hand-heart.svg b/bes_theme/.icons/bes_theme/hand-heart.svg deleted file mode 100644 index 2665a18c..00000000 --- a/bes_theme/.icons/bes_theme/hand-heart.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hand-left.svg b/bes_theme/.icons/bes_theme/hand-left.svg deleted file mode 100644 index f1ffbd0a..00000000 --- a/bes_theme/.icons/bes_theme/hand-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hand-okay.svg b/bes_theme/.icons/bes_theme/hand-okay.svg deleted file mode 100644 index d1cadef3..00000000 --- a/bes_theme/.icons/bes_theme/hand-okay.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hand-peace-variant.svg b/bes_theme/.icons/bes_theme/hand-peace-variant.svg deleted file mode 100644 index 7a9aa1a9..00000000 --- a/bes_theme/.icons/bes_theme/hand-peace-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hand-peace.svg b/bes_theme/.icons/bes_theme/hand-peace.svg deleted file mode 100644 index a99e3c1a..00000000 --- a/bes_theme/.icons/bes_theme/hand-peace.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hand-pointing-down.svg b/bes_theme/.icons/bes_theme/hand-pointing-down.svg deleted file mode 100644 index 4aaad562..00000000 --- a/bes_theme/.icons/bes_theme/hand-pointing-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hand-pointing-left.svg b/bes_theme/.icons/bes_theme/hand-pointing-left.svg deleted file mode 100644 index 386c0634..00000000 --- a/bes_theme/.icons/bes_theme/hand-pointing-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hand-pointing-right.svg b/bes_theme/.icons/bes_theme/hand-pointing-right.svg deleted file mode 100644 index 277ef798..00000000 --- a/bes_theme/.icons/bes_theme/hand-pointing-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hand-pointing-up.svg b/bes_theme/.icons/bes_theme/hand-pointing-up.svg deleted file mode 100644 index f349ef71..00000000 --- a/bes_theme/.icons/bes_theme/hand-pointing-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hand-right.svg b/bes_theme/.icons/bes_theme/hand-right.svg deleted file mode 100644 index 020fba88..00000000 --- a/bes_theme/.icons/bes_theme/hand-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hand-saw.svg b/bes_theme/.icons/bes_theme/hand-saw.svg deleted file mode 100644 index 7573f2bb..00000000 --- a/bes_theme/.icons/bes_theme/hand-saw.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hand-wash-outline.svg b/bes_theme/.icons/bes_theme/hand-wash-outline.svg deleted file mode 100644 index 3a02979d..00000000 --- a/bes_theme/.icons/bes_theme/hand-wash-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hand-wash.svg b/bes_theme/.icons/bes_theme/hand-wash.svg deleted file mode 100644 index 3d192fb3..00000000 --- a/bes_theme/.icons/bes_theme/hand-wash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hand-water.svg b/bes_theme/.icons/bes_theme/hand-water.svg deleted file mode 100644 index 1bc114e7..00000000 --- a/bes_theme/.icons/bes_theme/hand-water.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hand.svg b/bes_theme/.icons/bes_theme/hand.svg deleted file mode 100644 index f2cfa1c6..00000000 --- a/bes_theme/.icons/bes_theme/hand.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/handball.svg b/bes_theme/.icons/bes_theme/handball.svg deleted file mode 100644 index 961cb00a..00000000 --- a/bes_theme/.icons/bes_theme/handball.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/handcuffs.svg b/bes_theme/.icons/bes_theme/handcuffs.svg deleted file mode 100644 index 911305cb..00000000 --- a/bes_theme/.icons/bes_theme/handcuffs.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/handshake-outline.svg b/bes_theme/.icons/bes_theme/handshake-outline.svg deleted file mode 100644 index 84aafd32..00000000 --- a/bes_theme/.icons/bes_theme/handshake-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/handshake.svg b/bes_theme/.icons/bes_theme/handshake.svg deleted file mode 100644 index 07468f80..00000000 --- a/bes_theme/.icons/bes_theme/handshake.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hanger.svg b/bes_theme/.icons/bes_theme/hanger.svg deleted file mode 100644 index c94427b4..00000000 --- a/bes_theme/.icons/bes_theme/hanger.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hard-hat.svg b/bes_theme/.icons/bes_theme/hard-hat.svg deleted file mode 100644 index c10c2dfe..00000000 --- a/bes_theme/.icons/bes_theme/hard-hat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/harddisk-plus.svg b/bes_theme/.icons/bes_theme/harddisk-plus.svg deleted file mode 100644 index 76735c3d..00000000 --- a/bes_theme/.icons/bes_theme/harddisk-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/harddisk-remove.svg b/bes_theme/.icons/bes_theme/harddisk-remove.svg deleted file mode 100644 index 2e679dfb..00000000 --- a/bes_theme/.icons/bes_theme/harddisk-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/harddisk.svg b/bes_theme/.icons/bes_theme/harddisk.svg deleted file mode 100644 index 5a6451a1..00000000 --- a/bes_theme/.icons/bes_theme/harddisk.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hat-fedora.svg b/bes_theme/.icons/bes_theme/hat-fedora.svg deleted file mode 100644 index b6b28480..00000000 --- a/bes_theme/.icons/bes_theme/hat-fedora.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hazard-lights.svg b/bes_theme/.icons/bes_theme/hazard-lights.svg deleted file mode 100644 index 9a5290a3..00000000 --- a/bes_theme/.icons/bes_theme/hazard-lights.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hdr-off.svg b/bes_theme/.icons/bes_theme/hdr-off.svg deleted file mode 100644 index 0b409347..00000000 --- a/bes_theme/.icons/bes_theme/hdr-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hdr.svg b/bes_theme/.icons/bes_theme/hdr.svg deleted file mode 100644 index 8b2a1463..00000000 --- a/bes_theme/.icons/bes_theme/hdr.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/head-alert-outline.svg b/bes_theme/.icons/bes_theme/head-alert-outline.svg deleted file mode 100644 index d19853ba..00000000 --- a/bes_theme/.icons/bes_theme/head-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/head-alert.svg b/bes_theme/.icons/bes_theme/head-alert.svg deleted file mode 100644 index d90ce76b..00000000 --- a/bes_theme/.icons/bes_theme/head-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/head-check-outline.svg b/bes_theme/.icons/bes_theme/head-check-outline.svg deleted file mode 100644 index f5d9f68b..00000000 --- a/bes_theme/.icons/bes_theme/head-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/head-check.svg b/bes_theme/.icons/bes_theme/head-check.svg deleted file mode 100644 index 7d934eb6..00000000 --- a/bes_theme/.icons/bes_theme/head-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/head-cog-outline.svg b/bes_theme/.icons/bes_theme/head-cog-outline.svg deleted file mode 100644 index a8548797..00000000 --- a/bes_theme/.icons/bes_theme/head-cog-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/head-cog.svg b/bes_theme/.icons/bes_theme/head-cog.svg deleted file mode 100644 index 90094488..00000000 --- a/bes_theme/.icons/bes_theme/head-cog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/head-dots-horizontal-outline.svg b/bes_theme/.icons/bes_theme/head-dots-horizontal-outline.svg deleted file mode 100644 index 609fc2c1..00000000 --- a/bes_theme/.icons/bes_theme/head-dots-horizontal-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/head-dots-horizontal.svg b/bes_theme/.icons/bes_theme/head-dots-horizontal.svg deleted file mode 100644 index 432e475d..00000000 --- a/bes_theme/.icons/bes_theme/head-dots-horizontal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/head-flash-outline.svg b/bes_theme/.icons/bes_theme/head-flash-outline.svg deleted file mode 100644 index 9265ef6a..00000000 --- a/bes_theme/.icons/bes_theme/head-flash-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/head-flash.svg b/bes_theme/.icons/bes_theme/head-flash.svg deleted file mode 100644 index 2b1ad836..00000000 --- a/bes_theme/.icons/bes_theme/head-flash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/head-heart-outline.svg b/bes_theme/.icons/bes_theme/head-heart-outline.svg deleted file mode 100644 index 63705373..00000000 --- a/bes_theme/.icons/bes_theme/head-heart-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/head-heart.svg b/bes_theme/.icons/bes_theme/head-heart.svg deleted file mode 100644 index 68a9c1a5..00000000 --- a/bes_theme/.icons/bes_theme/head-heart.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/head-lightbulb-outline.svg b/bes_theme/.icons/bes_theme/head-lightbulb-outline.svg deleted file mode 100644 index dad1d30c..00000000 --- a/bes_theme/.icons/bes_theme/head-lightbulb-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/head-lightbulb.svg b/bes_theme/.icons/bes_theme/head-lightbulb.svg deleted file mode 100644 index 263afbae..00000000 --- a/bes_theme/.icons/bes_theme/head-lightbulb.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/head-minus-outline.svg b/bes_theme/.icons/bes_theme/head-minus-outline.svg deleted file mode 100644 index 6928fb73..00000000 --- a/bes_theme/.icons/bes_theme/head-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/head-minus.svg b/bes_theme/.icons/bes_theme/head-minus.svg deleted file mode 100644 index 979a4f7d..00000000 --- a/bes_theme/.icons/bes_theme/head-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/head-outline.svg b/bes_theme/.icons/bes_theme/head-outline.svg deleted file mode 100644 index 1320523d..00000000 --- a/bes_theme/.icons/bes_theme/head-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/head-plus-outline.svg b/bes_theme/.icons/bes_theme/head-plus-outline.svg deleted file mode 100644 index 9d77caef..00000000 --- a/bes_theme/.icons/bes_theme/head-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/head-plus.svg b/bes_theme/.icons/bes_theme/head-plus.svg deleted file mode 100644 index 5a0ae5f5..00000000 --- a/bes_theme/.icons/bes_theme/head-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/head-question-outline.svg b/bes_theme/.icons/bes_theme/head-question-outline.svg deleted file mode 100644 index 2c2f1778..00000000 --- a/bes_theme/.icons/bes_theme/head-question-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/head-question.svg b/bes_theme/.icons/bes_theme/head-question.svg deleted file mode 100644 index 54127cd7..00000000 --- a/bes_theme/.icons/bes_theme/head-question.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/head-remove-outline.svg b/bes_theme/.icons/bes_theme/head-remove-outline.svg deleted file mode 100644 index c6849704..00000000 --- a/bes_theme/.icons/bes_theme/head-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/head-remove.svg b/bes_theme/.icons/bes_theme/head-remove.svg deleted file mode 100644 index e5650ab8..00000000 --- a/bes_theme/.icons/bes_theme/head-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/head-snowflake-outline.svg b/bes_theme/.icons/bes_theme/head-snowflake-outline.svg deleted file mode 100644 index a9ab6cda..00000000 --- a/bes_theme/.icons/bes_theme/head-snowflake-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/head-snowflake.svg b/bes_theme/.icons/bes_theme/head-snowflake.svg deleted file mode 100644 index 457efaab..00000000 --- a/bes_theme/.icons/bes_theme/head-snowflake.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/head-sync-outline.svg b/bes_theme/.icons/bes_theme/head-sync-outline.svg deleted file mode 100644 index 878ec5c6..00000000 --- a/bes_theme/.icons/bes_theme/head-sync-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/head-sync.svg b/bes_theme/.icons/bes_theme/head-sync.svg deleted file mode 100644 index 7c574120..00000000 --- a/bes_theme/.icons/bes_theme/head-sync.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/head.svg b/bes_theme/.icons/bes_theme/head.svg deleted file mode 100644 index f1a43695..00000000 --- a/bes_theme/.icons/bes_theme/head.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/headphones-bluetooth.svg b/bes_theme/.icons/bes_theme/headphones-bluetooth.svg deleted file mode 100644 index 62fb6a42..00000000 --- a/bes_theme/.icons/bes_theme/headphones-bluetooth.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/headphones-box.svg b/bes_theme/.icons/bes_theme/headphones-box.svg deleted file mode 100644 index 6a9308da..00000000 --- a/bes_theme/.icons/bes_theme/headphones-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/headphones-off.svg b/bes_theme/.icons/bes_theme/headphones-off.svg deleted file mode 100644 index 072e0864..00000000 --- a/bes_theme/.icons/bes_theme/headphones-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/headphones-settings.svg b/bes_theme/.icons/bes_theme/headphones-settings.svg deleted file mode 100644 index 9c23184f..00000000 --- a/bes_theme/.icons/bes_theme/headphones-settings.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/headphones.svg b/bes_theme/.icons/bes_theme/headphones.svg deleted file mode 100644 index 086c5cba..00000000 --- a/bes_theme/.icons/bes_theme/headphones.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/headset-dock.svg b/bes_theme/.icons/bes_theme/headset-dock.svg deleted file mode 100644 index f35d3ee9..00000000 --- a/bes_theme/.icons/bes_theme/headset-dock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/headset-off.svg b/bes_theme/.icons/bes_theme/headset-off.svg deleted file mode 100644 index 06a6e746..00000000 --- a/bes_theme/.icons/bes_theme/headset-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/headset.svg b/bes_theme/.icons/bes_theme/headset.svg deleted file mode 100644 index e7bb461b..00000000 --- a/bes_theme/.icons/bes_theme/headset.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/heart-box-outline.svg b/bes_theme/.icons/bes_theme/heart-box-outline.svg deleted file mode 100644 index 1c45d5cd..00000000 --- a/bes_theme/.icons/bes_theme/heart-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/heart-box.svg b/bes_theme/.icons/bes_theme/heart-box.svg deleted file mode 100644 index 7c7350bc..00000000 --- a/bes_theme/.icons/bes_theme/heart-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/heart-broken-outline.svg b/bes_theme/.icons/bes_theme/heart-broken-outline.svg deleted file mode 100644 index 293f7f90..00000000 --- a/bes_theme/.icons/bes_theme/heart-broken-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/heart-broken.svg b/bes_theme/.icons/bes_theme/heart-broken.svg deleted file mode 100644 index 9ab3f653..00000000 --- a/bes_theme/.icons/bes_theme/heart-broken.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/heart-circle-outline.svg b/bes_theme/.icons/bes_theme/heart-circle-outline.svg deleted file mode 100644 index bb6a8684..00000000 --- a/bes_theme/.icons/bes_theme/heart-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/heart-circle.svg b/bes_theme/.icons/bes_theme/heart-circle.svg deleted file mode 100644 index 8deb03f9..00000000 --- a/bes_theme/.icons/bes_theme/heart-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/heart-cog-outline.svg b/bes_theme/.icons/bes_theme/heart-cog-outline.svg deleted file mode 100644 index 8d8a51ec..00000000 --- a/bes_theme/.icons/bes_theme/heart-cog-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/heart-cog.svg b/bes_theme/.icons/bes_theme/heart-cog.svg deleted file mode 100644 index 4aaa2eb7..00000000 --- a/bes_theme/.icons/bes_theme/heart-cog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/heart-flash.svg b/bes_theme/.icons/bes_theme/heart-flash.svg deleted file mode 100644 index 5f18dca5..00000000 --- a/bes_theme/.icons/bes_theme/heart-flash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/heart-half-full.svg b/bes_theme/.icons/bes_theme/heart-half-full.svg deleted file mode 100644 index a3f9704a..00000000 --- a/bes_theme/.icons/bes_theme/heart-half-full.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/heart-half-outline.svg b/bes_theme/.icons/bes_theme/heart-half-outline.svg deleted file mode 100644 index 1bf51a8c..00000000 --- a/bes_theme/.icons/bes_theme/heart-half-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/heart-half.svg b/bes_theme/.icons/bes_theme/heart-half.svg deleted file mode 100644 index 3670d5ee..00000000 --- a/bes_theme/.icons/bes_theme/heart-half.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/heart-minus-outline.svg b/bes_theme/.icons/bes_theme/heart-minus-outline.svg deleted file mode 100644 index 96a02985..00000000 --- a/bes_theme/.icons/bes_theme/heart-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/heart-minus.svg b/bes_theme/.icons/bes_theme/heart-minus.svg deleted file mode 100644 index 6afe0a6e..00000000 --- a/bes_theme/.icons/bes_theme/heart-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/heart-multiple-outline.svg b/bes_theme/.icons/bes_theme/heart-multiple-outline.svg deleted file mode 100644 index fec0158e..00000000 --- a/bes_theme/.icons/bes_theme/heart-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/heart-multiple.svg b/bes_theme/.icons/bes_theme/heart-multiple.svg deleted file mode 100644 index fa9b3a6d..00000000 --- a/bes_theme/.icons/bes_theme/heart-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/heart-off-outline.svg b/bes_theme/.icons/bes_theme/heart-off-outline.svg deleted file mode 100644 index b0fed243..00000000 --- a/bes_theme/.icons/bes_theme/heart-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/heart-off.svg b/bes_theme/.icons/bes_theme/heart-off.svg deleted file mode 100644 index 3b3829c8..00000000 --- a/bes_theme/.icons/bes_theme/heart-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/heart-outline.svg b/bes_theme/.icons/bes_theme/heart-outline.svg deleted file mode 100644 index e95a48a9..00000000 --- a/bes_theme/.icons/bes_theme/heart-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/heart-plus-outline.svg b/bes_theme/.icons/bes_theme/heart-plus-outline.svg deleted file mode 100644 index 42dcd81e..00000000 --- a/bes_theme/.icons/bes_theme/heart-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/heart-plus.svg b/bes_theme/.icons/bes_theme/heart-plus.svg deleted file mode 100644 index a2ac1d52..00000000 --- a/bes_theme/.icons/bes_theme/heart-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/heart-pulse.svg b/bes_theme/.icons/bes_theme/heart-pulse.svg deleted file mode 100644 index a70218ab..00000000 --- a/bes_theme/.icons/bes_theme/heart-pulse.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/heart-remove-outline.svg b/bes_theme/.icons/bes_theme/heart-remove-outline.svg deleted file mode 100644 index 66b39187..00000000 --- a/bes_theme/.icons/bes_theme/heart-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/heart-remove.svg b/bes_theme/.icons/bes_theme/heart-remove.svg deleted file mode 100644 index 0239b04b..00000000 --- a/bes_theme/.icons/bes_theme/heart-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/heart-settings-outline.svg b/bes_theme/.icons/bes_theme/heart-settings-outline.svg deleted file mode 100644 index 945eb6d7..00000000 --- a/bes_theme/.icons/bes_theme/heart-settings-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/heart-settings.svg b/bes_theme/.icons/bes_theme/heart-settings.svg deleted file mode 100644 index 3503aedd..00000000 --- a/bes_theme/.icons/bes_theme/heart-settings.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/heart.svg b/bes_theme/.icons/bes_theme/heart.svg deleted file mode 100644 index d4471c1e..00000000 --- a/bes_theme/.icons/bes_theme/heart.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/helicopter.svg b/bes_theme/.icons/bes_theme/helicopter.svg deleted file mode 100644 index d8cad52d..00000000 --- a/bes_theme/.icons/bes_theme/helicopter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/help-box.svg b/bes_theme/.icons/bes_theme/help-box.svg deleted file mode 100644 index 41329115..00000000 --- a/bes_theme/.icons/bes_theme/help-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/help-circle-outline.svg b/bes_theme/.icons/bes_theme/help-circle-outline.svg deleted file mode 100644 index ed602591..00000000 --- a/bes_theme/.icons/bes_theme/help-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/help-circle.svg b/bes_theme/.icons/bes_theme/help-circle.svg deleted file mode 100644 index b3029233..00000000 --- a/bes_theme/.icons/bes_theme/help-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/help-network-outline.svg b/bes_theme/.icons/bes_theme/help-network-outline.svg deleted file mode 100644 index 08773b96..00000000 --- a/bes_theme/.icons/bes_theme/help-network-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/help-network.svg b/bes_theme/.icons/bes_theme/help-network.svg deleted file mode 100644 index 11ec7893..00000000 --- a/bes_theme/.icons/bes_theme/help-network.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/help-rhombus-outline.svg b/bes_theme/.icons/bes_theme/help-rhombus-outline.svg deleted file mode 100644 index 0aad4507..00000000 --- a/bes_theme/.icons/bes_theme/help-rhombus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/help-rhombus.svg b/bes_theme/.icons/bes_theme/help-rhombus.svg deleted file mode 100644 index c52044f6..00000000 --- a/bes_theme/.icons/bes_theme/help-rhombus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/help.svg b/bes_theme/.icons/bes_theme/help.svg deleted file mode 100644 index 536e5af2..00000000 --- a/bes_theme/.icons/bes_theme/help.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hexadecimal.svg b/bes_theme/.icons/bes_theme/hexadecimal.svg deleted file mode 100644 index 94246e00..00000000 --- a/bes_theme/.icons/bes_theme/hexadecimal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hexagon-multiple-outline.svg b/bes_theme/.icons/bes_theme/hexagon-multiple-outline.svg deleted file mode 100644 index 794ffb1e..00000000 --- a/bes_theme/.icons/bes_theme/hexagon-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hexagon-multiple.svg b/bes_theme/.icons/bes_theme/hexagon-multiple.svg deleted file mode 100644 index f0d13d58..00000000 --- a/bes_theme/.icons/bes_theme/hexagon-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hexagon-outline.svg b/bes_theme/.icons/bes_theme/hexagon-outline.svg deleted file mode 100644 index 4e3af4c2..00000000 --- a/bes_theme/.icons/bes_theme/hexagon-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hexagon-slice-1.svg b/bes_theme/.icons/bes_theme/hexagon-slice-1.svg deleted file mode 100644 index 25576e8b..00000000 --- a/bes_theme/.icons/bes_theme/hexagon-slice-1.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hexagon-slice-2.svg b/bes_theme/.icons/bes_theme/hexagon-slice-2.svg deleted file mode 100644 index f23d1355..00000000 --- a/bes_theme/.icons/bes_theme/hexagon-slice-2.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hexagon-slice-3.svg b/bes_theme/.icons/bes_theme/hexagon-slice-3.svg deleted file mode 100644 index 20d4a1f9..00000000 --- a/bes_theme/.icons/bes_theme/hexagon-slice-3.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hexagon-slice-4.svg b/bes_theme/.icons/bes_theme/hexagon-slice-4.svg deleted file mode 100644 index 345606e8..00000000 --- a/bes_theme/.icons/bes_theme/hexagon-slice-4.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hexagon-slice-5.svg b/bes_theme/.icons/bes_theme/hexagon-slice-5.svg deleted file mode 100644 index 5382d18a..00000000 --- a/bes_theme/.icons/bes_theme/hexagon-slice-5.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hexagon-slice-6.svg b/bes_theme/.icons/bes_theme/hexagon-slice-6.svg deleted file mode 100644 index 05d72870..00000000 --- a/bes_theme/.icons/bes_theme/hexagon-slice-6.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hexagon.svg b/bes_theme/.icons/bes_theme/hexagon.svg deleted file mode 100644 index 6b0adb97..00000000 --- a/bes_theme/.icons/bes_theme/hexagon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hexagram-outline.svg b/bes_theme/.icons/bes_theme/hexagram-outline.svg deleted file mode 100644 index a5af1fef..00000000 --- a/bes_theme/.icons/bes_theme/hexagram-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hexagram.svg b/bes_theme/.icons/bes_theme/hexagram.svg deleted file mode 100644 index 91c435da..00000000 --- a/bes_theme/.icons/bes_theme/hexagram.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/high-definition-box.svg b/bes_theme/.icons/bes_theme/high-definition-box.svg deleted file mode 100644 index 1aba4c54..00000000 --- a/bes_theme/.icons/bes_theme/high-definition-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/high-definition.svg b/bes_theme/.icons/bes_theme/high-definition.svg deleted file mode 100644 index a192011d..00000000 --- a/bes_theme/.icons/bes_theme/high-definition.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/highway.svg b/bes_theme/.icons/bes_theme/highway.svg deleted file mode 100644 index 369028a8..00000000 --- a/bes_theme/.icons/bes_theme/highway.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hiking.svg b/bes_theme/.icons/bes_theme/hiking.svg deleted file mode 100644 index 7f5e3c0a..00000000 --- a/bes_theme/.icons/bes_theme/hiking.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hinduism.svg b/bes_theme/.icons/bes_theme/hinduism.svg deleted file mode 100644 index 63f40a4d..00000000 --- a/bes_theme/.icons/bes_theme/hinduism.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/history.svg b/bes_theme/.icons/bes_theme/history.svg deleted file mode 100644 index c37b5bef..00000000 --- a/bes_theme/.icons/bes_theme/history.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hockey-puck.svg b/bes_theme/.icons/bes_theme/hockey-puck.svg deleted file mode 100644 index 5564466f..00000000 --- a/bes_theme/.icons/bes_theme/hockey-puck.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hockey-sticks.svg b/bes_theme/.icons/bes_theme/hockey-sticks.svg deleted file mode 100644 index ee2e7686..00000000 --- a/bes_theme/.icons/bes_theme/hockey-sticks.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hololens.svg b/bes_theme/.icons/bes_theme/hololens.svg deleted file mode 100644 index 325f9f57..00000000 --- a/bes_theme/.icons/bes_theme/hololens.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-account.svg b/bes_theme/.icons/bes_theme/home-account.svg deleted file mode 100644 index 6a034274..00000000 --- a/bes_theme/.icons/bes_theme/home-account.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-alert-outline.svg b/bes_theme/.icons/bes_theme/home-alert-outline.svg deleted file mode 100644 index e6561573..00000000 --- a/bes_theme/.icons/bes_theme/home-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-alert.svg b/bes_theme/.icons/bes_theme/home-alert.svg deleted file mode 100644 index 12efb00f..00000000 --- a/bes_theme/.icons/bes_theme/home-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-analytics.svg b/bes_theme/.icons/bes_theme/home-analytics.svg deleted file mode 100644 index 84dc522a..00000000 --- a/bes_theme/.icons/bes_theme/home-analytics.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-assistant.svg b/bes_theme/.icons/bes_theme/home-assistant.svg deleted file mode 100644 index 67d2162e..00000000 --- a/bes_theme/.icons/bes_theme/home-assistant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-automation.svg b/bes_theme/.icons/bes_theme/home-automation.svg deleted file mode 100644 index b5281dfc..00000000 --- a/bes_theme/.icons/bes_theme/home-automation.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-circle-outline.svg b/bes_theme/.icons/bes_theme/home-circle-outline.svg deleted file mode 100644 index fe6c5319..00000000 --- a/bes_theme/.icons/bes_theme/home-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-circle.svg b/bes_theme/.icons/bes_theme/home-circle.svg deleted file mode 100644 index 7998e9b5..00000000 --- a/bes_theme/.icons/bes_theme/home-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-city-outline.svg b/bes_theme/.icons/bes_theme/home-city-outline.svg deleted file mode 100644 index 070b9d6a..00000000 --- a/bes_theme/.icons/bes_theme/home-city-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-city.svg b/bes_theme/.icons/bes_theme/home-city.svg deleted file mode 100644 index 0a19b0b0..00000000 --- a/bes_theme/.icons/bes_theme/home-city.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-currency-usd.svg b/bes_theme/.icons/bes_theme/home-currency-usd.svg deleted file mode 100644 index 03223082..00000000 --- a/bes_theme/.icons/bes_theme/home-currency-usd.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-edit-outline.svg b/bes_theme/.icons/bes_theme/home-edit-outline.svg deleted file mode 100644 index 76a6032b..00000000 --- a/bes_theme/.icons/bes_theme/home-edit-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-edit.svg b/bes_theme/.icons/bes_theme/home-edit.svg deleted file mode 100644 index 16d18467..00000000 --- a/bes_theme/.icons/bes_theme/home-edit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-export-outline.svg b/bes_theme/.icons/bes_theme/home-export-outline.svg deleted file mode 100644 index c4c720ae..00000000 --- a/bes_theme/.icons/bes_theme/home-export-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-flood.svg b/bes_theme/.icons/bes_theme/home-flood.svg deleted file mode 100644 index 5b04dbd9..00000000 --- a/bes_theme/.icons/bes_theme/home-flood.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-floor-0.svg b/bes_theme/.icons/bes_theme/home-floor-0.svg deleted file mode 100644 index 60cb7522..00000000 --- a/bes_theme/.icons/bes_theme/home-floor-0.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-floor-1.svg b/bes_theme/.icons/bes_theme/home-floor-1.svg deleted file mode 100644 index 235362bd..00000000 --- a/bes_theme/.icons/bes_theme/home-floor-1.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-floor-2.svg b/bes_theme/.icons/bes_theme/home-floor-2.svg deleted file mode 100644 index 1549baf3..00000000 --- a/bes_theme/.icons/bes_theme/home-floor-2.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-floor-3.svg b/bes_theme/.icons/bes_theme/home-floor-3.svg deleted file mode 100644 index 9ac249b5..00000000 --- a/bes_theme/.icons/bes_theme/home-floor-3.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-floor-a.svg b/bes_theme/.icons/bes_theme/home-floor-a.svg deleted file mode 100644 index 8f6a7824..00000000 --- a/bes_theme/.icons/bes_theme/home-floor-a.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-floor-b.svg b/bes_theme/.icons/bes_theme/home-floor-b.svg deleted file mode 100644 index 7f5ac958..00000000 --- a/bes_theme/.icons/bes_theme/home-floor-b.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-floor-g.svg b/bes_theme/.icons/bes_theme/home-floor-g.svg deleted file mode 100644 index 6f9a18fb..00000000 --- a/bes_theme/.icons/bes_theme/home-floor-g.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-floor-l.svg b/bes_theme/.icons/bes_theme/home-floor-l.svg deleted file mode 100644 index 54a18ac8..00000000 --- a/bes_theme/.icons/bes_theme/home-floor-l.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-floor-negative-1.svg b/bes_theme/.icons/bes_theme/home-floor-negative-1.svg deleted file mode 100644 index e6667db2..00000000 --- a/bes_theme/.icons/bes_theme/home-floor-negative-1.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-group.svg b/bes_theme/.icons/bes_theme/home-group.svg deleted file mode 100644 index d81266de..00000000 --- a/bes_theme/.icons/bes_theme/home-group.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-heart.svg b/bes_theme/.icons/bes_theme/home-heart.svg deleted file mode 100644 index dc6ec89e..00000000 --- a/bes_theme/.icons/bes_theme/home-heart.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-import-outline.svg b/bes_theme/.icons/bes_theme/home-import-outline.svg deleted file mode 100644 index cb79855c..00000000 --- a/bes_theme/.icons/bes_theme/home-import-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-lightbulb-outline.svg b/bes_theme/.icons/bes_theme/home-lightbulb-outline.svg deleted file mode 100644 index 1435c2d1..00000000 --- a/bes_theme/.icons/bes_theme/home-lightbulb-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-lightbulb.svg b/bes_theme/.icons/bes_theme/home-lightbulb.svg deleted file mode 100644 index ea20b25b..00000000 --- a/bes_theme/.icons/bes_theme/home-lightbulb.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-lock-open.svg b/bes_theme/.icons/bes_theme/home-lock-open.svg deleted file mode 100644 index 173f953f..00000000 --- a/bes_theme/.icons/bes_theme/home-lock-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-lock.svg b/bes_theme/.icons/bes_theme/home-lock.svg deleted file mode 100644 index cffdfe51..00000000 --- a/bes_theme/.icons/bes_theme/home-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-map-marker.svg b/bes_theme/.icons/bes_theme/home-map-marker.svg deleted file mode 100644 index 96d02599..00000000 --- a/bes_theme/.icons/bes_theme/home-map-marker.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-minus-outline.svg b/bes_theme/.icons/bes_theme/home-minus-outline.svg deleted file mode 100644 index fa0d5677..00000000 --- a/bes_theme/.icons/bes_theme/home-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-minus.svg b/bes_theme/.icons/bes_theme/home-minus.svg deleted file mode 100644 index 6544a609..00000000 --- a/bes_theme/.icons/bes_theme/home-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-modern.svg b/bes_theme/.icons/bes_theme/home-modern.svg deleted file mode 100644 index c600b6dc..00000000 --- a/bes_theme/.icons/bes_theme/home-modern.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-outline.svg b/bes_theme/.icons/bes_theme/home-outline.svg deleted file mode 100644 index 36a1b5e4..00000000 --- a/bes_theme/.icons/bes_theme/home-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-plus-outline.svg b/bes_theme/.icons/bes_theme/home-plus-outline.svg deleted file mode 100644 index 19d98559..00000000 --- a/bes_theme/.icons/bes_theme/home-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-plus.svg b/bes_theme/.icons/bes_theme/home-plus.svg deleted file mode 100644 index 57441fba..00000000 --- a/bes_theme/.icons/bes_theme/home-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-remove-outline.svg b/bes_theme/.icons/bes_theme/home-remove-outline.svg deleted file mode 100644 index 9b7c195f..00000000 --- a/bes_theme/.icons/bes_theme/home-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-remove.svg b/bes_theme/.icons/bes_theme/home-remove.svg deleted file mode 100644 index 4e939e39..00000000 --- a/bes_theme/.icons/bes_theme/home-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-roof.svg b/bes_theme/.icons/bes_theme/home-roof.svg deleted file mode 100644 index 9a463230..00000000 --- a/bes_theme/.icons/bes_theme/home-roof.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-search-outline.svg b/bes_theme/.icons/bes_theme/home-search-outline.svg deleted file mode 100644 index 58699369..00000000 --- a/bes_theme/.icons/bes_theme/home-search-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-search.svg b/bes_theme/.icons/bes_theme/home-search.svg deleted file mode 100644 index bef2eddc..00000000 --- a/bes_theme/.icons/bes_theme/home-search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-thermometer-outline.svg b/bes_theme/.icons/bes_theme/home-thermometer-outline.svg deleted file mode 100644 index 3799c7bc..00000000 --- a/bes_theme/.icons/bes_theme/home-thermometer-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-thermometer.svg b/bes_theme/.icons/bes_theme/home-thermometer.svg deleted file mode 100644 index 72d9b6a5..00000000 --- a/bes_theme/.icons/bes_theme/home-thermometer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-variant-outline.svg b/bes_theme/.icons/bes_theme/home-variant-outline.svg deleted file mode 100644 index 3e6a703d..00000000 --- a/bes_theme/.icons/bes_theme/home-variant-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home-variant.svg b/bes_theme/.icons/bes_theme/home-variant.svg deleted file mode 100644 index 2a5d3099..00000000 --- a/bes_theme/.icons/bes_theme/home-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/home.svg b/bes_theme/.icons/bes_theme/home.svg deleted file mode 100644 index 814d34e2..00000000 --- a/bes_theme/.icons/bes_theme/home.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hook-off.svg b/bes_theme/.icons/bes_theme/hook-off.svg deleted file mode 100644 index 95963d26..00000000 --- a/bes_theme/.icons/bes_theme/hook-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hook.svg b/bes_theme/.icons/bes_theme/hook.svg deleted file mode 100644 index 492903ea..00000000 --- a/bes_theme/.icons/bes_theme/hook.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hops.svg b/bes_theme/.icons/bes_theme/hops.svg deleted file mode 100644 index 504a4534..00000000 --- a/bes_theme/.icons/bes_theme/hops.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/horizontal-rotate-clockwise.svg b/bes_theme/.icons/bes_theme/horizontal-rotate-clockwise.svg deleted file mode 100644 index 2829547e..00000000 --- a/bes_theme/.icons/bes_theme/horizontal-rotate-clockwise.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/horizontal-rotate-counterclockwise.svg b/bes_theme/.icons/bes_theme/horizontal-rotate-counterclockwise.svg deleted file mode 100644 index 6ddeed23..00000000 --- a/bes_theme/.icons/bes_theme/horizontal-rotate-counterclockwise.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/horse-human.svg b/bes_theme/.icons/bes_theme/horse-human.svg deleted file mode 100644 index 884fad7d..00000000 --- a/bes_theme/.icons/bes_theme/horse-human.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/horse-variant.svg b/bes_theme/.icons/bes_theme/horse-variant.svg deleted file mode 100644 index 1fce20f6..00000000 --- a/bes_theme/.icons/bes_theme/horse-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/horse.svg b/bes_theme/.icons/bes_theme/horse.svg deleted file mode 100644 index b0a0c4c0..00000000 --- a/bes_theme/.icons/bes_theme/horse.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/horseshoe.svg b/bes_theme/.icons/bes_theme/horseshoe.svg deleted file mode 100644 index d22104db..00000000 --- a/bes_theme/.icons/bes_theme/horseshoe.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hospital-box-outline.svg b/bes_theme/.icons/bes_theme/hospital-box-outline.svg deleted file mode 100644 index b7457c51..00000000 --- a/bes_theme/.icons/bes_theme/hospital-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hospital-box.svg b/bes_theme/.icons/bes_theme/hospital-box.svg deleted file mode 100644 index f85f84aa..00000000 --- a/bes_theme/.icons/bes_theme/hospital-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hospital-building.svg b/bes_theme/.icons/bes_theme/hospital-building.svg deleted file mode 100644 index a86080a9..00000000 --- a/bes_theme/.icons/bes_theme/hospital-building.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hospital-marker.svg b/bes_theme/.icons/bes_theme/hospital-marker.svg deleted file mode 100644 index 2c5ae208..00000000 --- a/bes_theme/.icons/bes_theme/hospital-marker.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hospital.svg b/bes_theme/.icons/bes_theme/hospital.svg deleted file mode 100644 index 9aa85bc1..00000000 --- a/bes_theme/.icons/bes_theme/hospital.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hot-tub.svg b/bes_theme/.icons/bes_theme/hot-tub.svg deleted file mode 100644 index e91576fa..00000000 --- a/bes_theme/.icons/bes_theme/hot-tub.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hours-24.svg b/bes_theme/.icons/bes_theme/hours-24.svg deleted file mode 100644 index c59a2bc9..00000000 --- a/bes_theme/.icons/bes_theme/hours-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hubspot.svg b/bes_theme/.icons/bes_theme/hubspot.svg deleted file mode 100644 index 3c9e75db..00000000 --- a/bes_theme/.icons/bes_theme/hubspot.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hulu.svg b/bes_theme/.icons/bes_theme/hulu.svg deleted file mode 100644 index 2df0bb52..00000000 --- a/bes_theme/.icons/bes_theme/hulu.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/human-baby-changing-table.svg b/bes_theme/.icons/bes_theme/human-baby-changing-table.svg deleted file mode 100644 index 3992c773..00000000 --- a/bes_theme/.icons/bes_theme/human-baby-changing-table.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/human-cane.svg b/bes_theme/.icons/bes_theme/human-cane.svg deleted file mode 100644 index d1e2576f..00000000 --- a/bes_theme/.icons/bes_theme/human-cane.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/human-capacity-decrease.svg b/bes_theme/.icons/bes_theme/human-capacity-decrease.svg deleted file mode 100644 index 4fc704a8..00000000 --- a/bes_theme/.icons/bes_theme/human-capacity-decrease.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/human-capacity-increase.svg b/bes_theme/.icons/bes_theme/human-capacity-increase.svg deleted file mode 100644 index ab325483..00000000 --- a/bes_theme/.icons/bes_theme/human-capacity-increase.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/human-child.svg b/bes_theme/.icons/bes_theme/human-child.svg deleted file mode 100644 index 9d63a09c..00000000 --- a/bes_theme/.icons/bes_theme/human-child.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/human-edit.svg b/bes_theme/.icons/bes_theme/human-edit.svg deleted file mode 100644 index a13487f6..00000000 --- a/bes_theme/.icons/bes_theme/human-edit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/human-female-boy.svg b/bes_theme/.icons/bes_theme/human-female-boy.svg deleted file mode 100644 index 7945211f..00000000 --- a/bes_theme/.icons/bes_theme/human-female-boy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/human-female-dance.svg b/bes_theme/.icons/bes_theme/human-female-dance.svg deleted file mode 100644 index 16ef5d92..00000000 --- a/bes_theme/.icons/bes_theme/human-female-dance.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/human-female-female.svg b/bes_theme/.icons/bes_theme/human-female-female.svg deleted file mode 100644 index 06927710..00000000 --- a/bes_theme/.icons/bes_theme/human-female-female.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/human-female-girl.svg b/bes_theme/.icons/bes_theme/human-female-girl.svg deleted file mode 100644 index 8c95a008..00000000 --- a/bes_theme/.icons/bes_theme/human-female-girl.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/human-female.svg b/bes_theme/.icons/bes_theme/human-female.svg deleted file mode 100644 index e9a6a500..00000000 --- a/bes_theme/.icons/bes_theme/human-female.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/human-greeting-proximity.svg b/bes_theme/.icons/bes_theme/human-greeting-proximity.svg deleted file mode 100644 index 6a636798..00000000 --- a/bes_theme/.icons/bes_theme/human-greeting-proximity.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/human-greeting.svg b/bes_theme/.icons/bes_theme/human-greeting.svg deleted file mode 100644 index c448ced6..00000000 --- a/bes_theme/.icons/bes_theme/human-greeting.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/human-handsdown.svg b/bes_theme/.icons/bes_theme/human-handsdown.svg deleted file mode 100644 index eefdb2a5..00000000 --- a/bes_theme/.icons/bes_theme/human-handsdown.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/human-handsup.svg b/bes_theme/.icons/bes_theme/human-handsup.svg deleted file mode 100644 index 5aaffd86..00000000 --- a/bes_theme/.icons/bes_theme/human-handsup.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/human-male-boy.svg b/bes_theme/.icons/bes_theme/human-male-boy.svg deleted file mode 100644 index 38579bf3..00000000 --- a/bes_theme/.icons/bes_theme/human-male-boy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/human-male-child.svg b/bes_theme/.icons/bes_theme/human-male-child.svg deleted file mode 100644 index 8583a2aa..00000000 --- a/bes_theme/.icons/bes_theme/human-male-child.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/human-male-female.svg b/bes_theme/.icons/bes_theme/human-male-female.svg deleted file mode 100644 index ff5bfccc..00000000 --- a/bes_theme/.icons/bes_theme/human-male-female.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/human-male-girl.svg b/bes_theme/.icons/bes_theme/human-male-girl.svg deleted file mode 100644 index d26be0ca..00000000 --- a/bes_theme/.icons/bes_theme/human-male-girl.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/human-male-height-variant.svg b/bes_theme/.icons/bes_theme/human-male-height-variant.svg deleted file mode 100644 index c616ec43..00000000 --- a/bes_theme/.icons/bes_theme/human-male-height-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/human-male-height.svg b/bes_theme/.icons/bes_theme/human-male-height.svg deleted file mode 100644 index 2b4b60e2..00000000 --- a/bes_theme/.icons/bes_theme/human-male-height.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/human-male-male.svg b/bes_theme/.icons/bes_theme/human-male-male.svg deleted file mode 100644 index 034d9467..00000000 --- a/bes_theme/.icons/bes_theme/human-male-male.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/human-male.svg b/bes_theme/.icons/bes_theme/human-male.svg deleted file mode 100644 index 9d2c58b2..00000000 --- a/bes_theme/.icons/bes_theme/human-male.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/human-pregnant.svg b/bes_theme/.icons/bes_theme/human-pregnant.svg deleted file mode 100644 index 83d658e2..00000000 --- a/bes_theme/.icons/bes_theme/human-pregnant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/human-queue.svg b/bes_theme/.icons/bes_theme/human-queue.svg deleted file mode 100644 index 920c52f9..00000000 --- a/bes_theme/.icons/bes_theme/human-queue.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/human-scooter.svg b/bes_theme/.icons/bes_theme/human-scooter.svg deleted file mode 100644 index f953232a..00000000 --- a/bes_theme/.icons/bes_theme/human-scooter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/human-wheelchair.svg b/bes_theme/.icons/bes_theme/human-wheelchair.svg deleted file mode 100644 index dd43bc1f..00000000 --- a/bes_theme/.icons/bes_theme/human-wheelchair.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/human.svg b/bes_theme/.icons/bes_theme/human.svg deleted file mode 100644 index 4db49d85..00000000 --- a/bes_theme/.icons/bes_theme/human.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/humble-bundle.svg b/bes_theme/.icons/bes_theme/humble-bundle.svg deleted file mode 100644 index 010279b9..00000000 --- a/bes_theme/.icons/bes_theme/humble-bundle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hvac-off.svg b/bes_theme/.icons/bes_theme/hvac-off.svg deleted file mode 100644 index fd1a5101..00000000 --- a/bes_theme/.icons/bes_theme/hvac-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hvac.svg b/bes_theme/.icons/bes_theme/hvac.svg deleted file mode 100644 index 476fca68..00000000 --- a/bes_theme/.icons/bes_theme/hvac.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hydraulic-oil-level.svg b/bes_theme/.icons/bes_theme/hydraulic-oil-level.svg deleted file mode 100644 index 209c8a21..00000000 --- a/bes_theme/.icons/bes_theme/hydraulic-oil-level.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hydraulic-oil-temperature.svg b/bes_theme/.icons/bes_theme/hydraulic-oil-temperature.svg deleted file mode 100644 index 36bc8976..00000000 --- a/bes_theme/.icons/bes_theme/hydraulic-oil-temperature.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/hydro-power.svg b/bes_theme/.icons/bes_theme/hydro-power.svg deleted file mode 100644 index ffba8c1d..00000000 --- a/bes_theme/.icons/bes_theme/hydro-power.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ice-cream-off.svg b/bes_theme/.icons/bes_theme/ice-cream-off.svg deleted file mode 100644 index 32f61ece..00000000 --- a/bes_theme/.icons/bes_theme/ice-cream-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ice-cream.svg b/bes_theme/.icons/bes_theme/ice-cream.svg deleted file mode 100644 index 0f68a0c5..00000000 --- a/bes_theme/.icons/bes_theme/ice-cream.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ice-pop.svg b/bes_theme/.icons/bes_theme/ice-pop.svg deleted file mode 100644 index 73322f63..00000000 --- a/bes_theme/.icons/bes_theme/ice-pop.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/id-card.svg b/bes_theme/.icons/bes_theme/id-card.svg deleted file mode 100644 index 6ee5e171..00000000 --- a/bes_theme/.icons/bes_theme/id-card.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/identifier.svg b/bes_theme/.icons/bes_theme/identifier.svg deleted file mode 100644 index e450d894..00000000 --- a/bes_theme/.icons/bes_theme/identifier.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ideogram-cjk-variant.svg b/bes_theme/.icons/bes_theme/ideogram-cjk-variant.svg deleted file mode 100644 index 89d4d3a3..00000000 --- a/bes_theme/.icons/bes_theme/ideogram-cjk-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ideogram-cjk.svg b/bes_theme/.icons/bes_theme/ideogram-cjk.svg deleted file mode 100644 index 6761cb05..00000000 --- a/bes_theme/.icons/bes_theme/ideogram-cjk.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/iframe-array-outline.svg b/bes_theme/.icons/bes_theme/iframe-array-outline.svg deleted file mode 100644 index 9774732d..00000000 --- a/bes_theme/.icons/bes_theme/iframe-array-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/iframe-array.svg b/bes_theme/.icons/bes_theme/iframe-array.svg deleted file mode 100644 index 4ddd3892..00000000 --- a/bes_theme/.icons/bes_theme/iframe-array.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/iframe-braces-outline.svg b/bes_theme/.icons/bes_theme/iframe-braces-outline.svg deleted file mode 100644 index 9fbfafac..00000000 --- a/bes_theme/.icons/bes_theme/iframe-braces-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/iframe-braces.svg b/bes_theme/.icons/bes_theme/iframe-braces.svg deleted file mode 100644 index c20cbf04..00000000 --- a/bes_theme/.icons/bes_theme/iframe-braces.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/iframe-outline.svg b/bes_theme/.icons/bes_theme/iframe-outline.svg deleted file mode 100644 index 3bc3f154..00000000 --- a/bes_theme/.icons/bes_theme/iframe-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/iframe-parentheses-outline.svg b/bes_theme/.icons/bes_theme/iframe-parentheses-outline.svg deleted file mode 100644 index 8a3aff3f..00000000 --- a/bes_theme/.icons/bes_theme/iframe-parentheses-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/iframe-parentheses.svg b/bes_theme/.icons/bes_theme/iframe-parentheses.svg deleted file mode 100644 index aa7b4d86..00000000 --- a/bes_theme/.icons/bes_theme/iframe-parentheses.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/iframe-variable-outline.svg b/bes_theme/.icons/bes_theme/iframe-variable-outline.svg deleted file mode 100644 index 90b81128..00000000 --- a/bes_theme/.icons/bes_theme/iframe-variable-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/iframe-variable.svg b/bes_theme/.icons/bes_theme/iframe-variable.svg deleted file mode 100644 index 1b0d87ab..00000000 --- a/bes_theme/.icons/bes_theme/iframe-variable.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/iframe.svg b/bes_theme/.icons/bes_theme/iframe.svg deleted file mode 100644 index 571b7351..00000000 --- a/bes_theme/.icons/bes_theme/iframe.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-album.svg b/bes_theme/.icons/bes_theme/image-album.svg deleted file mode 100644 index 8d8798a9..00000000 --- a/bes_theme/.icons/bes_theme/image-album.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-area-close.svg b/bes_theme/.icons/bes_theme/image-area-close.svg deleted file mode 100644 index 58035615..00000000 --- a/bes_theme/.icons/bes_theme/image-area-close.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-area.svg b/bes_theme/.icons/bes_theme/image-area.svg deleted file mode 100644 index 99ec60e6..00000000 --- a/bes_theme/.icons/bes_theme/image-area.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-auto-adjust.svg b/bes_theme/.icons/bes_theme/image-auto-adjust.svg deleted file mode 100644 index a891b2a8..00000000 --- a/bes_theme/.icons/bes_theme/image-auto-adjust.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-broken-variant.svg b/bes_theme/.icons/bes_theme/image-broken-variant.svg deleted file mode 100644 index 43ae284f..00000000 --- a/bes_theme/.icons/bes_theme/image-broken-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-broken.svg b/bes_theme/.icons/bes_theme/image-broken.svg deleted file mode 100644 index 12dae1f6..00000000 --- a/bes_theme/.icons/bes_theme/image-broken.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-edit-outline.svg b/bes_theme/.icons/bes_theme/image-edit-outline.svg deleted file mode 100644 index 42ce8ad6..00000000 --- a/bes_theme/.icons/bes_theme/image-edit-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-edit.svg b/bes_theme/.icons/bes_theme/image-edit.svg deleted file mode 100644 index 62a0d77a..00000000 --- a/bes_theme/.icons/bes_theme/image-edit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-filter-black-white.svg b/bes_theme/.icons/bes_theme/image-filter-black-white.svg deleted file mode 100644 index dcdd0523..00000000 --- a/bes_theme/.icons/bes_theme/image-filter-black-white.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-filter-center-focus-strong-outline.svg b/bes_theme/.icons/bes_theme/image-filter-center-focus-strong-outline.svg deleted file mode 100644 index b1205fd4..00000000 --- a/bes_theme/.icons/bes_theme/image-filter-center-focus-strong-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-filter-center-focus-strong.svg b/bes_theme/.icons/bes_theme/image-filter-center-focus-strong.svg deleted file mode 100644 index b7046117..00000000 --- a/bes_theme/.icons/bes_theme/image-filter-center-focus-strong.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-filter-center-focus-weak.svg b/bes_theme/.icons/bes_theme/image-filter-center-focus-weak.svg deleted file mode 100644 index 3d826de7..00000000 --- a/bes_theme/.icons/bes_theme/image-filter-center-focus-weak.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-filter-center-focus.svg b/bes_theme/.icons/bes_theme/image-filter-center-focus.svg deleted file mode 100644 index 8c813f7a..00000000 --- a/bes_theme/.icons/bes_theme/image-filter-center-focus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-filter-drama.svg b/bes_theme/.icons/bes_theme/image-filter-drama.svg deleted file mode 100644 index 9c723881..00000000 --- a/bes_theme/.icons/bes_theme/image-filter-drama.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-filter-frames.svg b/bes_theme/.icons/bes_theme/image-filter-frames.svg deleted file mode 100644 index e9ae50d3..00000000 --- a/bes_theme/.icons/bes_theme/image-filter-frames.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-filter-hdr.svg b/bes_theme/.icons/bes_theme/image-filter-hdr.svg deleted file mode 100644 index 9f426bb0..00000000 --- a/bes_theme/.icons/bes_theme/image-filter-hdr.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-filter-none.svg b/bes_theme/.icons/bes_theme/image-filter-none.svg deleted file mode 100644 index 801b4a32..00000000 --- a/bes_theme/.icons/bes_theme/image-filter-none.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-filter-tilt-shift.svg b/bes_theme/.icons/bes_theme/image-filter-tilt-shift.svg deleted file mode 100644 index 0292ebb9..00000000 --- a/bes_theme/.icons/bes_theme/image-filter-tilt-shift.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-filter-vintage.svg b/bes_theme/.icons/bes_theme/image-filter-vintage.svg deleted file mode 100644 index 2d96fa8f..00000000 --- a/bes_theme/.icons/bes_theme/image-filter-vintage.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-frame.svg b/bes_theme/.icons/bes_theme/image-frame.svg deleted file mode 100644 index 11922024..00000000 --- a/bes_theme/.icons/bes_theme/image-frame.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-minus.svg b/bes_theme/.icons/bes_theme/image-minus.svg deleted file mode 100644 index cd1b4139..00000000 --- a/bes_theme/.icons/bes_theme/image-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-move.svg b/bes_theme/.icons/bes_theme/image-move.svg deleted file mode 100644 index f7e42e20..00000000 --- a/bes_theme/.icons/bes_theme/image-move.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-multiple-outline.svg b/bes_theme/.icons/bes_theme/image-multiple-outline.svg deleted file mode 100644 index a09fc1ed..00000000 --- a/bes_theme/.icons/bes_theme/image-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-multiple.svg b/bes_theme/.icons/bes_theme/image-multiple.svg deleted file mode 100644 index 6580ab86..00000000 --- a/bes_theme/.icons/bes_theme/image-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-off-outline.svg b/bes_theme/.icons/bes_theme/image-off-outline.svg deleted file mode 100644 index 8d197b1e..00000000 --- a/bes_theme/.icons/bes_theme/image-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-off.svg b/bes_theme/.icons/bes_theme/image-off.svg deleted file mode 100644 index 8f7ea5d8..00000000 --- a/bes_theme/.icons/bes_theme/image-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-outline.svg b/bes_theme/.icons/bes_theme/image-outline.svg deleted file mode 100644 index e36d24b6..00000000 --- a/bes_theme/.icons/bes_theme/image-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-plus.svg b/bes_theme/.icons/bes_theme/image-plus.svg deleted file mode 100644 index e55cbb63..00000000 --- a/bes_theme/.icons/bes_theme/image-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-remove.svg b/bes_theme/.icons/bes_theme/image-remove.svg deleted file mode 100644 index 864ac6af..00000000 --- a/bes_theme/.icons/bes_theme/image-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-search-outline.svg b/bes_theme/.icons/bes_theme/image-search-outline.svg deleted file mode 100644 index a6c60db6..00000000 --- a/bes_theme/.icons/bes_theme/image-search-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-search.svg b/bes_theme/.icons/bes_theme/image-search.svg deleted file mode 100644 index 5b0e2e9b..00000000 --- a/bes_theme/.icons/bes_theme/image-search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-size-select-actual.svg b/bes_theme/.icons/bes_theme/image-size-select-actual.svg deleted file mode 100644 index 3339478c..00000000 --- a/bes_theme/.icons/bes_theme/image-size-select-actual.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-size-select-large.svg b/bes_theme/.icons/bes_theme/image-size-select-large.svg deleted file mode 100644 index c59006c9..00000000 --- a/bes_theme/.icons/bes_theme/image-size-select-large.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-size-select-small.svg b/bes_theme/.icons/bes_theme/image-size-select-small.svg deleted file mode 100644 index 1afe47a6..00000000 --- a/bes_theme/.icons/bes_theme/image-size-select-small.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image-text.svg b/bes_theme/.icons/bes_theme/image-text.svg deleted file mode 100644 index 793a142b..00000000 --- a/bes_theme/.icons/bes_theme/image-text.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/image.svg b/bes_theme/.icons/bes_theme/image.svg deleted file mode 100644 index 99ff5f5d..00000000 --- a/bes_theme/.icons/bes_theme/image.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/import.svg b/bes_theme/.icons/bes_theme/import.svg deleted file mode 100644 index f2889386..00000000 --- a/bes_theme/.icons/bes_theme/import.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/inbox-arrow-down-outline.svg b/bes_theme/.icons/bes_theme/inbox-arrow-down-outline.svg deleted file mode 100644 index 4277278d..00000000 --- a/bes_theme/.icons/bes_theme/inbox-arrow-down-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/inbox-arrow-down.svg b/bes_theme/.icons/bes_theme/inbox-arrow-down.svg deleted file mode 100644 index e9018b49..00000000 --- a/bes_theme/.icons/bes_theme/inbox-arrow-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/inbox-arrow-up-outline.svg b/bes_theme/.icons/bes_theme/inbox-arrow-up-outline.svg deleted file mode 100644 index 204afdfe..00000000 --- a/bes_theme/.icons/bes_theme/inbox-arrow-up-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/inbox-arrow-up.svg b/bes_theme/.icons/bes_theme/inbox-arrow-up.svg deleted file mode 100644 index 33972f88..00000000 --- a/bes_theme/.icons/bes_theme/inbox-arrow-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/inbox-full-outline.svg b/bes_theme/.icons/bes_theme/inbox-full-outline.svg deleted file mode 100644 index 60724859..00000000 --- a/bes_theme/.icons/bes_theme/inbox-full-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/inbox-full.svg b/bes_theme/.icons/bes_theme/inbox-full.svg deleted file mode 100644 index a543472d..00000000 --- a/bes_theme/.icons/bes_theme/inbox-full.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/inbox-multiple-outline.svg b/bes_theme/.icons/bes_theme/inbox-multiple-outline.svg deleted file mode 100644 index 55a6e0d2..00000000 --- a/bes_theme/.icons/bes_theme/inbox-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/inbox-multiple.svg b/bes_theme/.icons/bes_theme/inbox-multiple.svg deleted file mode 100644 index 35256c9b..00000000 --- a/bes_theme/.icons/bes_theme/inbox-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/inbox-outline.svg b/bes_theme/.icons/bes_theme/inbox-outline.svg deleted file mode 100644 index c193679c..00000000 --- a/bes_theme/.icons/bes_theme/inbox-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/inbox-remove-outline.svg b/bes_theme/.icons/bes_theme/inbox-remove-outline.svg deleted file mode 100644 index 5a4b4503..00000000 --- a/bes_theme/.icons/bes_theme/inbox-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/inbox-remove.svg b/bes_theme/.icons/bes_theme/inbox-remove.svg deleted file mode 100644 index 20d2ce56..00000000 --- a/bes_theme/.icons/bes_theme/inbox-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/inbox.svg b/bes_theme/.icons/bes_theme/inbox.svg deleted file mode 100644 index b4fbffc6..00000000 --- a/bes_theme/.icons/bes_theme/inbox.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/incognito-circle-off.svg b/bes_theme/.icons/bes_theme/incognito-circle-off.svg deleted file mode 100644 index efdf6cf8..00000000 --- a/bes_theme/.icons/bes_theme/incognito-circle-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/incognito-circle.svg b/bes_theme/.icons/bes_theme/incognito-circle.svg deleted file mode 100644 index daaacc58..00000000 --- a/bes_theme/.icons/bes_theme/incognito-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/incognito-off.svg b/bes_theme/.icons/bes_theme/incognito-off.svg deleted file mode 100644 index 464168c7..00000000 --- a/bes_theme/.icons/bes_theme/incognito-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/incognito.svg b/bes_theme/.icons/bes_theme/incognito.svg deleted file mode 100644 index 7bde9295..00000000 --- a/bes_theme/.icons/bes_theme/incognito.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/infinity.svg b/bes_theme/.icons/bes_theme/infinity.svg deleted file mode 100644 index 20f76552..00000000 --- a/bes_theme/.icons/bes_theme/infinity.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/information-outline.svg b/bes_theme/.icons/bes_theme/information-outline.svg deleted file mode 100644 index 603eb6f3..00000000 --- a/bes_theme/.icons/bes_theme/information-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/information-variant.svg b/bes_theme/.icons/bes_theme/information-variant.svg deleted file mode 100644 index c27db09b..00000000 --- a/bes_theme/.icons/bes_theme/information-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/information.svg b/bes_theme/.icons/bes_theme/information.svg deleted file mode 100644 index 61013dfb..00000000 --- a/bes_theme/.icons/bes_theme/information.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/instagram.svg b/bes_theme/.icons/bes_theme/instagram.svg deleted file mode 100644 index 0c5da320..00000000 --- a/bes_theme/.icons/bes_theme/instagram.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/instrument-triangle.svg b/bes_theme/.icons/bes_theme/instrument-triangle.svg deleted file mode 100644 index b4dc3b1c..00000000 --- a/bes_theme/.icons/bes_theme/instrument-triangle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/invert-colors-off.svg b/bes_theme/.icons/bes_theme/invert-colors-off.svg deleted file mode 100644 index 6fb13793..00000000 --- a/bes_theme/.icons/bes_theme/invert-colors-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/invert-colors.svg b/bes_theme/.icons/bes_theme/invert-colors.svg deleted file mode 100644 index 139ec49d..00000000 --- a/bes_theme/.icons/bes_theme/invert-colors.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/iobroker.svg b/bes_theme/.icons/bes_theme/iobroker.svg deleted file mode 100644 index c476f4ed..00000000 --- a/bes_theme/.icons/bes_theme/iobroker.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ip-network-outline.svg b/bes_theme/.icons/bes_theme/ip-network-outline.svg deleted file mode 100644 index 785f52c1..00000000 --- a/bes_theme/.icons/bes_theme/ip-network-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ip-network.svg b/bes_theme/.icons/bes_theme/ip-network.svg deleted file mode 100644 index e1788fc9..00000000 --- a/bes_theme/.icons/bes_theme/ip-network.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ip.svg b/bes_theme/.icons/bes_theme/ip.svg deleted file mode 100644 index cf28e5c5..00000000 --- a/bes_theme/.icons/bes_theme/ip.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ipod.svg b/bes_theme/.icons/bes_theme/ipod.svg deleted file mode 100644 index da97f082..00000000 --- a/bes_theme/.icons/bes_theme/ipod.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/islam.svg b/bes_theme/.icons/bes_theme/islam.svg deleted file mode 100644 index 4f16e2fb..00000000 --- a/bes_theme/.icons/bes_theme/islam.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/island.svg b/bes_theme/.icons/bes_theme/island.svg deleted file mode 100644 index d574f2d4..00000000 --- a/bes_theme/.icons/bes_theme/island.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/iv-bag.svg b/bes_theme/.icons/bes_theme/iv-bag.svg deleted file mode 100644 index 6b2239c5..00000000 --- a/bes_theme/.icons/bes_theme/iv-bag.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/jabber.svg b/bes_theme/.icons/bes_theme/jabber.svg deleted file mode 100644 index 7e0aef7d..00000000 --- a/bes_theme/.icons/bes_theme/jabber.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/jeepney.svg b/bes_theme/.icons/bes_theme/jeepney.svg deleted file mode 100644 index 7386fe1b..00000000 --- a/bes_theme/.icons/bes_theme/jeepney.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/jellyfish-outline.svg b/bes_theme/.icons/bes_theme/jellyfish-outline.svg deleted file mode 100644 index 13cfc34c..00000000 --- a/bes_theme/.icons/bes_theme/jellyfish-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/jellyfish.svg b/bes_theme/.icons/bes_theme/jellyfish.svg deleted file mode 100644 index 5e5972fc..00000000 --- a/bes_theme/.icons/bes_theme/jellyfish.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/jira.svg b/bes_theme/.icons/bes_theme/jira.svg deleted file mode 100644 index db48fb71..00000000 --- a/bes_theme/.icons/bes_theme/jira.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/jquery.svg b/bes_theme/.icons/bes_theme/jquery.svg deleted file mode 100644 index fa532f01..00000000 --- a/bes_theme/.icons/bes_theme/jquery.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/jsfiddle.svg b/bes_theme/.icons/bes_theme/jsfiddle.svg deleted file mode 100644 index fb0349ac..00000000 --- a/bes_theme/.icons/bes_theme/jsfiddle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/judaism.svg b/bes_theme/.icons/bes_theme/judaism.svg deleted file mode 100644 index 8ac2b699..00000000 --- a/bes_theme/.icons/bes_theme/judaism.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/jump-rope.svg b/bes_theme/.icons/bes_theme/jump-rope.svg deleted file mode 100644 index 488f7764..00000000 --- a/bes_theme/.icons/bes_theme/jump-rope.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/kabaddi.svg b/bes_theme/.icons/bes_theme/kabaddi.svg deleted file mode 100644 index e0a766ef..00000000 --- a/bes_theme/.icons/bes_theme/kabaddi.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/kangaroo.svg b/bes_theme/.icons/bes_theme/kangaroo.svg deleted file mode 100644 index 64c01711..00000000 --- a/bes_theme/.icons/bes_theme/kangaroo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/karate.svg b/bes_theme/.icons/bes_theme/karate.svg deleted file mode 100644 index 9109b3d7..00000000 --- a/bes_theme/.icons/bes_theme/karate.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/keg.svg b/bes_theme/.icons/bes_theme/keg.svg deleted file mode 100644 index 786bad96..00000000 --- a/bes_theme/.icons/bes_theme/keg.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/kettle-alert-outline.svg b/bes_theme/.icons/bes_theme/kettle-alert-outline.svg deleted file mode 100644 index 784b4438..00000000 --- a/bes_theme/.icons/bes_theme/kettle-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/kettle-alert.svg b/bes_theme/.icons/bes_theme/kettle-alert.svg deleted file mode 100644 index 70555b0f..00000000 --- a/bes_theme/.icons/bes_theme/kettle-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/kettle-off-outline.svg b/bes_theme/.icons/bes_theme/kettle-off-outline.svg deleted file mode 100644 index 2a7a0f7b..00000000 --- a/bes_theme/.icons/bes_theme/kettle-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/kettle-off.svg b/bes_theme/.icons/bes_theme/kettle-off.svg deleted file mode 100644 index eff1426d..00000000 --- a/bes_theme/.icons/bes_theme/kettle-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/kettle-outline.svg b/bes_theme/.icons/bes_theme/kettle-outline.svg deleted file mode 100644 index 6c21fe69..00000000 --- a/bes_theme/.icons/bes_theme/kettle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/kettle-pour-over.svg b/bes_theme/.icons/bes_theme/kettle-pour-over.svg deleted file mode 100644 index 29795a3d..00000000 --- a/bes_theme/.icons/bes_theme/kettle-pour-over.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/kettle-steam-outline.svg b/bes_theme/.icons/bes_theme/kettle-steam-outline.svg deleted file mode 100644 index bc6c204b..00000000 --- a/bes_theme/.icons/bes_theme/kettle-steam-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/kettle-steam.svg b/bes_theme/.icons/bes_theme/kettle-steam.svg deleted file mode 100644 index 3a1687c0..00000000 --- a/bes_theme/.icons/bes_theme/kettle-steam.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/kettle.svg b/bes_theme/.icons/bes_theme/kettle.svg deleted file mode 100644 index 409e5415..00000000 --- a/bes_theme/.icons/bes_theme/kettle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/kettlebell.svg b/bes_theme/.icons/bes_theme/kettlebell.svg deleted file mode 100644 index 836dc720..00000000 --- a/bes_theme/.icons/bes_theme/kettlebell.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/key-arrow-right.svg b/bes_theme/.icons/bes_theme/key-arrow-right.svg deleted file mode 100644 index 7394fd33..00000000 --- a/bes_theme/.icons/bes_theme/key-arrow-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/key-chain-variant.svg b/bes_theme/.icons/bes_theme/key-chain-variant.svg deleted file mode 100644 index cabd9e2e..00000000 --- a/bes_theme/.icons/bes_theme/key-chain-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/key-chain.svg b/bes_theme/.icons/bes_theme/key-chain.svg deleted file mode 100644 index b9ac19a1..00000000 --- a/bes_theme/.icons/bes_theme/key-chain.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/key-change.svg b/bes_theme/.icons/bes_theme/key-change.svg deleted file mode 100644 index 441b94e5..00000000 --- a/bes_theme/.icons/bes_theme/key-change.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/key-link.svg b/bes_theme/.icons/bes_theme/key-link.svg deleted file mode 100644 index 969ca6c5..00000000 --- a/bes_theme/.icons/bes_theme/key-link.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/key-minus.svg b/bes_theme/.icons/bes_theme/key-minus.svg deleted file mode 100644 index 4c8b4737..00000000 --- a/bes_theme/.icons/bes_theme/key-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/key-outline.svg b/bes_theme/.icons/bes_theme/key-outline.svg deleted file mode 100644 index ce63490d..00000000 --- a/bes_theme/.icons/bes_theme/key-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/key-plus.svg b/bes_theme/.icons/bes_theme/key-plus.svg deleted file mode 100644 index 6ca2537e..00000000 --- a/bes_theme/.icons/bes_theme/key-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/key-remove.svg b/bes_theme/.icons/bes_theme/key-remove.svg deleted file mode 100644 index b5ae6b4f..00000000 --- a/bes_theme/.icons/bes_theme/key-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/key-star.svg b/bes_theme/.icons/bes_theme/key-star.svg deleted file mode 100644 index bcf850b3..00000000 --- a/bes_theme/.icons/bes_theme/key-star.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/key-variant.svg b/bes_theme/.icons/bes_theme/key-variant.svg deleted file mode 100644 index e53c7de4..00000000 --- a/bes_theme/.icons/bes_theme/key-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/key-wireless.svg b/bes_theme/.icons/bes_theme/key-wireless.svg deleted file mode 100644 index 5da21295..00000000 --- a/bes_theme/.icons/bes_theme/key-wireless.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/key.svg b/bes_theme/.icons/bes_theme/key.svg deleted file mode 100644 index ef3245be..00000000 --- a/bes_theme/.icons/bes_theme/key.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/keyboard-backspace.svg b/bes_theme/.icons/bes_theme/keyboard-backspace.svg deleted file mode 100644 index c2b202ee..00000000 --- a/bes_theme/.icons/bes_theme/keyboard-backspace.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/keyboard-caps.svg b/bes_theme/.icons/bes_theme/keyboard-caps.svg deleted file mode 100644 index 342e77f4..00000000 --- a/bes_theme/.icons/bes_theme/keyboard-caps.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/keyboard-close.svg b/bes_theme/.icons/bes_theme/keyboard-close.svg deleted file mode 100644 index 6e984afa..00000000 --- a/bes_theme/.icons/bes_theme/keyboard-close.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/keyboard-esc.svg b/bes_theme/.icons/bes_theme/keyboard-esc.svg deleted file mode 100644 index 5dae302b..00000000 --- a/bes_theme/.icons/bes_theme/keyboard-esc.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/keyboard-f1.svg b/bes_theme/.icons/bes_theme/keyboard-f1.svg deleted file mode 100644 index 1223859b..00000000 --- a/bes_theme/.icons/bes_theme/keyboard-f1.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/keyboard-f10.svg b/bes_theme/.icons/bes_theme/keyboard-f10.svg deleted file mode 100644 index dc1cbf79..00000000 --- a/bes_theme/.icons/bes_theme/keyboard-f10.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/keyboard-f11.svg b/bes_theme/.icons/bes_theme/keyboard-f11.svg deleted file mode 100644 index 58a1e293..00000000 --- a/bes_theme/.icons/bes_theme/keyboard-f11.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/keyboard-f12.svg b/bes_theme/.icons/bes_theme/keyboard-f12.svg deleted file mode 100644 index 2f0caf3d..00000000 --- a/bes_theme/.icons/bes_theme/keyboard-f12.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/keyboard-f2.svg b/bes_theme/.icons/bes_theme/keyboard-f2.svg deleted file mode 100644 index c67c1885..00000000 --- a/bes_theme/.icons/bes_theme/keyboard-f2.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/keyboard-f3.svg b/bes_theme/.icons/bes_theme/keyboard-f3.svg deleted file mode 100644 index 7420e1cc..00000000 --- a/bes_theme/.icons/bes_theme/keyboard-f3.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/keyboard-f4.svg b/bes_theme/.icons/bes_theme/keyboard-f4.svg deleted file mode 100644 index 40e17396..00000000 --- a/bes_theme/.icons/bes_theme/keyboard-f4.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/keyboard-f5.svg b/bes_theme/.icons/bes_theme/keyboard-f5.svg deleted file mode 100644 index 5d16eed3..00000000 --- a/bes_theme/.icons/bes_theme/keyboard-f5.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/keyboard-f6.svg b/bes_theme/.icons/bes_theme/keyboard-f6.svg deleted file mode 100644 index 5a3b3e54..00000000 --- a/bes_theme/.icons/bes_theme/keyboard-f6.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/keyboard-f7.svg b/bes_theme/.icons/bes_theme/keyboard-f7.svg deleted file mode 100644 index 8d433955..00000000 --- a/bes_theme/.icons/bes_theme/keyboard-f7.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/keyboard-f8.svg b/bes_theme/.icons/bes_theme/keyboard-f8.svg deleted file mode 100644 index 745870f1..00000000 --- a/bes_theme/.icons/bes_theme/keyboard-f8.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/keyboard-f9.svg b/bes_theme/.icons/bes_theme/keyboard-f9.svg deleted file mode 100644 index 43732b41..00000000 --- a/bes_theme/.icons/bes_theme/keyboard-f9.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/keyboard-off-outline.svg b/bes_theme/.icons/bes_theme/keyboard-off-outline.svg deleted file mode 100644 index e6e147d3..00000000 --- a/bes_theme/.icons/bes_theme/keyboard-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/keyboard-off.svg b/bes_theme/.icons/bes_theme/keyboard-off.svg deleted file mode 100644 index 59e0e729..00000000 --- a/bes_theme/.icons/bes_theme/keyboard-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/keyboard-outline.svg b/bes_theme/.icons/bes_theme/keyboard-outline.svg deleted file mode 100644 index 61d1f55e..00000000 --- a/bes_theme/.icons/bes_theme/keyboard-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/keyboard-return.svg b/bes_theme/.icons/bes_theme/keyboard-return.svg deleted file mode 100644 index 0bfba024..00000000 --- a/bes_theme/.icons/bes_theme/keyboard-return.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/keyboard-settings-outline.svg b/bes_theme/.icons/bes_theme/keyboard-settings-outline.svg deleted file mode 100644 index 7cc7c77e..00000000 --- a/bes_theme/.icons/bes_theme/keyboard-settings-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/keyboard-settings.svg b/bes_theme/.icons/bes_theme/keyboard-settings.svg deleted file mode 100644 index 49358b13..00000000 --- a/bes_theme/.icons/bes_theme/keyboard-settings.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/keyboard-space.svg b/bes_theme/.icons/bes_theme/keyboard-space.svg deleted file mode 100644 index e513fdb8..00000000 --- a/bes_theme/.icons/bes_theme/keyboard-space.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/keyboard-tab.svg b/bes_theme/.icons/bes_theme/keyboard-tab.svg deleted file mode 100644 index 01c12773..00000000 --- a/bes_theme/.icons/bes_theme/keyboard-tab.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/keyboard-variant.svg b/bes_theme/.icons/bes_theme/keyboard-variant.svg deleted file mode 100644 index f4704487..00000000 --- a/bes_theme/.icons/bes_theme/keyboard-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/keyboard.svg b/bes_theme/.icons/bes_theme/keyboard.svg deleted file mode 100644 index 607f4488..00000000 --- a/bes_theme/.icons/bes_theme/keyboard.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/khanda.svg b/bes_theme/.icons/bes_theme/khanda.svg deleted file mode 100644 index 5e93115b..00000000 --- a/bes_theme/.icons/bes_theme/khanda.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/kickstarter.svg b/bes_theme/.icons/bes_theme/kickstarter.svg deleted file mode 100644 index 08d5541a..00000000 --- a/bes_theme/.icons/bes_theme/kickstarter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/klingon.svg b/bes_theme/.icons/bes_theme/klingon.svg deleted file mode 100644 index 973d3a6e..00000000 --- a/bes_theme/.icons/bes_theme/klingon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/knife-military.svg b/bes_theme/.icons/bes_theme/knife-military.svg deleted file mode 100644 index 150fae42..00000000 --- a/bes_theme/.icons/bes_theme/knife-military.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/knife.svg b/bes_theme/.icons/bes_theme/knife.svg deleted file mode 100644 index 761909fd..00000000 --- a/bes_theme/.icons/bes_theme/knife.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/koala.svg b/bes_theme/.icons/bes_theme/koala.svg deleted file mode 100644 index db8f9f8d..00000000 --- a/bes_theme/.icons/bes_theme/koala.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/kodi.svg b/bes_theme/.icons/bes_theme/kodi.svg deleted file mode 100644 index 918d90c8..00000000 --- a/bes_theme/.icons/bes_theme/kodi.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/kubernetes.svg b/bes_theme/.icons/bes_theme/kubernetes.svg deleted file mode 100644 index f9e45d26..00000000 --- a/bes_theme/.icons/bes_theme/kubernetes.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/label-multiple-outline.svg b/bes_theme/.icons/bes_theme/label-multiple-outline.svg deleted file mode 100644 index 4dcd7a71..00000000 --- a/bes_theme/.icons/bes_theme/label-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/label-multiple.svg b/bes_theme/.icons/bes_theme/label-multiple.svg deleted file mode 100644 index e1eedba3..00000000 --- a/bes_theme/.icons/bes_theme/label-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/label-off-outline.svg b/bes_theme/.icons/bes_theme/label-off-outline.svg deleted file mode 100644 index 332b0a5b..00000000 --- a/bes_theme/.icons/bes_theme/label-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/label-off.svg b/bes_theme/.icons/bes_theme/label-off.svg deleted file mode 100644 index 389fe9ca..00000000 --- a/bes_theme/.icons/bes_theme/label-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/label-outline.svg b/bes_theme/.icons/bes_theme/label-outline.svg deleted file mode 100644 index 65003211..00000000 --- a/bes_theme/.icons/bes_theme/label-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/label-percent-outline.svg b/bes_theme/.icons/bes_theme/label-percent-outline.svg deleted file mode 100644 index 6e6c6644..00000000 --- a/bes_theme/.icons/bes_theme/label-percent-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/label-percent.svg b/bes_theme/.icons/bes_theme/label-percent.svg deleted file mode 100644 index dcc40811..00000000 --- a/bes_theme/.icons/bes_theme/label-percent.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/label-variant-outline.svg b/bes_theme/.icons/bes_theme/label-variant-outline.svg deleted file mode 100644 index 2b8690e0..00000000 --- a/bes_theme/.icons/bes_theme/label-variant-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/label-variant.svg b/bes_theme/.icons/bes_theme/label-variant.svg deleted file mode 100644 index 3ba0001d..00000000 --- a/bes_theme/.icons/bes_theme/label-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/label.svg b/bes_theme/.icons/bes_theme/label.svg deleted file mode 100644 index a49bcb6a..00000000 --- a/bes_theme/.icons/bes_theme/label.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ladder.svg b/bes_theme/.icons/bes_theme/ladder.svg deleted file mode 100644 index 143d4ee5..00000000 --- a/bes_theme/.icons/bes_theme/ladder.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ladybug.svg b/bes_theme/.icons/bes_theme/ladybug.svg deleted file mode 100644 index 8e930b67..00000000 --- a/bes_theme/.icons/bes_theme/ladybug.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lambda.svg b/bes_theme/.icons/bes_theme/lambda.svg deleted file mode 100644 index 045965b4..00000000 --- a/bes_theme/.icons/bes_theme/lambda.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lamp.svg b/bes_theme/.icons/bes_theme/lamp.svg deleted file mode 100644 index 6aa7fe66..00000000 --- a/bes_theme/.icons/bes_theme/lamp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lamps.svg b/bes_theme/.icons/bes_theme/lamps.svg deleted file mode 100644 index 073790a7..00000000 --- a/bes_theme/.icons/bes_theme/lamps.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lan-check.svg b/bes_theme/.icons/bes_theme/lan-check.svg deleted file mode 100644 index 006eecc7..00000000 --- a/bes_theme/.icons/bes_theme/lan-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lan-connect.svg b/bes_theme/.icons/bes_theme/lan-connect.svg deleted file mode 100644 index fe21829c..00000000 --- a/bes_theme/.icons/bes_theme/lan-connect.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lan-disconnect.svg b/bes_theme/.icons/bes_theme/lan-disconnect.svg deleted file mode 100644 index adc4fded..00000000 --- a/bes_theme/.icons/bes_theme/lan-disconnect.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lan-pending.svg b/bes_theme/.icons/bes_theme/lan-pending.svg deleted file mode 100644 index 8cb48c40..00000000 --- a/bes_theme/.icons/bes_theme/lan-pending.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lan.svg b/bes_theme/.icons/bes_theme/lan.svg deleted file mode 100644 index 84ded0df..00000000 --- a/bes_theme/.icons/bes_theme/lan.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/language-c.svg b/bes_theme/.icons/bes_theme/language-c.svg deleted file mode 100644 index 9339feef..00000000 --- a/bes_theme/.icons/bes_theme/language-c.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/language-cpp.svg b/bes_theme/.icons/bes_theme/language-cpp.svg deleted file mode 100644 index 37d676c2..00000000 --- a/bes_theme/.icons/bes_theme/language-cpp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/language-csharp.svg b/bes_theme/.icons/bes_theme/language-csharp.svg deleted file mode 100644 index 36bfb68a..00000000 --- a/bes_theme/.icons/bes_theme/language-csharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/language-css3.svg b/bes_theme/.icons/bes_theme/language-css3.svg deleted file mode 100644 index 02a9d7ae..00000000 --- a/bes_theme/.icons/bes_theme/language-css3.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/language-fortran.svg b/bes_theme/.icons/bes_theme/language-fortran.svg deleted file mode 100644 index 531d03e4..00000000 --- a/bes_theme/.icons/bes_theme/language-fortran.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/language-go.svg b/bes_theme/.icons/bes_theme/language-go.svg deleted file mode 100644 index b56ca314..00000000 --- a/bes_theme/.icons/bes_theme/language-go.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/language-haskell.svg b/bes_theme/.icons/bes_theme/language-haskell.svg deleted file mode 100644 index 4d4a41ad..00000000 --- a/bes_theme/.icons/bes_theme/language-haskell.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/language-html5.svg b/bes_theme/.icons/bes_theme/language-html5.svg deleted file mode 100644 index 1106077e..00000000 --- a/bes_theme/.icons/bes_theme/language-html5.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/language-java.svg b/bes_theme/.icons/bes_theme/language-java.svg deleted file mode 100644 index 64781a08..00000000 --- a/bes_theme/.icons/bes_theme/language-java.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/language-javascript.svg b/bes_theme/.icons/bes_theme/language-javascript.svg deleted file mode 100644 index 277eca4e..00000000 --- a/bes_theme/.icons/bes_theme/language-javascript.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/language-kotlin.svg b/bes_theme/.icons/bes_theme/language-kotlin.svg deleted file mode 100644 index 2308b7ab..00000000 --- a/bes_theme/.icons/bes_theme/language-kotlin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/language-lua.svg b/bes_theme/.icons/bes_theme/language-lua.svg deleted file mode 100644 index 638bc415..00000000 --- a/bes_theme/.icons/bes_theme/language-lua.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/language-markdown-outline.svg b/bes_theme/.icons/bes_theme/language-markdown-outline.svg deleted file mode 100644 index affe27bf..00000000 --- a/bes_theme/.icons/bes_theme/language-markdown-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/language-markdown.svg b/bes_theme/.icons/bes_theme/language-markdown.svg deleted file mode 100644 index de373dfd..00000000 --- a/bes_theme/.icons/bes_theme/language-markdown.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/language-php.svg b/bes_theme/.icons/bes_theme/language-php.svg deleted file mode 100644 index 1e476963..00000000 --- a/bes_theme/.icons/bes_theme/language-php.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/language-python.svg b/bes_theme/.icons/bes_theme/language-python.svg deleted file mode 100644 index 4bd0a5f5..00000000 --- a/bes_theme/.icons/bes_theme/language-python.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/language-r.svg b/bes_theme/.icons/bes_theme/language-r.svg deleted file mode 100644 index ff13d942..00000000 --- a/bes_theme/.icons/bes_theme/language-r.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/language-ruby-on-rails.svg b/bes_theme/.icons/bes_theme/language-ruby-on-rails.svg deleted file mode 100644 index 56391b24..00000000 --- a/bes_theme/.icons/bes_theme/language-ruby-on-rails.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/language-ruby.svg b/bes_theme/.icons/bes_theme/language-ruby.svg deleted file mode 100644 index 6b4a39ec..00000000 --- a/bes_theme/.icons/bes_theme/language-ruby.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/language-rust.svg b/bes_theme/.icons/bes_theme/language-rust.svg deleted file mode 100644 index f047c081..00000000 --- a/bes_theme/.icons/bes_theme/language-rust.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/language-swift.svg b/bes_theme/.icons/bes_theme/language-swift.svg deleted file mode 100644 index 3e0e2233..00000000 --- a/bes_theme/.icons/bes_theme/language-swift.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/language-typescript.svg b/bes_theme/.icons/bes_theme/language-typescript.svg deleted file mode 100644 index 6faa9609..00000000 --- a/bes_theme/.icons/bes_theme/language-typescript.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/language-xaml.svg b/bes_theme/.icons/bes_theme/language-xaml.svg deleted file mode 100644 index 4f2bd601..00000000 --- a/bes_theme/.icons/bes_theme/language-xaml.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/laptop-chromebook.svg b/bes_theme/.icons/bes_theme/laptop-chromebook.svg deleted file mode 100644 index c540ffa6..00000000 --- a/bes_theme/.icons/bes_theme/laptop-chromebook.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/laptop-mac.svg b/bes_theme/.icons/bes_theme/laptop-mac.svg deleted file mode 100644 index 67b6b662..00000000 --- a/bes_theme/.icons/bes_theme/laptop-mac.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/laptop-off.svg b/bes_theme/.icons/bes_theme/laptop-off.svg deleted file mode 100644 index 857a2898..00000000 --- a/bes_theme/.icons/bes_theme/laptop-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/laptop-windows.svg b/bes_theme/.icons/bes_theme/laptop-windows.svg deleted file mode 100644 index 714c2534..00000000 --- a/bes_theme/.icons/bes_theme/laptop-windows.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/laptop.svg b/bes_theme/.icons/bes_theme/laptop.svg deleted file mode 100644 index 37b26968..00000000 --- a/bes_theme/.icons/bes_theme/laptop.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/laravel.svg b/bes_theme/.icons/bes_theme/laravel.svg deleted file mode 100644 index e3045e4f..00000000 --- a/bes_theme/.icons/bes_theme/laravel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/laser-pointer.svg b/bes_theme/.icons/bes_theme/laser-pointer.svg deleted file mode 100644 index 9b9e8c12..00000000 --- a/bes_theme/.icons/bes_theme/laser-pointer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lasso.svg b/bes_theme/.icons/bes_theme/lasso.svg deleted file mode 100644 index cda970af..00000000 --- a/bes_theme/.icons/bes_theme/lasso.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lastpass.svg b/bes_theme/.icons/bes_theme/lastpass.svg deleted file mode 100644 index 463a440d..00000000 --- a/bes_theme/.icons/bes_theme/lastpass.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/latitude.svg b/bes_theme/.icons/bes_theme/latitude.svg deleted file mode 100644 index a4b81c0c..00000000 --- a/bes_theme/.icons/bes_theme/latitude.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/launch.svg b/bes_theme/.icons/bes_theme/launch.svg deleted file mode 100644 index 041c7ef9..00000000 --- a/bes_theme/.icons/bes_theme/launch.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lava-lamp.svg b/bes_theme/.icons/bes_theme/lava-lamp.svg deleted file mode 100644 index a537b135..00000000 --- a/bes_theme/.icons/bes_theme/lava-lamp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/layers-minus.svg b/bes_theme/.icons/bes_theme/layers-minus.svg deleted file mode 100644 index 52c3d278..00000000 --- a/bes_theme/.icons/bes_theme/layers-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/layers-off-outline.svg b/bes_theme/.icons/bes_theme/layers-off-outline.svg deleted file mode 100644 index a0164bbe..00000000 --- a/bes_theme/.icons/bes_theme/layers-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/layers-off.svg b/bes_theme/.icons/bes_theme/layers-off.svg deleted file mode 100644 index 0b7b2f4f..00000000 --- a/bes_theme/.icons/bes_theme/layers-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/layers-outline.svg b/bes_theme/.icons/bes_theme/layers-outline.svg deleted file mode 100644 index 2a99a14e..00000000 --- a/bes_theme/.icons/bes_theme/layers-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/layers-plus.svg b/bes_theme/.icons/bes_theme/layers-plus.svg deleted file mode 100644 index 76327b6c..00000000 --- a/bes_theme/.icons/bes_theme/layers-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/layers-remove.svg b/bes_theme/.icons/bes_theme/layers-remove.svg deleted file mode 100644 index 0a56f72a..00000000 --- a/bes_theme/.icons/bes_theme/layers-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/layers-search-outline.svg b/bes_theme/.icons/bes_theme/layers-search-outline.svg deleted file mode 100644 index f50cab7a..00000000 --- a/bes_theme/.icons/bes_theme/layers-search-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/layers-search.svg b/bes_theme/.icons/bes_theme/layers-search.svg deleted file mode 100644 index 315e193f..00000000 --- a/bes_theme/.icons/bes_theme/layers-search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/layers-triple-outline.svg b/bes_theme/.icons/bes_theme/layers-triple-outline.svg deleted file mode 100644 index 3164eb9e..00000000 --- a/bes_theme/.icons/bes_theme/layers-triple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/layers-triple.svg b/bes_theme/.icons/bes_theme/layers-triple.svg deleted file mode 100644 index d68fff59..00000000 --- a/bes_theme/.icons/bes_theme/layers-triple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/layers.svg b/bes_theme/.icons/bes_theme/layers.svg deleted file mode 100644 index 85945922..00000000 --- a/bes_theme/.icons/bes_theme/layers.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lead-pencil.svg b/bes_theme/.icons/bes_theme/lead-pencil.svg deleted file mode 100644 index 8d9908a1..00000000 --- a/bes_theme/.icons/bes_theme/lead-pencil.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/leaf-maple-off.svg b/bes_theme/.icons/bes_theme/leaf-maple-off.svg deleted file mode 100644 index 96c9b782..00000000 --- a/bes_theme/.icons/bes_theme/leaf-maple-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/leaf-maple.svg b/bes_theme/.icons/bes_theme/leaf-maple.svg deleted file mode 100644 index 00acd61b..00000000 --- a/bes_theme/.icons/bes_theme/leaf-maple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/leaf-off.svg b/bes_theme/.icons/bes_theme/leaf-off.svg deleted file mode 100644 index 31869c94..00000000 --- a/bes_theme/.icons/bes_theme/leaf-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/leaf.svg b/bes_theme/.icons/bes_theme/leaf.svg deleted file mode 100644 index b0b3ac06..00000000 --- a/bes_theme/.icons/bes_theme/leaf.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/leak-off.svg b/bes_theme/.icons/bes_theme/leak-off.svg deleted file mode 100644 index 853d00c5..00000000 --- a/bes_theme/.icons/bes_theme/leak-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/leak.svg b/bes_theme/.icons/bes_theme/leak.svg deleted file mode 100644 index f324e790..00000000 --- a/bes_theme/.icons/bes_theme/leak.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/led-off.svg b/bes_theme/.icons/bes_theme/led-off.svg deleted file mode 100644 index 611f51f9..00000000 --- a/bes_theme/.icons/bes_theme/led-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/led-on.svg b/bes_theme/.icons/bes_theme/led-on.svg deleted file mode 100644 index 8d425ac5..00000000 --- a/bes_theme/.icons/bes_theme/led-on.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/led-outline.svg b/bes_theme/.icons/bes_theme/led-outline.svg deleted file mode 100644 index 75749024..00000000 --- a/bes_theme/.icons/bes_theme/led-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/led-strip-variant.svg b/bes_theme/.icons/bes_theme/led-strip-variant.svg deleted file mode 100644 index 6b03ff5a..00000000 --- a/bes_theme/.icons/bes_theme/led-strip-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/led-strip.svg b/bes_theme/.icons/bes_theme/led-strip.svg deleted file mode 100644 index a3817ddb..00000000 --- a/bes_theme/.icons/bes_theme/led-strip.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/led-variant-off.svg b/bes_theme/.icons/bes_theme/led-variant-off.svg deleted file mode 100644 index fe4d7e9c..00000000 --- a/bes_theme/.icons/bes_theme/led-variant-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/led-variant-on.svg b/bes_theme/.icons/bes_theme/led-variant-on.svg deleted file mode 100644 index b451d3a8..00000000 --- a/bes_theme/.icons/bes_theme/led-variant-on.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/led-variant-outline.svg b/bes_theme/.icons/bes_theme/led-variant-outline.svg deleted file mode 100644 index 333a9ceb..00000000 --- a/bes_theme/.icons/bes_theme/led-variant-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/leek.svg b/bes_theme/.icons/bes_theme/leek.svg deleted file mode 100644 index afe1877c..00000000 --- a/bes_theme/.icons/bes_theme/leek.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/less-than-or-equal.svg b/bes_theme/.icons/bes_theme/less-than-or-equal.svg deleted file mode 100644 index 5a1c0fa5..00000000 --- a/bes_theme/.icons/bes_theme/less-than-or-equal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/less-than.svg b/bes_theme/.icons/bes_theme/less-than.svg deleted file mode 100644 index bdd4fe92..00000000 --- a/bes_theme/.icons/bes_theme/less-than.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/library-shelves.svg b/bes_theme/.icons/bes_theme/library-shelves.svg deleted file mode 100644 index 87069e27..00000000 --- a/bes_theme/.icons/bes_theme/library-shelves.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/library.svg b/bes_theme/.icons/bes_theme/library.svg deleted file mode 100644 index 30eaa951..00000000 --- a/bes_theme/.icons/bes_theme/library.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/license.svg b/bes_theme/.icons/bes_theme/license.svg deleted file mode 100644 index 23742708..00000000 --- a/bes_theme/.icons/bes_theme/license.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lifebuoy.svg b/bes_theme/.icons/bes_theme/lifebuoy.svg deleted file mode 100644 index 27d7fe66..00000000 --- a/bes_theme/.icons/bes_theme/lifebuoy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/light-switch.svg b/bes_theme/.icons/bes_theme/light-switch.svg deleted file mode 100644 index cd48dcb7..00000000 --- a/bes_theme/.icons/bes_theme/light-switch.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lightbulb-cfl-off.svg b/bes_theme/.icons/bes_theme/lightbulb-cfl-off.svg deleted file mode 100644 index 00bd3a26..00000000 --- a/bes_theme/.icons/bes_theme/lightbulb-cfl-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lightbulb-cfl-spiral-off.svg b/bes_theme/.icons/bes_theme/lightbulb-cfl-spiral-off.svg deleted file mode 100644 index 8f685d8d..00000000 --- a/bes_theme/.icons/bes_theme/lightbulb-cfl-spiral-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lightbulb-cfl-spiral.svg b/bes_theme/.icons/bes_theme/lightbulb-cfl-spiral.svg deleted file mode 100644 index 8478feb1..00000000 --- a/bes_theme/.icons/bes_theme/lightbulb-cfl-spiral.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lightbulb-cfl.svg b/bes_theme/.icons/bes_theme/lightbulb-cfl.svg deleted file mode 100644 index 8aa877d3..00000000 --- a/bes_theme/.icons/bes_theme/lightbulb-cfl.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lightbulb-group-off-outline.svg b/bes_theme/.icons/bes_theme/lightbulb-group-off-outline.svg deleted file mode 100644 index 43ffc0f4..00000000 --- a/bes_theme/.icons/bes_theme/lightbulb-group-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lightbulb-group-off.svg b/bes_theme/.icons/bes_theme/lightbulb-group-off.svg deleted file mode 100644 index d57fb147..00000000 --- a/bes_theme/.icons/bes_theme/lightbulb-group-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lightbulb-group-outline.svg b/bes_theme/.icons/bes_theme/lightbulb-group-outline.svg deleted file mode 100644 index 2e25e8a2..00000000 --- a/bes_theme/.icons/bes_theme/lightbulb-group-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lightbulb-group.svg b/bes_theme/.icons/bes_theme/lightbulb-group.svg deleted file mode 100644 index db99a1db..00000000 --- a/bes_theme/.icons/bes_theme/lightbulb-group.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lightbulb-multiple-off-outline.svg b/bes_theme/.icons/bes_theme/lightbulb-multiple-off-outline.svg deleted file mode 100644 index 146ce2e4..00000000 --- a/bes_theme/.icons/bes_theme/lightbulb-multiple-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lightbulb-multiple-off.svg b/bes_theme/.icons/bes_theme/lightbulb-multiple-off.svg deleted file mode 100644 index 224bc85a..00000000 --- a/bes_theme/.icons/bes_theme/lightbulb-multiple-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lightbulb-multiple-outline.svg b/bes_theme/.icons/bes_theme/lightbulb-multiple-outline.svg deleted file mode 100644 index d1fad4a6..00000000 --- a/bes_theme/.icons/bes_theme/lightbulb-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lightbulb-multiple.svg b/bes_theme/.icons/bes_theme/lightbulb-multiple.svg deleted file mode 100644 index 8c0c847e..00000000 --- a/bes_theme/.icons/bes_theme/lightbulb-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lightbulb-off-outline.svg b/bes_theme/.icons/bes_theme/lightbulb-off-outline.svg deleted file mode 100644 index bd895f64..00000000 --- a/bes_theme/.icons/bes_theme/lightbulb-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lightbulb-off.svg b/bes_theme/.icons/bes_theme/lightbulb-off.svg deleted file mode 100644 index 506913c6..00000000 --- a/bes_theme/.icons/bes_theme/lightbulb-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lightbulb-on-outline.svg b/bes_theme/.icons/bes_theme/lightbulb-on-outline.svg deleted file mode 100644 index d3e84dc3..00000000 --- a/bes_theme/.icons/bes_theme/lightbulb-on-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lightbulb-on.svg b/bes_theme/.icons/bes_theme/lightbulb-on.svg deleted file mode 100644 index 7138ea7e..00000000 --- a/bes_theme/.icons/bes_theme/lightbulb-on.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lightbulb-outline.svg b/bes_theme/.icons/bes_theme/lightbulb-outline.svg deleted file mode 100644 index 2189f241..00000000 --- a/bes_theme/.icons/bes_theme/lightbulb-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lightbulb.svg b/bes_theme/.icons/bes_theme/lightbulb.svg deleted file mode 100644 index a8b4ee5b..00000000 --- a/bes_theme/.icons/bes_theme/lightbulb.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lighthouse-on.svg b/bes_theme/.icons/bes_theme/lighthouse-on.svg deleted file mode 100644 index a1e7b631..00000000 --- a/bes_theme/.icons/bes_theme/lighthouse-on.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lighthouse.svg b/bes_theme/.icons/bes_theme/lighthouse.svg deleted file mode 100644 index d5619ca6..00000000 --- a/bes_theme/.icons/bes_theme/lighthouse.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lightning-bolt-outline.svg b/bes_theme/.icons/bes_theme/lightning-bolt-outline.svg deleted file mode 100644 index 1ffaed17..00000000 --- a/bes_theme/.icons/bes_theme/lightning-bolt-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lightning-bolt.svg b/bes_theme/.icons/bes_theme/lightning-bolt.svg deleted file mode 100644 index dc8d997c..00000000 --- a/bes_theme/.icons/bes_theme/lightning-bolt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lingerie.svg b/bes_theme/.icons/bes_theme/lingerie.svg deleted file mode 100644 index 8a73dcb1..00000000 --- a/bes_theme/.icons/bes_theme/lingerie.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/link-box-outline.svg b/bes_theme/.icons/bes_theme/link-box-outline.svg deleted file mode 100644 index 175e30a5..00000000 --- a/bes_theme/.icons/bes_theme/link-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/link-box-variant-outline.svg b/bes_theme/.icons/bes_theme/link-box-variant-outline.svg deleted file mode 100644 index 6e02fd43..00000000 --- a/bes_theme/.icons/bes_theme/link-box-variant-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/link-box-variant.svg b/bes_theme/.icons/bes_theme/link-box-variant.svg deleted file mode 100644 index c99a6140..00000000 --- a/bes_theme/.icons/bes_theme/link-box-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/link-box.svg b/bes_theme/.icons/bes_theme/link-box.svg deleted file mode 100644 index 44e431c1..00000000 --- a/bes_theme/.icons/bes_theme/link-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/link-lock.svg b/bes_theme/.icons/bes_theme/link-lock.svg deleted file mode 100644 index e7ead9e6..00000000 --- a/bes_theme/.icons/bes_theme/link-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/link-off.svg b/bes_theme/.icons/bes_theme/link-off.svg deleted file mode 100644 index 861242a3..00000000 --- a/bes_theme/.icons/bes_theme/link-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/link-plus.svg b/bes_theme/.icons/bes_theme/link-plus.svg deleted file mode 100644 index 32d686de..00000000 --- a/bes_theme/.icons/bes_theme/link-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/link-variant-minus.svg b/bes_theme/.icons/bes_theme/link-variant-minus.svg deleted file mode 100644 index d8d7185d..00000000 --- a/bes_theme/.icons/bes_theme/link-variant-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/link-variant-off.svg b/bes_theme/.icons/bes_theme/link-variant-off.svg deleted file mode 100644 index aee5c108..00000000 --- a/bes_theme/.icons/bes_theme/link-variant-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/link-variant-plus.svg b/bes_theme/.icons/bes_theme/link-variant-plus.svg deleted file mode 100644 index d969288a..00000000 --- a/bes_theme/.icons/bes_theme/link-variant-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/link-variant-remove.svg b/bes_theme/.icons/bes_theme/link-variant-remove.svg deleted file mode 100644 index 20c804b7..00000000 --- a/bes_theme/.icons/bes_theme/link-variant-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/link-variant.svg b/bes_theme/.icons/bes_theme/link-variant.svg deleted file mode 100644 index 353be325..00000000 --- a/bes_theme/.icons/bes_theme/link-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/link.svg b/bes_theme/.icons/bes_theme/link.svg deleted file mode 100644 index 9df1ee3e..00000000 --- a/bes_theme/.icons/bes_theme/link.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/linkedin.svg b/bes_theme/.icons/bes_theme/linkedin.svg deleted file mode 100644 index 488da619..00000000 --- a/bes_theme/.icons/bes_theme/linkedin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/linux-mint.svg b/bes_theme/.icons/bes_theme/linux-mint.svg deleted file mode 100644 index f9b65389..00000000 --- a/bes_theme/.icons/bes_theme/linux-mint.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/linux.svg b/bes_theme/.icons/bes_theme/linux.svg deleted file mode 100644 index 5cd1809a..00000000 --- a/bes_theme/.icons/bes_theme/linux.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lipstick.svg b/bes_theme/.icons/bes_theme/lipstick.svg deleted file mode 100644 index 4f69b28e..00000000 --- a/bes_theme/.icons/bes_theme/lipstick.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/list-status.svg b/bes_theme/.icons/bes_theme/list-status.svg deleted file mode 100644 index d10ecf45..00000000 --- a/bes_theme/.icons/bes_theme/list-status.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/litecoin.svg b/bes_theme/.icons/bes_theme/litecoin.svg deleted file mode 100644 index 14257de6..00000000 --- a/bes_theme/.icons/bes_theme/litecoin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/loading.svg b/bes_theme/.icons/bes_theme/loading.svg deleted file mode 100644 index 5f3f0cea..00000000 --- a/bes_theme/.icons/bes_theme/loading.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/location-enter.svg b/bes_theme/.icons/bes_theme/location-enter.svg deleted file mode 100644 index c782fcd1..00000000 --- a/bes_theme/.icons/bes_theme/location-enter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/location-exit.svg b/bes_theme/.icons/bes_theme/location-exit.svg deleted file mode 100644 index d6883d19..00000000 --- a/bes_theme/.icons/bes_theme/location-exit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock-alert-outline.svg b/bes_theme/.icons/bes_theme/lock-alert-outline.svg deleted file mode 100644 index c4c9994e..00000000 --- a/bes_theme/.icons/bes_theme/lock-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock-alert.svg b/bes_theme/.icons/bes_theme/lock-alert.svg deleted file mode 100644 index 443c2083..00000000 --- a/bes_theme/.icons/bes_theme/lock-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock-check-outline.svg b/bes_theme/.icons/bes_theme/lock-check-outline.svg deleted file mode 100644 index ea87027b..00000000 --- a/bes_theme/.icons/bes_theme/lock-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock-check.svg b/bes_theme/.icons/bes_theme/lock-check.svg deleted file mode 100644 index 98de7414..00000000 --- a/bes_theme/.icons/bes_theme/lock-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock-clock.svg b/bes_theme/.icons/bes_theme/lock-clock.svg deleted file mode 100644 index 7248991f..00000000 --- a/bes_theme/.icons/bes_theme/lock-clock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock-minus-outline.svg b/bes_theme/.icons/bes_theme/lock-minus-outline.svg deleted file mode 100644 index 4a8607c3..00000000 --- a/bes_theme/.icons/bes_theme/lock-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock-minus.svg b/bes_theme/.icons/bes_theme/lock-minus.svg deleted file mode 100644 index 685cae50..00000000 --- a/bes_theme/.icons/bes_theme/lock-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock-off-outline.svg b/bes_theme/.icons/bes_theme/lock-off-outline.svg deleted file mode 100644 index a08ee234..00000000 --- a/bes_theme/.icons/bes_theme/lock-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock-off.svg b/bes_theme/.icons/bes_theme/lock-off.svg deleted file mode 100644 index 9415bd2b..00000000 --- a/bes_theme/.icons/bes_theme/lock-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock-open-alert-outline.svg b/bes_theme/.icons/bes_theme/lock-open-alert-outline.svg deleted file mode 100644 index 6d0aace5..00000000 --- a/bes_theme/.icons/bes_theme/lock-open-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock-open-alert.svg b/bes_theme/.icons/bes_theme/lock-open-alert.svg deleted file mode 100644 index 29f8cd7f..00000000 --- a/bes_theme/.icons/bes_theme/lock-open-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock-open-check-outline.svg b/bes_theme/.icons/bes_theme/lock-open-check-outline.svg deleted file mode 100644 index 1ef518ea..00000000 --- a/bes_theme/.icons/bes_theme/lock-open-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock-open-check.svg b/bes_theme/.icons/bes_theme/lock-open-check.svg deleted file mode 100644 index 9da9733d..00000000 --- a/bes_theme/.icons/bes_theme/lock-open-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock-open-minus-outline.svg b/bes_theme/.icons/bes_theme/lock-open-minus-outline.svg deleted file mode 100644 index 8a22e250..00000000 --- a/bes_theme/.icons/bes_theme/lock-open-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock-open-minus.svg b/bes_theme/.icons/bes_theme/lock-open-minus.svg deleted file mode 100644 index bea02d0b..00000000 --- a/bes_theme/.icons/bes_theme/lock-open-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock-open-outline.svg b/bes_theme/.icons/bes_theme/lock-open-outline.svg deleted file mode 100644 index b81a333b..00000000 --- a/bes_theme/.icons/bes_theme/lock-open-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock-open-plus-outline.svg b/bes_theme/.icons/bes_theme/lock-open-plus-outline.svg deleted file mode 100644 index 54c572c4..00000000 --- a/bes_theme/.icons/bes_theme/lock-open-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock-open-plus.svg b/bes_theme/.icons/bes_theme/lock-open-plus.svg deleted file mode 100644 index 7a9f5b62..00000000 --- a/bes_theme/.icons/bes_theme/lock-open-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock-open-remove-outline.svg b/bes_theme/.icons/bes_theme/lock-open-remove-outline.svg deleted file mode 100644 index 0cdcba28..00000000 --- a/bes_theme/.icons/bes_theme/lock-open-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock-open-remove.svg b/bes_theme/.icons/bes_theme/lock-open-remove.svg deleted file mode 100644 index 28304baf..00000000 --- a/bes_theme/.icons/bes_theme/lock-open-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock-open-variant-outline.svg b/bes_theme/.icons/bes_theme/lock-open-variant-outline.svg deleted file mode 100644 index d124260c..00000000 --- a/bes_theme/.icons/bes_theme/lock-open-variant-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock-open-variant.svg b/bes_theme/.icons/bes_theme/lock-open-variant.svg deleted file mode 100644 index dbcbd1f7..00000000 --- a/bes_theme/.icons/bes_theme/lock-open-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock-open.svg b/bes_theme/.icons/bes_theme/lock-open.svg deleted file mode 100644 index b1058dde..00000000 --- a/bes_theme/.icons/bes_theme/lock-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock-outline.svg b/bes_theme/.icons/bes_theme/lock-outline.svg deleted file mode 100644 index e31e88b1..00000000 --- a/bes_theme/.icons/bes_theme/lock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock-pattern.svg b/bes_theme/.icons/bes_theme/lock-pattern.svg deleted file mode 100644 index f9596b39..00000000 --- a/bes_theme/.icons/bes_theme/lock-pattern.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock-plus-outline.svg b/bes_theme/.icons/bes_theme/lock-plus-outline.svg deleted file mode 100644 index 633f2784..00000000 --- a/bes_theme/.icons/bes_theme/lock-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock-plus.svg b/bes_theme/.icons/bes_theme/lock-plus.svg deleted file mode 100644 index cb32ef00..00000000 --- a/bes_theme/.icons/bes_theme/lock-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock-question.svg b/bes_theme/.icons/bes_theme/lock-question.svg deleted file mode 100644 index 00642c4d..00000000 --- a/bes_theme/.icons/bes_theme/lock-question.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock-remove-outline.svg b/bes_theme/.icons/bes_theme/lock-remove-outline.svg deleted file mode 100644 index be5f6acb..00000000 --- a/bes_theme/.icons/bes_theme/lock-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock-remove.svg b/bes_theme/.icons/bes_theme/lock-remove.svg deleted file mode 100644 index e35b27e8..00000000 --- a/bes_theme/.icons/bes_theme/lock-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock-reset.svg b/bes_theme/.icons/bes_theme/lock-reset.svg deleted file mode 100644 index 47556263..00000000 --- a/bes_theme/.icons/bes_theme/lock-reset.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock-smart.svg b/bes_theme/.icons/bes_theme/lock-smart.svg deleted file mode 100644 index b1701a25..00000000 --- a/bes_theme/.icons/bes_theme/lock-smart.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lock.svg b/bes_theme/.icons/bes_theme/lock.svg deleted file mode 100644 index e602210c..00000000 --- a/bes_theme/.icons/bes_theme/lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/locker-multiple.svg b/bes_theme/.icons/bes_theme/locker-multiple.svg deleted file mode 100644 index c1e8b918..00000000 --- a/bes_theme/.icons/bes_theme/locker-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/locker.svg b/bes_theme/.icons/bes_theme/locker.svg deleted file mode 100644 index 481b0051..00000000 --- a/bes_theme/.icons/bes_theme/locker.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/login-variant.svg b/bes_theme/.icons/bes_theme/login-variant.svg deleted file mode 100644 index a444ddca..00000000 --- a/bes_theme/.icons/bes_theme/login-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/login.svg b/bes_theme/.icons/bes_theme/login.svg deleted file mode 100644 index d0973819..00000000 --- a/bes_theme/.icons/bes_theme/login.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/logout-variant.svg b/bes_theme/.icons/bes_theme/logout-variant.svg deleted file mode 100644 index a922151b..00000000 --- a/bes_theme/.icons/bes_theme/logout-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/logout.svg b/bes_theme/.icons/bes_theme/logout.svg deleted file mode 100644 index 89357994..00000000 --- a/bes_theme/.icons/bes_theme/logout.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/longitude.svg b/bes_theme/.icons/bes_theme/longitude.svg deleted file mode 100644 index 5d513938..00000000 --- a/bes_theme/.icons/bes_theme/longitude.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/looks.svg b/bes_theme/.icons/bes_theme/looks.svg deleted file mode 100644 index cc858c4d..00000000 --- a/bes_theme/.icons/bes_theme/looks.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lotion-outline.svg b/bes_theme/.icons/bes_theme/lotion-outline.svg deleted file mode 100644 index 0edfe4c1..00000000 --- a/bes_theme/.icons/bes_theme/lotion-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lotion-plus-outline.svg b/bes_theme/.icons/bes_theme/lotion-plus-outline.svg deleted file mode 100644 index 5608b417..00000000 --- a/bes_theme/.icons/bes_theme/lotion-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lotion-plus.svg b/bes_theme/.icons/bes_theme/lotion-plus.svg deleted file mode 100644 index 63029a37..00000000 --- a/bes_theme/.icons/bes_theme/lotion-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lotion.svg b/bes_theme/.icons/bes_theme/lotion.svg deleted file mode 100644 index 1816ad1e..00000000 --- a/bes_theme/.icons/bes_theme/lotion.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/loupe.svg b/bes_theme/.icons/bes_theme/loupe.svg deleted file mode 100644 index 5f88f8d1..00000000 --- a/bes_theme/.icons/bes_theme/loupe.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lumx.svg b/bes_theme/.icons/bes_theme/lumx.svg deleted file mode 100644 index 06ba234b..00000000 --- a/bes_theme/.icons/bes_theme/lumx.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/lungs.svg b/bes_theme/.icons/bes_theme/lungs.svg deleted file mode 100644 index 7493d41e..00000000 --- a/bes_theme/.icons/bes_theme/lungs.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/magnet-on.svg b/bes_theme/.icons/bes_theme/magnet-on.svg deleted file mode 100644 index 1652b335..00000000 --- a/bes_theme/.icons/bes_theme/magnet-on.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/magnet.svg b/bes_theme/.icons/bes_theme/magnet.svg deleted file mode 100644 index a0f70542..00000000 --- a/bes_theme/.icons/bes_theme/magnet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/magnify-close.svg b/bes_theme/.icons/bes_theme/magnify-close.svg deleted file mode 100644 index 2c1e7204..00000000 --- a/bes_theme/.icons/bes_theme/magnify-close.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/magnify-minus-cursor.svg b/bes_theme/.icons/bes_theme/magnify-minus-cursor.svg deleted file mode 100644 index 127696ab..00000000 --- a/bes_theme/.icons/bes_theme/magnify-minus-cursor.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/magnify-minus-outline.svg b/bes_theme/.icons/bes_theme/magnify-minus-outline.svg deleted file mode 100644 index b9aa6e26..00000000 --- a/bes_theme/.icons/bes_theme/magnify-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/magnify-minus.svg b/bes_theme/.icons/bes_theme/magnify-minus.svg deleted file mode 100644 index f0a59776..00000000 --- a/bes_theme/.icons/bes_theme/magnify-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/magnify-plus-cursor.svg b/bes_theme/.icons/bes_theme/magnify-plus-cursor.svg deleted file mode 100644 index c86d5ad7..00000000 --- a/bes_theme/.icons/bes_theme/magnify-plus-cursor.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/magnify-plus-outline.svg b/bes_theme/.icons/bes_theme/magnify-plus-outline.svg deleted file mode 100644 index d5da4260..00000000 --- a/bes_theme/.icons/bes_theme/magnify-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/magnify-plus.svg b/bes_theme/.icons/bes_theme/magnify-plus.svg deleted file mode 100644 index d67e6bc2..00000000 --- a/bes_theme/.icons/bes_theme/magnify-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/magnify-remove-cursor.svg b/bes_theme/.icons/bes_theme/magnify-remove-cursor.svg deleted file mode 100644 index 57a64f13..00000000 --- a/bes_theme/.icons/bes_theme/magnify-remove-cursor.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/magnify-remove-outline.svg b/bes_theme/.icons/bes_theme/magnify-remove-outline.svg deleted file mode 100644 index 86df0e24..00000000 --- a/bes_theme/.icons/bes_theme/magnify-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/magnify-scan.svg b/bes_theme/.icons/bes_theme/magnify-scan.svg deleted file mode 100644 index 79619a3b..00000000 --- a/bes_theme/.icons/bes_theme/magnify-scan.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/magnify.svg b/bes_theme/.icons/bes_theme/magnify.svg deleted file mode 100644 index 9e7cc71e..00000000 --- a/bes_theme/.icons/bes_theme/magnify.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mail.svg b/bes_theme/.icons/bes_theme/mail.svg deleted file mode 100644 index 525139bc..00000000 --- a/bes_theme/.icons/bes_theme/mail.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mailbox-open-outline.svg b/bes_theme/.icons/bes_theme/mailbox-open-outline.svg deleted file mode 100644 index 9ce98516..00000000 --- a/bes_theme/.icons/bes_theme/mailbox-open-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mailbox-open-up-outline.svg b/bes_theme/.icons/bes_theme/mailbox-open-up-outline.svg deleted file mode 100644 index d152dce5..00000000 --- a/bes_theme/.icons/bes_theme/mailbox-open-up-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mailbox-open-up.svg b/bes_theme/.icons/bes_theme/mailbox-open-up.svg deleted file mode 100644 index 18596d21..00000000 --- a/bes_theme/.icons/bes_theme/mailbox-open-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mailbox-open.svg b/bes_theme/.icons/bes_theme/mailbox-open.svg deleted file mode 100644 index ff11c5f6..00000000 --- a/bes_theme/.icons/bes_theme/mailbox-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mailbox-outline.svg b/bes_theme/.icons/bes_theme/mailbox-outline.svg deleted file mode 100644 index e63a3886..00000000 --- a/bes_theme/.icons/bes_theme/mailbox-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mailbox-up-outline.svg b/bes_theme/.icons/bes_theme/mailbox-up-outline.svg deleted file mode 100644 index 8de0a95c..00000000 --- a/bes_theme/.icons/bes_theme/mailbox-up-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mailbox-up.svg b/bes_theme/.icons/bes_theme/mailbox-up.svg deleted file mode 100644 index 9b2ca824..00000000 --- a/bes_theme/.icons/bes_theme/mailbox-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mailbox.svg b/bes_theme/.icons/bes_theme/mailbox.svg deleted file mode 100644 index 6148f6bb..00000000 --- a/bes_theme/.icons/bes_theme/mailbox.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/manjaro.svg b/bes_theme/.icons/bes_theme/manjaro.svg deleted file mode 100644 index fa35c83b..00000000 --- a/bes_theme/.icons/bes_theme/manjaro.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-check-outline.svg b/bes_theme/.icons/bes_theme/map-check-outline.svg deleted file mode 100644 index 2dc1ef60..00000000 --- a/bes_theme/.icons/bes_theme/map-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-check.svg b/bes_theme/.icons/bes_theme/map-check.svg deleted file mode 100644 index e4b40e7b..00000000 --- a/bes_theme/.icons/bes_theme/map-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-clock-outline.svg b/bes_theme/.icons/bes_theme/map-clock-outline.svg deleted file mode 100644 index dd7290d6..00000000 --- a/bes_theme/.icons/bes_theme/map-clock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-clock.svg b/bes_theme/.icons/bes_theme/map-clock.svg deleted file mode 100644 index 1b35b433..00000000 --- a/bes_theme/.icons/bes_theme/map-clock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-legend.svg b/bes_theme/.icons/bes_theme/map-legend.svg deleted file mode 100644 index b8481798..00000000 --- a/bes_theme/.icons/bes_theme/map-legend.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-marker-alert-outline.svg b/bes_theme/.icons/bes_theme/map-marker-alert-outline.svg deleted file mode 100644 index 12ec0d5e..00000000 --- a/bes_theme/.icons/bes_theme/map-marker-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-marker-alert.svg b/bes_theme/.icons/bes_theme/map-marker-alert.svg deleted file mode 100644 index 87733981..00000000 --- a/bes_theme/.icons/bes_theme/map-marker-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-marker-check-outline.svg b/bes_theme/.icons/bes_theme/map-marker-check-outline.svg deleted file mode 100644 index 023a4fe2..00000000 --- a/bes_theme/.icons/bes_theme/map-marker-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-marker-check.svg b/bes_theme/.icons/bes_theme/map-marker-check.svg deleted file mode 100644 index e7d29dd2..00000000 --- a/bes_theme/.icons/bes_theme/map-marker-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-marker-circle.svg b/bes_theme/.icons/bes_theme/map-marker-circle.svg deleted file mode 100644 index c7d16c34..00000000 --- a/bes_theme/.icons/bes_theme/map-marker-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-marker-distance.svg b/bes_theme/.icons/bes_theme/map-marker-distance.svg deleted file mode 100644 index 6b66e9d2..00000000 --- a/bes_theme/.icons/bes_theme/map-marker-distance.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-marker-down.svg b/bes_theme/.icons/bes_theme/map-marker-down.svg deleted file mode 100644 index bb6f22f1..00000000 --- a/bes_theme/.icons/bes_theme/map-marker-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-marker-left-outline.svg b/bes_theme/.icons/bes_theme/map-marker-left-outline.svg deleted file mode 100644 index 34c2037c..00000000 --- a/bes_theme/.icons/bes_theme/map-marker-left-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-marker-left.svg b/bes_theme/.icons/bes_theme/map-marker-left.svg deleted file mode 100644 index c2cf2272..00000000 --- a/bes_theme/.icons/bes_theme/map-marker-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-marker-minus-outline.svg b/bes_theme/.icons/bes_theme/map-marker-minus-outline.svg deleted file mode 100644 index 51a86621..00000000 --- a/bes_theme/.icons/bes_theme/map-marker-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-marker-minus.svg b/bes_theme/.icons/bes_theme/map-marker-minus.svg deleted file mode 100644 index 564e842d..00000000 --- a/bes_theme/.icons/bes_theme/map-marker-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-marker-multiple-outline.svg b/bes_theme/.icons/bes_theme/map-marker-multiple-outline.svg deleted file mode 100644 index b512d435..00000000 --- a/bes_theme/.icons/bes_theme/map-marker-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-marker-multiple.svg b/bes_theme/.icons/bes_theme/map-marker-multiple.svg deleted file mode 100644 index 5eed3989..00000000 --- a/bes_theme/.icons/bes_theme/map-marker-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-marker-off-outline.svg b/bes_theme/.icons/bes_theme/map-marker-off-outline.svg deleted file mode 100644 index 5ea53521..00000000 --- a/bes_theme/.icons/bes_theme/map-marker-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-marker-off.svg b/bes_theme/.icons/bes_theme/map-marker-off.svg deleted file mode 100644 index d350baf5..00000000 --- a/bes_theme/.icons/bes_theme/map-marker-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-marker-outline.svg b/bes_theme/.icons/bes_theme/map-marker-outline.svg deleted file mode 100644 index 5c2bf84f..00000000 --- a/bes_theme/.icons/bes_theme/map-marker-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-marker-path.svg b/bes_theme/.icons/bes_theme/map-marker-path.svg deleted file mode 100644 index 52815fe9..00000000 --- a/bes_theme/.icons/bes_theme/map-marker-path.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-marker-plus-outline.svg b/bes_theme/.icons/bes_theme/map-marker-plus-outline.svg deleted file mode 100644 index d76438bb..00000000 --- a/bes_theme/.icons/bes_theme/map-marker-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-marker-plus.svg b/bes_theme/.icons/bes_theme/map-marker-plus.svg deleted file mode 100644 index da18ab64..00000000 --- a/bes_theme/.icons/bes_theme/map-marker-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-marker-question-outline.svg b/bes_theme/.icons/bes_theme/map-marker-question-outline.svg deleted file mode 100644 index 003eb6bb..00000000 --- a/bes_theme/.icons/bes_theme/map-marker-question-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-marker-question.svg b/bes_theme/.icons/bes_theme/map-marker-question.svg deleted file mode 100644 index 85b38f01..00000000 --- a/bes_theme/.icons/bes_theme/map-marker-question.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-marker-radius-outline.svg b/bes_theme/.icons/bes_theme/map-marker-radius-outline.svg deleted file mode 100644 index 8b87423e..00000000 --- a/bes_theme/.icons/bes_theme/map-marker-radius-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-marker-radius.svg b/bes_theme/.icons/bes_theme/map-marker-radius.svg deleted file mode 100644 index eee1a430..00000000 --- a/bes_theme/.icons/bes_theme/map-marker-radius.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-marker-remove-outline.svg b/bes_theme/.icons/bes_theme/map-marker-remove-outline.svg deleted file mode 100644 index d0ffee8a..00000000 --- a/bes_theme/.icons/bes_theme/map-marker-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-marker-remove-variant.svg b/bes_theme/.icons/bes_theme/map-marker-remove-variant.svg deleted file mode 100644 index 4bb8f14c..00000000 --- a/bes_theme/.icons/bes_theme/map-marker-remove-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-marker-remove.svg b/bes_theme/.icons/bes_theme/map-marker-remove.svg deleted file mode 100644 index 58509d9b..00000000 --- a/bes_theme/.icons/bes_theme/map-marker-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-marker-right-outline.svg b/bes_theme/.icons/bes_theme/map-marker-right-outline.svg deleted file mode 100644 index 82240d8f..00000000 --- a/bes_theme/.icons/bes_theme/map-marker-right-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-marker-right.svg b/bes_theme/.icons/bes_theme/map-marker-right.svg deleted file mode 100644 index 65d5b5d1..00000000 --- a/bes_theme/.icons/bes_theme/map-marker-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-marker-star-outline.svg b/bes_theme/.icons/bes_theme/map-marker-star-outline.svg deleted file mode 100644 index 4d5f662f..00000000 --- a/bes_theme/.icons/bes_theme/map-marker-star-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-marker-star.svg b/bes_theme/.icons/bes_theme/map-marker-star.svg deleted file mode 100644 index ffaa7eda..00000000 --- a/bes_theme/.icons/bes_theme/map-marker-star.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-marker-up.svg b/bes_theme/.icons/bes_theme/map-marker-up.svg deleted file mode 100644 index 55a05b79..00000000 --- a/bes_theme/.icons/bes_theme/map-marker-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-marker.svg b/bes_theme/.icons/bes_theme/map-marker.svg deleted file mode 100644 index 7374dc85..00000000 --- a/bes_theme/.icons/bes_theme/map-marker.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-minus.svg b/bes_theme/.icons/bes_theme/map-minus.svg deleted file mode 100644 index 0af131e2..00000000 --- a/bes_theme/.icons/bes_theme/map-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-outline.svg b/bes_theme/.icons/bes_theme/map-outline.svg deleted file mode 100644 index 9487ec76..00000000 --- a/bes_theme/.icons/bes_theme/map-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-plus.svg b/bes_theme/.icons/bes_theme/map-plus.svg deleted file mode 100644 index 93a9be00..00000000 --- a/bes_theme/.icons/bes_theme/map-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-search-outline.svg b/bes_theme/.icons/bes_theme/map-search-outline.svg deleted file mode 100644 index d357ab88..00000000 --- a/bes_theme/.icons/bes_theme/map-search-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map-search.svg b/bes_theme/.icons/bes_theme/map-search.svg deleted file mode 100644 index 97f1fcb3..00000000 --- a/bes_theme/.icons/bes_theme/map-search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/map.svg b/bes_theme/.icons/bes_theme/map.svg deleted file mode 100644 index 4a1e88dc..00000000 --- a/bes_theme/.icons/bes_theme/map.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mapbox.svg b/bes_theme/.icons/bes_theme/mapbox.svg deleted file mode 100644 index ea1340f3..00000000 --- a/bes_theme/.icons/bes_theme/mapbox.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/margin.svg b/bes_theme/.icons/bes_theme/margin.svg deleted file mode 100644 index 4e04579d..00000000 --- a/bes_theme/.icons/bes_theme/margin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/marker-cancel.svg b/bes_theme/.icons/bes_theme/marker-cancel.svg deleted file mode 100644 index 7eac5f85..00000000 --- a/bes_theme/.icons/bes_theme/marker-cancel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/marker-check.svg b/bes_theme/.icons/bes_theme/marker-check.svg deleted file mode 100644 index f651199c..00000000 --- a/bes_theme/.icons/bes_theme/marker-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/marker.svg b/bes_theme/.icons/bes_theme/marker.svg deleted file mode 100644 index 24563d67..00000000 --- a/bes_theme/.icons/bes_theme/marker.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mastodon.svg b/bes_theme/.icons/bes_theme/mastodon.svg deleted file mode 100644 index 7356623f..00000000 --- a/bes_theme/.icons/bes_theme/mastodon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/material-design.svg b/bes_theme/.icons/bes_theme/material-design.svg deleted file mode 100644 index c179f8e7..00000000 --- a/bes_theme/.icons/bes_theme/material-design.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/material-ui.svg b/bes_theme/.icons/bes_theme/material-ui.svg deleted file mode 100644 index 11c8f37a..00000000 --- a/bes_theme/.icons/bes_theme/material-ui.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/math-compass.svg b/bes_theme/.icons/bes_theme/math-compass.svg deleted file mode 100644 index 2c1e3826..00000000 --- a/bes_theme/.icons/bes_theme/math-compass.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/math-cos.svg b/bes_theme/.icons/bes_theme/math-cos.svg deleted file mode 100644 index e4f266c5..00000000 --- a/bes_theme/.icons/bes_theme/math-cos.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/math-integral-box.svg b/bes_theme/.icons/bes_theme/math-integral-box.svg deleted file mode 100644 index e2bff8c9..00000000 --- a/bes_theme/.icons/bes_theme/math-integral-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/math-integral.svg b/bes_theme/.icons/bes_theme/math-integral.svg deleted file mode 100644 index 8a35ed05..00000000 --- a/bes_theme/.icons/bes_theme/math-integral.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/math-log.svg b/bes_theme/.icons/bes_theme/math-log.svg deleted file mode 100644 index 7db54bd0..00000000 --- a/bes_theme/.icons/bes_theme/math-log.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/math-norm-box.svg b/bes_theme/.icons/bes_theme/math-norm-box.svg deleted file mode 100644 index 77be0c81..00000000 --- a/bes_theme/.icons/bes_theme/math-norm-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/math-norm.svg b/bes_theme/.icons/bes_theme/math-norm.svg deleted file mode 100644 index cd90c340..00000000 --- a/bes_theme/.icons/bes_theme/math-norm.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/math-sin.svg b/bes_theme/.icons/bes_theme/math-sin.svg deleted file mode 100644 index 18d4686e..00000000 --- a/bes_theme/.icons/bes_theme/math-sin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/math-tan.svg b/bes_theme/.icons/bes_theme/math-tan.svg deleted file mode 100644 index abe6c84d..00000000 --- a/bes_theme/.icons/bes_theme/math-tan.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/matrix.svg b/bes_theme/.icons/bes_theme/matrix.svg deleted file mode 100644 index 4e6ac156..00000000 --- a/bes_theme/.icons/bes_theme/matrix.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/medal-outline.svg b/bes_theme/.icons/bes_theme/medal-outline.svg deleted file mode 100644 index eb280282..00000000 --- a/bes_theme/.icons/bes_theme/medal-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/medal.svg b/bes_theme/.icons/bes_theme/medal.svg deleted file mode 100644 index 28ed5301..00000000 --- a/bes_theme/.icons/bes_theme/medal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/medical-bag.svg b/bes_theme/.icons/bes_theme/medical-bag.svg deleted file mode 100644 index 08b3bca3..00000000 --- a/bes_theme/.icons/bes_theme/medical-bag.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/meditation.svg b/bes_theme/.icons/bes_theme/meditation.svg deleted file mode 100644 index b8acc9f6..00000000 --- a/bes_theme/.icons/bes_theme/meditation.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/memory.svg b/bes_theme/.icons/bes_theme/memory.svg deleted file mode 100644 index 3f519795..00000000 --- a/bes_theme/.icons/bes_theme/memory.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/menu-down-outline.svg b/bes_theme/.icons/bes_theme/menu-down-outline.svg deleted file mode 100644 index edb50110..00000000 --- a/bes_theme/.icons/bes_theme/menu-down-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/menu-down.svg b/bes_theme/.icons/bes_theme/menu-down.svg deleted file mode 100644 index 4b5f393c..00000000 --- a/bes_theme/.icons/bes_theme/menu-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/menu-left-outline.svg b/bes_theme/.icons/bes_theme/menu-left-outline.svg deleted file mode 100644 index 7b653960..00000000 --- a/bes_theme/.icons/bes_theme/menu-left-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/menu-left.svg b/bes_theme/.icons/bes_theme/menu-left.svg deleted file mode 100644 index feb720a3..00000000 --- a/bes_theme/.icons/bes_theme/menu-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/menu-open.svg b/bes_theme/.icons/bes_theme/menu-open.svg deleted file mode 100644 index 9baf9c91..00000000 --- a/bes_theme/.icons/bes_theme/menu-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/menu-right-outline.svg b/bes_theme/.icons/bes_theme/menu-right-outline.svg deleted file mode 100644 index 8fbaade0..00000000 --- a/bes_theme/.icons/bes_theme/menu-right-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/menu-right.svg b/bes_theme/.icons/bes_theme/menu-right.svg deleted file mode 100644 index 199d7f8a..00000000 --- a/bes_theme/.icons/bes_theme/menu-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/menu-swap-outline.svg b/bes_theme/.icons/bes_theme/menu-swap-outline.svg deleted file mode 100644 index 96b162d6..00000000 --- a/bes_theme/.icons/bes_theme/menu-swap-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/menu-swap.svg b/bes_theme/.icons/bes_theme/menu-swap.svg deleted file mode 100644 index 16c489b6..00000000 --- a/bes_theme/.icons/bes_theme/menu-swap.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/menu-up-outline.svg b/bes_theme/.icons/bes_theme/menu-up-outline.svg deleted file mode 100644 index 9c088931..00000000 --- a/bes_theme/.icons/bes_theme/menu-up-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/menu-up.svg b/bes_theme/.icons/bes_theme/menu-up.svg deleted file mode 100644 index 5dae576b..00000000 --- a/bes_theme/.icons/bes_theme/menu-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/menu.svg b/bes_theme/.icons/bes_theme/menu.svg deleted file mode 100644 index 6d2135e1..00000000 --- a/bes_theme/.icons/bes_theme/menu.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/merge.svg b/bes_theme/.icons/bes_theme/merge.svg deleted file mode 100644 index 3fa00eac..00000000 --- a/bes_theme/.icons/bes_theme/merge.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-alert-outline.svg b/bes_theme/.icons/bes_theme/message-alert-outline.svg deleted file mode 100644 index 40538430..00000000 --- a/bes_theme/.icons/bes_theme/message-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-alert.svg b/bes_theme/.icons/bes_theme/message-alert.svg deleted file mode 100644 index 23e45c84..00000000 --- a/bes_theme/.icons/bes_theme/message-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-arrow-left-outline.svg b/bes_theme/.icons/bes_theme/message-arrow-left-outline.svg deleted file mode 100644 index 344a59df..00000000 --- a/bes_theme/.icons/bes_theme/message-arrow-left-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-arrow-left.svg b/bes_theme/.icons/bes_theme/message-arrow-left.svg deleted file mode 100644 index 593ef0fd..00000000 --- a/bes_theme/.icons/bes_theme/message-arrow-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-arrow-right-outline.svg b/bes_theme/.icons/bes_theme/message-arrow-right-outline.svg deleted file mode 100644 index b8c2b9d3..00000000 --- a/bes_theme/.icons/bes_theme/message-arrow-right-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-arrow-right.svg b/bes_theme/.icons/bes_theme/message-arrow-right.svg deleted file mode 100644 index 7f1d3bdf..00000000 --- a/bes_theme/.icons/bes_theme/message-arrow-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-bookmark-outline.svg b/bes_theme/.icons/bes_theme/message-bookmark-outline.svg deleted file mode 100644 index 8a45a7cc..00000000 --- a/bes_theme/.icons/bes_theme/message-bookmark-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-bookmark.svg b/bes_theme/.icons/bes_theme/message-bookmark.svg deleted file mode 100644 index 0329388c..00000000 --- a/bes_theme/.icons/bes_theme/message-bookmark.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-bulleted-off.svg b/bes_theme/.icons/bes_theme/message-bulleted-off.svg deleted file mode 100644 index 0c35b3c2..00000000 --- a/bes_theme/.icons/bes_theme/message-bulleted-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-bulleted.svg b/bes_theme/.icons/bes_theme/message-bulleted.svg deleted file mode 100644 index 3170fc38..00000000 --- a/bes_theme/.icons/bes_theme/message-bulleted.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-cog-outline.svg b/bes_theme/.icons/bes_theme/message-cog-outline.svg deleted file mode 100644 index 812b35de..00000000 --- a/bes_theme/.icons/bes_theme/message-cog-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-cog.svg b/bes_theme/.icons/bes_theme/message-cog.svg deleted file mode 100644 index ab9a3db8..00000000 --- a/bes_theme/.icons/bes_theme/message-cog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-draw.svg b/bes_theme/.icons/bes_theme/message-draw.svg deleted file mode 100644 index bdd13aa3..00000000 --- a/bes_theme/.icons/bes_theme/message-draw.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-flash-outline.svg b/bes_theme/.icons/bes_theme/message-flash-outline.svg deleted file mode 100644 index 119800dd..00000000 --- a/bes_theme/.icons/bes_theme/message-flash-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-flash.svg b/bes_theme/.icons/bes_theme/message-flash.svg deleted file mode 100644 index 8dac586c..00000000 --- a/bes_theme/.icons/bes_theme/message-flash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-image-outline.svg b/bes_theme/.icons/bes_theme/message-image-outline.svg deleted file mode 100644 index 53d9c7a2..00000000 --- a/bes_theme/.icons/bes_theme/message-image-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-image.svg b/bes_theme/.icons/bes_theme/message-image.svg deleted file mode 100644 index 85092b08..00000000 --- a/bes_theme/.icons/bes_theme/message-image.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-lock-outline.svg b/bes_theme/.icons/bes_theme/message-lock-outline.svg deleted file mode 100644 index 3babc9b2..00000000 --- a/bes_theme/.icons/bes_theme/message-lock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-lock.svg b/bes_theme/.icons/bes_theme/message-lock.svg deleted file mode 100644 index fb6e76d8..00000000 --- a/bes_theme/.icons/bes_theme/message-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-minus-outline.svg b/bes_theme/.icons/bes_theme/message-minus-outline.svg deleted file mode 100644 index 01cbdaba..00000000 --- a/bes_theme/.icons/bes_theme/message-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-minus.svg b/bes_theme/.icons/bes_theme/message-minus.svg deleted file mode 100644 index 4f6e1e46..00000000 --- a/bes_theme/.icons/bes_theme/message-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-off-outline.svg b/bes_theme/.icons/bes_theme/message-off-outline.svg deleted file mode 100644 index 005e0183..00000000 --- a/bes_theme/.icons/bes_theme/message-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-off.svg b/bes_theme/.icons/bes_theme/message-off.svg deleted file mode 100644 index e0bca312..00000000 --- a/bes_theme/.icons/bes_theme/message-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-outline.svg b/bes_theme/.icons/bes_theme/message-outline.svg deleted file mode 100644 index 005e1883..00000000 --- a/bes_theme/.icons/bes_theme/message-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-plus-outline.svg b/bes_theme/.icons/bes_theme/message-plus-outline.svg deleted file mode 100644 index b51ffe06..00000000 --- a/bes_theme/.icons/bes_theme/message-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-plus.svg b/bes_theme/.icons/bes_theme/message-plus.svg deleted file mode 100644 index f81df1d6..00000000 --- a/bes_theme/.icons/bes_theme/message-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-processing-outline.svg b/bes_theme/.icons/bes_theme/message-processing-outline.svg deleted file mode 100644 index 8a258067..00000000 --- a/bes_theme/.icons/bes_theme/message-processing-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-processing.svg b/bes_theme/.icons/bes_theme/message-processing.svg deleted file mode 100644 index 0398a76c..00000000 --- a/bes_theme/.icons/bes_theme/message-processing.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-question-outline.svg b/bes_theme/.icons/bes_theme/message-question-outline.svg deleted file mode 100644 index 1ec3ead1..00000000 --- a/bes_theme/.icons/bes_theme/message-question-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-question.svg b/bes_theme/.icons/bes_theme/message-question.svg deleted file mode 100644 index 0ecb0ffa..00000000 --- a/bes_theme/.icons/bes_theme/message-question.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-reply-outline.svg b/bes_theme/.icons/bes_theme/message-reply-outline.svg deleted file mode 100644 index 1087cc83..00000000 --- a/bes_theme/.icons/bes_theme/message-reply-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-reply-text-outline.svg b/bes_theme/.icons/bes_theme/message-reply-text-outline.svg deleted file mode 100644 index bdcbc258..00000000 --- a/bes_theme/.icons/bes_theme/message-reply-text-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-reply-text.svg b/bes_theme/.icons/bes_theme/message-reply-text.svg deleted file mode 100644 index 57c603c8..00000000 --- a/bes_theme/.icons/bes_theme/message-reply-text.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-reply.svg b/bes_theme/.icons/bes_theme/message-reply.svg deleted file mode 100644 index e1327e44..00000000 --- a/bes_theme/.icons/bes_theme/message-reply.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-settings-outline.svg b/bes_theme/.icons/bes_theme/message-settings-outline.svg deleted file mode 100644 index 9c273c32..00000000 --- a/bes_theme/.icons/bes_theme/message-settings-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-settings.svg b/bes_theme/.icons/bes_theme/message-settings.svg deleted file mode 100644 index c7fa0498..00000000 --- a/bes_theme/.icons/bes_theme/message-settings.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-text-clock-outline.svg b/bes_theme/.icons/bes_theme/message-text-clock-outline.svg deleted file mode 100644 index 5ffc7b15..00000000 --- a/bes_theme/.icons/bes_theme/message-text-clock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-text-clock.svg b/bes_theme/.icons/bes_theme/message-text-clock.svg deleted file mode 100644 index e38e6eb9..00000000 --- a/bes_theme/.icons/bes_theme/message-text-clock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-text-lock-outline.svg b/bes_theme/.icons/bes_theme/message-text-lock-outline.svg deleted file mode 100644 index b1325f26..00000000 --- a/bes_theme/.icons/bes_theme/message-text-lock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-text-lock.svg b/bes_theme/.icons/bes_theme/message-text-lock.svg deleted file mode 100644 index f477077c..00000000 --- a/bes_theme/.icons/bes_theme/message-text-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-text-outline.svg b/bes_theme/.icons/bes_theme/message-text-outline.svg deleted file mode 100644 index 2a82d91d..00000000 --- a/bes_theme/.icons/bes_theme/message-text-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-text.svg b/bes_theme/.icons/bes_theme/message-text.svg deleted file mode 100644 index 6e395dad..00000000 --- a/bes_theme/.icons/bes_theme/message-text.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message-video.svg b/bes_theme/.icons/bes_theme/message-video.svg deleted file mode 100644 index 01abe9a0..00000000 --- a/bes_theme/.icons/bes_theme/message-video.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/message.svg b/bes_theme/.icons/bes_theme/message.svg deleted file mode 100644 index 2d4c2b33..00000000 --- a/bes_theme/.icons/bes_theme/message.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/meteor.svg b/bes_theme/.icons/bes_theme/meteor.svg deleted file mode 100644 index 5f9dd351..00000000 --- a/bes_theme/.icons/bes_theme/meteor.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/metronome-tick.svg b/bes_theme/.icons/bes_theme/metronome-tick.svg deleted file mode 100644 index 7a7a5ab1..00000000 --- a/bes_theme/.icons/bes_theme/metronome-tick.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/metronome.svg b/bes_theme/.icons/bes_theme/metronome.svg deleted file mode 100644 index 2c131c4d..00000000 --- a/bes_theme/.icons/bes_theme/metronome.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/micro-sd.svg b/bes_theme/.icons/bes_theme/micro-sd.svg deleted file mode 100644 index 1278052c..00000000 --- a/bes_theme/.icons/bes_theme/micro-sd.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microphone-minus.svg b/bes_theme/.icons/bes_theme/microphone-minus.svg deleted file mode 100644 index 3444b3fa..00000000 --- a/bes_theme/.icons/bes_theme/microphone-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microphone-off.svg b/bes_theme/.icons/bes_theme/microphone-off.svg deleted file mode 100644 index 958f727c..00000000 --- a/bes_theme/.icons/bes_theme/microphone-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microphone-outline.svg b/bes_theme/.icons/bes_theme/microphone-outline.svg deleted file mode 100644 index 0a353530..00000000 --- a/bes_theme/.icons/bes_theme/microphone-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microphone-plus.svg b/bes_theme/.icons/bes_theme/microphone-plus.svg deleted file mode 100644 index 0ae8ec0a..00000000 --- a/bes_theme/.icons/bes_theme/microphone-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microphone-settings.svg b/bes_theme/.icons/bes_theme/microphone-settings.svg deleted file mode 100644 index f5225671..00000000 --- a/bes_theme/.icons/bes_theme/microphone-settings.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microphone-variant-off.svg b/bes_theme/.icons/bes_theme/microphone-variant-off.svg deleted file mode 100644 index d0d156c4..00000000 --- a/bes_theme/.icons/bes_theme/microphone-variant-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microphone-variant.svg b/bes_theme/.icons/bes_theme/microphone-variant.svg deleted file mode 100644 index 4a58cfb3..00000000 --- a/bes_theme/.icons/bes_theme/microphone-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microphone.svg b/bes_theme/.icons/bes_theme/microphone.svg deleted file mode 100644 index 160615be..00000000 --- a/bes_theme/.icons/bes_theme/microphone.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microscope.svg b/bes_theme/.icons/bes_theme/microscope.svg deleted file mode 100644 index 3869a098..00000000 --- a/bes_theme/.icons/bes_theme/microscope.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-access.svg b/bes_theme/.icons/bes_theme/microsoft-access.svg deleted file mode 100644 index 0d144867..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-access.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-azure-devops.svg b/bes_theme/.icons/bes_theme/microsoft-azure-devops.svg deleted file mode 100644 index 195402da..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-azure-devops.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-azure.svg b/bes_theme/.icons/bes_theme/microsoft-azure.svg deleted file mode 100644 index 48737d75..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-azure.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-bing.svg b/bes_theme/.icons/bes_theme/microsoft-bing.svg deleted file mode 100644 index 0371962e..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-bing.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-dynamics-365.svg b/bes_theme/.icons/bes_theme/microsoft-dynamics-365.svg deleted file mode 100644 index 4d1c6f9e..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-dynamics-365.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-edge-legacy.svg b/bes_theme/.icons/bes_theme/microsoft-edge-legacy.svg deleted file mode 100644 index e43ff58d..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-edge-legacy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-edge.svg b/bes_theme/.icons/bes_theme/microsoft-edge.svg deleted file mode 100644 index fc63e89c..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-edge.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-excel.svg b/bes_theme/.icons/bes_theme/microsoft-excel.svg deleted file mode 100644 index 1350c1a8..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-excel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-internet-explorer.svg b/bes_theme/.icons/bes_theme/microsoft-internet-explorer.svg deleted file mode 100644 index 9621395e..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-internet-explorer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-office.svg b/bes_theme/.icons/bes_theme/microsoft-office.svg deleted file mode 100644 index 24157f4e..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-office.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-onedrive.svg b/bes_theme/.icons/bes_theme/microsoft-onedrive.svg deleted file mode 100644 index 19fe5159..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-onedrive.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-onenote.svg b/bes_theme/.icons/bes_theme/microsoft-onenote.svg deleted file mode 100644 index a22d4128..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-onenote.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-outlook.svg b/bes_theme/.icons/bes_theme/microsoft-outlook.svg deleted file mode 100644 index 241ba489..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-outlook.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-powerpoint.svg b/bes_theme/.icons/bes_theme/microsoft-powerpoint.svg deleted file mode 100644 index bee4c033..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-powerpoint.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-sharepoint.svg b/bes_theme/.icons/bes_theme/microsoft-sharepoint.svg deleted file mode 100644 index 88b9c46c..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-sharepoint.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-teams.svg b/bes_theme/.icons/bes_theme/microsoft-teams.svg deleted file mode 100644 index 12354f7e..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-teams.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-visual-studio-code.svg b/bes_theme/.icons/bes_theme/microsoft-visual-studio-code.svg deleted file mode 100644 index d6f3d0f5..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-visual-studio-code.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-visual-studio.svg b/bes_theme/.icons/bes_theme/microsoft-visual-studio.svg deleted file mode 100644 index 516bd500..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-visual-studio.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-windows-classic.svg b/bes_theme/.icons/bes_theme/microsoft-windows-classic.svg deleted file mode 100644 index f26c373b..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-windows-classic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-windows.svg b/bes_theme/.icons/bes_theme/microsoft-windows.svg deleted file mode 100644 index 96c2e6d2..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-windows.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-word.svg b/bes_theme/.icons/bes_theme/microsoft-word.svg deleted file mode 100644 index c6a5a67a..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-word.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-xbox-controller-battery-alert.svg b/bes_theme/.icons/bes_theme/microsoft-xbox-controller-battery-alert.svg deleted file mode 100644 index dff8a7a0..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-xbox-controller-battery-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-xbox-controller-battery-charging.svg b/bes_theme/.icons/bes_theme/microsoft-xbox-controller-battery-charging.svg deleted file mode 100644 index e538274c..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-xbox-controller-battery-charging.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-xbox-controller-battery-empty.svg b/bes_theme/.icons/bes_theme/microsoft-xbox-controller-battery-empty.svg deleted file mode 100644 index 5566b489..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-xbox-controller-battery-empty.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-xbox-controller-battery-full.svg b/bes_theme/.icons/bes_theme/microsoft-xbox-controller-battery-full.svg deleted file mode 100644 index 999c9dcc..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-xbox-controller-battery-full.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-xbox-controller-battery-low.svg b/bes_theme/.icons/bes_theme/microsoft-xbox-controller-battery-low.svg deleted file mode 100644 index 7c1f2212..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-xbox-controller-battery-low.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-xbox-controller-battery-medium.svg b/bes_theme/.icons/bes_theme/microsoft-xbox-controller-battery-medium.svg deleted file mode 100644 index 6cf3622b..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-xbox-controller-battery-medium.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-xbox-controller-battery-unknown.svg b/bes_theme/.icons/bes_theme/microsoft-xbox-controller-battery-unknown.svg deleted file mode 100644 index cd3f11e8..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-xbox-controller-battery-unknown.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-xbox-controller-menu.svg b/bes_theme/.icons/bes_theme/microsoft-xbox-controller-menu.svg deleted file mode 100644 index 865e3016..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-xbox-controller-menu.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-xbox-controller-off.svg b/bes_theme/.icons/bes_theme/microsoft-xbox-controller-off.svg deleted file mode 100644 index 079459a3..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-xbox-controller-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-xbox-controller-view.svg b/bes_theme/.icons/bes_theme/microsoft-xbox-controller-view.svg deleted file mode 100644 index 6c34b229..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-xbox-controller-view.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-xbox-controller.svg b/bes_theme/.icons/bes_theme/microsoft-xbox-controller.svg deleted file mode 100644 index 2818cbe2..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-xbox-controller.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-xbox.svg b/bes_theme/.icons/bes_theme/microsoft-xbox.svg deleted file mode 100644 index 1c1f530f..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-xbox.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft-yammer.svg b/bes_theme/.icons/bes_theme/microsoft-yammer.svg deleted file mode 100644 index 9bb54338..00000000 --- a/bes_theme/.icons/bes_theme/microsoft-yammer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microsoft.svg b/bes_theme/.icons/bes_theme/microsoft.svg deleted file mode 100644 index 35f563d7..00000000 --- a/bes_theme/.icons/bes_theme/microsoft.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microwave-off.svg b/bes_theme/.icons/bes_theme/microwave-off.svg deleted file mode 100644 index f1322363..00000000 --- a/bes_theme/.icons/bes_theme/microwave-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/microwave.svg b/bes_theme/.icons/bes_theme/microwave.svg deleted file mode 100644 index 291dc50e..00000000 --- a/bes_theme/.icons/bes_theme/microwave.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/middleware-outline.svg b/bes_theme/.icons/bes_theme/middleware-outline.svg deleted file mode 100644 index fd781fb3..00000000 --- a/bes_theme/.icons/bes_theme/middleware-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/middleware.svg b/bes_theme/.icons/bes_theme/middleware.svg deleted file mode 100644 index 08900bb4..00000000 --- a/bes_theme/.icons/bes_theme/middleware.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/midi-port.svg b/bes_theme/.icons/bes_theme/midi-port.svg deleted file mode 100644 index 01ab2218..00000000 --- a/bes_theme/.icons/bes_theme/midi-port.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/midi.svg b/bes_theme/.icons/bes_theme/midi.svg deleted file mode 100644 index 6fa120f8..00000000 --- a/bes_theme/.icons/bes_theme/midi.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mine.svg b/bes_theme/.icons/bes_theme/mine.svg deleted file mode 100644 index eb2d6cfb..00000000 --- a/bes_theme/.icons/bes_theme/mine.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/minecraft.svg b/bes_theme/.icons/bes_theme/minecraft.svg deleted file mode 100644 index 88a5598b..00000000 --- a/bes_theme/.icons/bes_theme/minecraft.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mini-sd.svg b/bes_theme/.icons/bes_theme/mini-sd.svg deleted file mode 100644 index c8843351..00000000 --- a/bes_theme/.icons/bes_theme/mini-sd.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/minidisc.svg b/bes_theme/.icons/bes_theme/minidisc.svg deleted file mode 100644 index 6daf3f25..00000000 --- a/bes_theme/.icons/bes_theme/minidisc.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/minus-box-multiple-outline.svg b/bes_theme/.icons/bes_theme/minus-box-multiple-outline.svg deleted file mode 100644 index 3bdb8563..00000000 --- a/bes_theme/.icons/bes_theme/minus-box-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/minus-box-multiple.svg b/bes_theme/.icons/bes_theme/minus-box-multiple.svg deleted file mode 100644 index ffa25c6a..00000000 --- a/bes_theme/.icons/bes_theme/minus-box-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/minus-box-outline.svg b/bes_theme/.icons/bes_theme/minus-box-outline.svg deleted file mode 100644 index 5dc7bc13..00000000 --- a/bes_theme/.icons/bes_theme/minus-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/minus-box.svg b/bes_theme/.icons/bes_theme/minus-box.svg deleted file mode 100644 index d5354885..00000000 --- a/bes_theme/.icons/bes_theme/minus-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/minus-circle-multiple-outline.svg b/bes_theme/.icons/bes_theme/minus-circle-multiple-outline.svg deleted file mode 100644 index 62a4cd53..00000000 --- a/bes_theme/.icons/bes_theme/minus-circle-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/minus-circle-multiple.svg b/bes_theme/.icons/bes_theme/minus-circle-multiple.svg deleted file mode 100644 index 15d9022b..00000000 --- a/bes_theme/.icons/bes_theme/minus-circle-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/minus-circle-off-outline.svg b/bes_theme/.icons/bes_theme/minus-circle-off-outline.svg deleted file mode 100644 index 8925ad5f..00000000 --- a/bes_theme/.icons/bes_theme/minus-circle-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/minus-circle-off.svg b/bes_theme/.icons/bes_theme/minus-circle-off.svg deleted file mode 100644 index d277b9a5..00000000 --- a/bes_theme/.icons/bes_theme/minus-circle-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/minus-circle-outline.svg b/bes_theme/.icons/bes_theme/minus-circle-outline.svg deleted file mode 100644 index cf99ac92..00000000 --- a/bes_theme/.icons/bes_theme/minus-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/minus-circle.svg b/bes_theme/.icons/bes_theme/minus-circle.svg deleted file mode 100644 index 35065ef3..00000000 --- a/bes_theme/.icons/bes_theme/minus-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/minus-network-outline.svg b/bes_theme/.icons/bes_theme/minus-network-outline.svg deleted file mode 100644 index 8aeca054..00000000 --- a/bes_theme/.icons/bes_theme/minus-network-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/minus-network.svg b/bes_theme/.icons/bes_theme/minus-network.svg deleted file mode 100644 index 02433296..00000000 --- a/bes_theme/.icons/bes_theme/minus-network.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/minus-thick.svg b/bes_theme/.icons/bes_theme/minus-thick.svg deleted file mode 100644 index 1618c921..00000000 --- a/bes_theme/.icons/bes_theme/minus-thick.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/minus.svg b/bes_theme/.icons/bes_theme/minus.svg deleted file mode 100644 index c2c08749..00000000 --- a/bes_theme/.icons/bes_theme/minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mirror.svg b/bes_theme/.icons/bes_theme/mirror.svg deleted file mode 100644 index fc65b5a1..00000000 --- a/bes_theme/.icons/bes_theme/mirror.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mixed-martial-arts.svg b/bes_theme/.icons/bes_theme/mixed-martial-arts.svg deleted file mode 100644 index 6ce0e12e..00000000 --- a/bes_theme/.icons/bes_theme/mixed-martial-arts.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mixed-reality.svg b/bes_theme/.icons/bes_theme/mixed-reality.svg deleted file mode 100644 index 68dbedde..00000000 --- a/bes_theme/.icons/bes_theme/mixed-reality.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/molecule-co.svg b/bes_theme/.icons/bes_theme/molecule-co.svg deleted file mode 100644 index 3d36a63d..00000000 --- a/bes_theme/.icons/bes_theme/molecule-co.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/molecule-co2.svg b/bes_theme/.icons/bes_theme/molecule-co2.svg deleted file mode 100644 index 5ed1e55f..00000000 --- a/bes_theme/.icons/bes_theme/molecule-co2.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/molecule.svg b/bes_theme/.icons/bes_theme/molecule.svg deleted file mode 100644 index e38de068..00000000 --- a/bes_theme/.icons/bes_theme/molecule.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/monitor-cellphone-star.svg b/bes_theme/.icons/bes_theme/monitor-cellphone-star.svg deleted file mode 100644 index 54cf767c..00000000 --- a/bes_theme/.icons/bes_theme/monitor-cellphone-star.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/monitor-cellphone.svg b/bes_theme/.icons/bes_theme/monitor-cellphone.svg deleted file mode 100644 index 22be6d99..00000000 --- a/bes_theme/.icons/bes_theme/monitor-cellphone.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/monitor-clean.svg b/bes_theme/.icons/bes_theme/monitor-clean.svg deleted file mode 100644 index ca3849c7..00000000 --- a/bes_theme/.icons/bes_theme/monitor-clean.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/monitor-dashboard.svg b/bes_theme/.icons/bes_theme/monitor-dashboard.svg deleted file mode 100644 index b05130e2..00000000 --- a/bes_theme/.icons/bes_theme/monitor-dashboard.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/monitor-edit.svg b/bes_theme/.icons/bes_theme/monitor-edit.svg deleted file mode 100644 index 745a9ecb..00000000 --- a/bes_theme/.icons/bes_theme/monitor-edit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/monitor-eye.svg b/bes_theme/.icons/bes_theme/monitor-eye.svg deleted file mode 100644 index 1d5c8c75..00000000 --- a/bes_theme/.icons/bes_theme/monitor-eye.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/monitor-lock.svg b/bes_theme/.icons/bes_theme/monitor-lock.svg deleted file mode 100644 index 5b19c980..00000000 --- a/bes_theme/.icons/bes_theme/monitor-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/monitor-multiple.svg b/bes_theme/.icons/bes_theme/monitor-multiple.svg deleted file mode 100644 index bb69ca8f..00000000 --- a/bes_theme/.icons/bes_theme/monitor-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/monitor-off.svg b/bes_theme/.icons/bes_theme/monitor-off.svg deleted file mode 100644 index 79d5711d..00000000 --- a/bes_theme/.icons/bes_theme/monitor-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/monitor-screenshot.svg b/bes_theme/.icons/bes_theme/monitor-screenshot.svg deleted file mode 100644 index 425decf6..00000000 --- a/bes_theme/.icons/bes_theme/monitor-screenshot.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/monitor-share.svg b/bes_theme/.icons/bes_theme/monitor-share.svg deleted file mode 100644 index ec1566ce..00000000 --- a/bes_theme/.icons/bes_theme/monitor-share.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/monitor-speaker-off.svg b/bes_theme/.icons/bes_theme/monitor-speaker-off.svg deleted file mode 100644 index 54f683d6..00000000 --- a/bes_theme/.icons/bes_theme/monitor-speaker-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/monitor-speaker.svg b/bes_theme/.icons/bes_theme/monitor-speaker.svg deleted file mode 100644 index f4751bfc..00000000 --- a/bes_theme/.icons/bes_theme/monitor-speaker.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/monitor-star.svg b/bes_theme/.icons/bes_theme/monitor-star.svg deleted file mode 100644 index f17c9ab6..00000000 --- a/bes_theme/.icons/bes_theme/monitor-star.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/monitor.svg b/bes_theme/.icons/bes_theme/monitor.svg deleted file mode 100644 index 8c4482da..00000000 --- a/bes_theme/.icons/bes_theme/monitor.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/moon-first-quarter.svg b/bes_theme/.icons/bes_theme/moon-first-quarter.svg deleted file mode 100644 index 4c071f45..00000000 --- a/bes_theme/.icons/bes_theme/moon-first-quarter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/moon-full.svg b/bes_theme/.icons/bes_theme/moon-full.svg deleted file mode 100644 index 7c7da088..00000000 --- a/bes_theme/.icons/bes_theme/moon-full.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/moon-last-quarter.svg b/bes_theme/.icons/bes_theme/moon-last-quarter.svg deleted file mode 100644 index 62073f04..00000000 --- a/bes_theme/.icons/bes_theme/moon-last-quarter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/moon-new.svg b/bes_theme/.icons/bes_theme/moon-new.svg deleted file mode 100644 index e26525b7..00000000 --- a/bes_theme/.icons/bes_theme/moon-new.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/moon-waning-crescent.svg b/bes_theme/.icons/bes_theme/moon-waning-crescent.svg deleted file mode 100644 index b78586a9..00000000 --- a/bes_theme/.icons/bes_theme/moon-waning-crescent.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/moon-waning-gibbous.svg b/bes_theme/.icons/bes_theme/moon-waning-gibbous.svg deleted file mode 100644 index 57b81d38..00000000 --- a/bes_theme/.icons/bes_theme/moon-waning-gibbous.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/moon-waxing-crescent.svg b/bes_theme/.icons/bes_theme/moon-waxing-crescent.svg deleted file mode 100644 index 8485e0a7..00000000 --- a/bes_theme/.icons/bes_theme/moon-waxing-crescent.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/moon-waxing-gibbous.svg b/bes_theme/.icons/bes_theme/moon-waxing-gibbous.svg deleted file mode 100644 index db682014..00000000 --- a/bes_theme/.icons/bes_theme/moon-waxing-gibbous.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/moped-electric-outline.svg b/bes_theme/.icons/bes_theme/moped-electric-outline.svg deleted file mode 100644 index db1bc8f1..00000000 --- a/bes_theme/.icons/bes_theme/moped-electric-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/moped-electric.svg b/bes_theme/.icons/bes_theme/moped-electric.svg deleted file mode 100644 index 70f6b2aa..00000000 --- a/bes_theme/.icons/bes_theme/moped-electric.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/moped-outline.svg b/bes_theme/.icons/bes_theme/moped-outline.svg deleted file mode 100644 index 29d6c9fe..00000000 --- a/bes_theme/.icons/bes_theme/moped-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/moped.svg b/bes_theme/.icons/bes_theme/moped.svg deleted file mode 100644 index b6726d0f..00000000 --- a/bes_theme/.icons/bes_theme/moped.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/more.svg b/bes_theme/.icons/bes_theme/more.svg deleted file mode 100644 index 156e9274..00000000 --- a/bes_theme/.icons/bes_theme/more.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mother-heart.svg b/bes_theme/.icons/bes_theme/mother-heart.svg deleted file mode 100644 index 00744f81..00000000 --- a/bes_theme/.icons/bes_theme/mother-heart.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mother-nurse.svg b/bes_theme/.icons/bes_theme/mother-nurse.svg deleted file mode 100644 index 3fa2eb03..00000000 --- a/bes_theme/.icons/bes_theme/mother-nurse.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/motion-outline.svg b/bes_theme/.icons/bes_theme/motion-outline.svg deleted file mode 100644 index beb50d9c..00000000 --- a/bes_theme/.icons/bes_theme/motion-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/motion-pause-outline.svg b/bes_theme/.icons/bes_theme/motion-pause-outline.svg deleted file mode 100644 index 308ae70d..00000000 --- a/bes_theme/.icons/bes_theme/motion-pause-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/motion-pause.svg b/bes_theme/.icons/bes_theme/motion-pause.svg deleted file mode 100644 index f8ad3ebd..00000000 --- a/bes_theme/.icons/bes_theme/motion-pause.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/motion-play-outline.svg b/bes_theme/.icons/bes_theme/motion-play-outline.svg deleted file mode 100644 index 5279f103..00000000 --- a/bes_theme/.icons/bes_theme/motion-play-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/motion-play.svg b/bes_theme/.icons/bes_theme/motion-play.svg deleted file mode 100644 index 10681103..00000000 --- a/bes_theme/.icons/bes_theme/motion-play.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/motion-sensor-off.svg b/bes_theme/.icons/bes_theme/motion-sensor-off.svg deleted file mode 100644 index 82c39bd2..00000000 --- a/bes_theme/.icons/bes_theme/motion-sensor-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/motion-sensor.svg b/bes_theme/.icons/bes_theme/motion-sensor.svg deleted file mode 100644 index f2b9a4d9..00000000 --- a/bes_theme/.icons/bes_theme/motion-sensor.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/motion.svg b/bes_theme/.icons/bes_theme/motion.svg deleted file mode 100644 index 92b69b3e..00000000 --- a/bes_theme/.icons/bes_theme/motion.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/motorbike-electric.svg b/bes_theme/.icons/bes_theme/motorbike-electric.svg deleted file mode 100644 index d66af83f..00000000 --- a/bes_theme/.icons/bes_theme/motorbike-electric.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/motorbike.svg b/bes_theme/.icons/bes_theme/motorbike.svg deleted file mode 100644 index 813c12db..00000000 --- a/bes_theme/.icons/bes_theme/motorbike.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mouse-bluetooth.svg b/bes_theme/.icons/bes_theme/mouse-bluetooth.svg deleted file mode 100644 index 8a82d899..00000000 --- a/bes_theme/.icons/bes_theme/mouse-bluetooth.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mouse-move-down.svg b/bes_theme/.icons/bes_theme/mouse-move-down.svg deleted file mode 100644 index 3f5b83da..00000000 --- a/bes_theme/.icons/bes_theme/mouse-move-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mouse-move-up.svg b/bes_theme/.icons/bes_theme/mouse-move-up.svg deleted file mode 100644 index 3e7ecc4f..00000000 --- a/bes_theme/.icons/bes_theme/mouse-move-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mouse-move-vertical.svg b/bes_theme/.icons/bes_theme/mouse-move-vertical.svg deleted file mode 100644 index 349568fb..00000000 --- a/bes_theme/.icons/bes_theme/mouse-move-vertical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mouse-off.svg b/bes_theme/.icons/bes_theme/mouse-off.svg deleted file mode 100644 index 89dee85e..00000000 --- a/bes_theme/.icons/bes_theme/mouse-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mouse-variant-off.svg b/bes_theme/.icons/bes_theme/mouse-variant-off.svg deleted file mode 100644 index 07a4d20e..00000000 --- a/bes_theme/.icons/bes_theme/mouse-variant-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mouse-variant.svg b/bes_theme/.icons/bes_theme/mouse-variant.svg deleted file mode 100644 index 7bc2576a..00000000 --- a/bes_theme/.icons/bes_theme/mouse-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mouse.svg b/bes_theme/.icons/bes_theme/mouse.svg deleted file mode 100644 index 85db2883..00000000 --- a/bes_theme/.icons/bes_theme/mouse.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/move-resize-variant.svg b/bes_theme/.icons/bes_theme/move-resize-variant.svg deleted file mode 100644 index ddfa6fd7..00000000 --- a/bes_theme/.icons/bes_theme/move-resize-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/move-resize.svg b/bes_theme/.icons/bes_theme/move-resize.svg deleted file mode 100644 index 25f8cc23..00000000 --- a/bes_theme/.icons/bes_theme/move-resize.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-check-outline.svg b/bes_theme/.icons/bes_theme/movie-check-outline.svg deleted file mode 100644 index a10a3c95..00000000 --- a/bes_theme/.icons/bes_theme/movie-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-check.svg b/bes_theme/.icons/bes_theme/movie-check.svg deleted file mode 100644 index 42edc9e7..00000000 --- a/bes_theme/.icons/bes_theme/movie-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-cog-outline.svg b/bes_theme/.icons/bes_theme/movie-cog-outline.svg deleted file mode 100644 index c402131c..00000000 --- a/bes_theme/.icons/bes_theme/movie-cog-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-cog.svg b/bes_theme/.icons/bes_theme/movie-cog.svg deleted file mode 100644 index 3cb1d1ea..00000000 --- a/bes_theme/.icons/bes_theme/movie-cog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-edit-outline.svg b/bes_theme/.icons/bes_theme/movie-edit-outline.svg deleted file mode 100644 index 25e2c4ef..00000000 --- a/bes_theme/.icons/bes_theme/movie-edit-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-edit.svg b/bes_theme/.icons/bes_theme/movie-edit.svg deleted file mode 100644 index d3bc9e52..00000000 --- a/bes_theme/.icons/bes_theme/movie-edit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-filter-outline.svg b/bes_theme/.icons/bes_theme/movie-filter-outline.svg deleted file mode 100644 index 25eab59c..00000000 --- a/bes_theme/.icons/bes_theme/movie-filter-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-filter.svg b/bes_theme/.icons/bes_theme/movie-filter.svg deleted file mode 100644 index 802948ad..00000000 --- a/bes_theme/.icons/bes_theme/movie-filter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-minus-outline.svg b/bes_theme/.icons/bes_theme/movie-minus-outline.svg deleted file mode 100644 index c25da496..00000000 --- a/bes_theme/.icons/bes_theme/movie-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-minus.svg b/bes_theme/.icons/bes_theme/movie-minus.svg deleted file mode 100644 index 30e706cc..00000000 --- a/bes_theme/.icons/bes_theme/movie-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-off-outline.svg b/bes_theme/.icons/bes_theme/movie-off-outline.svg deleted file mode 100644 index 104a898e..00000000 --- a/bes_theme/.icons/bes_theme/movie-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-off.svg b/bes_theme/.icons/bes_theme/movie-off.svg deleted file mode 100644 index ec4b8a5f..00000000 --- a/bes_theme/.icons/bes_theme/movie-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-open-check-outline.svg b/bes_theme/.icons/bes_theme/movie-open-check-outline.svg deleted file mode 100644 index 3cfcbaf1..00000000 --- a/bes_theme/.icons/bes_theme/movie-open-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-open-check.svg b/bes_theme/.icons/bes_theme/movie-open-check.svg deleted file mode 100644 index 3e6f9b82..00000000 --- a/bes_theme/.icons/bes_theme/movie-open-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-open-cog-outline.svg b/bes_theme/.icons/bes_theme/movie-open-cog-outline.svg deleted file mode 100644 index f86ab493..00000000 --- a/bes_theme/.icons/bes_theme/movie-open-cog-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-open-cog.svg b/bes_theme/.icons/bes_theme/movie-open-cog.svg deleted file mode 100644 index 68ceb66c..00000000 --- a/bes_theme/.icons/bes_theme/movie-open-cog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-open-edit-outline.svg b/bes_theme/.icons/bes_theme/movie-open-edit-outline.svg deleted file mode 100644 index 18283510..00000000 --- a/bes_theme/.icons/bes_theme/movie-open-edit-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-open-edit.svg b/bes_theme/.icons/bes_theme/movie-open-edit.svg deleted file mode 100644 index 892e280e..00000000 --- a/bes_theme/.icons/bes_theme/movie-open-edit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-open-minus-outline.svg b/bes_theme/.icons/bes_theme/movie-open-minus-outline.svg deleted file mode 100644 index 32ab34e2..00000000 --- a/bes_theme/.icons/bes_theme/movie-open-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-open-minus.svg b/bes_theme/.icons/bes_theme/movie-open-minus.svg deleted file mode 100644 index 30ea9bb6..00000000 --- a/bes_theme/.icons/bes_theme/movie-open-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-open-off-outline.svg b/bes_theme/.icons/bes_theme/movie-open-off-outline.svg deleted file mode 100644 index a0f03c53..00000000 --- a/bes_theme/.icons/bes_theme/movie-open-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-open-off.svg b/bes_theme/.icons/bes_theme/movie-open-off.svg deleted file mode 100644 index 84dda809..00000000 --- a/bes_theme/.icons/bes_theme/movie-open-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-open-outline.svg b/bes_theme/.icons/bes_theme/movie-open-outline.svg deleted file mode 100644 index 362d93a2..00000000 --- a/bes_theme/.icons/bes_theme/movie-open-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-open-play-outline.svg b/bes_theme/.icons/bes_theme/movie-open-play-outline.svg deleted file mode 100644 index c60a36a0..00000000 --- a/bes_theme/.icons/bes_theme/movie-open-play-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-open-play.svg b/bes_theme/.icons/bes_theme/movie-open-play.svg deleted file mode 100644 index faed7cb1..00000000 --- a/bes_theme/.icons/bes_theme/movie-open-play.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-open-plus-outline.svg b/bes_theme/.icons/bes_theme/movie-open-plus-outline.svg deleted file mode 100644 index db3d03d7..00000000 --- a/bes_theme/.icons/bes_theme/movie-open-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-open-plus.svg b/bes_theme/.icons/bes_theme/movie-open-plus.svg deleted file mode 100644 index debee107..00000000 --- a/bes_theme/.icons/bes_theme/movie-open-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-open-remove-outline.svg b/bes_theme/.icons/bes_theme/movie-open-remove-outline.svg deleted file mode 100644 index 40c08788..00000000 --- a/bes_theme/.icons/bes_theme/movie-open-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-open-remove.svg b/bes_theme/.icons/bes_theme/movie-open-remove.svg deleted file mode 100644 index c169fea6..00000000 --- a/bes_theme/.icons/bes_theme/movie-open-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-open-settings-outline.svg b/bes_theme/.icons/bes_theme/movie-open-settings-outline.svg deleted file mode 100644 index 3f8c8b93..00000000 --- a/bes_theme/.icons/bes_theme/movie-open-settings-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-open-settings.svg b/bes_theme/.icons/bes_theme/movie-open-settings.svg deleted file mode 100644 index 096ac1f5..00000000 --- a/bes_theme/.icons/bes_theme/movie-open-settings.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-open-star-outline.svg b/bes_theme/.icons/bes_theme/movie-open-star-outline.svg deleted file mode 100644 index ea09e83f..00000000 --- a/bes_theme/.icons/bes_theme/movie-open-star-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-open-star.svg b/bes_theme/.icons/bes_theme/movie-open-star.svg deleted file mode 100644 index c82304d8..00000000 --- a/bes_theme/.icons/bes_theme/movie-open-star.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-open.svg b/bes_theme/.icons/bes_theme/movie-open.svg deleted file mode 100644 index 9841007e..00000000 --- a/bes_theme/.icons/bes_theme/movie-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-outline.svg b/bes_theme/.icons/bes_theme/movie-outline.svg deleted file mode 100644 index 616bbea8..00000000 --- a/bes_theme/.icons/bes_theme/movie-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-play-outline.svg b/bes_theme/.icons/bes_theme/movie-play-outline.svg deleted file mode 100644 index eff8f3d8..00000000 --- a/bes_theme/.icons/bes_theme/movie-play-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-play.svg b/bes_theme/.icons/bes_theme/movie-play.svg deleted file mode 100644 index 20f9b850..00000000 --- a/bes_theme/.icons/bes_theme/movie-play.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-plus-outline.svg b/bes_theme/.icons/bes_theme/movie-plus-outline.svg deleted file mode 100644 index 1e4a5ebb..00000000 --- a/bes_theme/.icons/bes_theme/movie-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-plus.svg b/bes_theme/.icons/bes_theme/movie-plus.svg deleted file mode 100644 index c15afc80..00000000 --- a/bes_theme/.icons/bes_theme/movie-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-remove-outline.svg b/bes_theme/.icons/bes_theme/movie-remove-outline.svg deleted file mode 100644 index 9098ef66..00000000 --- a/bes_theme/.icons/bes_theme/movie-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-remove.svg b/bes_theme/.icons/bes_theme/movie-remove.svg deleted file mode 100644 index 0b5178c8..00000000 --- a/bes_theme/.icons/bes_theme/movie-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-roll.svg b/bes_theme/.icons/bes_theme/movie-roll.svg deleted file mode 100644 index 735a24ac..00000000 --- a/bes_theme/.icons/bes_theme/movie-roll.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-search-outline.svg b/bes_theme/.icons/bes_theme/movie-search-outline.svg deleted file mode 100644 index 061592a3..00000000 --- a/bes_theme/.icons/bes_theme/movie-search-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-search.svg b/bes_theme/.icons/bes_theme/movie-search.svg deleted file mode 100644 index 4421cc7c..00000000 --- a/bes_theme/.icons/bes_theme/movie-search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-settings-outline.svg b/bes_theme/.icons/bes_theme/movie-settings-outline.svg deleted file mode 100644 index a45ed339..00000000 --- a/bes_theme/.icons/bes_theme/movie-settings-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-settings.svg b/bes_theme/.icons/bes_theme/movie-settings.svg deleted file mode 100644 index 12f6f06c..00000000 --- a/bes_theme/.icons/bes_theme/movie-settings.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-star-outline.svg b/bes_theme/.icons/bes_theme/movie-star-outline.svg deleted file mode 100644 index 523c346f..00000000 --- a/bes_theme/.icons/bes_theme/movie-star-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie-star.svg b/bes_theme/.icons/bes_theme/movie-star.svg deleted file mode 100644 index b5612a89..00000000 --- a/bes_theme/.icons/bes_theme/movie-star.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/movie.svg b/bes_theme/.icons/bes_theme/movie.svg deleted file mode 100644 index 1d2fd7e6..00000000 --- a/bes_theme/.icons/bes_theme/movie.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mower-bag.svg b/bes_theme/.icons/bes_theme/mower-bag.svg deleted file mode 100644 index e4295eec..00000000 --- a/bes_theme/.icons/bes_theme/mower-bag.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mower.svg b/bes_theme/.icons/bes_theme/mower.svg deleted file mode 100644 index 795e68b6..00000000 --- a/bes_theme/.icons/bes_theme/mower.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/muffin.svg b/bes_theme/.icons/bes_theme/muffin.svg deleted file mode 100644 index acd13aaa..00000000 --- a/bes_theme/.icons/bes_theme/muffin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/multiplication-box.svg b/bes_theme/.icons/bes_theme/multiplication-box.svg deleted file mode 100644 index 9d700fb8..00000000 --- a/bes_theme/.icons/bes_theme/multiplication-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/multiplication.svg b/bes_theme/.icons/bes_theme/multiplication.svg deleted file mode 100644 index 0b5d93be..00000000 --- a/bes_theme/.icons/bes_theme/multiplication.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mushroom-off-outline.svg b/bes_theme/.icons/bes_theme/mushroom-off-outline.svg deleted file mode 100644 index 15c041ba..00000000 --- a/bes_theme/.icons/bes_theme/mushroom-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mushroom-off.svg b/bes_theme/.icons/bes_theme/mushroom-off.svg deleted file mode 100644 index bd2b94ac..00000000 --- a/bes_theme/.icons/bes_theme/mushroom-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mushroom-outline.svg b/bes_theme/.icons/bes_theme/mushroom-outline.svg deleted file mode 100644 index a2aaf68c..00000000 --- a/bes_theme/.icons/bes_theme/mushroom-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mushroom.svg b/bes_theme/.icons/bes_theme/mushroom.svg deleted file mode 100644 index e2af2efb..00000000 --- a/bes_theme/.icons/bes_theme/mushroom.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-accidental-double-flat.svg b/bes_theme/.icons/bes_theme/music-accidental-double-flat.svg deleted file mode 100644 index a522040f..00000000 --- a/bes_theme/.icons/bes_theme/music-accidental-double-flat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-accidental-double-sharp.svg b/bes_theme/.icons/bes_theme/music-accidental-double-sharp.svg deleted file mode 100644 index cbc53273..00000000 --- a/bes_theme/.icons/bes_theme/music-accidental-double-sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-accidental-flat.svg b/bes_theme/.icons/bes_theme/music-accidental-flat.svg deleted file mode 100644 index 8c74c622..00000000 --- a/bes_theme/.icons/bes_theme/music-accidental-flat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-accidental-natural.svg b/bes_theme/.icons/bes_theme/music-accidental-natural.svg deleted file mode 100644 index 6658aab7..00000000 --- a/bes_theme/.icons/bes_theme/music-accidental-natural.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-accidental-sharp.svg b/bes_theme/.icons/bes_theme/music-accidental-sharp.svg deleted file mode 100644 index 22f8ce47..00000000 --- a/bes_theme/.icons/bes_theme/music-accidental-sharp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-box-multiple-outline.svg b/bes_theme/.icons/bes_theme/music-box-multiple-outline.svg deleted file mode 100644 index b4465894..00000000 --- a/bes_theme/.icons/bes_theme/music-box-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-box-multiple.svg b/bes_theme/.icons/bes_theme/music-box-multiple.svg deleted file mode 100644 index 9b807f09..00000000 --- a/bes_theme/.icons/bes_theme/music-box-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-box-outline.svg b/bes_theme/.icons/bes_theme/music-box-outline.svg deleted file mode 100644 index 8c30e1a4..00000000 --- a/bes_theme/.icons/bes_theme/music-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-box.svg b/bes_theme/.icons/bes_theme/music-box.svg deleted file mode 100644 index b45fd29e..00000000 --- a/bes_theme/.icons/bes_theme/music-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-circle-outline.svg b/bes_theme/.icons/bes_theme/music-circle-outline.svg deleted file mode 100644 index 30b8f4c8..00000000 --- a/bes_theme/.icons/bes_theme/music-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-circle.svg b/bes_theme/.icons/bes_theme/music-circle.svg deleted file mode 100644 index 8b98e67c..00000000 --- a/bes_theme/.icons/bes_theme/music-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-clef-alto.svg b/bes_theme/.icons/bes_theme/music-clef-alto.svg deleted file mode 100644 index 04b1cff7..00000000 --- a/bes_theme/.icons/bes_theme/music-clef-alto.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-clef-bass.svg b/bes_theme/.icons/bes_theme/music-clef-bass.svg deleted file mode 100644 index b121ecbc..00000000 --- a/bes_theme/.icons/bes_theme/music-clef-bass.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-clef-treble.svg b/bes_theme/.icons/bes_theme/music-clef-treble.svg deleted file mode 100644 index 19c8e86d..00000000 --- a/bes_theme/.icons/bes_theme/music-clef-treble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-note-bluetooth-off.svg b/bes_theme/.icons/bes_theme/music-note-bluetooth-off.svg deleted file mode 100644 index 1a14d691..00000000 --- a/bes_theme/.icons/bes_theme/music-note-bluetooth-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-note-bluetooth.svg b/bes_theme/.icons/bes_theme/music-note-bluetooth.svg deleted file mode 100644 index b8be7e54..00000000 --- a/bes_theme/.icons/bes_theme/music-note-bluetooth.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-note-eighth-dotted.svg b/bes_theme/.icons/bes_theme/music-note-eighth-dotted.svg deleted file mode 100644 index 7017ba80..00000000 --- a/bes_theme/.icons/bes_theme/music-note-eighth-dotted.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-note-eighth.svg b/bes_theme/.icons/bes_theme/music-note-eighth.svg deleted file mode 100644 index 21edf382..00000000 --- a/bes_theme/.icons/bes_theme/music-note-eighth.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-note-half-dotted.svg b/bes_theme/.icons/bes_theme/music-note-half-dotted.svg deleted file mode 100644 index bc26b435..00000000 --- a/bes_theme/.icons/bes_theme/music-note-half-dotted.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-note-half.svg b/bes_theme/.icons/bes_theme/music-note-half.svg deleted file mode 100644 index 472b4d94..00000000 --- a/bes_theme/.icons/bes_theme/music-note-half.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-note-off-outline.svg b/bes_theme/.icons/bes_theme/music-note-off-outline.svg deleted file mode 100644 index 11df2821..00000000 --- a/bes_theme/.icons/bes_theme/music-note-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-note-off.svg b/bes_theme/.icons/bes_theme/music-note-off.svg deleted file mode 100644 index ced244e8..00000000 --- a/bes_theme/.icons/bes_theme/music-note-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-note-outline.svg b/bes_theme/.icons/bes_theme/music-note-outline.svg deleted file mode 100644 index 7c27cba9..00000000 --- a/bes_theme/.icons/bes_theme/music-note-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-note-plus.svg b/bes_theme/.icons/bes_theme/music-note-plus.svg deleted file mode 100644 index 6c40dbb1..00000000 --- a/bes_theme/.icons/bes_theme/music-note-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-note-quarter-dotted.svg b/bes_theme/.icons/bes_theme/music-note-quarter-dotted.svg deleted file mode 100644 index d5abca77..00000000 --- a/bes_theme/.icons/bes_theme/music-note-quarter-dotted.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-note-quarter.svg b/bes_theme/.icons/bes_theme/music-note-quarter.svg deleted file mode 100644 index 8d566cda..00000000 --- a/bes_theme/.icons/bes_theme/music-note-quarter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-note-sixteenth-dotted.svg b/bes_theme/.icons/bes_theme/music-note-sixteenth-dotted.svg deleted file mode 100644 index 968e39bf..00000000 --- a/bes_theme/.icons/bes_theme/music-note-sixteenth-dotted.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-note-sixteenth.svg b/bes_theme/.icons/bes_theme/music-note-sixteenth.svg deleted file mode 100644 index 657c784a..00000000 --- a/bes_theme/.icons/bes_theme/music-note-sixteenth.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-note-whole-dotted.svg b/bes_theme/.icons/bes_theme/music-note-whole-dotted.svg deleted file mode 100644 index 12e3edbb..00000000 --- a/bes_theme/.icons/bes_theme/music-note-whole-dotted.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-note-whole.svg b/bes_theme/.icons/bes_theme/music-note-whole.svg deleted file mode 100644 index 5a98881f..00000000 --- a/bes_theme/.icons/bes_theme/music-note-whole.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-note.svg b/bes_theme/.icons/bes_theme/music-note.svg deleted file mode 100644 index 21edf382..00000000 --- a/bes_theme/.icons/bes_theme/music-note.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-off.svg b/bes_theme/.icons/bes_theme/music-off.svg deleted file mode 100644 index 82efa283..00000000 --- a/bes_theme/.icons/bes_theme/music-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-rest-eighth.svg b/bes_theme/.icons/bes_theme/music-rest-eighth.svg deleted file mode 100644 index 224827e7..00000000 --- a/bes_theme/.icons/bes_theme/music-rest-eighth.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-rest-half.svg b/bes_theme/.icons/bes_theme/music-rest-half.svg deleted file mode 100644 index 53fd09c4..00000000 --- a/bes_theme/.icons/bes_theme/music-rest-half.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-rest-quarter.svg b/bes_theme/.icons/bes_theme/music-rest-quarter.svg deleted file mode 100644 index a7a55b23..00000000 --- a/bes_theme/.icons/bes_theme/music-rest-quarter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-rest-sixteenth.svg b/bes_theme/.icons/bes_theme/music-rest-sixteenth.svg deleted file mode 100644 index 51ca0c48..00000000 --- a/bes_theme/.icons/bes_theme/music-rest-sixteenth.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music-rest-whole.svg b/bes_theme/.icons/bes_theme/music-rest-whole.svg deleted file mode 100644 index 4f689ef7..00000000 --- a/bes_theme/.icons/bes_theme/music-rest-whole.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/music.svg b/bes_theme/.icons/bes_theme/music.svg deleted file mode 100644 index 11822145..00000000 --- a/bes_theme/.icons/bes_theme/music.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/mustache.svg b/bes_theme/.icons/bes_theme/mustache.svg deleted file mode 100644 index 55db52d4..00000000 --- a/bes_theme/.icons/bes_theme/mustache.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/nail.svg b/bes_theme/.icons/bes_theme/nail.svg deleted file mode 100644 index 5b7c2766..00000000 --- a/bes_theme/.icons/bes_theme/nail.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/nas.svg b/bes_theme/.icons/bes_theme/nas.svg deleted file mode 100644 index e1ff7114..00000000 --- a/bes_theme/.icons/bes_theme/nas.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/nativescript.svg b/bes_theme/.icons/bes_theme/nativescript.svg deleted file mode 100644 index db837ebd..00000000 --- a/bes_theme/.icons/bes_theme/nativescript.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/nature-people.svg b/bes_theme/.icons/bes_theme/nature-people.svg deleted file mode 100644 index 317c46be..00000000 --- a/bes_theme/.icons/bes_theme/nature-people.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/nature.svg b/bes_theme/.icons/bes_theme/nature.svg deleted file mode 100644 index a41764d8..00000000 --- a/bes_theme/.icons/bes_theme/nature.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/navigation-outline.svg b/bes_theme/.icons/bes_theme/navigation-outline.svg deleted file mode 100644 index e03059d2..00000000 --- a/bes_theme/.icons/bes_theme/navigation-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/navigation.svg b/bes_theme/.icons/bes_theme/navigation.svg deleted file mode 100644 index 501dce1a..00000000 --- a/bes_theme/.icons/bes_theme/navigation.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/near-me.svg b/bes_theme/.icons/bes_theme/near-me.svg deleted file mode 100644 index 4b038315..00000000 --- a/bes_theme/.icons/bes_theme/near-me.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/necklace.svg b/bes_theme/.icons/bes_theme/necklace.svg deleted file mode 100644 index d2a03786..00000000 --- a/bes_theme/.icons/bes_theme/necklace.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/needle.svg b/bes_theme/.icons/bes_theme/needle.svg deleted file mode 100644 index af56e86c..00000000 --- a/bes_theme/.icons/bes_theme/needle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/netflix.svg b/bes_theme/.icons/bes_theme/netflix.svg deleted file mode 100644 index 8e69fa46..00000000 --- a/bes_theme/.icons/bes_theme/netflix.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/network-off-outline.svg b/bes_theme/.icons/bes_theme/network-off-outline.svg deleted file mode 100644 index b5cf30af..00000000 --- a/bes_theme/.icons/bes_theme/network-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/network-off.svg b/bes_theme/.icons/bes_theme/network-off.svg deleted file mode 100644 index ef969600..00000000 --- a/bes_theme/.icons/bes_theme/network-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/network-outline.svg b/bes_theme/.icons/bes_theme/network-outline.svg deleted file mode 100644 index b21c0dbf..00000000 --- a/bes_theme/.icons/bes_theme/network-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/network-strength-1-alert.svg b/bes_theme/.icons/bes_theme/network-strength-1-alert.svg deleted file mode 100644 index 73c142d3..00000000 --- a/bes_theme/.icons/bes_theme/network-strength-1-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/network-strength-1.svg b/bes_theme/.icons/bes_theme/network-strength-1.svg deleted file mode 100644 index b9a81ad0..00000000 --- a/bes_theme/.icons/bes_theme/network-strength-1.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/network-strength-2-alert.svg b/bes_theme/.icons/bes_theme/network-strength-2-alert.svg deleted file mode 100644 index c6b8034a..00000000 --- a/bes_theme/.icons/bes_theme/network-strength-2-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/network-strength-2.svg b/bes_theme/.icons/bes_theme/network-strength-2.svg deleted file mode 100644 index d55fcba3..00000000 --- a/bes_theme/.icons/bes_theme/network-strength-2.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/network-strength-3-alert.svg b/bes_theme/.icons/bes_theme/network-strength-3-alert.svg deleted file mode 100644 index 6a344eff..00000000 --- a/bes_theme/.icons/bes_theme/network-strength-3-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/network-strength-3.svg b/bes_theme/.icons/bes_theme/network-strength-3.svg deleted file mode 100644 index 4a9e70ad..00000000 --- a/bes_theme/.icons/bes_theme/network-strength-3.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/network-strength-4-alert.svg b/bes_theme/.icons/bes_theme/network-strength-4-alert.svg deleted file mode 100644 index 96ff5c83..00000000 --- a/bes_theme/.icons/bes_theme/network-strength-4-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/network-strength-4.svg b/bes_theme/.icons/bes_theme/network-strength-4.svg deleted file mode 100644 index ada3de9e..00000000 --- a/bes_theme/.icons/bes_theme/network-strength-4.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/network-strength-off-outline.svg b/bes_theme/.icons/bes_theme/network-strength-off-outline.svg deleted file mode 100644 index c101833b..00000000 --- a/bes_theme/.icons/bes_theme/network-strength-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/network-strength-off.svg b/bes_theme/.icons/bes_theme/network-strength-off.svg deleted file mode 100644 index c1e6aed0..00000000 --- a/bes_theme/.icons/bes_theme/network-strength-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/network-strength-outline.svg b/bes_theme/.icons/bes_theme/network-strength-outline.svg deleted file mode 100644 index 92185ba7..00000000 --- a/bes_theme/.icons/bes_theme/network-strength-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/network.svg b/bes_theme/.icons/bes_theme/network.svg deleted file mode 100644 index 87562577..00000000 --- a/bes_theme/.icons/bes_theme/network.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/new-box.svg b/bes_theme/.icons/bes_theme/new-box.svg deleted file mode 100644 index f0ee2155..00000000 --- a/bes_theme/.icons/bes_theme/new-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/newspaper-minus.svg b/bes_theme/.icons/bes_theme/newspaper-minus.svg deleted file mode 100644 index 618ba1ae..00000000 --- a/bes_theme/.icons/bes_theme/newspaper-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/newspaper-plus.svg b/bes_theme/.icons/bes_theme/newspaper-plus.svg deleted file mode 100644 index 19a9fc86..00000000 --- a/bes_theme/.icons/bes_theme/newspaper-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/newspaper-variant-multiple-outline.svg b/bes_theme/.icons/bes_theme/newspaper-variant-multiple-outline.svg deleted file mode 100644 index ed1edc5a..00000000 --- a/bes_theme/.icons/bes_theme/newspaper-variant-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/newspaper-variant-multiple.svg b/bes_theme/.icons/bes_theme/newspaper-variant-multiple.svg deleted file mode 100644 index 53720390..00000000 --- a/bes_theme/.icons/bes_theme/newspaper-variant-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/newspaper-variant-outline.svg b/bes_theme/.icons/bes_theme/newspaper-variant-outline.svg deleted file mode 100644 index db77564e..00000000 --- a/bes_theme/.icons/bes_theme/newspaper-variant-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/newspaper-variant.svg b/bes_theme/.icons/bes_theme/newspaper-variant.svg deleted file mode 100644 index 6649a3be..00000000 --- a/bes_theme/.icons/bes_theme/newspaper-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/newspaper.svg b/bes_theme/.icons/bes_theme/newspaper.svg deleted file mode 100644 index 051fc274..00000000 --- a/bes_theme/.icons/bes_theme/newspaper.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/nfc-search-variant.svg b/bes_theme/.icons/bes_theme/nfc-search-variant.svg deleted file mode 100644 index 9b1db64d..00000000 --- a/bes_theme/.icons/bes_theme/nfc-search-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/nfc-tap.svg b/bes_theme/.icons/bes_theme/nfc-tap.svg deleted file mode 100644 index af621a8f..00000000 --- a/bes_theme/.icons/bes_theme/nfc-tap.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/nfc-variant-off.svg b/bes_theme/.icons/bes_theme/nfc-variant-off.svg deleted file mode 100644 index 741b3882..00000000 --- a/bes_theme/.icons/bes_theme/nfc-variant-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/nfc-variant.svg b/bes_theme/.icons/bes_theme/nfc-variant.svg deleted file mode 100644 index 69d09932..00000000 --- a/bes_theme/.icons/bes_theme/nfc-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/nfc.svg b/bes_theme/.icons/bes_theme/nfc.svg deleted file mode 100644 index 27d9fac8..00000000 --- a/bes_theme/.icons/bes_theme/nfc.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ninja.svg b/bes_theme/.icons/bes_theme/ninja.svg deleted file mode 100644 index d82fec1f..00000000 --- a/bes_theme/.icons/bes_theme/ninja.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/nintendo-game-boy.svg b/bes_theme/.icons/bes_theme/nintendo-game-boy.svg deleted file mode 100644 index c5fd1319..00000000 --- a/bes_theme/.icons/bes_theme/nintendo-game-boy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/nintendo-switch.svg b/bes_theme/.icons/bes_theme/nintendo-switch.svg deleted file mode 100644 index 09d9375f..00000000 --- a/bes_theme/.icons/bes_theme/nintendo-switch.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/nintendo-wii.svg b/bes_theme/.icons/bes_theme/nintendo-wii.svg deleted file mode 100644 index 0f37f1d5..00000000 --- a/bes_theme/.icons/bes_theme/nintendo-wii.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/nintendo-wiiu.svg b/bes_theme/.icons/bes_theme/nintendo-wiiu.svg deleted file mode 100644 index eeb45bff..00000000 --- a/bes_theme/.icons/bes_theme/nintendo-wiiu.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/nix.svg b/bes_theme/.icons/bes_theme/nix.svg deleted file mode 100644 index a66c285d..00000000 --- a/bes_theme/.icons/bes_theme/nix.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/nodejs.svg b/bes_theme/.icons/bes_theme/nodejs.svg deleted file mode 100644 index 869b1ba9..00000000 --- a/bes_theme/.icons/bes_theme/nodejs.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/noodles.svg b/bes_theme/.icons/bes_theme/noodles.svg deleted file mode 100644 index 82ba2607..00000000 --- a/bes_theme/.icons/bes_theme/noodles.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/not-equal-variant.svg b/bes_theme/.icons/bes_theme/not-equal-variant.svg deleted file mode 100644 index 94a70104..00000000 --- a/bes_theme/.icons/bes_theme/not-equal-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/not-equal.svg b/bes_theme/.icons/bes_theme/not-equal.svg deleted file mode 100644 index 8498a53f..00000000 --- a/bes_theme/.icons/bes_theme/not-equal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/note-minus-outline.svg b/bes_theme/.icons/bes_theme/note-minus-outline.svg deleted file mode 100644 index ba7ae349..00000000 --- a/bes_theme/.icons/bes_theme/note-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/note-minus.svg b/bes_theme/.icons/bes_theme/note-minus.svg deleted file mode 100644 index 94379bbb..00000000 --- a/bes_theme/.icons/bes_theme/note-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/note-multiple-outline.svg b/bes_theme/.icons/bes_theme/note-multiple-outline.svg deleted file mode 100644 index f2dbff9a..00000000 --- a/bes_theme/.icons/bes_theme/note-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/note-multiple.svg b/bes_theme/.icons/bes_theme/note-multiple.svg deleted file mode 100644 index bee8c251..00000000 --- a/bes_theme/.icons/bes_theme/note-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/note-outline.svg b/bes_theme/.icons/bes_theme/note-outline.svg deleted file mode 100644 index e068b140..00000000 --- a/bes_theme/.icons/bes_theme/note-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/note-plus-outline.svg b/bes_theme/.icons/bes_theme/note-plus-outline.svg deleted file mode 100644 index 2d1f3162..00000000 --- a/bes_theme/.icons/bes_theme/note-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/note-plus.svg b/bes_theme/.icons/bes_theme/note-plus.svg deleted file mode 100644 index abebcccb..00000000 --- a/bes_theme/.icons/bes_theme/note-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/note-remove-outline.svg b/bes_theme/.icons/bes_theme/note-remove-outline.svg deleted file mode 100644 index a074b364..00000000 --- a/bes_theme/.icons/bes_theme/note-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/note-remove.svg b/bes_theme/.icons/bes_theme/note-remove.svg deleted file mode 100644 index 8c6b440d..00000000 --- a/bes_theme/.icons/bes_theme/note-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/note-search-outline.svg b/bes_theme/.icons/bes_theme/note-search-outline.svg deleted file mode 100644 index 2b71a341..00000000 --- a/bes_theme/.icons/bes_theme/note-search-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/note-search.svg b/bes_theme/.icons/bes_theme/note-search.svg deleted file mode 100644 index 5cfe19f8..00000000 --- a/bes_theme/.icons/bes_theme/note-search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/note-text-outline.svg b/bes_theme/.icons/bes_theme/note-text-outline.svg deleted file mode 100644 index ffabbda2..00000000 --- a/bes_theme/.icons/bes_theme/note-text-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/note-text.svg b/bes_theme/.icons/bes_theme/note-text.svg deleted file mode 100644 index 98f3a27f..00000000 --- a/bes_theme/.icons/bes_theme/note-text.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/note.svg b/bes_theme/.icons/bes_theme/note.svg deleted file mode 100644 index ef86e925..00000000 --- a/bes_theme/.icons/bes_theme/note.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/notebook-check-outline.svg b/bes_theme/.icons/bes_theme/notebook-check-outline.svg deleted file mode 100644 index 9fd758dd..00000000 --- a/bes_theme/.icons/bes_theme/notebook-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/notebook-check.svg b/bes_theme/.icons/bes_theme/notebook-check.svg deleted file mode 100644 index 5416c563..00000000 --- a/bes_theme/.icons/bes_theme/notebook-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/notebook-edit-outline.svg b/bes_theme/.icons/bes_theme/notebook-edit-outline.svg deleted file mode 100644 index 7ddf1133..00000000 --- a/bes_theme/.icons/bes_theme/notebook-edit-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/notebook-edit.svg b/bes_theme/.icons/bes_theme/notebook-edit.svg deleted file mode 100644 index 4b07bd7e..00000000 --- a/bes_theme/.icons/bes_theme/notebook-edit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/notebook-minus-outline.svg b/bes_theme/.icons/bes_theme/notebook-minus-outline.svg deleted file mode 100644 index 86649f17..00000000 --- a/bes_theme/.icons/bes_theme/notebook-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/notebook-minus.svg b/bes_theme/.icons/bes_theme/notebook-minus.svg deleted file mode 100644 index 12b2a62c..00000000 --- a/bes_theme/.icons/bes_theme/notebook-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/notebook-multiple.svg b/bes_theme/.icons/bes_theme/notebook-multiple.svg deleted file mode 100644 index 27b92bfb..00000000 --- a/bes_theme/.icons/bes_theme/notebook-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/notebook-outline.svg b/bes_theme/.icons/bes_theme/notebook-outline.svg deleted file mode 100644 index 3dc1b477..00000000 --- a/bes_theme/.icons/bes_theme/notebook-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/notebook-plus-outline.svg b/bes_theme/.icons/bes_theme/notebook-plus-outline.svg deleted file mode 100644 index 323bc62b..00000000 --- a/bes_theme/.icons/bes_theme/notebook-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/notebook-plus.svg b/bes_theme/.icons/bes_theme/notebook-plus.svg deleted file mode 100644 index 9d47de4f..00000000 --- a/bes_theme/.icons/bes_theme/notebook-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/notebook-remove-outline.svg b/bes_theme/.icons/bes_theme/notebook-remove-outline.svg deleted file mode 100644 index e408416f..00000000 --- a/bes_theme/.icons/bes_theme/notebook-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/notebook-remove.svg b/bes_theme/.icons/bes_theme/notebook-remove.svg deleted file mode 100644 index b0687de4..00000000 --- a/bes_theme/.icons/bes_theme/notebook-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/notebook.svg b/bes_theme/.icons/bes_theme/notebook.svg deleted file mode 100644 index f13f7019..00000000 --- a/bes_theme/.icons/bes_theme/notebook.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/notification-clear-all.svg b/bes_theme/.icons/bes_theme/notification-clear-all.svg deleted file mode 100644 index 2e70852a..00000000 --- a/bes_theme/.icons/bes_theme/notification-clear-all.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/npm.svg b/bes_theme/.icons/bes_theme/npm.svg deleted file mode 100644 index 5c1fde68..00000000 --- a/bes_theme/.icons/bes_theme/npm.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/nuke.svg b/bes_theme/.icons/bes_theme/nuke.svg deleted file mode 100644 index d3842a51..00000000 --- a/bes_theme/.icons/bes_theme/nuke.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/null.svg b/bes_theme/.icons/bes_theme/null.svg deleted file mode 100644 index 70e00bcf..00000000 --- a/bes_theme/.icons/bes_theme/null.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-0-box-multiple-outline.svg b/bes_theme/.icons/bes_theme/numeric-0-box-multiple-outline.svg deleted file mode 100644 index 491f530a..00000000 --- a/bes_theme/.icons/bes_theme/numeric-0-box-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-0-box-multiple.svg b/bes_theme/.icons/bes_theme/numeric-0-box-multiple.svg deleted file mode 100644 index 1831a317..00000000 --- a/bes_theme/.icons/bes_theme/numeric-0-box-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-0-box-outline.svg b/bes_theme/.icons/bes_theme/numeric-0-box-outline.svg deleted file mode 100644 index ee5fab99..00000000 --- a/bes_theme/.icons/bes_theme/numeric-0-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-0-box.svg b/bes_theme/.icons/bes_theme/numeric-0-box.svg deleted file mode 100644 index 8ff321ac..00000000 --- a/bes_theme/.icons/bes_theme/numeric-0-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-0-circle-outline.svg b/bes_theme/.icons/bes_theme/numeric-0-circle-outline.svg deleted file mode 100644 index 6ce5b972..00000000 --- a/bes_theme/.icons/bes_theme/numeric-0-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-0-circle.svg b/bes_theme/.icons/bes_theme/numeric-0-circle.svg deleted file mode 100644 index 492e9fbd..00000000 --- a/bes_theme/.icons/bes_theme/numeric-0-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-0.svg b/bes_theme/.icons/bes_theme/numeric-0.svg deleted file mode 100644 index 478f01a3..00000000 --- a/bes_theme/.icons/bes_theme/numeric-0.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-1-box-multiple-outline.svg b/bes_theme/.icons/bes_theme/numeric-1-box-multiple-outline.svg deleted file mode 100644 index 16223d87..00000000 --- a/bes_theme/.icons/bes_theme/numeric-1-box-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-1-box-multiple.svg b/bes_theme/.icons/bes_theme/numeric-1-box-multiple.svg deleted file mode 100644 index 3e966f3a..00000000 --- a/bes_theme/.icons/bes_theme/numeric-1-box-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-1-box-outline.svg b/bes_theme/.icons/bes_theme/numeric-1-box-outline.svg deleted file mode 100644 index 93086885..00000000 --- a/bes_theme/.icons/bes_theme/numeric-1-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-1-box.svg b/bes_theme/.icons/bes_theme/numeric-1-box.svg deleted file mode 100644 index 13823687..00000000 --- a/bes_theme/.icons/bes_theme/numeric-1-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-1-circle-outline.svg b/bes_theme/.icons/bes_theme/numeric-1-circle-outline.svg deleted file mode 100644 index 51ca84d8..00000000 --- a/bes_theme/.icons/bes_theme/numeric-1-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-1-circle.svg b/bes_theme/.icons/bes_theme/numeric-1-circle.svg deleted file mode 100644 index 15469580..00000000 --- a/bes_theme/.icons/bes_theme/numeric-1-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-1.svg b/bes_theme/.icons/bes_theme/numeric-1.svg deleted file mode 100644 index 20d20322..00000000 --- a/bes_theme/.icons/bes_theme/numeric-1.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-10-box-multiple-outline.svg b/bes_theme/.icons/bes_theme/numeric-10-box-multiple-outline.svg deleted file mode 100644 index d161c5ca..00000000 --- a/bes_theme/.icons/bes_theme/numeric-10-box-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-10-box-multiple.svg b/bes_theme/.icons/bes_theme/numeric-10-box-multiple.svg deleted file mode 100644 index c0c126f2..00000000 --- a/bes_theme/.icons/bes_theme/numeric-10-box-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-10-box-outline.svg b/bes_theme/.icons/bes_theme/numeric-10-box-outline.svg deleted file mode 100644 index bf82c581..00000000 --- a/bes_theme/.icons/bes_theme/numeric-10-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-10-box.svg b/bes_theme/.icons/bes_theme/numeric-10-box.svg deleted file mode 100644 index 8e955af6..00000000 --- a/bes_theme/.icons/bes_theme/numeric-10-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-10-circle-outline.svg b/bes_theme/.icons/bes_theme/numeric-10-circle-outline.svg deleted file mode 100644 index 6b9b409d..00000000 --- a/bes_theme/.icons/bes_theme/numeric-10-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-10-circle.svg b/bes_theme/.icons/bes_theme/numeric-10-circle.svg deleted file mode 100644 index c9bc957b..00000000 --- a/bes_theme/.icons/bes_theme/numeric-10-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-10.svg b/bes_theme/.icons/bes_theme/numeric-10.svg deleted file mode 100644 index e20b8086..00000000 --- a/bes_theme/.icons/bes_theme/numeric-10.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-2-box-multiple-outline.svg b/bes_theme/.icons/bes_theme/numeric-2-box-multiple-outline.svg deleted file mode 100644 index e49ba29c..00000000 --- a/bes_theme/.icons/bes_theme/numeric-2-box-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-2-box-multiple.svg b/bes_theme/.icons/bes_theme/numeric-2-box-multiple.svg deleted file mode 100644 index c8e0f329..00000000 --- a/bes_theme/.icons/bes_theme/numeric-2-box-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-2-box-outline.svg b/bes_theme/.icons/bes_theme/numeric-2-box-outline.svg deleted file mode 100644 index 6d3627f1..00000000 --- a/bes_theme/.icons/bes_theme/numeric-2-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-2-box.svg b/bes_theme/.icons/bes_theme/numeric-2-box.svg deleted file mode 100644 index 5a7bbb62..00000000 --- a/bes_theme/.icons/bes_theme/numeric-2-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-2-circle-outline.svg b/bes_theme/.icons/bes_theme/numeric-2-circle-outline.svg deleted file mode 100644 index 2aa602a4..00000000 --- a/bes_theme/.icons/bes_theme/numeric-2-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-2-circle.svg b/bes_theme/.icons/bes_theme/numeric-2-circle.svg deleted file mode 100644 index 212aba46..00000000 --- a/bes_theme/.icons/bes_theme/numeric-2-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-2.svg b/bes_theme/.icons/bes_theme/numeric-2.svg deleted file mode 100644 index 790d2961..00000000 --- a/bes_theme/.icons/bes_theme/numeric-2.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-3-box-multiple-outline.svg b/bes_theme/.icons/bes_theme/numeric-3-box-multiple-outline.svg deleted file mode 100644 index 15738b57..00000000 --- a/bes_theme/.icons/bes_theme/numeric-3-box-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-3-box-multiple.svg b/bes_theme/.icons/bes_theme/numeric-3-box-multiple.svg deleted file mode 100644 index 5757321d..00000000 --- a/bes_theme/.icons/bes_theme/numeric-3-box-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-3-box-outline.svg b/bes_theme/.icons/bes_theme/numeric-3-box-outline.svg deleted file mode 100644 index 138a119c..00000000 --- a/bes_theme/.icons/bes_theme/numeric-3-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-3-box.svg b/bes_theme/.icons/bes_theme/numeric-3-box.svg deleted file mode 100644 index beb0aea8..00000000 --- a/bes_theme/.icons/bes_theme/numeric-3-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-3-circle-outline.svg b/bes_theme/.icons/bes_theme/numeric-3-circle-outline.svg deleted file mode 100644 index a332e757..00000000 --- a/bes_theme/.icons/bes_theme/numeric-3-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-3-circle.svg b/bes_theme/.icons/bes_theme/numeric-3-circle.svg deleted file mode 100644 index 7262a47d..00000000 --- a/bes_theme/.icons/bes_theme/numeric-3-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-3.svg b/bes_theme/.icons/bes_theme/numeric-3.svg deleted file mode 100644 index ae7a8b69..00000000 --- a/bes_theme/.icons/bes_theme/numeric-3.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-4-box-multiple-outline.svg b/bes_theme/.icons/bes_theme/numeric-4-box-multiple-outline.svg deleted file mode 100644 index 81e7839a..00000000 --- a/bes_theme/.icons/bes_theme/numeric-4-box-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-4-box-multiple.svg b/bes_theme/.icons/bes_theme/numeric-4-box-multiple.svg deleted file mode 100644 index f22b4e03..00000000 --- a/bes_theme/.icons/bes_theme/numeric-4-box-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-4-box-outline.svg b/bes_theme/.icons/bes_theme/numeric-4-box-outline.svg deleted file mode 100644 index 31594f50..00000000 --- a/bes_theme/.icons/bes_theme/numeric-4-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-4-box.svg b/bes_theme/.icons/bes_theme/numeric-4-box.svg deleted file mode 100644 index 7fea524c..00000000 --- a/bes_theme/.icons/bes_theme/numeric-4-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-4-circle-outline.svg b/bes_theme/.icons/bes_theme/numeric-4-circle-outline.svg deleted file mode 100644 index 00f792dc..00000000 --- a/bes_theme/.icons/bes_theme/numeric-4-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-4-circle.svg b/bes_theme/.icons/bes_theme/numeric-4-circle.svg deleted file mode 100644 index 105e41a7..00000000 --- a/bes_theme/.icons/bes_theme/numeric-4-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-4.svg b/bes_theme/.icons/bes_theme/numeric-4.svg deleted file mode 100644 index 400f2cad..00000000 --- a/bes_theme/.icons/bes_theme/numeric-4.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-5-box-multiple-outline.svg b/bes_theme/.icons/bes_theme/numeric-5-box-multiple-outline.svg deleted file mode 100644 index bc566f44..00000000 --- a/bes_theme/.icons/bes_theme/numeric-5-box-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-5-box-multiple.svg b/bes_theme/.icons/bes_theme/numeric-5-box-multiple.svg deleted file mode 100644 index 5287e5dd..00000000 --- a/bes_theme/.icons/bes_theme/numeric-5-box-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-5-box-outline.svg b/bes_theme/.icons/bes_theme/numeric-5-box-outline.svg deleted file mode 100644 index a51c49c4..00000000 --- a/bes_theme/.icons/bes_theme/numeric-5-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-5-box.svg b/bes_theme/.icons/bes_theme/numeric-5-box.svg deleted file mode 100644 index 1b2929db..00000000 --- a/bes_theme/.icons/bes_theme/numeric-5-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-5-circle-outline.svg b/bes_theme/.icons/bes_theme/numeric-5-circle-outline.svg deleted file mode 100644 index e5a074d0..00000000 --- a/bes_theme/.icons/bes_theme/numeric-5-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-5-circle.svg b/bes_theme/.icons/bes_theme/numeric-5-circle.svg deleted file mode 100644 index 6398f05c..00000000 --- a/bes_theme/.icons/bes_theme/numeric-5-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-5.svg b/bes_theme/.icons/bes_theme/numeric-5.svg deleted file mode 100644 index 90db79c0..00000000 --- a/bes_theme/.icons/bes_theme/numeric-5.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-6-box-multiple-outline.svg b/bes_theme/.icons/bes_theme/numeric-6-box-multiple-outline.svg deleted file mode 100644 index 1dc8b040..00000000 --- a/bes_theme/.icons/bes_theme/numeric-6-box-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-6-box-multiple.svg b/bes_theme/.icons/bes_theme/numeric-6-box-multiple.svg deleted file mode 100644 index b735fa23..00000000 --- a/bes_theme/.icons/bes_theme/numeric-6-box-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-6-box-outline.svg b/bes_theme/.icons/bes_theme/numeric-6-box-outline.svg deleted file mode 100644 index 11a33656..00000000 --- a/bes_theme/.icons/bes_theme/numeric-6-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-6-box.svg b/bes_theme/.icons/bes_theme/numeric-6-box.svg deleted file mode 100644 index e496b601..00000000 --- a/bes_theme/.icons/bes_theme/numeric-6-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-6-circle-outline.svg b/bes_theme/.icons/bes_theme/numeric-6-circle-outline.svg deleted file mode 100644 index 642426f2..00000000 --- a/bes_theme/.icons/bes_theme/numeric-6-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-6-circle.svg b/bes_theme/.icons/bes_theme/numeric-6-circle.svg deleted file mode 100644 index a98f03d7..00000000 --- a/bes_theme/.icons/bes_theme/numeric-6-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-6.svg b/bes_theme/.icons/bes_theme/numeric-6.svg deleted file mode 100644 index 7eafffa7..00000000 --- a/bes_theme/.icons/bes_theme/numeric-6.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-7-box-multiple-outline.svg b/bes_theme/.icons/bes_theme/numeric-7-box-multiple-outline.svg deleted file mode 100644 index 89a61165..00000000 --- a/bes_theme/.icons/bes_theme/numeric-7-box-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-7-box-multiple.svg b/bes_theme/.icons/bes_theme/numeric-7-box-multiple.svg deleted file mode 100644 index d55bde64..00000000 --- a/bes_theme/.icons/bes_theme/numeric-7-box-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-7-box-outline.svg b/bes_theme/.icons/bes_theme/numeric-7-box-outline.svg deleted file mode 100644 index cce301a6..00000000 --- a/bes_theme/.icons/bes_theme/numeric-7-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-7-box.svg b/bes_theme/.icons/bes_theme/numeric-7-box.svg deleted file mode 100644 index bcfb9455..00000000 --- a/bes_theme/.icons/bes_theme/numeric-7-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-7-circle-outline.svg b/bes_theme/.icons/bes_theme/numeric-7-circle-outline.svg deleted file mode 100644 index 2074daf8..00000000 --- a/bes_theme/.icons/bes_theme/numeric-7-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-7-circle.svg b/bes_theme/.icons/bes_theme/numeric-7-circle.svg deleted file mode 100644 index da05ea25..00000000 --- a/bes_theme/.icons/bes_theme/numeric-7-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-7.svg b/bes_theme/.icons/bes_theme/numeric-7.svg deleted file mode 100644 index 73d9ee33..00000000 --- a/bes_theme/.icons/bes_theme/numeric-7.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-8-box-multiple-outline.svg b/bes_theme/.icons/bes_theme/numeric-8-box-multiple-outline.svg deleted file mode 100644 index 8440e516..00000000 --- a/bes_theme/.icons/bes_theme/numeric-8-box-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-8-box-multiple.svg b/bes_theme/.icons/bes_theme/numeric-8-box-multiple.svg deleted file mode 100644 index 7b6c7cc0..00000000 --- a/bes_theme/.icons/bes_theme/numeric-8-box-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-8-box-outline.svg b/bes_theme/.icons/bes_theme/numeric-8-box-outline.svg deleted file mode 100644 index 70799540..00000000 --- a/bes_theme/.icons/bes_theme/numeric-8-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-8-box.svg b/bes_theme/.icons/bes_theme/numeric-8-box.svg deleted file mode 100644 index eafc8992..00000000 --- a/bes_theme/.icons/bes_theme/numeric-8-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-8-circle-outline.svg b/bes_theme/.icons/bes_theme/numeric-8-circle-outline.svg deleted file mode 100644 index 292a3be2..00000000 --- a/bes_theme/.icons/bes_theme/numeric-8-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-8-circle.svg b/bes_theme/.icons/bes_theme/numeric-8-circle.svg deleted file mode 100644 index 607ea94f..00000000 --- a/bes_theme/.icons/bes_theme/numeric-8-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-8.svg b/bes_theme/.icons/bes_theme/numeric-8.svg deleted file mode 100644 index 3a02e571..00000000 --- a/bes_theme/.icons/bes_theme/numeric-8.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-9-box-multiple-outline.svg b/bes_theme/.icons/bes_theme/numeric-9-box-multiple-outline.svg deleted file mode 100644 index 96384b15..00000000 --- a/bes_theme/.icons/bes_theme/numeric-9-box-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-9-box-multiple.svg b/bes_theme/.icons/bes_theme/numeric-9-box-multiple.svg deleted file mode 100644 index 9b8ea990..00000000 --- a/bes_theme/.icons/bes_theme/numeric-9-box-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-9-box-outline.svg b/bes_theme/.icons/bes_theme/numeric-9-box-outline.svg deleted file mode 100644 index ccb74aed..00000000 --- a/bes_theme/.icons/bes_theme/numeric-9-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-9-box.svg b/bes_theme/.icons/bes_theme/numeric-9-box.svg deleted file mode 100644 index dfac0633..00000000 --- a/bes_theme/.icons/bes_theme/numeric-9-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-9-circle-outline.svg b/bes_theme/.icons/bes_theme/numeric-9-circle-outline.svg deleted file mode 100644 index 911120fd..00000000 --- a/bes_theme/.icons/bes_theme/numeric-9-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-9-circle.svg b/bes_theme/.icons/bes_theme/numeric-9-circle.svg deleted file mode 100644 index 672ef526..00000000 --- a/bes_theme/.icons/bes_theme/numeric-9-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-9-plus-box-multiple-outline.svg b/bes_theme/.icons/bes_theme/numeric-9-plus-box-multiple-outline.svg deleted file mode 100644 index 17f1752a..00000000 --- a/bes_theme/.icons/bes_theme/numeric-9-plus-box-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-9-plus-box-multiple.svg b/bes_theme/.icons/bes_theme/numeric-9-plus-box-multiple.svg deleted file mode 100644 index 0114163c..00000000 --- a/bes_theme/.icons/bes_theme/numeric-9-plus-box-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-9-plus-box-outline.svg b/bes_theme/.icons/bes_theme/numeric-9-plus-box-outline.svg deleted file mode 100644 index a264a751..00000000 --- a/bes_theme/.icons/bes_theme/numeric-9-plus-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-9-plus-box.svg b/bes_theme/.icons/bes_theme/numeric-9-plus-box.svg deleted file mode 100644 index ed0e6880..00000000 --- a/bes_theme/.icons/bes_theme/numeric-9-plus-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-9-plus-circle-outline.svg b/bes_theme/.icons/bes_theme/numeric-9-plus-circle-outline.svg deleted file mode 100644 index eec22309..00000000 --- a/bes_theme/.icons/bes_theme/numeric-9-plus-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-9-plus-circle.svg b/bes_theme/.icons/bes_theme/numeric-9-plus-circle.svg deleted file mode 100644 index f974fc0f..00000000 --- a/bes_theme/.icons/bes_theme/numeric-9-plus-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-9-plus.svg b/bes_theme/.icons/bes_theme/numeric-9-plus.svg deleted file mode 100644 index 39d5230b..00000000 --- a/bes_theme/.icons/bes_theme/numeric-9-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-9.svg b/bes_theme/.icons/bes_theme/numeric-9.svg deleted file mode 100644 index a70f298b..00000000 --- a/bes_theme/.icons/bes_theme/numeric-9.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-negative-1.svg b/bes_theme/.icons/bes_theme/numeric-negative-1.svg deleted file mode 100644 index 09938b63..00000000 --- a/bes_theme/.icons/bes_theme/numeric-negative-1.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric-positive-1.svg b/bes_theme/.icons/bes_theme/numeric-positive-1.svg deleted file mode 100644 index 5b0d68c2..00000000 --- a/bes_theme/.icons/bes_theme/numeric-positive-1.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/numeric.svg b/bes_theme/.icons/bes_theme/numeric.svg deleted file mode 100644 index baa91285..00000000 --- a/bes_theme/.icons/bes_theme/numeric.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/nut.svg b/bes_theme/.icons/bes_theme/nut.svg deleted file mode 100644 index c27caa55..00000000 --- a/bes_theme/.icons/bes_theme/nut.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/nutrition.svg b/bes_theme/.icons/bes_theme/nutrition.svg deleted file mode 100644 index f0d55928..00000000 --- a/bes_theme/.icons/bes_theme/nutrition.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/nuxt.svg b/bes_theme/.icons/bes_theme/nuxt.svg deleted file mode 100644 index 65e1e5d0..00000000 --- a/bes_theme/.icons/bes_theme/nuxt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/oar.svg b/bes_theme/.icons/bes_theme/oar.svg deleted file mode 100644 index ada5b665..00000000 --- a/bes_theme/.icons/bes_theme/oar.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ocarina.svg b/bes_theme/.icons/bes_theme/ocarina.svg deleted file mode 100644 index 4aaa8aed..00000000 --- a/bes_theme/.icons/bes_theme/ocarina.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/oci.svg b/bes_theme/.icons/bes_theme/oci.svg deleted file mode 100644 index c443650e..00000000 --- a/bes_theme/.icons/bes_theme/oci.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ocr.svg b/bes_theme/.icons/bes_theme/ocr.svg deleted file mode 100644 index 8b1b3225..00000000 --- a/bes_theme/.icons/bes_theme/ocr.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/octagon-outline.svg b/bes_theme/.icons/bes_theme/octagon-outline.svg deleted file mode 100644 index e5fa218e..00000000 --- a/bes_theme/.icons/bes_theme/octagon-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/octagon.svg b/bes_theme/.icons/bes_theme/octagon.svg deleted file mode 100644 index 68937d44..00000000 --- a/bes_theme/.icons/bes_theme/octagon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/octagram-outline.svg b/bes_theme/.icons/bes_theme/octagram-outline.svg deleted file mode 100644 index fccad8c0..00000000 --- a/bes_theme/.icons/bes_theme/octagram-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/octagram.svg b/bes_theme/.icons/bes_theme/octagram.svg deleted file mode 100644 index ffb4aeec..00000000 --- a/bes_theme/.icons/bes_theme/octagram.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/odnoklassniki.svg b/bes_theme/.icons/bes_theme/odnoklassniki.svg deleted file mode 100644 index e9165acf..00000000 --- a/bes_theme/.icons/bes_theme/odnoklassniki.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/offer.svg b/bes_theme/.icons/bes_theme/offer.svg deleted file mode 100644 index b3f51052..00000000 --- a/bes_theme/.icons/bes_theme/offer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/office-building-marker-outline.svg b/bes_theme/.icons/bes_theme/office-building-marker-outline.svg deleted file mode 100644 index 2d961c14..00000000 --- a/bes_theme/.icons/bes_theme/office-building-marker-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/office-building-marker.svg b/bes_theme/.icons/bes_theme/office-building-marker.svg deleted file mode 100644 index f3e7d2d6..00000000 --- a/bes_theme/.icons/bes_theme/office-building-marker.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/office-building-outline.svg b/bes_theme/.icons/bes_theme/office-building-outline.svg deleted file mode 100644 index b3676d14..00000000 --- a/bes_theme/.icons/bes_theme/office-building-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/office-building.svg b/bes_theme/.icons/bes_theme/office-building.svg deleted file mode 100644 index 79ccac0b..00000000 --- a/bes_theme/.icons/bes_theme/office-building.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/oil-lamp.svg b/bes_theme/.icons/bes_theme/oil-lamp.svg deleted file mode 100644 index 4e565fc4..00000000 --- a/bes_theme/.icons/bes_theme/oil-lamp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/oil-level.svg b/bes_theme/.icons/bes_theme/oil-level.svg deleted file mode 100644 index 4a62154d..00000000 --- a/bes_theme/.icons/bes_theme/oil-level.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/oil-temperature.svg b/bes_theme/.icons/bes_theme/oil-temperature.svg deleted file mode 100644 index f9d05eb4..00000000 --- a/bes_theme/.icons/bes_theme/oil-temperature.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/oil.svg b/bes_theme/.icons/bes_theme/oil.svg deleted file mode 100644 index 30bdeaeb..00000000 --- a/bes_theme/.icons/bes_theme/oil.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/omega.svg b/bes_theme/.icons/bes_theme/omega.svg deleted file mode 100644 index ce43305e..00000000 --- a/bes_theme/.icons/bes_theme/omega.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/one-up.svg b/bes_theme/.icons/bes_theme/one-up.svg deleted file mode 100644 index 4c062044..00000000 --- a/bes_theme/.icons/bes_theme/one-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/onepassword.svg b/bes_theme/.icons/bes_theme/onepassword.svg deleted file mode 100644 index 3fd50244..00000000 --- a/bes_theme/.icons/bes_theme/onepassword.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/opacity.svg b/bes_theme/.icons/bes_theme/opacity.svg deleted file mode 100644 index b72d64ae..00000000 --- a/bes_theme/.icons/bes_theme/opacity.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/open-in-app.svg b/bes_theme/.icons/bes_theme/open-in-app.svg deleted file mode 100644 index bbefb05a..00000000 --- a/bes_theme/.icons/bes_theme/open-in-app.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/open-in-new.svg b/bes_theme/.icons/bes_theme/open-in-new.svg deleted file mode 100644 index 09f43ec4..00000000 --- a/bes_theme/.icons/bes_theme/open-in-new.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/open-source-initiative.svg b/bes_theme/.icons/bes_theme/open-source-initiative.svg deleted file mode 100644 index c471c6d2..00000000 --- a/bes_theme/.icons/bes_theme/open-source-initiative.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/openid.svg b/bes_theme/.icons/bes_theme/openid.svg deleted file mode 100644 index 882127ed..00000000 --- a/bes_theme/.icons/bes_theme/openid.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/opera.svg b/bes_theme/.icons/bes_theme/opera.svg deleted file mode 100644 index d00172f4..00000000 --- a/bes_theme/.icons/bes_theme/opera.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/orbit-variant.svg b/bes_theme/.icons/bes_theme/orbit-variant.svg deleted file mode 100644 index b5dcc92a..00000000 --- a/bes_theme/.icons/bes_theme/orbit-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/orbit.svg b/bes_theme/.icons/bes_theme/orbit.svg deleted file mode 100644 index 2d2a942a..00000000 --- a/bes_theme/.icons/bes_theme/orbit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/order-alphabetical-ascending.svg b/bes_theme/.icons/bes_theme/order-alphabetical-ascending.svg deleted file mode 100644 index e778d325..00000000 --- a/bes_theme/.icons/bes_theme/order-alphabetical-ascending.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/order-alphabetical-descending.svg b/bes_theme/.icons/bes_theme/order-alphabetical-descending.svg deleted file mode 100644 index 3d9b78f8..00000000 --- a/bes_theme/.icons/bes_theme/order-alphabetical-descending.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/order-bool-ascending-variant.svg b/bes_theme/.icons/bes_theme/order-bool-ascending-variant.svg deleted file mode 100644 index c2dbd4eb..00000000 --- a/bes_theme/.icons/bes_theme/order-bool-ascending-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/order-bool-ascending.svg b/bes_theme/.icons/bes_theme/order-bool-ascending.svg deleted file mode 100644 index 0b795a86..00000000 --- a/bes_theme/.icons/bes_theme/order-bool-ascending.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/order-bool-descending-variant.svg b/bes_theme/.icons/bes_theme/order-bool-descending-variant.svg deleted file mode 100644 index 1af06349..00000000 --- a/bes_theme/.icons/bes_theme/order-bool-descending-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/order-bool-descending.svg b/bes_theme/.icons/bes_theme/order-bool-descending.svg deleted file mode 100644 index 93f88441..00000000 --- a/bes_theme/.icons/bes_theme/order-bool-descending.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/order-numeric-ascending.svg b/bes_theme/.icons/bes_theme/order-numeric-ascending.svg deleted file mode 100644 index 209bef7e..00000000 --- a/bes_theme/.icons/bes_theme/order-numeric-ascending.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/order-numeric-descending.svg b/bes_theme/.icons/bes_theme/order-numeric-descending.svg deleted file mode 100644 index c5c9ef04..00000000 --- a/bes_theme/.icons/bes_theme/order-numeric-descending.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/origin.svg b/bes_theme/.icons/bes_theme/origin.svg deleted file mode 100644 index e27f004a..00000000 --- a/bes_theme/.icons/bes_theme/origin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ornament-variant.svg b/bes_theme/.icons/bes_theme/ornament-variant.svg deleted file mode 100644 index f0bd223a..00000000 --- a/bes_theme/.icons/bes_theme/ornament-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ornament.svg b/bes_theme/.icons/bes_theme/ornament.svg deleted file mode 100644 index 5d053189..00000000 --- a/bes_theme/.icons/bes_theme/ornament.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/outdoor-lamp.svg b/bes_theme/.icons/bes_theme/outdoor-lamp.svg deleted file mode 100644 index 780f878b..00000000 --- a/bes_theme/.icons/bes_theme/outdoor-lamp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/overscan.svg b/bes_theme/.icons/bes_theme/overscan.svg deleted file mode 100644 index 770276cf..00000000 --- a/bes_theme/.icons/bes_theme/overscan.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/owl.svg b/bes_theme/.icons/bes_theme/owl.svg deleted file mode 100644 index e62d6501..00000000 --- a/bes_theme/.icons/bes_theme/owl.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pac-man.svg b/bes_theme/.icons/bes_theme/pac-man.svg deleted file mode 100644 index 3e4b60ca..00000000 --- a/bes_theme/.icons/bes_theme/pac-man.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/package-down.svg b/bes_theme/.icons/bes_theme/package-down.svg deleted file mode 100644 index 1a79f52e..00000000 --- a/bes_theme/.icons/bes_theme/package-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/package-up.svg b/bes_theme/.icons/bes_theme/package-up.svg deleted file mode 100644 index 8b8248cc..00000000 --- a/bes_theme/.icons/bes_theme/package-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/package-variant-closed.svg b/bes_theme/.icons/bes_theme/package-variant-closed.svg deleted file mode 100644 index 9829edcd..00000000 --- a/bes_theme/.icons/bes_theme/package-variant-closed.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/package-variant.svg b/bes_theme/.icons/bes_theme/package-variant.svg deleted file mode 100644 index 4b8d0878..00000000 --- a/bes_theme/.icons/bes_theme/package-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/package.svg b/bes_theme/.icons/bes_theme/package.svg deleted file mode 100644 index 71a6b41f..00000000 --- a/bes_theme/.icons/bes_theme/package.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/page-first.svg b/bes_theme/.icons/bes_theme/page-first.svg deleted file mode 100644 index fc0cec5a..00000000 --- a/bes_theme/.icons/bes_theme/page-first.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/page-last.svg b/bes_theme/.icons/bes_theme/page-last.svg deleted file mode 100644 index 7b457920..00000000 --- a/bes_theme/.icons/bes_theme/page-last.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/page-layout-body.svg b/bes_theme/.icons/bes_theme/page-layout-body.svg deleted file mode 100644 index f16ebda0..00000000 --- a/bes_theme/.icons/bes_theme/page-layout-body.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/page-layout-footer.svg b/bes_theme/.icons/bes_theme/page-layout-footer.svg deleted file mode 100644 index 0275174e..00000000 --- a/bes_theme/.icons/bes_theme/page-layout-footer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/page-layout-header-footer.svg b/bes_theme/.icons/bes_theme/page-layout-header-footer.svg deleted file mode 100644 index 345ff41f..00000000 --- a/bes_theme/.icons/bes_theme/page-layout-header-footer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/page-layout-header.svg b/bes_theme/.icons/bes_theme/page-layout-header.svg deleted file mode 100644 index c8c8ba7c..00000000 --- a/bes_theme/.icons/bes_theme/page-layout-header.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/page-layout-sidebar-left.svg b/bes_theme/.icons/bes_theme/page-layout-sidebar-left.svg deleted file mode 100644 index 69c05afb..00000000 --- a/bes_theme/.icons/bes_theme/page-layout-sidebar-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/page-layout-sidebar-right.svg b/bes_theme/.icons/bes_theme/page-layout-sidebar-right.svg deleted file mode 100644 index bae66f0e..00000000 --- a/bes_theme/.icons/bes_theme/page-layout-sidebar-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/page-next-outline.svg b/bes_theme/.icons/bes_theme/page-next-outline.svg deleted file mode 100644 index 84252c1a..00000000 --- a/bes_theme/.icons/bes_theme/page-next-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/page-next.svg b/bes_theme/.icons/bes_theme/page-next.svg deleted file mode 100644 index 7a72fd92..00000000 --- a/bes_theme/.icons/bes_theme/page-next.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/page-previous-outline.svg b/bes_theme/.icons/bes_theme/page-previous-outline.svg deleted file mode 100644 index d04c78ad..00000000 --- a/bes_theme/.icons/bes_theme/page-previous-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/page-previous.svg b/bes_theme/.icons/bes_theme/page-previous.svg deleted file mode 100644 index 5c1e8afd..00000000 --- a/bes_theme/.icons/bes_theme/page-previous.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pail-minus-outline.svg b/bes_theme/.icons/bes_theme/pail-minus-outline.svg deleted file mode 100644 index c94c781a..00000000 --- a/bes_theme/.icons/bes_theme/pail-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pail-minus.svg b/bes_theme/.icons/bes_theme/pail-minus.svg deleted file mode 100644 index 907950cd..00000000 --- a/bes_theme/.icons/bes_theme/pail-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pail-off-outline.svg b/bes_theme/.icons/bes_theme/pail-off-outline.svg deleted file mode 100644 index 0f741c68..00000000 --- a/bes_theme/.icons/bes_theme/pail-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pail-off.svg b/bes_theme/.icons/bes_theme/pail-off.svg deleted file mode 100644 index a43682e0..00000000 --- a/bes_theme/.icons/bes_theme/pail-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pail-outline.svg b/bes_theme/.icons/bes_theme/pail-outline.svg deleted file mode 100644 index 19ea88e0..00000000 --- a/bes_theme/.icons/bes_theme/pail-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pail-plus-outline.svg b/bes_theme/.icons/bes_theme/pail-plus-outline.svg deleted file mode 100644 index d7626596..00000000 --- a/bes_theme/.icons/bes_theme/pail-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pail-plus.svg b/bes_theme/.icons/bes_theme/pail-plus.svg deleted file mode 100644 index bc7d55eb..00000000 --- a/bes_theme/.icons/bes_theme/pail-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pail-remove-outline.svg b/bes_theme/.icons/bes_theme/pail-remove-outline.svg deleted file mode 100644 index b0560e27..00000000 --- a/bes_theme/.icons/bes_theme/pail-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pail-remove.svg b/bes_theme/.icons/bes_theme/pail-remove.svg deleted file mode 100644 index 2c4139af..00000000 --- a/bes_theme/.icons/bes_theme/pail-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pail.svg b/bes_theme/.icons/bes_theme/pail.svg deleted file mode 100644 index a61bec57..00000000 --- a/bes_theme/.icons/bes_theme/pail.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/palette-advanced.svg b/bes_theme/.icons/bes_theme/palette-advanced.svg deleted file mode 100644 index 7c2750c1..00000000 --- a/bes_theme/.icons/bes_theme/palette-advanced.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/palette-outline.svg b/bes_theme/.icons/bes_theme/palette-outline.svg deleted file mode 100644 index 363535ad..00000000 --- a/bes_theme/.icons/bes_theme/palette-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/palette-swatch-outline.svg b/bes_theme/.icons/bes_theme/palette-swatch-outline.svg deleted file mode 100644 index 4fab7347..00000000 --- a/bes_theme/.icons/bes_theme/palette-swatch-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/palette-swatch.svg b/bes_theme/.icons/bes_theme/palette-swatch.svg deleted file mode 100644 index 2c375982..00000000 --- a/bes_theme/.icons/bes_theme/palette-swatch.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/palette.svg b/bes_theme/.icons/bes_theme/palette.svg deleted file mode 100644 index feb04aa2..00000000 --- a/bes_theme/.icons/bes_theme/palette.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/palm-tree.svg b/bes_theme/.icons/bes_theme/palm-tree.svg deleted file mode 100644 index 14cf0ac5..00000000 --- a/bes_theme/.icons/bes_theme/palm-tree.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pan-bottom-left.svg b/bes_theme/.icons/bes_theme/pan-bottom-left.svg deleted file mode 100644 index db7899f4..00000000 --- a/bes_theme/.icons/bes_theme/pan-bottom-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pan-bottom-right.svg b/bes_theme/.icons/bes_theme/pan-bottom-right.svg deleted file mode 100644 index 0cdf9b8b..00000000 --- a/bes_theme/.icons/bes_theme/pan-bottom-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pan-down.svg b/bes_theme/.icons/bes_theme/pan-down.svg deleted file mode 100644 index 16051a80..00000000 --- a/bes_theme/.icons/bes_theme/pan-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pan-horizontal.svg b/bes_theme/.icons/bes_theme/pan-horizontal.svg deleted file mode 100644 index d6e1a06c..00000000 --- a/bes_theme/.icons/bes_theme/pan-horizontal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pan-left.svg b/bes_theme/.icons/bes_theme/pan-left.svg deleted file mode 100644 index 736ca8cb..00000000 --- a/bes_theme/.icons/bes_theme/pan-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pan-right.svg b/bes_theme/.icons/bes_theme/pan-right.svg deleted file mode 100644 index adb2e308..00000000 --- a/bes_theme/.icons/bes_theme/pan-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pan-top-left.svg b/bes_theme/.icons/bes_theme/pan-top-left.svg deleted file mode 100644 index c86837bd..00000000 --- a/bes_theme/.icons/bes_theme/pan-top-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pan-top-right.svg b/bes_theme/.icons/bes_theme/pan-top-right.svg deleted file mode 100644 index b1fdbdd4..00000000 --- a/bes_theme/.icons/bes_theme/pan-top-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pan-up.svg b/bes_theme/.icons/bes_theme/pan-up.svg deleted file mode 100644 index f90ada22..00000000 --- a/bes_theme/.icons/bes_theme/pan-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pan-vertical.svg b/bes_theme/.icons/bes_theme/pan-vertical.svg deleted file mode 100644 index 0724fb60..00000000 --- a/bes_theme/.icons/bes_theme/pan-vertical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pan.svg b/bes_theme/.icons/bes_theme/pan.svg deleted file mode 100644 index 24fd5641..00000000 --- a/bes_theme/.icons/bes_theme/pan.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/panda.svg b/bes_theme/.icons/bes_theme/panda.svg deleted file mode 100644 index 0652792b..00000000 --- a/bes_theme/.icons/bes_theme/panda.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pandora.svg b/bes_theme/.icons/bes_theme/pandora.svg deleted file mode 100644 index df1e6051..00000000 --- a/bes_theme/.icons/bes_theme/pandora.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/panorama-fisheye.svg b/bes_theme/.icons/bes_theme/panorama-fisheye.svg deleted file mode 100644 index 9ff3ff2e..00000000 --- a/bes_theme/.icons/bes_theme/panorama-fisheye.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/panorama-horizontal.svg b/bes_theme/.icons/bes_theme/panorama-horizontal.svg deleted file mode 100644 index 00b175ca..00000000 --- a/bes_theme/.icons/bes_theme/panorama-horizontal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/panorama-vertical.svg b/bes_theme/.icons/bes_theme/panorama-vertical.svg deleted file mode 100644 index 4de58f17..00000000 --- a/bes_theme/.icons/bes_theme/panorama-vertical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/panorama-wide-angle.svg b/bes_theme/.icons/bes_theme/panorama-wide-angle.svg deleted file mode 100644 index 243d00a5..00000000 --- a/bes_theme/.icons/bes_theme/panorama-wide-angle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/panorama.svg b/bes_theme/.icons/bes_theme/panorama.svg deleted file mode 100644 index 8e044d73..00000000 --- a/bes_theme/.icons/bes_theme/panorama.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/paper-cut-vertical.svg b/bes_theme/.icons/bes_theme/paper-cut-vertical.svg deleted file mode 100644 index a37026a4..00000000 --- a/bes_theme/.icons/bes_theme/paper-cut-vertical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/paper-roll-outline.svg b/bes_theme/.icons/bes_theme/paper-roll-outline.svg deleted file mode 100644 index 90226fb9..00000000 --- a/bes_theme/.icons/bes_theme/paper-roll-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/paper-roll.svg b/bes_theme/.icons/bes_theme/paper-roll.svg deleted file mode 100644 index 20553fb2..00000000 --- a/bes_theme/.icons/bes_theme/paper-roll.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/paperclip.svg b/bes_theme/.icons/bes_theme/paperclip.svg deleted file mode 100644 index 2aecf07a..00000000 --- a/bes_theme/.icons/bes_theme/paperclip.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/parachute-outline.svg b/bes_theme/.icons/bes_theme/parachute-outline.svg deleted file mode 100644 index ed6975d9..00000000 --- a/bes_theme/.icons/bes_theme/parachute-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/parachute.svg b/bes_theme/.icons/bes_theme/parachute.svg deleted file mode 100644 index 98709f39..00000000 --- a/bes_theme/.icons/bes_theme/parachute.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/parking.svg b/bes_theme/.icons/bes_theme/parking.svg deleted file mode 100644 index 44ed62d1..00000000 --- a/bes_theme/.icons/bes_theme/parking.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/party-popper.svg b/bes_theme/.icons/bes_theme/party-popper.svg deleted file mode 100644 index f1501416..00000000 --- a/bes_theme/.icons/bes_theme/party-popper.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/passport-biometric.svg b/bes_theme/.icons/bes_theme/passport-biometric.svg deleted file mode 100644 index 56a7cb57..00000000 --- a/bes_theme/.icons/bes_theme/passport-biometric.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/passport.svg b/bes_theme/.icons/bes_theme/passport.svg deleted file mode 100644 index c9e8b1ed..00000000 --- a/bes_theme/.icons/bes_theme/passport.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pasta.svg b/bes_theme/.icons/bes_theme/pasta.svg deleted file mode 100644 index fdac0b3b..00000000 --- a/bes_theme/.icons/bes_theme/pasta.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/patio-heater.svg b/bes_theme/.icons/bes_theme/patio-heater.svg deleted file mode 100644 index b538d897..00000000 --- a/bes_theme/.icons/bes_theme/patio-heater.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/patreon.svg b/bes_theme/.icons/bes_theme/patreon.svg deleted file mode 100644 index fd13227f..00000000 --- a/bes_theme/.icons/bes_theme/patreon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pause-circle-outline.svg b/bes_theme/.icons/bes_theme/pause-circle-outline.svg deleted file mode 100644 index fd49e3fc..00000000 --- a/bes_theme/.icons/bes_theme/pause-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pause-circle.svg b/bes_theme/.icons/bes_theme/pause-circle.svg deleted file mode 100644 index bd01dd5c..00000000 --- a/bes_theme/.icons/bes_theme/pause-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pause-octagon-outline.svg b/bes_theme/.icons/bes_theme/pause-octagon-outline.svg deleted file mode 100644 index 1396ed2c..00000000 --- a/bes_theme/.icons/bes_theme/pause-octagon-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pause-octagon.svg b/bes_theme/.icons/bes_theme/pause-octagon.svg deleted file mode 100644 index 37104656..00000000 --- a/bes_theme/.icons/bes_theme/pause-octagon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pause.svg b/bes_theme/.icons/bes_theme/pause.svg deleted file mode 100644 index c742a30e..00000000 --- a/bes_theme/.icons/bes_theme/pause.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/paw-off-outline.svg b/bes_theme/.icons/bes_theme/paw-off-outline.svg deleted file mode 100644 index 7dd9304b..00000000 --- a/bes_theme/.icons/bes_theme/paw-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/paw-off.svg b/bes_theme/.icons/bes_theme/paw-off.svg deleted file mode 100644 index 82c464c1..00000000 --- a/bes_theme/.icons/bes_theme/paw-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/paw-outline.svg b/bes_theme/.icons/bes_theme/paw-outline.svg deleted file mode 100644 index 068e92e8..00000000 --- a/bes_theme/.icons/bes_theme/paw-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/paw.svg b/bes_theme/.icons/bes_theme/paw.svg deleted file mode 100644 index 77c15324..00000000 --- a/bes_theme/.icons/bes_theme/paw.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pdf-box.svg b/bes_theme/.icons/bes_theme/pdf-box.svg deleted file mode 100644 index 9f7908d6..00000000 --- a/bes_theme/.icons/bes_theme/pdf-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/peace.svg b/bes_theme/.icons/bes_theme/peace.svg deleted file mode 100644 index 068ba298..00000000 --- a/bes_theme/.icons/bes_theme/peace.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/peanut-off-outline.svg b/bes_theme/.icons/bes_theme/peanut-off-outline.svg deleted file mode 100644 index 0aa95022..00000000 --- a/bes_theme/.icons/bes_theme/peanut-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/peanut-off.svg b/bes_theme/.icons/bes_theme/peanut-off.svg deleted file mode 100644 index 77f42f2e..00000000 --- a/bes_theme/.icons/bes_theme/peanut-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/peanut-outline.svg b/bes_theme/.icons/bes_theme/peanut-outline.svg deleted file mode 100644 index 5c34e0b2..00000000 --- a/bes_theme/.icons/bes_theme/peanut-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/peanut.svg b/bes_theme/.icons/bes_theme/peanut.svg deleted file mode 100644 index c213a477..00000000 --- a/bes_theme/.icons/bes_theme/peanut.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pen-lock.svg b/bes_theme/.icons/bes_theme/pen-lock.svg deleted file mode 100644 index 7a4b26f0..00000000 --- a/bes_theme/.icons/bes_theme/pen-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pen-minus.svg b/bes_theme/.icons/bes_theme/pen-minus.svg deleted file mode 100644 index 0bc1c1f6..00000000 --- a/bes_theme/.icons/bes_theme/pen-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pen-off.svg b/bes_theme/.icons/bes_theme/pen-off.svg deleted file mode 100644 index b53ec082..00000000 --- a/bes_theme/.icons/bes_theme/pen-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pen-plus.svg b/bes_theme/.icons/bes_theme/pen-plus.svg deleted file mode 100644 index 6e04c056..00000000 --- a/bes_theme/.icons/bes_theme/pen-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pen-remove.svg b/bes_theme/.icons/bes_theme/pen-remove.svg deleted file mode 100644 index 142f83b8..00000000 --- a/bes_theme/.icons/bes_theme/pen-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pen.svg b/bes_theme/.icons/bes_theme/pen.svg deleted file mode 100644 index 3e216ac4..00000000 --- a/bes_theme/.icons/bes_theme/pen.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pencil-box-multiple-outline.svg b/bes_theme/.icons/bes_theme/pencil-box-multiple-outline.svg deleted file mode 100644 index e26e2133..00000000 --- a/bes_theme/.icons/bes_theme/pencil-box-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pencil-box-multiple.svg b/bes_theme/.icons/bes_theme/pencil-box-multiple.svg deleted file mode 100644 index 65d996ed..00000000 --- a/bes_theme/.icons/bes_theme/pencil-box-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pencil-box-outline.svg b/bes_theme/.icons/bes_theme/pencil-box-outline.svg deleted file mode 100644 index 2a31bfb8..00000000 --- a/bes_theme/.icons/bes_theme/pencil-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pencil-box.svg b/bes_theme/.icons/bes_theme/pencil-box.svg deleted file mode 100644 index e28ee603..00000000 --- a/bes_theme/.icons/bes_theme/pencil-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pencil-circle-outline.svg b/bes_theme/.icons/bes_theme/pencil-circle-outline.svg deleted file mode 100644 index 7977894d..00000000 --- a/bes_theme/.icons/bes_theme/pencil-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pencil-circle.svg b/bes_theme/.icons/bes_theme/pencil-circle.svg deleted file mode 100644 index b79ba0b0..00000000 --- a/bes_theme/.icons/bes_theme/pencil-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pencil-lock-outline.svg b/bes_theme/.icons/bes_theme/pencil-lock-outline.svg deleted file mode 100644 index 87a26a23..00000000 --- a/bes_theme/.icons/bes_theme/pencil-lock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pencil-lock.svg b/bes_theme/.icons/bes_theme/pencil-lock.svg deleted file mode 100644 index 450f67ad..00000000 --- a/bes_theme/.icons/bes_theme/pencil-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pencil-minus-outline.svg b/bes_theme/.icons/bes_theme/pencil-minus-outline.svg deleted file mode 100644 index e9aadd28..00000000 --- a/bes_theme/.icons/bes_theme/pencil-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pencil-minus.svg b/bes_theme/.icons/bes_theme/pencil-minus.svg deleted file mode 100644 index 9ba0681f..00000000 --- a/bes_theme/.icons/bes_theme/pencil-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pencil-off-outline.svg b/bes_theme/.icons/bes_theme/pencil-off-outline.svg deleted file mode 100644 index f8e88847..00000000 --- a/bes_theme/.icons/bes_theme/pencil-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pencil-off.svg b/bes_theme/.icons/bes_theme/pencil-off.svg deleted file mode 100644 index 321bd787..00000000 --- a/bes_theme/.icons/bes_theme/pencil-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pencil-outline.svg b/bes_theme/.icons/bes_theme/pencil-outline.svg deleted file mode 100644 index 32be4985..00000000 --- a/bes_theme/.icons/bes_theme/pencil-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pencil-plus-outline.svg b/bes_theme/.icons/bes_theme/pencil-plus-outline.svg deleted file mode 100644 index d4121399..00000000 --- a/bes_theme/.icons/bes_theme/pencil-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pencil-plus.svg b/bes_theme/.icons/bes_theme/pencil-plus.svg deleted file mode 100644 index 03373bd7..00000000 --- a/bes_theme/.icons/bes_theme/pencil-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pencil-remove-outline.svg b/bes_theme/.icons/bes_theme/pencil-remove-outline.svg deleted file mode 100644 index 003b906e..00000000 --- a/bes_theme/.icons/bes_theme/pencil-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pencil-remove.svg b/bes_theme/.icons/bes_theme/pencil-remove.svg deleted file mode 100644 index 345d2581..00000000 --- a/bes_theme/.icons/bes_theme/pencil-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pencil-ruler.svg b/bes_theme/.icons/bes_theme/pencil-ruler.svg deleted file mode 100644 index f6ca70a3..00000000 --- a/bes_theme/.icons/bes_theme/pencil-ruler.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pencil.svg b/bes_theme/.icons/bes_theme/pencil.svg deleted file mode 100644 index 50d1ace3..00000000 --- a/bes_theme/.icons/bes_theme/pencil.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/penguin.svg b/bes_theme/.icons/bes_theme/penguin.svg deleted file mode 100644 index 97608daf..00000000 --- a/bes_theme/.icons/bes_theme/penguin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pentagon-outline.svg b/bes_theme/.icons/bes_theme/pentagon-outline.svg deleted file mode 100644 index 47a43cb2..00000000 --- a/bes_theme/.icons/bes_theme/pentagon-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pentagon.svg b/bes_theme/.icons/bes_theme/pentagon.svg deleted file mode 100644 index 2c6eca72..00000000 --- a/bes_theme/.icons/bes_theme/pentagon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pentagram.svg b/bes_theme/.icons/bes_theme/pentagram.svg deleted file mode 100644 index ebb3d8c8..00000000 --- a/bes_theme/.icons/bes_theme/pentagram.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/percent-outline.svg b/bes_theme/.icons/bes_theme/percent-outline.svg deleted file mode 100644 index b3383f4b..00000000 --- a/bes_theme/.icons/bes_theme/percent-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/percent.svg b/bes_theme/.icons/bes_theme/percent.svg deleted file mode 100644 index 23450ed6..00000000 --- a/bes_theme/.icons/bes_theme/percent.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/periodic-table.svg b/bes_theme/.icons/bes_theme/periodic-table.svg deleted file mode 100644 index f6f2300a..00000000 --- a/bes_theme/.icons/bes_theme/periodic-table.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/perspective-less.svg b/bes_theme/.icons/bes_theme/perspective-less.svg deleted file mode 100644 index 2ef354cf..00000000 --- a/bes_theme/.icons/bes_theme/perspective-less.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/perspective-more.svg b/bes_theme/.icons/bes_theme/perspective-more.svg deleted file mode 100644 index ce0e7b28..00000000 --- a/bes_theme/.icons/bes_theme/perspective-more.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pharmacy.svg b/bes_theme/.icons/bes_theme/pharmacy.svg deleted file mode 100644 index 5a818a98..00000000 --- a/bes_theme/.icons/bes_theme/pharmacy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-alert-outline.svg b/bes_theme/.icons/bes_theme/phone-alert-outline.svg deleted file mode 100644 index 39b69fff..00000000 --- a/bes_theme/.icons/bes_theme/phone-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-alert.svg b/bes_theme/.icons/bes_theme/phone-alert.svg deleted file mode 100644 index af5d8538..00000000 --- a/bes_theme/.icons/bes_theme/phone-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-bluetooth-outline.svg b/bes_theme/.icons/bes_theme/phone-bluetooth-outline.svg deleted file mode 100644 index a6f8672a..00000000 --- a/bes_theme/.icons/bes_theme/phone-bluetooth-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-bluetooth.svg b/bes_theme/.icons/bes_theme/phone-bluetooth.svg deleted file mode 100644 index b4dfa228..00000000 --- a/bes_theme/.icons/bes_theme/phone-bluetooth.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-cancel-outline.svg b/bes_theme/.icons/bes_theme/phone-cancel-outline.svg deleted file mode 100644 index b855f292..00000000 --- a/bes_theme/.icons/bes_theme/phone-cancel-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-cancel.svg b/bes_theme/.icons/bes_theme/phone-cancel.svg deleted file mode 100644 index 9162cdb5..00000000 --- a/bes_theme/.icons/bes_theme/phone-cancel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-check-outline.svg b/bes_theme/.icons/bes_theme/phone-check-outline.svg deleted file mode 100644 index b07b59a8..00000000 --- a/bes_theme/.icons/bes_theme/phone-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-check.svg b/bes_theme/.icons/bes_theme/phone-check.svg deleted file mode 100644 index 9a8e2b92..00000000 --- a/bes_theme/.icons/bes_theme/phone-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-classic-off.svg b/bes_theme/.icons/bes_theme/phone-classic-off.svg deleted file mode 100644 index d7c9d93c..00000000 --- a/bes_theme/.icons/bes_theme/phone-classic-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-classic.svg b/bes_theme/.icons/bes_theme/phone-classic.svg deleted file mode 100644 index de60c166..00000000 --- a/bes_theme/.icons/bes_theme/phone-classic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-dial-outline.svg b/bes_theme/.icons/bes_theme/phone-dial-outline.svg deleted file mode 100644 index fa2c9873..00000000 --- a/bes_theme/.icons/bes_theme/phone-dial-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-dial.svg b/bes_theme/.icons/bes_theme/phone-dial.svg deleted file mode 100644 index 7fe18c04..00000000 --- a/bes_theme/.icons/bes_theme/phone-dial.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-forward-outline.svg b/bes_theme/.icons/bes_theme/phone-forward-outline.svg deleted file mode 100644 index 01e42dff..00000000 --- a/bes_theme/.icons/bes_theme/phone-forward-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-forward.svg b/bes_theme/.icons/bes_theme/phone-forward.svg deleted file mode 100644 index a0768b7a..00000000 --- a/bes_theme/.icons/bes_theme/phone-forward.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-hangup-outline.svg b/bes_theme/.icons/bes_theme/phone-hangup-outline.svg deleted file mode 100644 index e8d37597..00000000 --- a/bes_theme/.icons/bes_theme/phone-hangup-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-hangup.svg b/bes_theme/.icons/bes_theme/phone-hangup.svg deleted file mode 100644 index 9347b273..00000000 --- a/bes_theme/.icons/bes_theme/phone-hangup.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-in-talk-outline.svg b/bes_theme/.icons/bes_theme/phone-in-talk-outline.svg deleted file mode 100644 index e3ac84c3..00000000 --- a/bes_theme/.icons/bes_theme/phone-in-talk-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-in-talk.svg b/bes_theme/.icons/bes_theme/phone-in-talk.svg deleted file mode 100644 index 99d947bf..00000000 --- a/bes_theme/.icons/bes_theme/phone-in-talk.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-incoming-outline.svg b/bes_theme/.icons/bes_theme/phone-incoming-outline.svg deleted file mode 100644 index 19621ef4..00000000 --- a/bes_theme/.icons/bes_theme/phone-incoming-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-incoming.svg b/bes_theme/.icons/bes_theme/phone-incoming.svg deleted file mode 100644 index 8de41e4a..00000000 --- a/bes_theme/.icons/bes_theme/phone-incoming.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-lock-outline.svg b/bes_theme/.icons/bes_theme/phone-lock-outline.svg deleted file mode 100644 index ea33ed47..00000000 --- a/bes_theme/.icons/bes_theme/phone-lock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-lock.svg b/bes_theme/.icons/bes_theme/phone-lock.svg deleted file mode 100644 index 7c2e8af0..00000000 --- a/bes_theme/.icons/bes_theme/phone-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-log-outline.svg b/bes_theme/.icons/bes_theme/phone-log-outline.svg deleted file mode 100644 index bcd340b6..00000000 --- a/bes_theme/.icons/bes_theme/phone-log-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-log.svg b/bes_theme/.icons/bes_theme/phone-log.svg deleted file mode 100644 index 9ff325be..00000000 --- a/bes_theme/.icons/bes_theme/phone-log.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-message-outline.svg b/bes_theme/.icons/bes_theme/phone-message-outline.svg deleted file mode 100644 index ace4f53d..00000000 --- a/bes_theme/.icons/bes_theme/phone-message-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-message.svg b/bes_theme/.icons/bes_theme/phone-message.svg deleted file mode 100644 index d2ac56b4..00000000 --- a/bes_theme/.icons/bes_theme/phone-message.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-minus-outline.svg b/bes_theme/.icons/bes_theme/phone-minus-outline.svg deleted file mode 100644 index e5a59a0e..00000000 --- a/bes_theme/.icons/bes_theme/phone-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-minus.svg b/bes_theme/.icons/bes_theme/phone-minus.svg deleted file mode 100644 index d25bb25c..00000000 --- a/bes_theme/.icons/bes_theme/phone-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-missed-outline.svg b/bes_theme/.icons/bes_theme/phone-missed-outline.svg deleted file mode 100644 index a11fcf52..00000000 --- a/bes_theme/.icons/bes_theme/phone-missed-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-missed.svg b/bes_theme/.icons/bes_theme/phone-missed.svg deleted file mode 100644 index e7bbb431..00000000 --- a/bes_theme/.icons/bes_theme/phone-missed.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-off-outline.svg b/bes_theme/.icons/bes_theme/phone-off-outline.svg deleted file mode 100644 index eec9b9c9..00000000 --- a/bes_theme/.icons/bes_theme/phone-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-off.svg b/bes_theme/.icons/bes_theme/phone-off.svg deleted file mode 100644 index 8b8154a1..00000000 --- a/bes_theme/.icons/bes_theme/phone-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-outgoing-outline.svg b/bes_theme/.icons/bes_theme/phone-outgoing-outline.svg deleted file mode 100644 index feadefd8..00000000 --- a/bes_theme/.icons/bes_theme/phone-outgoing-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-outgoing.svg b/bes_theme/.icons/bes_theme/phone-outgoing.svg deleted file mode 100644 index 5c87872b..00000000 --- a/bes_theme/.icons/bes_theme/phone-outgoing.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-outline.svg b/bes_theme/.icons/bes_theme/phone-outline.svg deleted file mode 100644 index fd762c4c..00000000 --- a/bes_theme/.icons/bes_theme/phone-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-paused-outline.svg b/bes_theme/.icons/bes_theme/phone-paused-outline.svg deleted file mode 100644 index 17ccd4ec..00000000 --- a/bes_theme/.icons/bes_theme/phone-paused-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-paused.svg b/bes_theme/.icons/bes_theme/phone-paused.svg deleted file mode 100644 index 25d7d14b..00000000 --- a/bes_theme/.icons/bes_theme/phone-paused.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-plus-outline.svg b/bes_theme/.icons/bes_theme/phone-plus-outline.svg deleted file mode 100644 index 97cef81d..00000000 --- a/bes_theme/.icons/bes_theme/phone-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-plus.svg b/bes_theme/.icons/bes_theme/phone-plus.svg deleted file mode 100644 index 4ad8ebaf..00000000 --- a/bes_theme/.icons/bes_theme/phone-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-remove-outline.svg b/bes_theme/.icons/bes_theme/phone-remove-outline.svg deleted file mode 100644 index 4b6a82d1..00000000 --- a/bes_theme/.icons/bes_theme/phone-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-remove.svg b/bes_theme/.icons/bes_theme/phone-remove.svg deleted file mode 100644 index ccac6053..00000000 --- a/bes_theme/.icons/bes_theme/phone-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-return-outline.svg b/bes_theme/.icons/bes_theme/phone-return-outline.svg deleted file mode 100644 index ea15afc1..00000000 --- a/bes_theme/.icons/bes_theme/phone-return-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-return.svg b/bes_theme/.icons/bes_theme/phone-return.svg deleted file mode 100644 index 02c395bd..00000000 --- a/bes_theme/.icons/bes_theme/phone-return.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-ring-outline.svg b/bes_theme/.icons/bes_theme/phone-ring-outline.svg deleted file mode 100644 index 8f8e1334..00000000 --- a/bes_theme/.icons/bes_theme/phone-ring-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-ring.svg b/bes_theme/.icons/bes_theme/phone-ring.svg deleted file mode 100644 index baf41de4..00000000 --- a/bes_theme/.icons/bes_theme/phone-ring.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-rotate-landscape.svg b/bes_theme/.icons/bes_theme/phone-rotate-landscape.svg deleted file mode 100644 index 27aea47b..00000000 --- a/bes_theme/.icons/bes_theme/phone-rotate-landscape.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-rotate-portrait.svg b/bes_theme/.icons/bes_theme/phone-rotate-portrait.svg deleted file mode 100644 index fdb339d2..00000000 --- a/bes_theme/.icons/bes_theme/phone-rotate-portrait.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-settings-outline.svg b/bes_theme/.icons/bes_theme/phone-settings-outline.svg deleted file mode 100644 index 29f8722c..00000000 --- a/bes_theme/.icons/bes_theme/phone-settings-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-settings.svg b/bes_theme/.icons/bes_theme/phone-settings.svg deleted file mode 100644 index 3473edd9..00000000 --- a/bes_theme/.icons/bes_theme/phone-settings.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone-voip.svg b/bes_theme/.icons/bes_theme/phone-voip.svg deleted file mode 100644 index aee3747f..00000000 --- a/bes_theme/.icons/bes_theme/phone-voip.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/phone.svg b/bes_theme/.icons/bes_theme/phone.svg deleted file mode 100644 index 2f22452c..00000000 --- a/bes_theme/.icons/bes_theme/phone.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pi-box.svg b/bes_theme/.icons/bes_theme/pi-box.svg deleted file mode 100644 index 3878393c..00000000 --- a/bes_theme/.icons/bes_theme/pi-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pi-hole.svg b/bes_theme/.icons/bes_theme/pi-hole.svg deleted file mode 100644 index 34c511e8..00000000 --- a/bes_theme/.icons/bes_theme/pi-hole.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pi.svg b/bes_theme/.icons/bes_theme/pi.svg deleted file mode 100644 index c753fd7a..00000000 --- a/bes_theme/.icons/bes_theme/pi.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/piano.svg b/bes_theme/.icons/bes_theme/piano.svg deleted file mode 100644 index 7ef46d9b..00000000 --- a/bes_theme/.icons/bes_theme/piano.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pickaxe.svg b/bes_theme/.icons/bes_theme/pickaxe.svg deleted file mode 100644 index 928d5993..00000000 --- a/bes_theme/.icons/bes_theme/pickaxe.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/picture-in-picture-bottom-right-outline.svg b/bes_theme/.icons/bes_theme/picture-in-picture-bottom-right-outline.svg deleted file mode 100644 index 9af1a70d..00000000 --- a/bes_theme/.icons/bes_theme/picture-in-picture-bottom-right-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/picture-in-picture-bottom-right.svg b/bes_theme/.icons/bes_theme/picture-in-picture-bottom-right.svg deleted file mode 100644 index 9d997078..00000000 --- a/bes_theme/.icons/bes_theme/picture-in-picture-bottom-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/picture-in-picture-top-right-outline.svg b/bes_theme/.icons/bes_theme/picture-in-picture-top-right-outline.svg deleted file mode 100644 index 697a5a8b..00000000 --- a/bes_theme/.icons/bes_theme/picture-in-picture-top-right-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/picture-in-picture-top-right.svg b/bes_theme/.icons/bes_theme/picture-in-picture-top-right.svg deleted file mode 100644 index c573842e..00000000 --- a/bes_theme/.icons/bes_theme/picture-in-picture-top-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pier-crane.svg b/bes_theme/.icons/bes_theme/pier-crane.svg deleted file mode 100644 index bb0a9e66..00000000 --- a/bes_theme/.icons/bes_theme/pier-crane.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pier.svg b/bes_theme/.icons/bes_theme/pier.svg deleted file mode 100644 index 2ecd23b3..00000000 --- a/bes_theme/.icons/bes_theme/pier.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pig-variant-outline.svg b/bes_theme/.icons/bes_theme/pig-variant-outline.svg deleted file mode 100644 index f3f72546..00000000 --- a/bes_theme/.icons/bes_theme/pig-variant-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pig-variant.svg b/bes_theme/.icons/bes_theme/pig-variant.svg deleted file mode 100644 index 5f8d45bb..00000000 --- a/bes_theme/.icons/bes_theme/pig-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pig.svg b/bes_theme/.icons/bes_theme/pig.svg deleted file mode 100644 index eb709594..00000000 --- a/bes_theme/.icons/bes_theme/pig.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/piggy-bank-outline.svg b/bes_theme/.icons/bes_theme/piggy-bank-outline.svg deleted file mode 100644 index 8b09ddf3..00000000 --- a/bes_theme/.icons/bes_theme/piggy-bank-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/piggy-bank.svg b/bes_theme/.icons/bes_theme/piggy-bank.svg deleted file mode 100644 index 3a7b075d..00000000 --- a/bes_theme/.icons/bes_theme/piggy-bank.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pill.svg b/bes_theme/.icons/bes_theme/pill.svg deleted file mode 100644 index 398936e9..00000000 --- a/bes_theme/.icons/bes_theme/pill.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pillar.svg b/bes_theme/.icons/bes_theme/pillar.svg deleted file mode 100644 index 20f1b3b7..00000000 --- a/bes_theme/.icons/bes_theme/pillar.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pin-off-outline.svg b/bes_theme/.icons/bes_theme/pin-off-outline.svg deleted file mode 100644 index 9666c194..00000000 --- a/bes_theme/.icons/bes_theme/pin-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pin-off.svg b/bes_theme/.icons/bes_theme/pin-off.svg deleted file mode 100644 index eaa232fc..00000000 --- a/bes_theme/.icons/bes_theme/pin-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pin-outline.svg b/bes_theme/.icons/bes_theme/pin-outline.svg deleted file mode 100644 index 4efbdd1d..00000000 --- a/bes_theme/.icons/bes_theme/pin-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pin.svg b/bes_theme/.icons/bes_theme/pin.svg deleted file mode 100644 index 68daca96..00000000 --- a/bes_theme/.icons/bes_theme/pin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pine-tree-box.svg b/bes_theme/.icons/bes_theme/pine-tree-box.svg deleted file mode 100644 index a9980903..00000000 --- a/bes_theme/.icons/bes_theme/pine-tree-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pine-tree-fire.svg b/bes_theme/.icons/bes_theme/pine-tree-fire.svg deleted file mode 100644 index dd93d3c5..00000000 --- a/bes_theme/.icons/bes_theme/pine-tree-fire.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pine-tree.svg b/bes_theme/.icons/bes_theme/pine-tree.svg deleted file mode 100644 index a8715f4f..00000000 --- a/bes_theme/.icons/bes_theme/pine-tree.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pinterest.svg b/bes_theme/.icons/bes_theme/pinterest.svg deleted file mode 100644 index 711178ac..00000000 --- a/bes_theme/.icons/bes_theme/pinterest.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pinwheel-outline.svg b/bes_theme/.icons/bes_theme/pinwheel-outline.svg deleted file mode 100644 index cef4f4fe..00000000 --- a/bes_theme/.icons/bes_theme/pinwheel-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pinwheel.svg b/bes_theme/.icons/bes_theme/pinwheel.svg deleted file mode 100644 index 0a7a7a43..00000000 --- a/bes_theme/.icons/bes_theme/pinwheel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pipe-disconnected.svg b/bes_theme/.icons/bes_theme/pipe-disconnected.svg deleted file mode 100644 index 688540af..00000000 --- a/bes_theme/.icons/bes_theme/pipe-disconnected.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pipe-leak.svg b/bes_theme/.icons/bes_theme/pipe-leak.svg deleted file mode 100644 index 1d7e3aca..00000000 --- a/bes_theme/.icons/bes_theme/pipe-leak.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pipe-wrench.svg b/bes_theme/.icons/bes_theme/pipe-wrench.svg deleted file mode 100644 index e2619cda..00000000 --- a/bes_theme/.icons/bes_theme/pipe-wrench.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pipe.svg b/bes_theme/.icons/bes_theme/pipe.svg deleted file mode 100644 index 1542a730..00000000 --- a/bes_theme/.icons/bes_theme/pipe.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pirate.svg b/bes_theme/.icons/bes_theme/pirate.svg deleted file mode 100644 index 529095b9..00000000 --- a/bes_theme/.icons/bes_theme/pirate.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pistol.svg b/bes_theme/.icons/bes_theme/pistol.svg deleted file mode 100644 index df926fbf..00000000 --- a/bes_theme/.icons/bes_theme/pistol.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/piston.svg b/bes_theme/.icons/bes_theme/piston.svg deleted file mode 100644 index 4c4cf33d..00000000 --- a/bes_theme/.icons/bes_theme/piston.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pitchfork.svg b/bes_theme/.icons/bes_theme/pitchfork.svg deleted file mode 100644 index 02438068..00000000 --- a/bes_theme/.icons/bes_theme/pitchfork.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pizza.svg b/bes_theme/.icons/bes_theme/pizza.svg deleted file mode 100644 index b97c130d..00000000 --- a/bes_theme/.icons/bes_theme/pizza.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/play-box-multiple-outline.svg b/bes_theme/.icons/bes_theme/play-box-multiple-outline.svg deleted file mode 100644 index d991b112..00000000 --- a/bes_theme/.icons/bes_theme/play-box-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/play-box-multiple.svg b/bes_theme/.icons/bes_theme/play-box-multiple.svg deleted file mode 100644 index 551ec3bb..00000000 --- a/bes_theme/.icons/bes_theme/play-box-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/play-box-outline.svg b/bes_theme/.icons/bes_theme/play-box-outline.svg deleted file mode 100644 index 8d355d2a..00000000 --- a/bes_theme/.icons/bes_theme/play-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/play-box.svg b/bes_theme/.icons/bes_theme/play-box.svg deleted file mode 100644 index c97d4c4c..00000000 --- a/bes_theme/.icons/bes_theme/play-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/play-circle-outline.svg b/bes_theme/.icons/bes_theme/play-circle-outline.svg deleted file mode 100644 index f2712cd0..00000000 --- a/bes_theme/.icons/bes_theme/play-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/play-circle.svg b/bes_theme/.icons/bes_theme/play-circle.svg deleted file mode 100644 index 6dafb7df..00000000 --- a/bes_theme/.icons/bes_theme/play-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/play-network-outline.svg b/bes_theme/.icons/bes_theme/play-network-outline.svg deleted file mode 100644 index 2fa58431..00000000 --- a/bes_theme/.icons/bes_theme/play-network-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/play-network.svg b/bes_theme/.icons/bes_theme/play-network.svg deleted file mode 100644 index 80ff6aef..00000000 --- a/bes_theme/.icons/bes_theme/play-network.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/play-outline.svg b/bes_theme/.icons/bes_theme/play-outline.svg deleted file mode 100644 index 4627093d..00000000 --- a/bes_theme/.icons/bes_theme/play-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/play-pause.svg b/bes_theme/.icons/bes_theme/play-pause.svg deleted file mode 100644 index e23fafc3..00000000 --- a/bes_theme/.icons/bes_theme/play-pause.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/play-protected-content.svg b/bes_theme/.icons/bes_theme/play-protected-content.svg deleted file mode 100644 index 06242703..00000000 --- a/bes_theme/.icons/bes_theme/play-protected-content.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/play-speed.svg b/bes_theme/.icons/bes_theme/play-speed.svg deleted file mode 100644 index f8724c73..00000000 --- a/bes_theme/.icons/bes_theme/play-speed.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/play.svg b/bes_theme/.icons/bes_theme/play.svg deleted file mode 100644 index dc2b40fe..00000000 --- a/bes_theme/.icons/bes_theme/play.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/playlist-check.svg b/bes_theme/.icons/bes_theme/playlist-check.svg deleted file mode 100644 index 5bd80c82..00000000 --- a/bes_theme/.icons/bes_theme/playlist-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/playlist-edit.svg b/bes_theme/.icons/bes_theme/playlist-edit.svg deleted file mode 100644 index b44feea4..00000000 --- a/bes_theme/.icons/bes_theme/playlist-edit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/playlist-minus.svg b/bes_theme/.icons/bes_theme/playlist-minus.svg deleted file mode 100644 index 40854f3a..00000000 --- a/bes_theme/.icons/bes_theme/playlist-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/playlist-music-outline.svg b/bes_theme/.icons/bes_theme/playlist-music-outline.svg deleted file mode 100644 index c6bbffda..00000000 --- a/bes_theme/.icons/bes_theme/playlist-music-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/playlist-music.svg b/bes_theme/.icons/bes_theme/playlist-music.svg deleted file mode 100644 index 423d98d1..00000000 --- a/bes_theme/.icons/bes_theme/playlist-music.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/playlist-play.svg b/bes_theme/.icons/bes_theme/playlist-play.svg deleted file mode 100644 index a838891f..00000000 --- a/bes_theme/.icons/bes_theme/playlist-play.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/playlist-plus.svg b/bes_theme/.icons/bes_theme/playlist-plus.svg deleted file mode 100644 index d2958a08..00000000 --- a/bes_theme/.icons/bes_theme/playlist-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/playlist-remove.svg b/bes_theme/.icons/bes_theme/playlist-remove.svg deleted file mode 100644 index c127f22a..00000000 --- a/bes_theme/.icons/bes_theme/playlist-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/playlist-star.svg b/bes_theme/.icons/bes_theme/playlist-star.svg deleted file mode 100644 index ae2f9053..00000000 --- a/bes_theme/.icons/bes_theme/playlist-star.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/plex.svg b/bes_theme/.icons/bes_theme/plex.svg deleted file mode 100644 index c5d17682..00000000 --- a/bes_theme/.icons/bes_theme/plex.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/plus-box-multiple-outline.svg b/bes_theme/.icons/bes_theme/plus-box-multiple-outline.svg deleted file mode 100644 index 70d3081e..00000000 --- a/bes_theme/.icons/bes_theme/plus-box-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/plus-box-multiple.svg b/bes_theme/.icons/bes_theme/plus-box-multiple.svg deleted file mode 100644 index 8db6105b..00000000 --- a/bes_theme/.icons/bes_theme/plus-box-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/plus-box-outline.svg b/bes_theme/.icons/bes_theme/plus-box-outline.svg deleted file mode 100644 index 069adfe9..00000000 --- a/bes_theme/.icons/bes_theme/plus-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/plus-box.svg b/bes_theme/.icons/bes_theme/plus-box.svg deleted file mode 100644 index 96b6fa75..00000000 --- a/bes_theme/.icons/bes_theme/plus-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/plus-circle-multiple-outline.svg b/bes_theme/.icons/bes_theme/plus-circle-multiple-outline.svg deleted file mode 100644 index cdacd601..00000000 --- a/bes_theme/.icons/bes_theme/plus-circle-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/plus-circle-multiple.svg b/bes_theme/.icons/bes_theme/plus-circle-multiple.svg deleted file mode 100644 index 8c954403..00000000 --- a/bes_theme/.icons/bes_theme/plus-circle-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/plus-circle-outline.svg b/bes_theme/.icons/bes_theme/plus-circle-outline.svg deleted file mode 100644 index 668abda5..00000000 --- a/bes_theme/.icons/bes_theme/plus-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/plus-circle.svg b/bes_theme/.icons/bes_theme/plus-circle.svg deleted file mode 100644 index 4536e5d4..00000000 --- a/bes_theme/.icons/bes_theme/plus-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/plus-minus-box.svg b/bes_theme/.icons/bes_theme/plus-minus-box.svg deleted file mode 100644 index df460a58..00000000 --- a/bes_theme/.icons/bes_theme/plus-minus-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/plus-minus-variant.svg b/bes_theme/.icons/bes_theme/plus-minus-variant.svg deleted file mode 100644 index 26b9c059..00000000 --- a/bes_theme/.icons/bes_theme/plus-minus-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/plus-minus.svg b/bes_theme/.icons/bes_theme/plus-minus.svg deleted file mode 100644 index fc3671db..00000000 --- a/bes_theme/.icons/bes_theme/plus-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/plus-network-outline.svg b/bes_theme/.icons/bes_theme/plus-network-outline.svg deleted file mode 100644 index 764fa078..00000000 --- a/bes_theme/.icons/bes_theme/plus-network-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/plus-network.svg b/bes_theme/.icons/bes_theme/plus-network.svg deleted file mode 100644 index c1d71472..00000000 --- a/bes_theme/.icons/bes_theme/plus-network.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/plus-one.svg b/bes_theme/.icons/bes_theme/plus-one.svg deleted file mode 100644 index 551b1809..00000000 --- a/bes_theme/.icons/bes_theme/plus-one.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/plus-outline.svg b/bes_theme/.icons/bes_theme/plus-outline.svg deleted file mode 100644 index 9fa0a9fb..00000000 --- a/bes_theme/.icons/bes_theme/plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/plus-thick.svg b/bes_theme/.icons/bes_theme/plus-thick.svg deleted file mode 100644 index de2f9c14..00000000 --- a/bes_theme/.icons/bes_theme/plus-thick.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/plus.svg b/bes_theme/.icons/bes_theme/plus.svg deleted file mode 100644 index e448436f..00000000 --- a/bes_theme/.icons/bes_theme/plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/podcast.svg b/bes_theme/.icons/bes_theme/podcast.svg deleted file mode 100644 index d72635d9..00000000 --- a/bes_theme/.icons/bes_theme/podcast.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/podium-bronze.svg b/bes_theme/.icons/bes_theme/podium-bronze.svg deleted file mode 100644 index ea7d4989..00000000 --- a/bes_theme/.icons/bes_theme/podium-bronze.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/podium-gold.svg b/bes_theme/.icons/bes_theme/podium-gold.svg deleted file mode 100644 index 7b9997d6..00000000 --- a/bes_theme/.icons/bes_theme/podium-gold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/podium-silver.svg b/bes_theme/.icons/bes_theme/podium-silver.svg deleted file mode 100644 index 85650cdb..00000000 --- a/bes_theme/.icons/bes_theme/podium-silver.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/podium.svg b/bes_theme/.icons/bes_theme/podium.svg deleted file mode 100644 index 6c1fb83f..00000000 --- a/bes_theme/.icons/bes_theme/podium.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/point-of-sale.svg b/bes_theme/.icons/bes_theme/point-of-sale.svg deleted file mode 100644 index 8e19114a..00000000 --- a/bes_theme/.icons/bes_theme/point-of-sale.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pokeball.svg b/bes_theme/.icons/bes_theme/pokeball.svg deleted file mode 100644 index 44345112..00000000 --- a/bes_theme/.icons/bes_theme/pokeball.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pokemon-go.svg b/bes_theme/.icons/bes_theme/pokemon-go.svg deleted file mode 100644 index 9705ec7d..00000000 --- a/bes_theme/.icons/bes_theme/pokemon-go.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/poker-chip.svg b/bes_theme/.icons/bes_theme/poker-chip.svg deleted file mode 100644 index 3ebd66e0..00000000 --- a/bes_theme/.icons/bes_theme/poker-chip.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/polaroid.svg b/bes_theme/.icons/bes_theme/polaroid.svg deleted file mode 100644 index 3ad3cc44..00000000 --- a/bes_theme/.icons/bes_theme/polaroid.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/police-badge-outline.svg b/bes_theme/.icons/bes_theme/police-badge-outline.svg deleted file mode 100644 index e3166305..00000000 --- a/bes_theme/.icons/bes_theme/police-badge-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/police-badge.svg b/bes_theme/.icons/bes_theme/police-badge.svg deleted file mode 100644 index a3b1dd38..00000000 --- a/bes_theme/.icons/bes_theme/police-badge.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/poll-box-outline.svg b/bes_theme/.icons/bes_theme/poll-box-outline.svg deleted file mode 100644 index db6b2906..00000000 --- a/bes_theme/.icons/bes_theme/poll-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/poll-box.svg b/bes_theme/.icons/bes_theme/poll-box.svg deleted file mode 100644 index 7713a28f..00000000 --- a/bes_theme/.icons/bes_theme/poll-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/poll.svg b/bes_theme/.icons/bes_theme/poll.svg deleted file mode 100644 index bd98af0e..00000000 --- a/bes_theme/.icons/bes_theme/poll.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/polo.svg b/bes_theme/.icons/bes_theme/polo.svg deleted file mode 100644 index cb72a4f5..00000000 --- a/bes_theme/.icons/bes_theme/polo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/polymer.svg b/bes_theme/.icons/bes_theme/polymer.svg deleted file mode 100644 index 3c4676fe..00000000 --- a/bes_theme/.icons/bes_theme/polymer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pool.svg b/bes_theme/.icons/bes_theme/pool.svg deleted file mode 100644 index b06131c3..00000000 --- a/bes_theme/.icons/bes_theme/pool.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/popcorn.svg b/bes_theme/.icons/bes_theme/popcorn.svg deleted file mode 100644 index ff8f18f3..00000000 --- a/bes_theme/.icons/bes_theme/popcorn.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/post-outline.svg b/bes_theme/.icons/bes_theme/post-outline.svg deleted file mode 100644 index 1f4d62c5..00000000 --- a/bes_theme/.icons/bes_theme/post-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/post.svg b/bes_theme/.icons/bes_theme/post.svg deleted file mode 100644 index 6fc14e09..00000000 --- a/bes_theme/.icons/bes_theme/post.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/postage-stamp.svg b/bes_theme/.icons/bes_theme/postage-stamp.svg deleted file mode 100644 index e4e1992a..00000000 --- a/bes_theme/.icons/bes_theme/postage-stamp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pot-mix-outline.svg b/bes_theme/.icons/bes_theme/pot-mix-outline.svg deleted file mode 100644 index c9995d1c..00000000 --- a/bes_theme/.icons/bes_theme/pot-mix-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pot-mix.svg b/bes_theme/.icons/bes_theme/pot-mix.svg deleted file mode 100644 index cdb09766..00000000 --- a/bes_theme/.icons/bes_theme/pot-mix.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pot-outline.svg b/bes_theme/.icons/bes_theme/pot-outline.svg deleted file mode 100644 index bde86b7b..00000000 --- a/bes_theme/.icons/bes_theme/pot-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pot-steam-outline.svg b/bes_theme/.icons/bes_theme/pot-steam-outline.svg deleted file mode 100644 index 77ccff2e..00000000 --- a/bes_theme/.icons/bes_theme/pot-steam-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pot-steam.svg b/bes_theme/.icons/bes_theme/pot-steam.svg deleted file mode 100644 index dadba1a4..00000000 --- a/bes_theme/.icons/bes_theme/pot-steam.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pot.svg b/bes_theme/.icons/bes_theme/pot.svg deleted file mode 100644 index b83f663f..00000000 --- a/bes_theme/.icons/bes_theme/pot.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pound-box-outline.svg b/bes_theme/.icons/bes_theme/pound-box-outline.svg deleted file mode 100644 index 6f5a5313..00000000 --- a/bes_theme/.icons/bes_theme/pound-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pound-box.svg b/bes_theme/.icons/bes_theme/pound-box.svg deleted file mode 100644 index d48c11a7..00000000 --- a/bes_theme/.icons/bes_theme/pound-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pound.svg b/bes_theme/.icons/bes_theme/pound.svg deleted file mode 100644 index 9b4086dd..00000000 --- a/bes_theme/.icons/bes_theme/pound.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/power-cycle.svg b/bes_theme/.icons/bes_theme/power-cycle.svg deleted file mode 100644 index f4eff2e2..00000000 --- a/bes_theme/.icons/bes_theme/power-cycle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/power-off.svg b/bes_theme/.icons/bes_theme/power-off.svg deleted file mode 100644 index 30ade419..00000000 --- a/bes_theme/.icons/bes_theme/power-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/power-on.svg b/bes_theme/.icons/bes_theme/power-on.svg deleted file mode 100644 index f00cae2a..00000000 --- a/bes_theme/.icons/bes_theme/power-on.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/power-plug-off-outline.svg b/bes_theme/.icons/bes_theme/power-plug-off-outline.svg deleted file mode 100644 index 68b33aaf..00000000 --- a/bes_theme/.icons/bes_theme/power-plug-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/power-plug-off.svg b/bes_theme/.icons/bes_theme/power-plug-off.svg deleted file mode 100644 index befb9514..00000000 --- a/bes_theme/.icons/bes_theme/power-plug-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/power-plug-outline.svg b/bes_theme/.icons/bes_theme/power-plug-outline.svg deleted file mode 100644 index 06845c8c..00000000 --- a/bes_theme/.icons/bes_theme/power-plug-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/power-plug.svg b/bes_theme/.icons/bes_theme/power-plug.svg deleted file mode 100644 index 0e7d00c8..00000000 --- a/bes_theme/.icons/bes_theme/power-plug.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/power-settings.svg b/bes_theme/.icons/bes_theme/power-settings.svg deleted file mode 100644 index a377fb4a..00000000 --- a/bes_theme/.icons/bes_theme/power-settings.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/power-sleep.svg b/bes_theme/.icons/bes_theme/power-sleep.svg deleted file mode 100644 index ba02ba9c..00000000 --- a/bes_theme/.icons/bes_theme/power-sleep.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/power-socket-au.svg b/bes_theme/.icons/bes_theme/power-socket-au.svg deleted file mode 100644 index 7dd00987..00000000 --- a/bes_theme/.icons/bes_theme/power-socket-au.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/power-socket-de.svg b/bes_theme/.icons/bes_theme/power-socket-de.svg deleted file mode 100644 index 2bc08093..00000000 --- a/bes_theme/.icons/bes_theme/power-socket-de.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/power-socket-eu.svg b/bes_theme/.icons/bes_theme/power-socket-eu.svg deleted file mode 100644 index a9181ed5..00000000 --- a/bes_theme/.icons/bes_theme/power-socket-eu.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/power-socket-fr.svg b/bes_theme/.icons/bes_theme/power-socket-fr.svg deleted file mode 100644 index 3965fd64..00000000 --- a/bes_theme/.icons/bes_theme/power-socket-fr.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/power-socket-it.svg b/bes_theme/.icons/bes_theme/power-socket-it.svg deleted file mode 100644 index 45dec0a0..00000000 --- a/bes_theme/.icons/bes_theme/power-socket-it.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/power-socket-jp.svg b/bes_theme/.icons/bes_theme/power-socket-jp.svg deleted file mode 100644 index cd88ac22..00000000 --- a/bes_theme/.icons/bes_theme/power-socket-jp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/power-socket-uk.svg b/bes_theme/.icons/bes_theme/power-socket-uk.svg deleted file mode 100644 index 9d53812c..00000000 --- a/bes_theme/.icons/bes_theme/power-socket-uk.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/power-socket-us.svg b/bes_theme/.icons/bes_theme/power-socket-us.svg deleted file mode 100644 index f966be2c..00000000 --- a/bes_theme/.icons/bes_theme/power-socket-us.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/power-socket.svg b/bes_theme/.icons/bes_theme/power-socket.svg deleted file mode 100644 index 22d1c2a8..00000000 --- a/bes_theme/.icons/bes_theme/power-socket.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/power-standby.svg b/bes_theme/.icons/bes_theme/power-standby.svg deleted file mode 100644 index a4c0aad0..00000000 --- a/bes_theme/.icons/bes_theme/power-standby.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/power.svg b/bes_theme/.icons/bes_theme/power.svg deleted file mode 100644 index d451ad1c..00000000 --- a/bes_theme/.icons/bes_theme/power.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/powershell.svg b/bes_theme/.icons/bes_theme/powershell.svg deleted file mode 100644 index 25a97344..00000000 --- a/bes_theme/.icons/bes_theme/powershell.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/prescription.svg b/bes_theme/.icons/bes_theme/prescription.svg deleted file mode 100644 index c5589d84..00000000 --- a/bes_theme/.icons/bes_theme/prescription.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/presentation-play.svg b/bes_theme/.icons/bes_theme/presentation-play.svg deleted file mode 100644 index f0b12402..00000000 --- a/bes_theme/.icons/bes_theme/presentation-play.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/presentation.svg b/bes_theme/.icons/bes_theme/presentation.svg deleted file mode 100644 index 67aa2147..00000000 --- a/bes_theme/.icons/bes_theme/presentation.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pretzel.svg b/bes_theme/.icons/bes_theme/pretzel.svg deleted file mode 100644 index d0f7a328..00000000 --- a/bes_theme/.icons/bes_theme/pretzel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/printer-3d-nozzle-alert-outline.svg b/bes_theme/.icons/bes_theme/printer-3d-nozzle-alert-outline.svg deleted file mode 100644 index ca9fa21e..00000000 --- a/bes_theme/.icons/bes_theme/printer-3d-nozzle-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/printer-3d-nozzle-alert.svg b/bes_theme/.icons/bes_theme/printer-3d-nozzle-alert.svg deleted file mode 100644 index 4760a5c7..00000000 --- a/bes_theme/.icons/bes_theme/printer-3d-nozzle-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/printer-3d-nozzle-outline.svg b/bes_theme/.icons/bes_theme/printer-3d-nozzle-outline.svg deleted file mode 100644 index cd1c7d66..00000000 --- a/bes_theme/.icons/bes_theme/printer-3d-nozzle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/printer-3d-nozzle.svg b/bes_theme/.icons/bes_theme/printer-3d-nozzle.svg deleted file mode 100644 index bf907c70..00000000 --- a/bes_theme/.icons/bes_theme/printer-3d-nozzle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/printer-3d.svg b/bes_theme/.icons/bes_theme/printer-3d.svg deleted file mode 100644 index cffa6008..00000000 --- a/bes_theme/.icons/bes_theme/printer-3d.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/printer-alert.svg b/bes_theme/.icons/bes_theme/printer-alert.svg deleted file mode 100644 index b10ff796..00000000 --- a/bes_theme/.icons/bes_theme/printer-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/printer-check.svg b/bes_theme/.icons/bes_theme/printer-check.svg deleted file mode 100644 index 3d554f0e..00000000 --- a/bes_theme/.icons/bes_theme/printer-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/printer-eye.svg b/bes_theme/.icons/bes_theme/printer-eye.svg deleted file mode 100644 index e45b2cb1..00000000 --- a/bes_theme/.icons/bes_theme/printer-eye.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/printer-off.svg b/bes_theme/.icons/bes_theme/printer-off.svg deleted file mode 100644 index 649e48d1..00000000 --- a/bes_theme/.icons/bes_theme/printer-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/printer-pos.svg b/bes_theme/.icons/bes_theme/printer-pos.svg deleted file mode 100644 index 2ddedafd..00000000 --- a/bes_theme/.icons/bes_theme/printer-pos.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/printer-search.svg b/bes_theme/.icons/bes_theme/printer-search.svg deleted file mode 100644 index c8a8fdb6..00000000 --- a/bes_theme/.icons/bes_theme/printer-search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/printer-settings.svg b/bes_theme/.icons/bes_theme/printer-settings.svg deleted file mode 100644 index 57bd6479..00000000 --- a/bes_theme/.icons/bes_theme/printer-settings.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/printer-wireless.svg b/bes_theme/.icons/bes_theme/printer-wireless.svg deleted file mode 100644 index b78c2c3e..00000000 --- a/bes_theme/.icons/bes_theme/printer-wireless.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/printer.svg b/bes_theme/.icons/bes_theme/printer.svg deleted file mode 100644 index 4ba10e41..00000000 --- a/bes_theme/.icons/bes_theme/printer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/priority-high.svg b/bes_theme/.icons/bes_theme/priority-high.svg deleted file mode 100644 index 351d4402..00000000 --- a/bes_theme/.icons/bes_theme/priority-high.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/priority-low.svg b/bes_theme/.icons/bes_theme/priority-low.svg deleted file mode 100644 index ce110bac..00000000 --- a/bes_theme/.icons/bes_theme/priority-low.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/professional-hexagon.svg b/bes_theme/.icons/bes_theme/professional-hexagon.svg deleted file mode 100644 index 669ba882..00000000 --- a/bes_theme/.icons/bes_theme/professional-hexagon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/progress-alert.svg b/bes_theme/.icons/bes_theme/progress-alert.svg deleted file mode 100644 index e2408eec..00000000 --- a/bes_theme/.icons/bes_theme/progress-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/progress-check.svg b/bes_theme/.icons/bes_theme/progress-check.svg deleted file mode 100644 index 6acb9ba7..00000000 --- a/bes_theme/.icons/bes_theme/progress-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/progress-clock.svg b/bes_theme/.icons/bes_theme/progress-clock.svg deleted file mode 100644 index 165b1a12..00000000 --- a/bes_theme/.icons/bes_theme/progress-clock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/progress-close.svg b/bes_theme/.icons/bes_theme/progress-close.svg deleted file mode 100644 index fa984f7b..00000000 --- a/bes_theme/.icons/bes_theme/progress-close.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/progress-download.svg b/bes_theme/.icons/bes_theme/progress-download.svg deleted file mode 100644 index 016dec33..00000000 --- a/bes_theme/.icons/bes_theme/progress-download.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/progress-question.svg b/bes_theme/.icons/bes_theme/progress-question.svg deleted file mode 100644 index 9c2868c2..00000000 --- a/bes_theme/.icons/bes_theme/progress-question.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/progress-upload.svg b/bes_theme/.icons/bes_theme/progress-upload.svg deleted file mode 100644 index c7b17e3c..00000000 --- a/bes_theme/.icons/bes_theme/progress-upload.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/progress-wrench.svg b/bes_theme/.icons/bes_theme/progress-wrench.svg deleted file mode 100644 index 286b6711..00000000 --- a/bes_theme/.icons/bes_theme/progress-wrench.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/projector-screen-outline.svg b/bes_theme/.icons/bes_theme/projector-screen-outline.svg deleted file mode 100644 index 16559fb3..00000000 --- a/bes_theme/.icons/bes_theme/projector-screen-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/projector-screen.svg b/bes_theme/.icons/bes_theme/projector-screen.svg deleted file mode 100644 index b8dc2781..00000000 --- a/bes_theme/.icons/bes_theme/projector-screen.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/projector.svg b/bes_theme/.icons/bes_theme/projector.svg deleted file mode 100644 index 966908fe..00000000 --- a/bes_theme/.icons/bes_theme/projector.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/propane-tank-outline.svg b/bes_theme/.icons/bes_theme/propane-tank-outline.svg deleted file mode 100644 index 7a1197f9..00000000 --- a/bes_theme/.icons/bes_theme/propane-tank-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/propane-tank.svg b/bes_theme/.icons/bes_theme/propane-tank.svg deleted file mode 100644 index 1a4d285f..00000000 --- a/bes_theme/.icons/bes_theme/propane-tank.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/protocol.svg b/bes_theme/.icons/bes_theme/protocol.svg deleted file mode 100644 index 478a14d4..00000000 --- a/bes_theme/.icons/bes_theme/protocol.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/publish.svg b/bes_theme/.icons/bes_theme/publish.svg deleted file mode 100644 index e61c7e51..00000000 --- a/bes_theme/.icons/bes_theme/publish.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pulse.svg b/bes_theme/.icons/bes_theme/pulse.svg deleted file mode 100644 index 94422795..00000000 --- a/bes_theme/.icons/bes_theme/pulse.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pump.svg b/bes_theme/.icons/bes_theme/pump.svg deleted file mode 100644 index 6ec5393b..00000000 --- a/bes_theme/.icons/bes_theme/pump.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/pumpkin.svg b/bes_theme/.icons/bes_theme/pumpkin.svg deleted file mode 100644 index d4137d18..00000000 --- a/bes_theme/.icons/bes_theme/pumpkin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/purse-outline.svg b/bes_theme/.icons/bes_theme/purse-outline.svg deleted file mode 100644 index 72a9c0b8..00000000 --- a/bes_theme/.icons/bes_theme/purse-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/purse.svg b/bes_theme/.icons/bes_theme/purse.svg deleted file mode 100644 index dad18ba9..00000000 --- a/bes_theme/.icons/bes_theme/purse.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/puzzle-check-outline.svg b/bes_theme/.icons/bes_theme/puzzle-check-outline.svg deleted file mode 100644 index cdfd39c1..00000000 --- a/bes_theme/.icons/bes_theme/puzzle-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/puzzle-check.svg b/bes_theme/.icons/bes_theme/puzzle-check.svg deleted file mode 100644 index 75732582..00000000 --- a/bes_theme/.icons/bes_theme/puzzle-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/puzzle-edit-outline.svg b/bes_theme/.icons/bes_theme/puzzle-edit-outline.svg deleted file mode 100644 index 8804cae5..00000000 --- a/bes_theme/.icons/bes_theme/puzzle-edit-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/puzzle-edit.svg b/bes_theme/.icons/bes_theme/puzzle-edit.svg deleted file mode 100644 index eb77e0fa..00000000 --- a/bes_theme/.icons/bes_theme/puzzle-edit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/puzzle-heart-outline.svg b/bes_theme/.icons/bes_theme/puzzle-heart-outline.svg deleted file mode 100644 index 71bd21a5..00000000 --- a/bes_theme/.icons/bes_theme/puzzle-heart-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/puzzle-heart.svg b/bes_theme/.icons/bes_theme/puzzle-heart.svg deleted file mode 100644 index 96d4c5b8..00000000 --- a/bes_theme/.icons/bes_theme/puzzle-heart.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/puzzle-minus-outline.svg b/bes_theme/.icons/bes_theme/puzzle-minus-outline.svg deleted file mode 100644 index 87e3f7f0..00000000 --- a/bes_theme/.icons/bes_theme/puzzle-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/puzzle-minus.svg b/bes_theme/.icons/bes_theme/puzzle-minus.svg deleted file mode 100644 index 7c50dd13..00000000 --- a/bes_theme/.icons/bes_theme/puzzle-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/puzzle-outline.svg b/bes_theme/.icons/bes_theme/puzzle-outline.svg deleted file mode 100644 index bc663678..00000000 --- a/bes_theme/.icons/bes_theme/puzzle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/puzzle-plus-outline.svg b/bes_theme/.icons/bes_theme/puzzle-plus-outline.svg deleted file mode 100644 index 92a3cdef..00000000 --- a/bes_theme/.icons/bes_theme/puzzle-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/puzzle-plus.svg b/bes_theme/.icons/bes_theme/puzzle-plus.svg deleted file mode 100644 index 30eb1e1f..00000000 --- a/bes_theme/.icons/bes_theme/puzzle-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/puzzle-remove-outline.svg b/bes_theme/.icons/bes_theme/puzzle-remove-outline.svg deleted file mode 100644 index e38a0013..00000000 --- a/bes_theme/.icons/bes_theme/puzzle-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/puzzle-remove.svg b/bes_theme/.icons/bes_theme/puzzle-remove.svg deleted file mode 100644 index 3253b668..00000000 --- a/bes_theme/.icons/bes_theme/puzzle-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/puzzle-star-outline.svg b/bes_theme/.icons/bes_theme/puzzle-star-outline.svg deleted file mode 100644 index 8f4dd781..00000000 --- a/bes_theme/.icons/bes_theme/puzzle-star-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/puzzle-star.svg b/bes_theme/.icons/bes_theme/puzzle-star.svg deleted file mode 100644 index 5ca30713..00000000 --- a/bes_theme/.icons/bes_theme/puzzle-star.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/puzzle.svg b/bes_theme/.icons/bes_theme/puzzle.svg deleted file mode 100644 index 6c29e87d..00000000 --- a/bes_theme/.icons/bes_theme/puzzle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/qi.svg b/bes_theme/.icons/bes_theme/qi.svg deleted file mode 100644 index 58d4a9d9..00000000 --- a/bes_theme/.icons/bes_theme/qi.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/qqchat.svg b/bes_theme/.icons/bes_theme/qqchat.svg deleted file mode 100644 index 0a74fec0..00000000 --- a/bes_theme/.icons/bes_theme/qqchat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/qrcode-edit.svg b/bes_theme/.icons/bes_theme/qrcode-edit.svg deleted file mode 100644 index 87185623..00000000 --- a/bes_theme/.icons/bes_theme/qrcode-edit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/qrcode-minus.svg b/bes_theme/.icons/bes_theme/qrcode-minus.svg deleted file mode 100644 index d7e37c8b..00000000 --- a/bes_theme/.icons/bes_theme/qrcode-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/qrcode-plus.svg b/bes_theme/.icons/bes_theme/qrcode-plus.svg deleted file mode 100644 index 7e163fb8..00000000 --- a/bes_theme/.icons/bes_theme/qrcode-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/qrcode-remove.svg b/bes_theme/.icons/bes_theme/qrcode-remove.svg deleted file mode 100644 index 17a65249..00000000 --- a/bes_theme/.icons/bes_theme/qrcode-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/qrcode-scan.svg b/bes_theme/.icons/bes_theme/qrcode-scan.svg deleted file mode 100644 index da0c8da1..00000000 --- a/bes_theme/.icons/bes_theme/qrcode-scan.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/qrcode.svg b/bes_theme/.icons/bes_theme/qrcode.svg deleted file mode 100644 index b2eb371d..00000000 --- a/bes_theme/.icons/bes_theme/qrcode.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/quadcopter.svg b/bes_theme/.icons/bes_theme/quadcopter.svg deleted file mode 100644 index 855eeaeb..00000000 --- a/bes_theme/.icons/bes_theme/quadcopter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/quality-high.svg b/bes_theme/.icons/bes_theme/quality-high.svg deleted file mode 100644 index 75f88b43..00000000 --- a/bes_theme/.icons/bes_theme/quality-high.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/quality-low.svg b/bes_theme/.icons/bes_theme/quality-low.svg deleted file mode 100644 index 9d985342..00000000 --- a/bes_theme/.icons/bes_theme/quality-low.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/quality-medium.svg b/bes_theme/.icons/bes_theme/quality-medium.svg deleted file mode 100644 index 79df1a22..00000000 --- a/bes_theme/.icons/bes_theme/quality-medium.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/quora.svg b/bes_theme/.icons/bes_theme/quora.svg deleted file mode 100644 index ac9707b0..00000000 --- a/bes_theme/.icons/bes_theme/quora.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rabbit.svg b/bes_theme/.icons/bes_theme/rabbit.svg deleted file mode 100644 index 701cb4f7..00000000 --- a/bes_theme/.icons/bes_theme/rabbit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/racing-helmet.svg b/bes_theme/.icons/bes_theme/racing-helmet.svg deleted file mode 100644 index b52e75a3..00000000 --- a/bes_theme/.icons/bes_theme/racing-helmet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/racquetball.svg b/bes_theme/.icons/bes_theme/racquetball.svg deleted file mode 100644 index 60b863fb..00000000 --- a/bes_theme/.icons/bes_theme/racquetball.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/radar.svg b/bes_theme/.icons/bes_theme/radar.svg deleted file mode 100644 index 97d7cf5f..00000000 --- a/bes_theme/.icons/bes_theme/radar.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/radiator-disabled.svg b/bes_theme/.icons/bes_theme/radiator-disabled.svg deleted file mode 100644 index 0edffb2a..00000000 --- a/bes_theme/.icons/bes_theme/radiator-disabled.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/radiator-off.svg b/bes_theme/.icons/bes_theme/radiator-off.svg deleted file mode 100644 index 802a8ee5..00000000 --- a/bes_theme/.icons/bes_theme/radiator-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/radiator.svg b/bes_theme/.icons/bes_theme/radiator.svg deleted file mode 100644 index 3006bd47..00000000 --- a/bes_theme/.icons/bes_theme/radiator.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/radio-am.svg b/bes_theme/.icons/bes_theme/radio-am.svg deleted file mode 100644 index 20dc11f3..00000000 --- a/bes_theme/.icons/bes_theme/radio-am.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/radio-fm.svg b/bes_theme/.icons/bes_theme/radio-fm.svg deleted file mode 100644 index 493a27be..00000000 --- a/bes_theme/.icons/bes_theme/radio-fm.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/radio-handheld.svg b/bes_theme/.icons/bes_theme/radio-handheld.svg deleted file mode 100644 index e1e790b7..00000000 --- a/bes_theme/.icons/bes_theme/radio-handheld.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/radio-off.svg b/bes_theme/.icons/bes_theme/radio-off.svg deleted file mode 100644 index c5d4c907..00000000 --- a/bes_theme/.icons/bes_theme/radio-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/radio-tower.svg b/bes_theme/.icons/bes_theme/radio-tower.svg deleted file mode 100644 index 685bd8fe..00000000 --- a/bes_theme/.icons/bes_theme/radio-tower.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/radio.svg b/bes_theme/.icons/bes_theme/radio.svg deleted file mode 100644 index a8b9baeb..00000000 --- a/bes_theme/.icons/bes_theme/radio.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/radioactive-off.svg b/bes_theme/.icons/bes_theme/radioactive-off.svg deleted file mode 100644 index 0838c8af..00000000 --- a/bes_theme/.icons/bes_theme/radioactive-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/radioactive.svg b/bes_theme/.icons/bes_theme/radioactive.svg deleted file mode 100644 index 52b280cf..00000000 --- a/bes_theme/.icons/bes_theme/radioactive.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/radiobox-blank.svg b/bes_theme/.icons/bes_theme/radiobox-blank.svg deleted file mode 100644 index d16843bb..00000000 --- a/bes_theme/.icons/bes_theme/radiobox-blank.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/radiobox-marked.svg b/bes_theme/.icons/bes_theme/radiobox-marked.svg deleted file mode 100644 index bfce12c8..00000000 --- a/bes_theme/.icons/bes_theme/radiobox-marked.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/radiology-box-outline.svg b/bes_theme/.icons/bes_theme/radiology-box-outline.svg deleted file mode 100644 index 3ee82fa5..00000000 --- a/bes_theme/.icons/bes_theme/radiology-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/radiology-box.svg b/bes_theme/.icons/bes_theme/radiology-box.svg deleted file mode 100644 index 427e6486..00000000 --- a/bes_theme/.icons/bes_theme/radiology-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/radius-outline.svg b/bes_theme/.icons/bes_theme/radius-outline.svg deleted file mode 100644 index 6998485e..00000000 --- a/bes_theme/.icons/bes_theme/radius-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/radius.svg b/bes_theme/.icons/bes_theme/radius.svg deleted file mode 100644 index b4633f10..00000000 --- a/bes_theme/.icons/bes_theme/radius.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/railroad-light.svg b/bes_theme/.icons/bes_theme/railroad-light.svg deleted file mode 100644 index 78643793..00000000 --- a/bes_theme/.icons/bes_theme/railroad-light.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rake.svg b/bes_theme/.icons/bes_theme/rake.svg deleted file mode 100644 index 43749665..00000000 --- a/bes_theme/.icons/bes_theme/rake.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/raspberry-pi.svg b/bes_theme/.icons/bes_theme/raspberry-pi.svg deleted file mode 100644 index 51cb91fc..00000000 --- a/bes_theme/.icons/bes_theme/raspberry-pi.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ray-end-arrow.svg b/bes_theme/.icons/bes_theme/ray-end-arrow.svg deleted file mode 100644 index 2f558178..00000000 --- a/bes_theme/.icons/bes_theme/ray-end-arrow.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ray-end.svg b/bes_theme/.icons/bes_theme/ray-end.svg deleted file mode 100644 index 39682179..00000000 --- a/bes_theme/.icons/bes_theme/ray-end.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ray-start-arrow.svg b/bes_theme/.icons/bes_theme/ray-start-arrow.svg deleted file mode 100644 index 6f5277fe..00000000 --- a/bes_theme/.icons/bes_theme/ray-start-arrow.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ray-start-end.svg b/bes_theme/.icons/bes_theme/ray-start-end.svg deleted file mode 100644 index d4d7a7b7..00000000 --- a/bes_theme/.icons/bes_theme/ray-start-end.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ray-start-vertex-end.svg b/bes_theme/.icons/bes_theme/ray-start-vertex-end.svg deleted file mode 100644 index 26411fbb..00000000 --- a/bes_theme/.icons/bes_theme/ray-start-vertex-end.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ray-start.svg b/bes_theme/.icons/bes_theme/ray-start.svg deleted file mode 100644 index b90a5707..00000000 --- a/bes_theme/.icons/bes_theme/ray-start.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ray-vertex.svg b/bes_theme/.icons/bes_theme/ray-vertex.svg deleted file mode 100644 index 91e8deb2..00000000 --- a/bes_theme/.icons/bes_theme/ray-vertex.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/react.svg b/bes_theme/.icons/bes_theme/react.svg deleted file mode 100644 index 335732a1..00000000 --- a/bes_theme/.icons/bes_theme/react.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/read.svg b/bes_theme/.icons/bes_theme/read.svg deleted file mode 100644 index 2d76f242..00000000 --- a/bes_theme/.icons/bes_theme/read.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/receipt.svg b/bes_theme/.icons/bes_theme/receipt.svg deleted file mode 100644 index f3edd94a..00000000 --- a/bes_theme/.icons/bes_theme/receipt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/record-circle-outline.svg b/bes_theme/.icons/bes_theme/record-circle-outline.svg deleted file mode 100644 index 8321949a..00000000 --- a/bes_theme/.icons/bes_theme/record-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/record-circle.svg b/bes_theme/.icons/bes_theme/record-circle.svg deleted file mode 100644 index bb280fda..00000000 --- a/bes_theme/.icons/bes_theme/record-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/record-player.svg b/bes_theme/.icons/bes_theme/record-player.svg deleted file mode 100644 index 94b1c5dd..00000000 --- a/bes_theme/.icons/bes_theme/record-player.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/record-rec.svg b/bes_theme/.icons/bes_theme/record-rec.svg deleted file mode 100644 index 1fab25fc..00000000 --- a/bes_theme/.icons/bes_theme/record-rec.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/record.svg b/bes_theme/.icons/bes_theme/record.svg deleted file mode 100644 index d9b4ab13..00000000 --- a/bes_theme/.icons/bes_theme/record.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rectangle-outline.svg b/bes_theme/.icons/bes_theme/rectangle-outline.svg deleted file mode 100644 index 3f6119c0..00000000 --- a/bes_theme/.icons/bes_theme/rectangle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rectangle.svg b/bes_theme/.icons/bes_theme/rectangle.svg deleted file mode 100644 index 449383d4..00000000 --- a/bes_theme/.icons/bes_theme/rectangle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/recycle-variant.svg b/bes_theme/.icons/bes_theme/recycle-variant.svg deleted file mode 100644 index ab1f55cc..00000000 --- a/bes_theme/.icons/bes_theme/recycle-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/recycle.svg b/bes_theme/.icons/bes_theme/recycle.svg deleted file mode 100644 index 1f790599..00000000 --- a/bes_theme/.icons/bes_theme/recycle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/reddit.svg b/bes_theme/.icons/bes_theme/reddit.svg deleted file mode 100644 index b7269888..00000000 --- a/bes_theme/.icons/bes_theme/reddit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/redhat.svg b/bes_theme/.icons/bes_theme/redhat.svg deleted file mode 100644 index 254c1bb7..00000000 --- a/bes_theme/.icons/bes_theme/redhat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/redo-variant.svg b/bes_theme/.icons/bes_theme/redo-variant.svg deleted file mode 100644 index 783bd00a..00000000 --- a/bes_theme/.icons/bes_theme/redo-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/redo.svg b/bes_theme/.icons/bes_theme/redo.svg deleted file mode 100644 index 018c6d1a..00000000 --- a/bes_theme/.icons/bes_theme/redo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/reflect-horizontal.svg b/bes_theme/.icons/bes_theme/reflect-horizontal.svg deleted file mode 100644 index d32f1d57..00000000 --- a/bes_theme/.icons/bes_theme/reflect-horizontal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/reflect-vertical.svg b/bes_theme/.icons/bes_theme/reflect-vertical.svg deleted file mode 100644 index a961504e..00000000 --- a/bes_theme/.icons/bes_theme/reflect-vertical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/refresh-circle.svg b/bes_theme/.icons/bes_theme/refresh-circle.svg deleted file mode 100644 index 0d6b1146..00000000 --- a/bes_theme/.icons/bes_theme/refresh-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/refresh.svg b/bes_theme/.icons/bes_theme/refresh.svg deleted file mode 100644 index 1e7dadb0..00000000 --- a/bes_theme/.icons/bes_theme/refresh.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/regex.svg b/bes_theme/.icons/bes_theme/regex.svg deleted file mode 100644 index 6dc681f7..00000000 --- a/bes_theme/.icons/bes_theme/regex.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/registered-trademark.svg b/bes_theme/.icons/bes_theme/registered-trademark.svg deleted file mode 100644 index f76b9b2d..00000000 --- a/bes_theme/.icons/bes_theme/registered-trademark.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/reiterate.svg b/bes_theme/.icons/bes_theme/reiterate.svg deleted file mode 100644 index c30c11b3..00000000 --- a/bes_theme/.icons/bes_theme/reiterate.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-many-to-many.svg b/bes_theme/.icons/bes_theme/relation-many-to-many.svg deleted file mode 100644 index 3c594030..00000000 --- a/bes_theme/.icons/bes_theme/relation-many-to-many.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-many-to-one-or-many.svg b/bes_theme/.icons/bes_theme/relation-many-to-one-or-many.svg deleted file mode 100644 index e6b654be..00000000 --- a/bes_theme/.icons/bes_theme/relation-many-to-one-or-many.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-many-to-one.svg b/bes_theme/.icons/bes_theme/relation-many-to-one.svg deleted file mode 100644 index 52754048..00000000 --- a/bes_theme/.icons/bes_theme/relation-many-to-one.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-many-to-only-one.svg b/bes_theme/.icons/bes_theme/relation-many-to-only-one.svg deleted file mode 100644 index eb471388..00000000 --- a/bes_theme/.icons/bes_theme/relation-many-to-only-one.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-many-to-zero-or-many.svg b/bes_theme/.icons/bes_theme/relation-many-to-zero-or-many.svg deleted file mode 100644 index 642c7a2e..00000000 --- a/bes_theme/.icons/bes_theme/relation-many-to-zero-or-many.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-many-to-zero-or-one.svg b/bes_theme/.icons/bes_theme/relation-many-to-zero-or-one.svg deleted file mode 100644 index b8e82cd0..00000000 --- a/bes_theme/.icons/bes_theme/relation-many-to-zero-or-one.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-one-or-many-to-many.svg b/bes_theme/.icons/bes_theme/relation-one-or-many-to-many.svg deleted file mode 100644 index d99beab0..00000000 --- a/bes_theme/.icons/bes_theme/relation-one-or-many-to-many.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-one-or-many-to-one-or-many.svg b/bes_theme/.icons/bes_theme/relation-one-or-many-to-one-or-many.svg deleted file mode 100644 index 61a3257c..00000000 --- a/bes_theme/.icons/bes_theme/relation-one-or-many-to-one-or-many.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-one-or-many-to-one.svg b/bes_theme/.icons/bes_theme/relation-one-or-many-to-one.svg deleted file mode 100644 index b8013309..00000000 --- a/bes_theme/.icons/bes_theme/relation-one-or-many-to-one.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-one-or-many-to-only-one.svg b/bes_theme/.icons/bes_theme/relation-one-or-many-to-only-one.svg deleted file mode 100644 index 2d7ff397..00000000 --- a/bes_theme/.icons/bes_theme/relation-one-or-many-to-only-one.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-one-or-many-to-zero-or-many.svg b/bes_theme/.icons/bes_theme/relation-one-or-many-to-zero-or-many.svg deleted file mode 100644 index 4fd62f00..00000000 --- a/bes_theme/.icons/bes_theme/relation-one-or-many-to-zero-or-many.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-one-or-many-to-zero-or-one.svg b/bes_theme/.icons/bes_theme/relation-one-or-many-to-zero-or-one.svg deleted file mode 100644 index ebbbecac..00000000 --- a/bes_theme/.icons/bes_theme/relation-one-or-many-to-zero-or-one.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-one-to-many.svg b/bes_theme/.icons/bes_theme/relation-one-to-many.svg deleted file mode 100644 index 13ed530f..00000000 --- a/bes_theme/.icons/bes_theme/relation-one-to-many.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-one-to-one-or-many.svg b/bes_theme/.icons/bes_theme/relation-one-to-one-or-many.svg deleted file mode 100644 index 9fe6f775..00000000 --- a/bes_theme/.icons/bes_theme/relation-one-to-one-or-many.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-one-to-one.svg b/bes_theme/.icons/bes_theme/relation-one-to-one.svg deleted file mode 100644 index 2369630d..00000000 --- a/bes_theme/.icons/bes_theme/relation-one-to-one.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-one-to-only-one.svg b/bes_theme/.icons/bes_theme/relation-one-to-only-one.svg deleted file mode 100644 index f7a24089..00000000 --- a/bes_theme/.icons/bes_theme/relation-one-to-only-one.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-one-to-zero-or-many.svg b/bes_theme/.icons/bes_theme/relation-one-to-zero-or-many.svg deleted file mode 100644 index ba5e43af..00000000 --- a/bes_theme/.icons/bes_theme/relation-one-to-zero-or-many.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-one-to-zero-or-one.svg b/bes_theme/.icons/bes_theme/relation-one-to-zero-or-one.svg deleted file mode 100644 index 53bde904..00000000 --- a/bes_theme/.icons/bes_theme/relation-one-to-zero-or-one.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-only-one-to-many.svg b/bes_theme/.icons/bes_theme/relation-only-one-to-many.svg deleted file mode 100644 index e6a244cd..00000000 --- a/bes_theme/.icons/bes_theme/relation-only-one-to-many.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-only-one-to-one-or-many.svg b/bes_theme/.icons/bes_theme/relation-only-one-to-one-or-many.svg deleted file mode 100644 index 4e0e3ae6..00000000 --- a/bes_theme/.icons/bes_theme/relation-only-one-to-one-or-many.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-only-one-to-one.svg b/bes_theme/.icons/bes_theme/relation-only-one-to-one.svg deleted file mode 100644 index a6bf7315..00000000 --- a/bes_theme/.icons/bes_theme/relation-only-one-to-one.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-only-one-to-only-one.svg b/bes_theme/.icons/bes_theme/relation-only-one-to-only-one.svg deleted file mode 100644 index aaf44d38..00000000 --- a/bes_theme/.icons/bes_theme/relation-only-one-to-only-one.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-only-one-to-zero-or-many.svg b/bes_theme/.icons/bes_theme/relation-only-one-to-zero-or-many.svg deleted file mode 100644 index a8fc8341..00000000 --- a/bes_theme/.icons/bes_theme/relation-only-one-to-zero-or-many.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-only-one-to-zero-or-one.svg b/bes_theme/.icons/bes_theme/relation-only-one-to-zero-or-one.svg deleted file mode 100644 index 2fd6c6bd..00000000 --- a/bes_theme/.icons/bes_theme/relation-only-one-to-zero-or-one.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-zero-or-many-to-many.svg b/bes_theme/.icons/bes_theme/relation-zero-or-many-to-many.svg deleted file mode 100644 index 77e428e8..00000000 --- a/bes_theme/.icons/bes_theme/relation-zero-or-many-to-many.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-zero-or-many-to-one-or-many.svg b/bes_theme/.icons/bes_theme/relation-zero-or-many-to-one-or-many.svg deleted file mode 100644 index f626938e..00000000 --- a/bes_theme/.icons/bes_theme/relation-zero-or-many-to-one-or-many.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-zero-or-many-to-one.svg b/bes_theme/.icons/bes_theme/relation-zero-or-many-to-one.svg deleted file mode 100644 index 6d3825cb..00000000 --- a/bes_theme/.icons/bes_theme/relation-zero-or-many-to-one.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-zero-or-many-to-only-one.svg b/bes_theme/.icons/bes_theme/relation-zero-or-many-to-only-one.svg deleted file mode 100644 index 1b6e8616..00000000 --- a/bes_theme/.icons/bes_theme/relation-zero-or-many-to-only-one.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-zero-or-many-to-zero-or-many.svg b/bes_theme/.icons/bes_theme/relation-zero-or-many-to-zero-or-many.svg deleted file mode 100644 index 2d9b09a8..00000000 --- a/bes_theme/.icons/bes_theme/relation-zero-or-many-to-zero-or-many.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-zero-or-many-to-zero-or-one.svg b/bes_theme/.icons/bes_theme/relation-zero-or-many-to-zero-or-one.svg deleted file mode 100644 index fdb8468c..00000000 --- a/bes_theme/.icons/bes_theme/relation-zero-or-many-to-zero-or-one.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-zero-or-one-to-many.svg b/bes_theme/.icons/bes_theme/relation-zero-or-one-to-many.svg deleted file mode 100644 index 70bafa68..00000000 --- a/bes_theme/.icons/bes_theme/relation-zero-or-one-to-many.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-zero-or-one-to-one-or-many.svg b/bes_theme/.icons/bes_theme/relation-zero-or-one-to-one-or-many.svg deleted file mode 100644 index 059d9d21..00000000 --- a/bes_theme/.icons/bes_theme/relation-zero-or-one-to-one-or-many.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-zero-or-one-to-one.svg b/bes_theme/.icons/bes_theme/relation-zero-or-one-to-one.svg deleted file mode 100644 index 05d585d1..00000000 --- a/bes_theme/.icons/bes_theme/relation-zero-or-one-to-one.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-zero-or-one-to-only-one.svg b/bes_theme/.icons/bes_theme/relation-zero-or-one-to-only-one.svg deleted file mode 100644 index 916b80e8..00000000 --- a/bes_theme/.icons/bes_theme/relation-zero-or-one-to-only-one.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-zero-or-one-to-zero-or-many.svg b/bes_theme/.icons/bes_theme/relation-zero-or-one-to-zero-or-many.svg deleted file mode 100644 index a284ad00..00000000 --- a/bes_theme/.icons/bes_theme/relation-zero-or-one-to-zero-or-many.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relation-zero-or-one-to-zero-or-one.svg b/bes_theme/.icons/bes_theme/relation-zero-or-one-to-zero-or-one.svg deleted file mode 100644 index 9f70226d..00000000 --- a/bes_theme/.icons/bes_theme/relation-zero-or-one-to-zero-or-one.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/relative-scale.svg b/bes_theme/.icons/bes_theme/relative-scale.svg deleted file mode 100644 index fba7d0dd..00000000 --- a/bes_theme/.icons/bes_theme/relative-scale.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/reload-alert.svg b/bes_theme/.icons/bes_theme/reload-alert.svg deleted file mode 100644 index e8a48f73..00000000 --- a/bes_theme/.icons/bes_theme/reload-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/reload.svg b/bes_theme/.icons/bes_theme/reload.svg deleted file mode 100644 index d40e8963..00000000 --- a/bes_theme/.icons/bes_theme/reload.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/reminder.svg b/bes_theme/.icons/bes_theme/reminder.svg deleted file mode 100644 index b870d025..00000000 --- a/bes_theme/.icons/bes_theme/reminder.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/remote-desktop.svg b/bes_theme/.icons/bes_theme/remote-desktop.svg deleted file mode 100644 index e148f175..00000000 --- a/bes_theme/.icons/bes_theme/remote-desktop.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/remote-off.svg b/bes_theme/.icons/bes_theme/remote-off.svg deleted file mode 100644 index 128bf5ba..00000000 --- a/bes_theme/.icons/bes_theme/remote-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/remote-tv-off.svg b/bes_theme/.icons/bes_theme/remote-tv-off.svg deleted file mode 100644 index 11b0e4d6..00000000 --- a/bes_theme/.icons/bes_theme/remote-tv-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/remote-tv.svg b/bes_theme/.icons/bes_theme/remote-tv.svg deleted file mode 100644 index f2db6d41..00000000 --- a/bes_theme/.icons/bes_theme/remote-tv.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/remote.svg b/bes_theme/.icons/bes_theme/remote.svg deleted file mode 100644 index 16d6e58f..00000000 --- a/bes_theme/.icons/bes_theme/remote.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rename-box.svg b/bes_theme/.icons/bes_theme/rename-box.svg deleted file mode 100644 index 9af05e23..00000000 --- a/bes_theme/.icons/bes_theme/rename-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/reorder-horizontal.svg b/bes_theme/.icons/bes_theme/reorder-horizontal.svg deleted file mode 100644 index 20c571c4..00000000 --- a/bes_theme/.icons/bes_theme/reorder-horizontal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/reorder-vertical.svg b/bes_theme/.icons/bes_theme/reorder-vertical.svg deleted file mode 100644 index 2809fa69..00000000 --- a/bes_theme/.icons/bes_theme/reorder-vertical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/repeat-off.svg b/bes_theme/.icons/bes_theme/repeat-off.svg deleted file mode 100644 index e9e88c58..00000000 --- a/bes_theme/.icons/bes_theme/repeat-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/repeat-once.svg b/bes_theme/.icons/bes_theme/repeat-once.svg deleted file mode 100644 index 17bb9f5f..00000000 --- a/bes_theme/.icons/bes_theme/repeat-once.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/repeat.svg b/bes_theme/.icons/bes_theme/repeat.svg deleted file mode 100644 index 1e08e98a..00000000 --- a/bes_theme/.icons/bes_theme/repeat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/replay.svg b/bes_theme/.icons/bes_theme/replay.svg deleted file mode 100644 index 1b2631a4..00000000 --- a/bes_theme/.icons/bes_theme/replay.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/reply-all-outline.svg b/bes_theme/.icons/bes_theme/reply-all-outline.svg deleted file mode 100644 index 3128415e..00000000 --- a/bes_theme/.icons/bes_theme/reply-all-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/reply-all.svg b/bes_theme/.icons/bes_theme/reply-all.svg deleted file mode 100644 index 5da4611c..00000000 --- a/bes_theme/.icons/bes_theme/reply-all.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/reply-circle.svg b/bes_theme/.icons/bes_theme/reply-circle.svg deleted file mode 100644 index 7ca840d6..00000000 --- a/bes_theme/.icons/bes_theme/reply-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/reply-outline.svg b/bes_theme/.icons/bes_theme/reply-outline.svg deleted file mode 100644 index 7778b14a..00000000 --- a/bes_theme/.icons/bes_theme/reply-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/reply.svg b/bes_theme/.icons/bes_theme/reply.svg deleted file mode 100644 index 52a1a736..00000000 --- a/bes_theme/.icons/bes_theme/reply.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/reproduction.svg b/bes_theme/.icons/bes_theme/reproduction.svg deleted file mode 100644 index e7d9558c..00000000 --- a/bes_theme/.icons/bes_theme/reproduction.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/resistor-nodes.svg b/bes_theme/.icons/bes_theme/resistor-nodes.svg deleted file mode 100644 index 7e057752..00000000 --- a/bes_theme/.icons/bes_theme/resistor-nodes.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/resistor.svg b/bes_theme/.icons/bes_theme/resistor.svg deleted file mode 100644 index a4de02c8..00000000 --- a/bes_theme/.icons/bes_theme/resistor.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/resize-bottom-right.svg b/bes_theme/.icons/bes_theme/resize-bottom-right.svg deleted file mode 100644 index 6bfd4676..00000000 --- a/bes_theme/.icons/bes_theme/resize-bottom-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/resize.svg b/bes_theme/.icons/bes_theme/resize.svg deleted file mode 100644 index f3834199..00000000 --- a/bes_theme/.icons/bes_theme/resize.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/responsive.svg b/bes_theme/.icons/bes_theme/responsive.svg deleted file mode 100644 index dad9dee2..00000000 --- a/bes_theme/.icons/bes_theme/responsive.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/restart-alert.svg b/bes_theme/.icons/bes_theme/restart-alert.svg deleted file mode 100644 index 705bd717..00000000 --- a/bes_theme/.icons/bes_theme/restart-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/restart-off.svg b/bes_theme/.icons/bes_theme/restart-off.svg deleted file mode 100644 index f9f53402..00000000 --- a/bes_theme/.icons/bes_theme/restart-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/restart.svg b/bes_theme/.icons/bes_theme/restart.svg deleted file mode 100644 index d2e4f9e7..00000000 --- a/bes_theme/.icons/bes_theme/restart.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/restore-alert.svg b/bes_theme/.icons/bes_theme/restore-alert.svg deleted file mode 100644 index 71166568..00000000 --- a/bes_theme/.icons/bes_theme/restore-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/restore.svg b/bes_theme/.icons/bes_theme/restore.svg deleted file mode 100644 index 566afbfa..00000000 --- a/bes_theme/.icons/bes_theme/restore.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rewind-10.svg b/bes_theme/.icons/bes_theme/rewind-10.svg deleted file mode 100644 index a633e2a4..00000000 --- a/bes_theme/.icons/bes_theme/rewind-10.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rewind-30.svg b/bes_theme/.icons/bes_theme/rewind-30.svg deleted file mode 100644 index b85ad935..00000000 --- a/bes_theme/.icons/bes_theme/rewind-30.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rewind-5.svg b/bes_theme/.icons/bes_theme/rewind-5.svg deleted file mode 100644 index a0be1402..00000000 --- a/bes_theme/.icons/bes_theme/rewind-5.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rewind-60.svg b/bes_theme/.icons/bes_theme/rewind-60.svg deleted file mode 100644 index 79ac84d9..00000000 --- a/bes_theme/.icons/bes_theme/rewind-60.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rewind-outline.svg b/bes_theme/.icons/bes_theme/rewind-outline.svg deleted file mode 100644 index 1af953b9..00000000 --- a/bes_theme/.icons/bes_theme/rewind-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rewind.svg b/bes_theme/.icons/bes_theme/rewind.svg deleted file mode 100644 index 96d7de0a..00000000 --- a/bes_theme/.icons/bes_theme/rewind.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rhombus-medium-outline.svg b/bes_theme/.icons/bes_theme/rhombus-medium-outline.svg deleted file mode 100644 index 7df972a2..00000000 --- a/bes_theme/.icons/bes_theme/rhombus-medium-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rhombus-medium.svg b/bes_theme/.icons/bes_theme/rhombus-medium.svg deleted file mode 100644 index ddd39d40..00000000 --- a/bes_theme/.icons/bes_theme/rhombus-medium.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rhombus-outline.svg b/bes_theme/.icons/bes_theme/rhombus-outline.svg deleted file mode 100644 index a7baf876..00000000 --- a/bes_theme/.icons/bes_theme/rhombus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rhombus-split-outline.svg b/bes_theme/.icons/bes_theme/rhombus-split-outline.svg deleted file mode 100644 index 0c1ae7a7..00000000 --- a/bes_theme/.icons/bes_theme/rhombus-split-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rhombus-split.svg b/bes_theme/.icons/bes_theme/rhombus-split.svg deleted file mode 100644 index cd4ac8b7..00000000 --- a/bes_theme/.icons/bes_theme/rhombus-split.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rhombus.svg b/bes_theme/.icons/bes_theme/rhombus.svg deleted file mode 100644 index d69c63e3..00000000 --- a/bes_theme/.icons/bes_theme/rhombus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ribbon.svg b/bes_theme/.icons/bes_theme/ribbon.svg deleted file mode 100644 index 3c24671c..00000000 --- a/bes_theme/.icons/bes_theme/ribbon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rice.svg b/bes_theme/.icons/bes_theme/rice.svg deleted file mode 100644 index 67c3c07f..00000000 --- a/bes_theme/.icons/bes_theme/rice.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rickshaw-electric.svg b/bes_theme/.icons/bes_theme/rickshaw-electric.svg deleted file mode 100644 index bb4a6220..00000000 --- a/bes_theme/.icons/bes_theme/rickshaw-electric.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rickshaw.svg b/bes_theme/.icons/bes_theme/rickshaw.svg deleted file mode 100644 index 6873363a..00000000 --- a/bes_theme/.icons/bes_theme/rickshaw.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ring.svg b/bes_theme/.icons/bes_theme/ring.svg deleted file mode 100644 index 8a233fef..00000000 --- a/bes_theme/.icons/bes_theme/ring.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rivet.svg b/bes_theme/.icons/bes_theme/rivet.svg deleted file mode 100644 index 38b62312..00000000 --- a/bes_theme/.icons/bes_theme/rivet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/road-variant.svg b/bes_theme/.icons/bes_theme/road-variant.svg deleted file mode 100644 index b4592991..00000000 --- a/bes_theme/.icons/bes_theme/road-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/road.svg b/bes_theme/.icons/bes_theme/road.svg deleted file mode 100644 index 5f203919..00000000 --- a/bes_theme/.icons/bes_theme/road.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/robber.svg b/bes_theme/.icons/bes_theme/robber.svg deleted file mode 100644 index 6dbe2875..00000000 --- a/bes_theme/.icons/bes_theme/robber.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/robot-angry-outline.svg b/bes_theme/.icons/bes_theme/robot-angry-outline.svg deleted file mode 100644 index 7f2e1f47..00000000 --- a/bes_theme/.icons/bes_theme/robot-angry-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/robot-angry.svg b/bes_theme/.icons/bes_theme/robot-angry.svg deleted file mode 100644 index 2dd73f09..00000000 --- a/bes_theme/.icons/bes_theme/robot-angry.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/robot-confused-outline.svg b/bes_theme/.icons/bes_theme/robot-confused-outline.svg deleted file mode 100644 index 5564e50c..00000000 --- a/bes_theme/.icons/bes_theme/robot-confused-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/robot-confused.svg b/bes_theme/.icons/bes_theme/robot-confused.svg deleted file mode 100644 index a1e4ff27..00000000 --- a/bes_theme/.icons/bes_theme/robot-confused.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/robot-dead-outline.svg b/bes_theme/.icons/bes_theme/robot-dead-outline.svg deleted file mode 100644 index ee3579e4..00000000 --- a/bes_theme/.icons/bes_theme/robot-dead-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/robot-dead.svg b/bes_theme/.icons/bes_theme/robot-dead.svg deleted file mode 100644 index 04006082..00000000 --- a/bes_theme/.icons/bes_theme/robot-dead.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/robot-excited-outline.svg b/bes_theme/.icons/bes_theme/robot-excited-outline.svg deleted file mode 100644 index 6512834c..00000000 --- a/bes_theme/.icons/bes_theme/robot-excited-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/robot-excited.svg b/bes_theme/.icons/bes_theme/robot-excited.svg deleted file mode 100644 index b2eef02d..00000000 --- a/bes_theme/.icons/bes_theme/robot-excited.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/robot-happy-outline.svg b/bes_theme/.icons/bes_theme/robot-happy-outline.svg deleted file mode 100644 index ee053cd9..00000000 --- a/bes_theme/.icons/bes_theme/robot-happy-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/robot-happy.svg b/bes_theme/.icons/bes_theme/robot-happy.svg deleted file mode 100644 index 5a7a1f9d..00000000 --- a/bes_theme/.icons/bes_theme/robot-happy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/robot-industrial.svg b/bes_theme/.icons/bes_theme/robot-industrial.svg deleted file mode 100644 index c4c9496d..00000000 --- a/bes_theme/.icons/bes_theme/robot-industrial.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/robot-love-outline.svg b/bes_theme/.icons/bes_theme/robot-love-outline.svg deleted file mode 100644 index 21566063..00000000 --- a/bes_theme/.icons/bes_theme/robot-love-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/robot-love.svg b/bes_theme/.icons/bes_theme/robot-love.svg deleted file mode 100644 index 619a2802..00000000 --- a/bes_theme/.icons/bes_theme/robot-love.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/robot-mower-outline.svg b/bes_theme/.icons/bes_theme/robot-mower-outline.svg deleted file mode 100644 index 0a465285..00000000 --- a/bes_theme/.icons/bes_theme/robot-mower-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/robot-mower.svg b/bes_theme/.icons/bes_theme/robot-mower.svg deleted file mode 100644 index 965480a4..00000000 --- a/bes_theme/.icons/bes_theme/robot-mower.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/robot-off-outline.svg b/bes_theme/.icons/bes_theme/robot-off-outline.svg deleted file mode 100644 index 4cdee03e..00000000 --- a/bes_theme/.icons/bes_theme/robot-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/robot-off.svg b/bes_theme/.icons/bes_theme/robot-off.svg deleted file mode 100644 index d32a2e40..00000000 --- a/bes_theme/.icons/bes_theme/robot-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/robot-outline.svg b/bes_theme/.icons/bes_theme/robot-outline.svg deleted file mode 100644 index 0addae83..00000000 --- a/bes_theme/.icons/bes_theme/robot-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/robot-vacuum-variant.svg b/bes_theme/.icons/bes_theme/robot-vacuum-variant.svg deleted file mode 100644 index e817157d..00000000 --- a/bes_theme/.icons/bes_theme/robot-vacuum-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/robot-vacuum.svg b/bes_theme/.icons/bes_theme/robot-vacuum.svg deleted file mode 100644 index f8c0f4ab..00000000 --- a/bes_theme/.icons/bes_theme/robot-vacuum.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/robot.svg b/bes_theme/.icons/bes_theme/robot.svg deleted file mode 100644 index 75b9d955..00000000 --- a/bes_theme/.icons/bes_theme/robot.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rocket-launch-outline.svg b/bes_theme/.icons/bes_theme/rocket-launch-outline.svg deleted file mode 100644 index 6adce9ee..00000000 --- a/bes_theme/.icons/bes_theme/rocket-launch-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rocket-launch.svg b/bes_theme/.icons/bes_theme/rocket-launch.svg deleted file mode 100644 index 953d71cd..00000000 --- a/bes_theme/.icons/bes_theme/rocket-launch.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rocket-outline.svg b/bes_theme/.icons/bes_theme/rocket-outline.svg deleted file mode 100644 index 4eb60c41..00000000 --- a/bes_theme/.icons/bes_theme/rocket-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rocket.svg b/bes_theme/.icons/bes_theme/rocket.svg deleted file mode 100644 index 289623f1..00000000 --- a/bes_theme/.icons/bes_theme/rocket.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rodent.svg b/bes_theme/.icons/bes_theme/rodent.svg deleted file mode 100644 index 0cbd26a3..00000000 --- a/bes_theme/.icons/bes_theme/rodent.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/roller-skate-off.svg b/bes_theme/.icons/bes_theme/roller-skate-off.svg deleted file mode 100644 index 9605f0d7..00000000 --- a/bes_theme/.icons/bes_theme/roller-skate-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/roller-skate.svg b/bes_theme/.icons/bes_theme/roller-skate.svg deleted file mode 100644 index 522b1b02..00000000 --- a/bes_theme/.icons/bes_theme/roller-skate.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rollerblade-off.svg b/bes_theme/.icons/bes_theme/rollerblade-off.svg deleted file mode 100644 index a601f640..00000000 --- a/bes_theme/.icons/bes_theme/rollerblade-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rollerblade.svg b/bes_theme/.icons/bes_theme/rollerblade.svg deleted file mode 100644 index c6d9cc47..00000000 --- a/bes_theme/.icons/bes_theme/rollerblade.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rollupjs.svg b/bes_theme/.icons/bes_theme/rollupjs.svg deleted file mode 100644 index 3336b39b..00000000 --- a/bes_theme/.icons/bes_theme/rollupjs.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/roman-numeral-1.svg b/bes_theme/.icons/bes_theme/roman-numeral-1.svg deleted file mode 100644 index a02ab545..00000000 --- a/bes_theme/.icons/bes_theme/roman-numeral-1.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/roman-numeral-10.svg b/bes_theme/.icons/bes_theme/roman-numeral-10.svg deleted file mode 100644 index ca6a7fc5..00000000 --- a/bes_theme/.icons/bes_theme/roman-numeral-10.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/roman-numeral-2.svg b/bes_theme/.icons/bes_theme/roman-numeral-2.svg deleted file mode 100644 index 01d170de..00000000 --- a/bes_theme/.icons/bes_theme/roman-numeral-2.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/roman-numeral-3.svg b/bes_theme/.icons/bes_theme/roman-numeral-3.svg deleted file mode 100644 index ca65c84b..00000000 --- a/bes_theme/.icons/bes_theme/roman-numeral-3.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/roman-numeral-4.svg b/bes_theme/.icons/bes_theme/roman-numeral-4.svg deleted file mode 100644 index 78e1d307..00000000 --- a/bes_theme/.icons/bes_theme/roman-numeral-4.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/roman-numeral-5.svg b/bes_theme/.icons/bes_theme/roman-numeral-5.svg deleted file mode 100644 index e266e605..00000000 --- a/bes_theme/.icons/bes_theme/roman-numeral-5.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/roman-numeral-6.svg b/bes_theme/.icons/bes_theme/roman-numeral-6.svg deleted file mode 100644 index a47593fb..00000000 --- a/bes_theme/.icons/bes_theme/roman-numeral-6.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/roman-numeral-7.svg b/bes_theme/.icons/bes_theme/roman-numeral-7.svg deleted file mode 100644 index eeeefb62..00000000 --- a/bes_theme/.icons/bes_theme/roman-numeral-7.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/roman-numeral-8.svg b/bes_theme/.icons/bes_theme/roman-numeral-8.svg deleted file mode 100644 index 4a534cca..00000000 --- a/bes_theme/.icons/bes_theme/roman-numeral-8.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/roman-numeral-9.svg b/bes_theme/.icons/bes_theme/roman-numeral-9.svg deleted file mode 100644 index 86c87a0c..00000000 --- a/bes_theme/.icons/bes_theme/roman-numeral-9.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/room-service-outline.svg b/bes_theme/.icons/bes_theme/room-service-outline.svg deleted file mode 100644 index d28e6872..00000000 --- a/bes_theme/.icons/bes_theme/room-service-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/room-service.svg b/bes_theme/.icons/bes_theme/room-service.svg deleted file mode 100644 index 147150d9..00000000 --- a/bes_theme/.icons/bes_theme/room-service.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rotate-3d-variant.svg b/bes_theme/.icons/bes_theme/rotate-3d-variant.svg deleted file mode 100644 index fe0e1e25..00000000 --- a/bes_theme/.icons/bes_theme/rotate-3d-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rotate-3d.svg b/bes_theme/.icons/bes_theme/rotate-3d.svg deleted file mode 100644 index f3256860..00000000 --- a/bes_theme/.icons/bes_theme/rotate-3d.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rotate-left-variant.svg b/bes_theme/.icons/bes_theme/rotate-left-variant.svg deleted file mode 100644 index b837a8b9..00000000 --- a/bes_theme/.icons/bes_theme/rotate-left-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rotate-left.svg b/bes_theme/.icons/bes_theme/rotate-left.svg deleted file mode 100644 index 626064cf..00000000 --- a/bes_theme/.icons/bes_theme/rotate-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rotate-orbit.svg b/bes_theme/.icons/bes_theme/rotate-orbit.svg deleted file mode 100644 index 4c8ec8da..00000000 --- a/bes_theme/.icons/bes_theme/rotate-orbit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rotate-right-variant.svg b/bes_theme/.icons/bes_theme/rotate-right-variant.svg deleted file mode 100644 index 910573a9..00000000 --- a/bes_theme/.icons/bes_theme/rotate-right-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rotate-right.svg b/bes_theme/.icons/bes_theme/rotate-right.svg deleted file mode 100644 index 24c15623..00000000 --- a/bes_theme/.icons/bes_theme/rotate-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rounded-corner.svg b/bes_theme/.icons/bes_theme/rounded-corner.svg deleted file mode 100644 index 4082bbeb..00000000 --- a/bes_theme/.icons/bes_theme/rounded-corner.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/router-network.svg b/bes_theme/.icons/bes_theme/router-network.svg deleted file mode 100644 index 81743a42..00000000 --- a/bes_theme/.icons/bes_theme/router-network.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/router-wireless-off.svg b/bes_theme/.icons/bes_theme/router-wireless-off.svg deleted file mode 100644 index 9b842dcf..00000000 --- a/bes_theme/.icons/bes_theme/router-wireless-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/router-wireless-settings.svg b/bes_theme/.icons/bes_theme/router-wireless-settings.svg deleted file mode 100644 index 34bab202..00000000 --- a/bes_theme/.icons/bes_theme/router-wireless-settings.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/router-wireless.svg b/bes_theme/.icons/bes_theme/router-wireless.svg deleted file mode 100644 index 0273f0c9..00000000 --- a/bes_theme/.icons/bes_theme/router-wireless.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/router.svg b/bes_theme/.icons/bes_theme/router.svg deleted file mode 100644 index c0f1837b..00000000 --- a/bes_theme/.icons/bes_theme/router.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/routes-clock.svg b/bes_theme/.icons/bes_theme/routes-clock.svg deleted file mode 100644 index fc018f2c..00000000 --- a/bes_theme/.icons/bes_theme/routes-clock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/routes.svg b/bes_theme/.icons/bes_theme/routes.svg deleted file mode 100644 index b09ad04e..00000000 --- a/bes_theme/.icons/bes_theme/routes.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rowing.svg b/bes_theme/.icons/bes_theme/rowing.svg deleted file mode 100644 index 73762521..00000000 --- a/bes_theme/.icons/bes_theme/rowing.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rss-box.svg b/bes_theme/.icons/bes_theme/rss-box.svg deleted file mode 100644 index 29fd1ff0..00000000 --- a/bes_theme/.icons/bes_theme/rss-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rss-off.svg b/bes_theme/.icons/bes_theme/rss-off.svg deleted file mode 100644 index fbcea298..00000000 --- a/bes_theme/.icons/bes_theme/rss-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rss.svg b/bes_theme/.icons/bes_theme/rss.svg deleted file mode 100644 index 0b27a8db..00000000 --- a/bes_theme/.icons/bes_theme/rss.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rug.svg b/bes_theme/.icons/bes_theme/rug.svg deleted file mode 100644 index 8dbb82b6..00000000 --- a/bes_theme/.icons/bes_theme/rug.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rugby.svg b/bes_theme/.icons/bes_theme/rugby.svg deleted file mode 100644 index 4c63f39e..00000000 --- a/bes_theme/.icons/bes_theme/rugby.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ruler-square-compass.svg b/bes_theme/.icons/bes_theme/ruler-square-compass.svg deleted file mode 100644 index 4cffaa95..00000000 --- a/bes_theme/.icons/bes_theme/ruler-square-compass.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ruler-square.svg b/bes_theme/.icons/bes_theme/ruler-square.svg deleted file mode 100644 index 29a33682..00000000 --- a/bes_theme/.icons/bes_theme/ruler-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ruler.svg b/bes_theme/.icons/bes_theme/ruler.svg deleted file mode 100644 index 9ba3e36f..00000000 --- a/bes_theme/.icons/bes_theme/ruler.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/run-fast.svg b/bes_theme/.icons/bes_theme/run-fast.svg deleted file mode 100644 index 9b39f372..00000000 --- a/bes_theme/.icons/bes_theme/run-fast.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/run.svg b/bes_theme/.icons/bes_theme/run.svg deleted file mode 100644 index cefb0fe7..00000000 --- a/bes_theme/.icons/bes_theme/run.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/rv-truck.svg b/bes_theme/.icons/bes_theme/rv-truck.svg deleted file mode 100644 index 1860bc30..00000000 --- a/bes_theme/.icons/bes_theme/rv-truck.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sack-percent.svg b/bes_theme/.icons/bes_theme/sack-percent.svg deleted file mode 100644 index e0c23692..00000000 --- a/bes_theme/.icons/bes_theme/sack-percent.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sack.svg b/bes_theme/.icons/bes_theme/sack.svg deleted file mode 100644 index b7161158..00000000 --- a/bes_theme/.icons/bes_theme/sack.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/safe-square-outline.svg b/bes_theme/.icons/bes_theme/safe-square-outline.svg deleted file mode 100644 index 83682344..00000000 --- a/bes_theme/.icons/bes_theme/safe-square-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/safe-square.svg b/bes_theme/.icons/bes_theme/safe-square.svg deleted file mode 100644 index 2b6ec405..00000000 --- a/bes_theme/.icons/bes_theme/safe-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/safe.svg b/bes_theme/.icons/bes_theme/safe.svg deleted file mode 100644 index ae573d26..00000000 --- a/bes_theme/.icons/bes_theme/safe.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/safety-goggles.svg b/bes_theme/.icons/bes_theme/safety-goggles.svg deleted file mode 100644 index 439a792d..00000000 --- a/bes_theme/.icons/bes_theme/safety-goggles.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sail-boat.svg b/bes_theme/.icons/bes_theme/sail-boat.svg deleted file mode 100644 index 37e488f3..00000000 --- a/bes_theme/.icons/bes_theme/sail-boat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sale.svg b/bes_theme/.icons/bes_theme/sale.svg deleted file mode 100644 index 77adeefe..00000000 --- a/bes_theme/.icons/bes_theme/sale.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/salesforce.svg b/bes_theme/.icons/bes_theme/salesforce.svg deleted file mode 100644 index 67c29675..00000000 --- a/bes_theme/.icons/bes_theme/salesforce.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sass.svg b/bes_theme/.icons/bes_theme/sass.svg deleted file mode 100644 index 2ae96feb..00000000 --- a/bes_theme/.icons/bes_theme/sass.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/satellite-uplink.svg b/bes_theme/.icons/bes_theme/satellite-uplink.svg deleted file mode 100644 index ab8be63c..00000000 --- a/bes_theme/.icons/bes_theme/satellite-uplink.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/satellite-variant.svg b/bes_theme/.icons/bes_theme/satellite-variant.svg deleted file mode 100644 index 1c550277..00000000 --- a/bes_theme/.icons/bes_theme/satellite-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/satellite.svg b/bes_theme/.icons/bes_theme/satellite.svg deleted file mode 100644 index 831b18f9..00000000 --- a/bes_theme/.icons/bes_theme/satellite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sausage.svg b/bes_theme/.icons/bes_theme/sausage.svg deleted file mode 100644 index 8cb0937c..00000000 --- a/bes_theme/.icons/bes_theme/sausage.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/saw-blade.svg b/bes_theme/.icons/bes_theme/saw-blade.svg deleted file mode 100644 index de593ff1..00000000 --- a/bes_theme/.icons/bes_theme/saw-blade.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sawtooth-wave.svg b/bes_theme/.icons/bes_theme/sawtooth-wave.svg deleted file mode 100644 index 80768546..00000000 --- a/bes_theme/.icons/bes_theme/sawtooth-wave.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/saxophone.svg b/bes_theme/.icons/bes_theme/saxophone.svg deleted file mode 100644 index 49ae624f..00000000 --- a/bes_theme/.icons/bes_theme/saxophone.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/scale-balance.svg b/bes_theme/.icons/bes_theme/scale-balance.svg deleted file mode 100644 index 41e34f9c..00000000 --- a/bes_theme/.icons/bes_theme/scale-balance.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/scale-bathroom.svg b/bes_theme/.icons/bes_theme/scale-bathroom.svg deleted file mode 100644 index e02e7c9e..00000000 --- a/bes_theme/.icons/bes_theme/scale-bathroom.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/scale-off.svg b/bes_theme/.icons/bes_theme/scale-off.svg deleted file mode 100644 index 7ad25201..00000000 --- a/bes_theme/.icons/bes_theme/scale-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/scale.svg b/bes_theme/.icons/bes_theme/scale.svg deleted file mode 100644 index be7ba753..00000000 --- a/bes_theme/.icons/bes_theme/scale.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/scan-helper.svg b/bes_theme/.icons/bes_theme/scan-helper.svg deleted file mode 100644 index c65b8ed5..00000000 --- a/bes_theme/.icons/bes_theme/scan-helper.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/scanner-off.svg b/bes_theme/.icons/bes_theme/scanner-off.svg deleted file mode 100644 index e777fa68..00000000 --- a/bes_theme/.icons/bes_theme/scanner-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/scanner.svg b/bes_theme/.icons/bes_theme/scanner.svg deleted file mode 100644 index 00614047..00000000 --- a/bes_theme/.icons/bes_theme/scanner.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/scatter-plot-outline.svg b/bes_theme/.icons/bes_theme/scatter-plot-outline.svg deleted file mode 100644 index 959c1acb..00000000 --- a/bes_theme/.icons/bes_theme/scatter-plot-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/scatter-plot.svg b/bes_theme/.icons/bes_theme/scatter-plot.svg deleted file mode 100644 index d6656cdd..00000000 --- a/bes_theme/.icons/bes_theme/scatter-plot.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/school-outline.svg b/bes_theme/.icons/bes_theme/school-outline.svg deleted file mode 100644 index 6d37c2b4..00000000 --- a/bes_theme/.icons/bes_theme/school-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/school.svg b/bes_theme/.icons/bes_theme/school.svg deleted file mode 100644 index c9187cc8..00000000 --- a/bes_theme/.icons/bes_theme/school.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/scissors-cutting.svg b/bes_theme/.icons/bes_theme/scissors-cutting.svg deleted file mode 100644 index 769b46d1..00000000 --- a/bes_theme/.icons/bes_theme/scissors-cutting.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/scooter-electric.svg b/bes_theme/.icons/bes_theme/scooter-electric.svg deleted file mode 100644 index 6cc94d4b..00000000 --- a/bes_theme/.icons/bes_theme/scooter-electric.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/scooter.svg b/bes_theme/.icons/bes_theme/scooter.svg deleted file mode 100644 index c6bac4f1..00000000 --- a/bes_theme/.icons/bes_theme/scooter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/scoreboard-outline.svg b/bes_theme/.icons/bes_theme/scoreboard-outline.svg deleted file mode 100644 index c31cc2a3..00000000 --- a/bes_theme/.icons/bes_theme/scoreboard-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/scoreboard.svg b/bes_theme/.icons/bes_theme/scoreboard.svg deleted file mode 100644 index 7684ec9d..00000000 --- a/bes_theme/.icons/bes_theme/scoreboard.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/screen-rotation-lock.svg b/bes_theme/.icons/bes_theme/screen-rotation-lock.svg deleted file mode 100644 index 3ab1da93..00000000 --- a/bes_theme/.icons/bes_theme/screen-rotation-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/screen-rotation.svg b/bes_theme/.icons/bes_theme/screen-rotation.svg deleted file mode 100644 index 17200181..00000000 --- a/bes_theme/.icons/bes_theme/screen-rotation.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/screw-flat-top.svg b/bes_theme/.icons/bes_theme/screw-flat-top.svg deleted file mode 100644 index 88c866d6..00000000 --- a/bes_theme/.icons/bes_theme/screw-flat-top.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/screw-lag.svg b/bes_theme/.icons/bes_theme/screw-lag.svg deleted file mode 100644 index 853c3f11..00000000 --- a/bes_theme/.icons/bes_theme/screw-lag.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/screw-machine-flat-top.svg b/bes_theme/.icons/bes_theme/screw-machine-flat-top.svg deleted file mode 100644 index 4f3d439d..00000000 --- a/bes_theme/.icons/bes_theme/screw-machine-flat-top.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/screw-machine-round-top.svg b/bes_theme/.icons/bes_theme/screw-machine-round-top.svg deleted file mode 100644 index c2f66e32..00000000 --- a/bes_theme/.icons/bes_theme/screw-machine-round-top.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/screw-round-top.svg b/bes_theme/.icons/bes_theme/screw-round-top.svg deleted file mode 100644 index 474fa767..00000000 --- a/bes_theme/.icons/bes_theme/screw-round-top.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/screwdriver.svg b/bes_theme/.icons/bes_theme/screwdriver.svg deleted file mode 100644 index f31f878b..00000000 --- a/bes_theme/.icons/bes_theme/screwdriver.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/script-outline.svg b/bes_theme/.icons/bes_theme/script-outline.svg deleted file mode 100644 index 90080900..00000000 --- a/bes_theme/.icons/bes_theme/script-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/script-text-key-outline.svg b/bes_theme/.icons/bes_theme/script-text-key-outline.svg deleted file mode 100644 index 6eac2020..00000000 --- a/bes_theme/.icons/bes_theme/script-text-key-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/script-text-key.svg b/bes_theme/.icons/bes_theme/script-text-key.svg deleted file mode 100644 index 51bea6de..00000000 --- a/bes_theme/.icons/bes_theme/script-text-key.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/script-text-outline.svg b/bes_theme/.icons/bes_theme/script-text-outline.svg deleted file mode 100644 index 1029ea75..00000000 --- a/bes_theme/.icons/bes_theme/script-text-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/script-text-play-outline.svg b/bes_theme/.icons/bes_theme/script-text-play-outline.svg deleted file mode 100644 index f604868a..00000000 --- a/bes_theme/.icons/bes_theme/script-text-play-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/script-text-play.svg b/bes_theme/.icons/bes_theme/script-text-play.svg deleted file mode 100644 index a436846f..00000000 --- a/bes_theme/.icons/bes_theme/script-text-play.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/script-text.svg b/bes_theme/.icons/bes_theme/script-text.svg deleted file mode 100644 index 02f7286e..00000000 --- a/bes_theme/.icons/bes_theme/script-text.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/script.svg b/bes_theme/.icons/bes_theme/script.svg deleted file mode 100644 index 2cab7ded..00000000 --- a/bes_theme/.icons/bes_theme/script.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sd.svg b/bes_theme/.icons/bes_theme/sd.svg deleted file mode 100644 index 811d5234..00000000 --- a/bes_theme/.icons/bes_theme/sd.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/seal-variant.svg b/bes_theme/.icons/bes_theme/seal-variant.svg deleted file mode 100644 index ea728ddd..00000000 --- a/bes_theme/.icons/bes_theme/seal-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/seal.svg b/bes_theme/.icons/bes_theme/seal.svg deleted file mode 100644 index 434139a9..00000000 --- a/bes_theme/.icons/bes_theme/seal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/search-web.svg b/bes_theme/.icons/bes_theme/search-web.svg deleted file mode 100644 index d6805ac2..00000000 --- a/bes_theme/.icons/bes_theme/search-web.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/seat-flat-angled.svg b/bes_theme/.icons/bes_theme/seat-flat-angled.svg deleted file mode 100644 index 161a899e..00000000 --- a/bes_theme/.icons/bes_theme/seat-flat-angled.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/seat-flat.svg b/bes_theme/.icons/bes_theme/seat-flat.svg deleted file mode 100644 index 653a1d58..00000000 --- a/bes_theme/.icons/bes_theme/seat-flat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/seat-individual-suite.svg b/bes_theme/.icons/bes_theme/seat-individual-suite.svg deleted file mode 100644 index c53285f5..00000000 --- a/bes_theme/.icons/bes_theme/seat-individual-suite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/seat-legroom-extra.svg b/bes_theme/.icons/bes_theme/seat-legroom-extra.svg deleted file mode 100644 index 7ff49a31..00000000 --- a/bes_theme/.icons/bes_theme/seat-legroom-extra.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/seat-legroom-normal.svg b/bes_theme/.icons/bes_theme/seat-legroom-normal.svg deleted file mode 100644 index 13dc2243..00000000 --- a/bes_theme/.icons/bes_theme/seat-legroom-normal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/seat-legroom-reduced.svg b/bes_theme/.icons/bes_theme/seat-legroom-reduced.svg deleted file mode 100644 index 6b8a644d..00000000 --- a/bes_theme/.icons/bes_theme/seat-legroom-reduced.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/seat-outline.svg b/bes_theme/.icons/bes_theme/seat-outline.svg deleted file mode 100644 index bfa1fd1e..00000000 --- a/bes_theme/.icons/bes_theme/seat-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/seat-passenger.svg b/bes_theme/.icons/bes_theme/seat-passenger.svg deleted file mode 100644 index cd8781ef..00000000 --- a/bes_theme/.icons/bes_theme/seat-passenger.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/seat-recline-extra.svg b/bes_theme/.icons/bes_theme/seat-recline-extra.svg deleted file mode 100644 index cd073f47..00000000 --- a/bes_theme/.icons/bes_theme/seat-recline-extra.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/seat-recline-normal.svg b/bes_theme/.icons/bes_theme/seat-recline-normal.svg deleted file mode 100644 index 2b3ca1a4..00000000 --- a/bes_theme/.icons/bes_theme/seat-recline-normal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/seat.svg b/bes_theme/.icons/bes_theme/seat.svg deleted file mode 100644 index d9a7e7ea..00000000 --- a/bes_theme/.icons/bes_theme/seat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/seatbelt.svg b/bes_theme/.icons/bes_theme/seatbelt.svg deleted file mode 100644 index 0924d2f8..00000000 --- a/bes_theme/.icons/bes_theme/seatbelt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/security-network.svg b/bes_theme/.icons/bes_theme/security-network.svg deleted file mode 100644 index 039c8581..00000000 --- a/bes_theme/.icons/bes_theme/security-network.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/security.svg b/bes_theme/.icons/bes_theme/security.svg deleted file mode 100644 index 1074ad00..00000000 --- a/bes_theme/.icons/bes_theme/security.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/seed-off-outline.svg b/bes_theme/.icons/bes_theme/seed-off-outline.svg deleted file mode 100644 index a6754ce6..00000000 --- a/bes_theme/.icons/bes_theme/seed-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/seed-off.svg b/bes_theme/.icons/bes_theme/seed-off.svg deleted file mode 100644 index 8d5e6eaa..00000000 --- a/bes_theme/.icons/bes_theme/seed-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/seed-outline.svg b/bes_theme/.icons/bes_theme/seed-outline.svg deleted file mode 100644 index 76ca2698..00000000 --- a/bes_theme/.icons/bes_theme/seed-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/seed.svg b/bes_theme/.icons/bes_theme/seed.svg deleted file mode 100644 index 004f4b64..00000000 --- a/bes_theme/.icons/bes_theme/seed.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/seesaw.svg b/bes_theme/.icons/bes_theme/seesaw.svg deleted file mode 100644 index 60b1f655..00000000 --- a/bes_theme/.icons/bes_theme/seesaw.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/segment.svg b/bes_theme/.icons/bes_theme/segment.svg deleted file mode 100644 index d654143d..00000000 --- a/bes_theme/.icons/bes_theme/segment.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/select-all.svg b/bes_theme/.icons/bes_theme/select-all.svg deleted file mode 100644 index d8a79d17..00000000 --- a/bes_theme/.icons/bes_theme/select-all.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/select-color.svg b/bes_theme/.icons/bes_theme/select-color.svg deleted file mode 100644 index 2e5413fe..00000000 --- a/bes_theme/.icons/bes_theme/select-color.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/select-compare.svg b/bes_theme/.icons/bes_theme/select-compare.svg deleted file mode 100644 index 192d918d..00000000 --- a/bes_theme/.icons/bes_theme/select-compare.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/select-drag.svg b/bes_theme/.icons/bes_theme/select-drag.svg deleted file mode 100644 index d80f9fff..00000000 --- a/bes_theme/.icons/bes_theme/select-drag.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/select-group.svg b/bes_theme/.icons/bes_theme/select-group.svg deleted file mode 100644 index 5a611916..00000000 --- a/bes_theme/.icons/bes_theme/select-group.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/select-inverse.svg b/bes_theme/.icons/bes_theme/select-inverse.svg deleted file mode 100644 index aeafbe9a..00000000 --- a/bes_theme/.icons/bes_theme/select-inverse.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/select-marker.svg b/bes_theme/.icons/bes_theme/select-marker.svg deleted file mode 100644 index 4618acc6..00000000 --- a/bes_theme/.icons/bes_theme/select-marker.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/select-multiple-marker.svg b/bes_theme/.icons/bes_theme/select-multiple-marker.svg deleted file mode 100644 index 2ce1971d..00000000 --- a/bes_theme/.icons/bes_theme/select-multiple-marker.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/select-multiple.svg b/bes_theme/.icons/bes_theme/select-multiple.svg deleted file mode 100644 index fd24d039..00000000 --- a/bes_theme/.icons/bes_theme/select-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/select-off.svg b/bes_theme/.icons/bes_theme/select-off.svg deleted file mode 100644 index a0704263..00000000 --- a/bes_theme/.icons/bes_theme/select-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/select-place.svg b/bes_theme/.icons/bes_theme/select-place.svg deleted file mode 100644 index 118302c1..00000000 --- a/bes_theme/.icons/bes_theme/select-place.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/select-search.svg b/bes_theme/.icons/bes_theme/select-search.svg deleted file mode 100644 index bf2f133a..00000000 --- a/bes_theme/.icons/bes_theme/select-search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/select.svg b/bes_theme/.icons/bes_theme/select.svg deleted file mode 100644 index 9e99b9ef..00000000 --- a/bes_theme/.icons/bes_theme/select.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/selection-drag.svg b/bes_theme/.icons/bes_theme/selection-drag.svg deleted file mode 100644 index 443b939c..00000000 --- a/bes_theme/.icons/bes_theme/selection-drag.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/selection-ellipse-arrow-inside.svg b/bes_theme/.icons/bes_theme/selection-ellipse-arrow-inside.svg deleted file mode 100644 index b29bf424..00000000 --- a/bes_theme/.icons/bes_theme/selection-ellipse-arrow-inside.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/selection-ellipse.svg b/bes_theme/.icons/bes_theme/selection-ellipse.svg deleted file mode 100644 index 1bf3c5a0..00000000 --- a/bes_theme/.icons/bes_theme/selection-ellipse.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/selection-marker.svg b/bes_theme/.icons/bes_theme/selection-marker.svg deleted file mode 100644 index fc1748cc..00000000 --- a/bes_theme/.icons/bes_theme/selection-marker.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/selection-multiple-marker.svg b/bes_theme/.icons/bes_theme/selection-multiple-marker.svg deleted file mode 100644 index c0071187..00000000 --- a/bes_theme/.icons/bes_theme/selection-multiple-marker.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/selection-multiple.svg b/bes_theme/.icons/bes_theme/selection-multiple.svg deleted file mode 100644 index 78d4f81f..00000000 --- a/bes_theme/.icons/bes_theme/selection-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/selection-off.svg b/bes_theme/.icons/bes_theme/selection-off.svg deleted file mode 100644 index d5debfb8..00000000 --- a/bes_theme/.icons/bes_theme/selection-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/selection-search.svg b/bes_theme/.icons/bes_theme/selection-search.svg deleted file mode 100644 index a3cef299..00000000 --- a/bes_theme/.icons/bes_theme/selection-search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/selection.svg b/bes_theme/.icons/bes_theme/selection.svg deleted file mode 100644 index 0bc28f22..00000000 --- a/bes_theme/.icons/bes_theme/selection.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/semantic-web.svg b/bes_theme/.icons/bes_theme/semantic-web.svg deleted file mode 100644 index 800e89ce..00000000 --- a/bes_theme/.icons/bes_theme/semantic-web.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/send-check-outline.svg b/bes_theme/.icons/bes_theme/send-check-outline.svg deleted file mode 100644 index 0e2187e1..00000000 --- a/bes_theme/.icons/bes_theme/send-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/send-check.svg b/bes_theme/.icons/bes_theme/send-check.svg deleted file mode 100644 index 4e871c97..00000000 --- a/bes_theme/.icons/bes_theme/send-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/send-circle-outline.svg b/bes_theme/.icons/bes_theme/send-circle-outline.svg deleted file mode 100644 index 9391ca57..00000000 --- a/bes_theme/.icons/bes_theme/send-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/send-circle.svg b/bes_theme/.icons/bes_theme/send-circle.svg deleted file mode 100644 index 4d9f7579..00000000 --- a/bes_theme/.icons/bes_theme/send-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/send-clock-outline.svg b/bes_theme/.icons/bes_theme/send-clock-outline.svg deleted file mode 100644 index 7af6df6c..00000000 --- a/bes_theme/.icons/bes_theme/send-clock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/send-clock.svg b/bes_theme/.icons/bes_theme/send-clock.svg deleted file mode 100644 index ea0c127f..00000000 --- a/bes_theme/.icons/bes_theme/send-clock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/send-lock-outline.svg b/bes_theme/.icons/bes_theme/send-lock-outline.svg deleted file mode 100644 index 29901d11..00000000 --- a/bes_theme/.icons/bes_theme/send-lock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/send-lock.svg b/bes_theme/.icons/bes_theme/send-lock.svg deleted file mode 100644 index a8d608c3..00000000 --- a/bes_theme/.icons/bes_theme/send-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/send-outline.svg b/bes_theme/.icons/bes_theme/send-outline.svg deleted file mode 100644 index c8e52d1e..00000000 --- a/bes_theme/.icons/bes_theme/send-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/send.svg b/bes_theme/.icons/bes_theme/send.svg deleted file mode 100644 index d4eeaa70..00000000 --- a/bes_theme/.icons/bes_theme/send.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/serial-port.svg b/bes_theme/.icons/bes_theme/serial-port.svg deleted file mode 100644 index 749e9a8a..00000000 --- a/bes_theme/.icons/bes_theme/serial-port.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/server-minus.svg b/bes_theme/.icons/bes_theme/server-minus.svg deleted file mode 100644 index b80e10ca..00000000 --- a/bes_theme/.icons/bes_theme/server-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/server-network-off.svg b/bes_theme/.icons/bes_theme/server-network-off.svg deleted file mode 100644 index 32ffc48e..00000000 --- a/bes_theme/.icons/bes_theme/server-network-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/server-network.svg b/bes_theme/.icons/bes_theme/server-network.svg deleted file mode 100644 index 7f177f59..00000000 --- a/bes_theme/.icons/bes_theme/server-network.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/server-off.svg b/bes_theme/.icons/bes_theme/server-off.svg deleted file mode 100644 index a50eedca..00000000 --- a/bes_theme/.icons/bes_theme/server-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/server-plus.svg b/bes_theme/.icons/bes_theme/server-plus.svg deleted file mode 100644 index 41e52332..00000000 --- a/bes_theme/.icons/bes_theme/server-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/server-remove.svg b/bes_theme/.icons/bes_theme/server-remove.svg deleted file mode 100644 index 6554edfe..00000000 --- a/bes_theme/.icons/bes_theme/server-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/server-security.svg b/bes_theme/.icons/bes_theme/server-security.svg deleted file mode 100644 index 95886fd9..00000000 --- a/bes_theme/.icons/bes_theme/server-security.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/server.svg b/bes_theme/.icons/bes_theme/server.svg deleted file mode 100644 index 1fedc2ad..00000000 --- a/bes_theme/.icons/bes_theme/server.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/set-all.svg b/bes_theme/.icons/bes_theme/set-all.svg deleted file mode 100644 index ae1a035d..00000000 --- a/bes_theme/.icons/bes_theme/set-all.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/set-center-right.svg b/bes_theme/.icons/bes_theme/set-center-right.svg deleted file mode 100644 index dcf0f872..00000000 --- a/bes_theme/.icons/bes_theme/set-center-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/set-center.svg b/bes_theme/.icons/bes_theme/set-center.svg deleted file mode 100644 index fd088d82..00000000 --- a/bes_theme/.icons/bes_theme/set-center.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/set-left-center.svg b/bes_theme/.icons/bes_theme/set-left-center.svg deleted file mode 100644 index d0b060b7..00000000 --- a/bes_theme/.icons/bes_theme/set-left-center.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/set-left-right.svg b/bes_theme/.icons/bes_theme/set-left-right.svg deleted file mode 100644 index 1e3bf955..00000000 --- a/bes_theme/.icons/bes_theme/set-left-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/set-left.svg b/bes_theme/.icons/bes_theme/set-left.svg deleted file mode 100644 index feb630e1..00000000 --- a/bes_theme/.icons/bes_theme/set-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/set-merge.svg b/bes_theme/.icons/bes_theme/set-merge.svg deleted file mode 100644 index 183152eb..00000000 --- a/bes_theme/.icons/bes_theme/set-merge.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/set-none.svg b/bes_theme/.icons/bes_theme/set-none.svg deleted file mode 100644 index ef7f81bc..00000000 --- a/bes_theme/.icons/bes_theme/set-none.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/set-right.svg b/bes_theme/.icons/bes_theme/set-right.svg deleted file mode 100644 index 118f14b5..00000000 --- a/bes_theme/.icons/bes_theme/set-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/set-split.svg b/bes_theme/.icons/bes_theme/set-split.svg deleted file mode 100644 index 900be4c6..00000000 --- a/bes_theme/.icons/bes_theme/set-split.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/set-square.svg b/bes_theme/.icons/bes_theme/set-square.svg deleted file mode 100644 index e2ac583a..00000000 --- a/bes_theme/.icons/bes_theme/set-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/set-top-box.svg b/bes_theme/.icons/bes_theme/set-top-box.svg deleted file mode 100644 index 046c1f53..00000000 --- a/bes_theme/.icons/bes_theme/set-top-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/settings-helper.svg b/bes_theme/.icons/bes_theme/settings-helper.svg deleted file mode 100644 index 4dcf4378..00000000 --- a/bes_theme/.icons/bes_theme/settings-helper.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shaker-outline.svg b/bes_theme/.icons/bes_theme/shaker-outline.svg deleted file mode 100644 index 7b969e87..00000000 --- a/bes_theme/.icons/bes_theme/shaker-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shaker.svg b/bes_theme/.icons/bes_theme/shaker.svg deleted file mode 100644 index b6c9f669..00000000 --- a/bes_theme/.icons/bes_theme/shaker.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shape-circle-plus.svg b/bes_theme/.icons/bes_theme/shape-circle-plus.svg deleted file mode 100644 index 867a2dd7..00000000 --- a/bes_theme/.icons/bes_theme/shape-circle-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shape-outline.svg b/bes_theme/.icons/bes_theme/shape-outline.svg deleted file mode 100644 index 3e6a1ff9..00000000 --- a/bes_theme/.icons/bes_theme/shape-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shape-oval-plus.svg b/bes_theme/.icons/bes_theme/shape-oval-plus.svg deleted file mode 100644 index 772d55ce..00000000 --- a/bes_theme/.icons/bes_theme/shape-oval-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shape-plus.svg b/bes_theme/.icons/bes_theme/shape-plus.svg deleted file mode 100644 index 9f3d0a82..00000000 --- a/bes_theme/.icons/bes_theme/shape-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shape-polygon-plus.svg b/bes_theme/.icons/bes_theme/shape-polygon-plus.svg deleted file mode 100644 index 566c4269..00000000 --- a/bes_theme/.icons/bes_theme/shape-polygon-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shape-rectangle-plus.svg b/bes_theme/.icons/bes_theme/shape-rectangle-plus.svg deleted file mode 100644 index 2e538b45..00000000 --- a/bes_theme/.icons/bes_theme/shape-rectangle-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shape-square-plus.svg b/bes_theme/.icons/bes_theme/shape-square-plus.svg deleted file mode 100644 index 80d8ef11..00000000 --- a/bes_theme/.icons/bes_theme/shape-square-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shape-square-rounded-plus.svg b/bes_theme/.icons/bes_theme/shape-square-rounded-plus.svg deleted file mode 100644 index 47b85d10..00000000 --- a/bes_theme/.icons/bes_theme/shape-square-rounded-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shape.svg b/bes_theme/.icons/bes_theme/shape.svg deleted file mode 100644 index 13a9e756..00000000 --- a/bes_theme/.icons/bes_theme/shape.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/share-all-outline.svg b/bes_theme/.icons/bes_theme/share-all-outline.svg deleted file mode 100644 index 3dc60e89..00000000 --- a/bes_theme/.icons/bes_theme/share-all-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/share-all.svg b/bes_theme/.icons/bes_theme/share-all.svg deleted file mode 100644 index 6112c6a1..00000000 --- a/bes_theme/.icons/bes_theme/share-all.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/share-circle.svg b/bes_theme/.icons/bes_theme/share-circle.svg deleted file mode 100644 index 29f3a487..00000000 --- a/bes_theme/.icons/bes_theme/share-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/share-off-outline.svg b/bes_theme/.icons/bes_theme/share-off-outline.svg deleted file mode 100644 index 8674014e..00000000 --- a/bes_theme/.icons/bes_theme/share-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/share-off.svg b/bes_theme/.icons/bes_theme/share-off.svg deleted file mode 100644 index ee8737db..00000000 --- a/bes_theme/.icons/bes_theme/share-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/share-outline.svg b/bes_theme/.icons/bes_theme/share-outline.svg deleted file mode 100644 index c9545b22..00000000 --- a/bes_theme/.icons/bes_theme/share-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/share-variant-outline.svg b/bes_theme/.icons/bes_theme/share-variant-outline.svg deleted file mode 100644 index 9747cdeb..00000000 --- a/bes_theme/.icons/bes_theme/share-variant-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/share-variant.svg b/bes_theme/.icons/bes_theme/share-variant.svg deleted file mode 100644 index 826a24fa..00000000 --- a/bes_theme/.icons/bes_theme/share-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/share.svg b/bes_theme/.icons/bes_theme/share.svg deleted file mode 100644 index 08a7d506..00000000 --- a/bes_theme/.icons/bes_theme/share.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shark-fin-outline.svg b/bes_theme/.icons/bes_theme/shark-fin-outline.svg deleted file mode 100644 index bc89a752..00000000 --- a/bes_theme/.icons/bes_theme/shark-fin-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shark-fin.svg b/bes_theme/.icons/bes_theme/shark-fin.svg deleted file mode 100644 index f573a0ab..00000000 --- a/bes_theme/.icons/bes_theme/shark-fin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sheep.svg b/bes_theme/.icons/bes_theme/sheep.svg deleted file mode 100644 index 0a2df9c5..00000000 --- a/bes_theme/.icons/bes_theme/sheep.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-account-outline.svg b/bes_theme/.icons/bes_theme/shield-account-outline.svg deleted file mode 100644 index 7ca10ab6..00000000 --- a/bes_theme/.icons/bes_theme/shield-account-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-account-variant-outline.svg b/bes_theme/.icons/bes_theme/shield-account-variant-outline.svg deleted file mode 100644 index df5cb79c..00000000 --- a/bes_theme/.icons/bes_theme/shield-account-variant-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-account-variant.svg b/bes_theme/.icons/bes_theme/shield-account-variant.svg deleted file mode 100644 index b44d56fe..00000000 --- a/bes_theme/.icons/bes_theme/shield-account-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-account.svg b/bes_theme/.icons/bes_theme/shield-account.svg deleted file mode 100644 index 5b025adf..00000000 --- a/bes_theme/.icons/bes_theme/shield-account.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-airplane-outline.svg b/bes_theme/.icons/bes_theme/shield-airplane-outline.svg deleted file mode 100644 index 10ea8c89..00000000 --- a/bes_theme/.icons/bes_theme/shield-airplane-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-airplane.svg b/bes_theme/.icons/bes_theme/shield-airplane.svg deleted file mode 100644 index 3c09830f..00000000 --- a/bes_theme/.icons/bes_theme/shield-airplane.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-alert-outline.svg b/bes_theme/.icons/bes_theme/shield-alert-outline.svg deleted file mode 100644 index 17476946..00000000 --- a/bes_theme/.icons/bes_theme/shield-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-alert.svg b/bes_theme/.icons/bes_theme/shield-alert.svg deleted file mode 100644 index 13c3b143..00000000 --- a/bes_theme/.icons/bes_theme/shield-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-bug-outline.svg b/bes_theme/.icons/bes_theme/shield-bug-outline.svg deleted file mode 100644 index 19e43b2d..00000000 --- a/bes_theme/.icons/bes_theme/shield-bug-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-bug.svg b/bes_theme/.icons/bes_theme/shield-bug.svg deleted file mode 100644 index d1635465..00000000 --- a/bes_theme/.icons/bes_theme/shield-bug.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-car.svg b/bes_theme/.icons/bes_theme/shield-car.svg deleted file mode 100644 index edb923d6..00000000 --- a/bes_theme/.icons/bes_theme/shield-car.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-check-outline.svg b/bes_theme/.icons/bes_theme/shield-check-outline.svg deleted file mode 100644 index b33676cc..00000000 --- a/bes_theme/.icons/bes_theme/shield-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-check.svg b/bes_theme/.icons/bes_theme/shield-check.svg deleted file mode 100644 index 6dcb92de..00000000 --- a/bes_theme/.icons/bes_theme/shield-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-cross-outline.svg b/bes_theme/.icons/bes_theme/shield-cross-outline.svg deleted file mode 100644 index 907ba479..00000000 --- a/bes_theme/.icons/bes_theme/shield-cross-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-cross.svg b/bes_theme/.icons/bes_theme/shield-cross.svg deleted file mode 100644 index 2c160ac1..00000000 --- a/bes_theme/.icons/bes_theme/shield-cross.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-edit-outline.svg b/bes_theme/.icons/bes_theme/shield-edit-outline.svg deleted file mode 100644 index c703ad8c..00000000 --- a/bes_theme/.icons/bes_theme/shield-edit-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-edit.svg b/bes_theme/.icons/bes_theme/shield-edit.svg deleted file mode 100644 index 18905b65..00000000 --- a/bes_theme/.icons/bes_theme/shield-edit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-half-full.svg b/bes_theme/.icons/bes_theme/shield-half-full.svg deleted file mode 100644 index 29fba730..00000000 --- a/bes_theme/.icons/bes_theme/shield-half-full.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-half.svg b/bes_theme/.icons/bes_theme/shield-half.svg deleted file mode 100644 index bb9c79fd..00000000 --- a/bes_theme/.icons/bes_theme/shield-half.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-home-outline.svg b/bes_theme/.icons/bes_theme/shield-home-outline.svg deleted file mode 100644 index 8bebc3c3..00000000 --- a/bes_theme/.icons/bes_theme/shield-home-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-home.svg b/bes_theme/.icons/bes_theme/shield-home.svg deleted file mode 100644 index 28bed8b0..00000000 --- a/bes_theme/.icons/bes_theme/shield-home.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-key-outline.svg b/bes_theme/.icons/bes_theme/shield-key-outline.svg deleted file mode 100644 index a120ecbf..00000000 --- a/bes_theme/.icons/bes_theme/shield-key-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-key.svg b/bes_theme/.icons/bes_theme/shield-key.svg deleted file mode 100644 index 408ab63e..00000000 --- a/bes_theme/.icons/bes_theme/shield-key.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-link-variant-outline.svg b/bes_theme/.icons/bes_theme/shield-link-variant-outline.svg deleted file mode 100644 index ade8145b..00000000 --- a/bes_theme/.icons/bes_theme/shield-link-variant-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-link-variant.svg b/bes_theme/.icons/bes_theme/shield-link-variant.svg deleted file mode 100644 index 7cdb2385..00000000 --- a/bes_theme/.icons/bes_theme/shield-link-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-lock-outline.svg b/bes_theme/.icons/bes_theme/shield-lock-outline.svg deleted file mode 100644 index 5f75c814..00000000 --- a/bes_theme/.icons/bes_theme/shield-lock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-lock.svg b/bes_theme/.icons/bes_theme/shield-lock.svg deleted file mode 100644 index 4bdd8352..00000000 --- a/bes_theme/.icons/bes_theme/shield-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-off-outline.svg b/bes_theme/.icons/bes_theme/shield-off-outline.svg deleted file mode 100644 index 012bbf5e..00000000 --- a/bes_theme/.icons/bes_theme/shield-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-off.svg b/bes_theme/.icons/bes_theme/shield-off.svg deleted file mode 100644 index 5852c433..00000000 --- a/bes_theme/.icons/bes_theme/shield-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-outline.svg b/bes_theme/.icons/bes_theme/shield-outline.svg deleted file mode 100644 index e618b597..00000000 --- a/bes_theme/.icons/bes_theme/shield-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-plus-outline.svg b/bes_theme/.icons/bes_theme/shield-plus-outline.svg deleted file mode 100644 index a1180f5c..00000000 --- a/bes_theme/.icons/bes_theme/shield-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-plus.svg b/bes_theme/.icons/bes_theme/shield-plus.svg deleted file mode 100644 index 0407760d..00000000 --- a/bes_theme/.icons/bes_theme/shield-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-refresh-outline.svg b/bes_theme/.icons/bes_theme/shield-refresh-outline.svg deleted file mode 100644 index ddab4542..00000000 --- a/bes_theme/.icons/bes_theme/shield-refresh-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-refresh.svg b/bes_theme/.icons/bes_theme/shield-refresh.svg deleted file mode 100644 index 10a65413..00000000 --- a/bes_theme/.icons/bes_theme/shield-refresh.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-remove-outline.svg b/bes_theme/.icons/bes_theme/shield-remove-outline.svg deleted file mode 100644 index a126f76c..00000000 --- a/bes_theme/.icons/bes_theme/shield-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-remove.svg b/bes_theme/.icons/bes_theme/shield-remove.svg deleted file mode 100644 index 28ba14b8..00000000 --- a/bes_theme/.icons/bes_theme/shield-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-search.svg b/bes_theme/.icons/bes_theme/shield-search.svg deleted file mode 100644 index 5cba135f..00000000 --- a/bes_theme/.icons/bes_theme/shield-search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-star-outline.svg b/bes_theme/.icons/bes_theme/shield-star-outline.svg deleted file mode 100644 index 428140a1..00000000 --- a/bes_theme/.icons/bes_theme/shield-star-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-star.svg b/bes_theme/.icons/bes_theme/shield-star.svg deleted file mode 100644 index 81160d24..00000000 --- a/bes_theme/.icons/bes_theme/shield-star.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-sun-outline.svg b/bes_theme/.icons/bes_theme/shield-sun-outline.svg deleted file mode 100644 index fcf1d869..00000000 --- a/bes_theme/.icons/bes_theme/shield-sun-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-sun.svg b/bes_theme/.icons/bes_theme/shield-sun.svg deleted file mode 100644 index 1011df92..00000000 --- a/bes_theme/.icons/bes_theme/shield-sun.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-sync-outline.svg b/bes_theme/.icons/bes_theme/shield-sync-outline.svg deleted file mode 100644 index dfa16280..00000000 --- a/bes_theme/.icons/bes_theme/shield-sync-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield-sync.svg b/bes_theme/.icons/bes_theme/shield-sync.svg deleted file mode 100644 index bd96f639..00000000 --- a/bes_theme/.icons/bes_theme/shield-sync.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shield.svg b/bes_theme/.icons/bes_theme/shield.svg deleted file mode 100644 index b5a0cc5a..00000000 --- a/bes_theme/.icons/bes_theme/shield.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ship-wheel.svg b/bes_theme/.icons/bes_theme/ship-wheel.svg deleted file mode 100644 index 693f9c22..00000000 --- a/bes_theme/.icons/bes_theme/ship-wheel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shoe-ballet.svg b/bes_theme/.icons/bes_theme/shoe-ballet.svg deleted file mode 100644 index 25208c9f..00000000 --- a/bes_theme/.icons/bes_theme/shoe-ballet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shoe-cleat.svg b/bes_theme/.icons/bes_theme/shoe-cleat.svg deleted file mode 100644 index 4045883e..00000000 --- a/bes_theme/.icons/bes_theme/shoe-cleat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shoe-formal.svg b/bes_theme/.icons/bes_theme/shoe-formal.svg deleted file mode 100644 index 3b6a7b5f..00000000 --- a/bes_theme/.icons/bes_theme/shoe-formal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shoe-heel.svg b/bes_theme/.icons/bes_theme/shoe-heel.svg deleted file mode 100644 index 239bcd2e..00000000 --- a/bes_theme/.icons/bes_theme/shoe-heel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shoe-print.svg b/bes_theme/.icons/bes_theme/shoe-print.svg deleted file mode 100644 index 60606d26..00000000 --- a/bes_theme/.icons/bes_theme/shoe-print.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shoe-sneaker.svg b/bes_theme/.icons/bes_theme/shoe-sneaker.svg deleted file mode 100644 index f617ad2a..00000000 --- a/bes_theme/.icons/bes_theme/shoe-sneaker.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shopping-music.svg b/bes_theme/.icons/bes_theme/shopping-music.svg deleted file mode 100644 index 11ac7598..00000000 --- a/bes_theme/.icons/bes_theme/shopping-music.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shopping-outline.svg b/bes_theme/.icons/bes_theme/shopping-outline.svg deleted file mode 100644 index d5bc6418..00000000 --- a/bes_theme/.icons/bes_theme/shopping-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shopping-search.svg b/bes_theme/.icons/bes_theme/shopping-search.svg deleted file mode 100644 index a819ecd2..00000000 --- a/bes_theme/.icons/bes_theme/shopping-search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shopping.svg b/bes_theme/.icons/bes_theme/shopping.svg deleted file mode 100644 index 24637b14..00000000 --- a/bes_theme/.icons/bes_theme/shopping.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shore.svg b/bes_theme/.icons/bes_theme/shore.svg deleted file mode 100644 index e7deac31..00000000 --- a/bes_theme/.icons/bes_theme/shore.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shovel-off.svg b/bes_theme/.icons/bes_theme/shovel-off.svg deleted file mode 100644 index ed886cd2..00000000 --- a/bes_theme/.icons/bes_theme/shovel-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shovel.svg b/bes_theme/.icons/bes_theme/shovel.svg deleted file mode 100644 index a150134c..00000000 --- a/bes_theme/.icons/bes_theme/shovel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shower-head.svg b/bes_theme/.icons/bes_theme/shower-head.svg deleted file mode 100644 index c421beb6..00000000 --- a/bes_theme/.icons/bes_theme/shower-head.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shower.svg b/bes_theme/.icons/bes_theme/shower.svg deleted file mode 100644 index c5288cc6..00000000 --- a/bes_theme/.icons/bes_theme/shower.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shredder.svg b/bes_theme/.icons/bes_theme/shredder.svg deleted file mode 100644 index a9be2d87..00000000 --- a/bes_theme/.icons/bes_theme/shredder.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shuffle-disabled.svg b/bes_theme/.icons/bes_theme/shuffle-disabled.svg deleted file mode 100644 index 234f5d5d..00000000 --- a/bes_theme/.icons/bes_theme/shuffle-disabled.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shuffle-variant.svg b/bes_theme/.icons/bes_theme/shuffle-variant.svg deleted file mode 100644 index f85b02d4..00000000 --- a/bes_theme/.icons/bes_theme/shuffle-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shuffle.svg b/bes_theme/.icons/bes_theme/shuffle.svg deleted file mode 100644 index c1ddf5e8..00000000 --- a/bes_theme/.icons/bes_theme/shuffle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/shuriken.svg b/bes_theme/.icons/bes_theme/shuriken.svg deleted file mode 100644 index 8b23701a..00000000 --- a/bes_theme/.icons/bes_theme/shuriken.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sigma-lower.svg b/bes_theme/.icons/bes_theme/sigma-lower.svg deleted file mode 100644 index 9629ce32..00000000 --- a/bes_theme/.icons/bes_theme/sigma-lower.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sigma.svg b/bes_theme/.icons/bes_theme/sigma.svg deleted file mode 100644 index 6d2f2705..00000000 --- a/bes_theme/.icons/bes_theme/sigma.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sign-caution.svg b/bes_theme/.icons/bes_theme/sign-caution.svg deleted file mode 100644 index 7896ee95..00000000 --- a/bes_theme/.icons/bes_theme/sign-caution.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sign-direction-minus.svg b/bes_theme/.icons/bes_theme/sign-direction-minus.svg deleted file mode 100644 index 872a6d5f..00000000 --- a/bes_theme/.icons/bes_theme/sign-direction-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sign-direction-plus.svg b/bes_theme/.icons/bes_theme/sign-direction-plus.svg deleted file mode 100644 index f28292c1..00000000 --- a/bes_theme/.icons/bes_theme/sign-direction-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sign-direction-remove.svg b/bes_theme/.icons/bes_theme/sign-direction-remove.svg deleted file mode 100644 index 67aa7aa9..00000000 --- a/bes_theme/.icons/bes_theme/sign-direction-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sign-direction.svg b/bes_theme/.icons/bes_theme/sign-direction.svg deleted file mode 100644 index 0d791d3d..00000000 --- a/bes_theme/.icons/bes_theme/sign-direction.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sign-pole.svg b/bes_theme/.icons/bes_theme/sign-pole.svg deleted file mode 100644 index acb44511..00000000 --- a/bes_theme/.icons/bes_theme/sign-pole.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sign-real-estate.svg b/bes_theme/.icons/bes_theme/sign-real-estate.svg deleted file mode 100644 index 6992ff92..00000000 --- a/bes_theme/.icons/bes_theme/sign-real-estate.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sign-text.svg b/bes_theme/.icons/bes_theme/sign-text.svg deleted file mode 100644 index 43d9a006..00000000 --- a/bes_theme/.icons/bes_theme/sign-text.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/signal-2g.svg b/bes_theme/.icons/bes_theme/signal-2g.svg deleted file mode 100644 index 26016ab0..00000000 --- a/bes_theme/.icons/bes_theme/signal-2g.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/signal-3g.svg b/bes_theme/.icons/bes_theme/signal-3g.svg deleted file mode 100644 index 44a08661..00000000 --- a/bes_theme/.icons/bes_theme/signal-3g.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/signal-4g.svg b/bes_theme/.icons/bes_theme/signal-4g.svg deleted file mode 100644 index 807a1ddc..00000000 --- a/bes_theme/.icons/bes_theme/signal-4g.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/signal-5g.svg b/bes_theme/.icons/bes_theme/signal-5g.svg deleted file mode 100644 index 3cc67110..00000000 --- a/bes_theme/.icons/bes_theme/signal-5g.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/signal-cellular-1.svg b/bes_theme/.icons/bes_theme/signal-cellular-1.svg deleted file mode 100644 index f7f553d9..00000000 --- a/bes_theme/.icons/bes_theme/signal-cellular-1.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/signal-cellular-2.svg b/bes_theme/.icons/bes_theme/signal-cellular-2.svg deleted file mode 100644 index 2ebbbfb5..00000000 --- a/bes_theme/.icons/bes_theme/signal-cellular-2.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/signal-cellular-3.svg b/bes_theme/.icons/bes_theme/signal-cellular-3.svg deleted file mode 100644 index 2683a645..00000000 --- a/bes_theme/.icons/bes_theme/signal-cellular-3.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/signal-cellular-outline.svg b/bes_theme/.icons/bes_theme/signal-cellular-outline.svg deleted file mode 100644 index e4ef1c3d..00000000 --- a/bes_theme/.icons/bes_theme/signal-cellular-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/signal-distance-variant.svg b/bes_theme/.icons/bes_theme/signal-distance-variant.svg deleted file mode 100644 index 2b70126a..00000000 --- a/bes_theme/.icons/bes_theme/signal-distance-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/signal-hspa-plus.svg b/bes_theme/.icons/bes_theme/signal-hspa-plus.svg deleted file mode 100644 index b924b264..00000000 --- a/bes_theme/.icons/bes_theme/signal-hspa-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/signal-hspa.svg b/bes_theme/.icons/bes_theme/signal-hspa.svg deleted file mode 100644 index bf4470fb..00000000 --- a/bes_theme/.icons/bes_theme/signal-hspa.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/signal-off.svg b/bes_theme/.icons/bes_theme/signal-off.svg deleted file mode 100644 index bec0b28c..00000000 --- a/bes_theme/.icons/bes_theme/signal-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/signal-variant.svg b/bes_theme/.icons/bes_theme/signal-variant.svg deleted file mode 100644 index 7b51f637..00000000 --- a/bes_theme/.icons/bes_theme/signal-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/signal.svg b/bes_theme/.icons/bes_theme/signal.svg deleted file mode 100644 index 2a02fff4..00000000 --- a/bes_theme/.icons/bes_theme/signal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/signature-freehand.svg b/bes_theme/.icons/bes_theme/signature-freehand.svg deleted file mode 100644 index 5503d194..00000000 --- a/bes_theme/.icons/bes_theme/signature-freehand.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/signature-image.svg b/bes_theme/.icons/bes_theme/signature-image.svg deleted file mode 100644 index 25d9cbca..00000000 --- a/bes_theme/.icons/bes_theme/signature-image.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/signature-text.svg b/bes_theme/.icons/bes_theme/signature-text.svg deleted file mode 100644 index 6cb441f2..00000000 --- a/bes_theme/.icons/bes_theme/signature-text.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/signature.svg b/bes_theme/.icons/bes_theme/signature.svg deleted file mode 100644 index c207c43d..00000000 --- a/bes_theme/.icons/bes_theme/signature.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/silo.svg b/bes_theme/.icons/bes_theme/silo.svg deleted file mode 100644 index 4015d032..00000000 --- a/bes_theme/.icons/bes_theme/silo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/silverware-clean.svg b/bes_theme/.icons/bes_theme/silverware-clean.svg deleted file mode 100644 index d1e7e245..00000000 --- a/bes_theme/.icons/bes_theme/silverware-clean.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/silverware-fork-knife.svg b/bes_theme/.icons/bes_theme/silverware-fork-knife.svg deleted file mode 100644 index 86164872..00000000 --- a/bes_theme/.icons/bes_theme/silverware-fork-knife.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/silverware-fork.svg b/bes_theme/.icons/bes_theme/silverware-fork.svg deleted file mode 100644 index 8783351c..00000000 --- a/bes_theme/.icons/bes_theme/silverware-fork.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/silverware-spoon.svg b/bes_theme/.icons/bes_theme/silverware-spoon.svg deleted file mode 100644 index 2cca04a3..00000000 --- a/bes_theme/.icons/bes_theme/silverware-spoon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/silverware-variant.svg b/bes_theme/.icons/bes_theme/silverware-variant.svg deleted file mode 100644 index d8800c5f..00000000 --- a/bes_theme/.icons/bes_theme/silverware-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/silverware.svg b/bes_theme/.icons/bes_theme/silverware.svg deleted file mode 100644 index 483d0d62..00000000 --- a/bes_theme/.icons/bes_theme/silverware.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sim-alert-outline.svg b/bes_theme/.icons/bes_theme/sim-alert-outline.svg deleted file mode 100644 index 2e4ab092..00000000 --- a/bes_theme/.icons/bes_theme/sim-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sim-alert.svg b/bes_theme/.icons/bes_theme/sim-alert.svg deleted file mode 100644 index fa932eca..00000000 --- a/bes_theme/.icons/bes_theme/sim-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sim-off-outline.svg b/bes_theme/.icons/bes_theme/sim-off-outline.svg deleted file mode 100644 index f5bcd677..00000000 --- a/bes_theme/.icons/bes_theme/sim-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sim-off.svg b/bes_theme/.icons/bes_theme/sim-off.svg deleted file mode 100644 index 617db5c4..00000000 --- a/bes_theme/.icons/bes_theme/sim-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sim-outline.svg b/bes_theme/.icons/bes_theme/sim-outline.svg deleted file mode 100644 index 3f580d99..00000000 --- a/bes_theme/.icons/bes_theme/sim-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sim.svg b/bes_theme/.icons/bes_theme/sim.svg deleted file mode 100644 index c3f66f83..00000000 --- a/bes_theme/.icons/bes_theme/sim.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/simple-icons.svg b/bes_theme/.icons/bes_theme/simple-icons.svg deleted file mode 100644 index 606e3b54..00000000 --- a/bes_theme/.icons/bes_theme/simple-icons.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sina-weibo.svg b/bes_theme/.icons/bes_theme/sina-weibo.svg deleted file mode 100644 index fd66967c..00000000 --- a/bes_theme/.icons/bes_theme/sina-weibo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sine-wave.svg b/bes_theme/.icons/bes_theme/sine-wave.svg deleted file mode 100644 index 7f2176d6..00000000 --- a/bes_theme/.icons/bes_theme/sine-wave.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sitemap.svg b/bes_theme/.icons/bes_theme/sitemap.svg deleted file mode 100644 index 93940971..00000000 --- a/bes_theme/.icons/bes_theme/sitemap.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/size-l.svg b/bes_theme/.icons/bes_theme/size-l.svg deleted file mode 100644 index f3ebde28..00000000 --- a/bes_theme/.icons/bes_theme/size-l.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/size-m.svg b/bes_theme/.icons/bes_theme/size-m.svg deleted file mode 100644 index 4f897c98..00000000 --- a/bes_theme/.icons/bes_theme/size-m.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/size-s.svg b/bes_theme/.icons/bes_theme/size-s.svg deleted file mode 100644 index cb88b2a9..00000000 --- a/bes_theme/.icons/bes_theme/size-s.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/size-xl.svg b/bes_theme/.icons/bes_theme/size-xl.svg deleted file mode 100644 index 5217dfc3..00000000 --- a/bes_theme/.icons/bes_theme/size-xl.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/size-xs.svg b/bes_theme/.icons/bes_theme/size-xs.svg deleted file mode 100644 index 703ddf44..00000000 --- a/bes_theme/.icons/bes_theme/size-xs.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/size-xxl.svg b/bes_theme/.icons/bes_theme/size-xxl.svg deleted file mode 100644 index 68da4b0c..00000000 --- a/bes_theme/.icons/bes_theme/size-xxl.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/size-xxs.svg b/bes_theme/.icons/bes_theme/size-xxs.svg deleted file mode 100644 index 7359f5d4..00000000 --- a/bes_theme/.icons/bes_theme/size-xxs.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/size-xxxl.svg b/bes_theme/.icons/bes_theme/size-xxxl.svg deleted file mode 100644 index d52c5beb..00000000 --- a/bes_theme/.icons/bes_theme/size-xxxl.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/skate.svg b/bes_theme/.icons/bes_theme/skate.svg deleted file mode 100644 index b08f45b5..00000000 --- a/bes_theme/.icons/bes_theme/skate.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/skateboard.svg b/bes_theme/.icons/bes_theme/skateboard.svg deleted file mode 100644 index db2e6bb2..00000000 --- a/bes_theme/.icons/bes_theme/skateboard.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/skew-less.svg b/bes_theme/.icons/bes_theme/skew-less.svg deleted file mode 100644 index b86a7688..00000000 --- a/bes_theme/.icons/bes_theme/skew-less.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/skew-more.svg b/bes_theme/.icons/bes_theme/skew-more.svg deleted file mode 100644 index 788dcb88..00000000 --- a/bes_theme/.icons/bes_theme/skew-more.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ski-cross-country.svg b/bes_theme/.icons/bes_theme/ski-cross-country.svg deleted file mode 100644 index 406ca43d..00000000 --- a/bes_theme/.icons/bes_theme/ski-cross-country.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ski-water.svg b/bes_theme/.icons/bes_theme/ski-water.svg deleted file mode 100644 index aadb9620..00000000 --- a/bes_theme/.icons/bes_theme/ski-water.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ski.svg b/bes_theme/.icons/bes_theme/ski.svg deleted file mode 100644 index 22eeb54d..00000000 --- a/bes_theme/.icons/bes_theme/ski.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/skip-backward-outline.svg b/bes_theme/.icons/bes_theme/skip-backward-outline.svg deleted file mode 100644 index c7a82e6f..00000000 --- a/bes_theme/.icons/bes_theme/skip-backward-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/skip-backward.svg b/bes_theme/.icons/bes_theme/skip-backward.svg deleted file mode 100644 index e537adad..00000000 --- a/bes_theme/.icons/bes_theme/skip-backward.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/skip-forward-outline.svg b/bes_theme/.icons/bes_theme/skip-forward-outline.svg deleted file mode 100644 index e5425784..00000000 --- a/bes_theme/.icons/bes_theme/skip-forward-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/skip-forward.svg b/bes_theme/.icons/bes_theme/skip-forward.svg deleted file mode 100644 index 4a54a18d..00000000 --- a/bes_theme/.icons/bes_theme/skip-forward.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/skip-next-circle-outline.svg b/bes_theme/.icons/bes_theme/skip-next-circle-outline.svg deleted file mode 100644 index 1f78f7b0..00000000 --- a/bes_theme/.icons/bes_theme/skip-next-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/skip-next-circle.svg b/bes_theme/.icons/bes_theme/skip-next-circle.svg deleted file mode 100644 index dabcaee6..00000000 --- a/bes_theme/.icons/bes_theme/skip-next-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/skip-next-outline.svg b/bes_theme/.icons/bes_theme/skip-next-outline.svg deleted file mode 100644 index bbddfc81..00000000 --- a/bes_theme/.icons/bes_theme/skip-next-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/skip-next.svg b/bes_theme/.icons/bes_theme/skip-next.svg deleted file mode 100644 index d34b53c3..00000000 --- a/bes_theme/.icons/bes_theme/skip-next.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/skip-previous-circle-outline.svg b/bes_theme/.icons/bes_theme/skip-previous-circle-outline.svg deleted file mode 100644 index 57549509..00000000 --- a/bes_theme/.icons/bes_theme/skip-previous-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/skip-previous-circle.svg b/bes_theme/.icons/bes_theme/skip-previous-circle.svg deleted file mode 100644 index 9e6b2b68..00000000 --- a/bes_theme/.icons/bes_theme/skip-previous-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/skip-previous-outline.svg b/bes_theme/.icons/bes_theme/skip-previous-outline.svg deleted file mode 100644 index d9f020be..00000000 --- a/bes_theme/.icons/bes_theme/skip-previous-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/skip-previous.svg b/bes_theme/.icons/bes_theme/skip-previous.svg deleted file mode 100644 index 5d3f8e2c..00000000 --- a/bes_theme/.icons/bes_theme/skip-previous.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/skull-crossbones-outline.svg b/bes_theme/.icons/bes_theme/skull-crossbones-outline.svg deleted file mode 100644 index 11f5ea55..00000000 --- a/bes_theme/.icons/bes_theme/skull-crossbones-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/skull-crossbones.svg b/bes_theme/.icons/bes_theme/skull-crossbones.svg deleted file mode 100644 index b54f6dd4..00000000 --- a/bes_theme/.icons/bes_theme/skull-crossbones.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/skull-outline.svg b/bes_theme/.icons/bes_theme/skull-outline.svg deleted file mode 100644 index 84afe960..00000000 --- a/bes_theme/.icons/bes_theme/skull-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/skull-scan-outline.svg b/bes_theme/.icons/bes_theme/skull-scan-outline.svg deleted file mode 100644 index 4ed188ba..00000000 --- a/bes_theme/.icons/bes_theme/skull-scan-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/skull-scan.svg b/bes_theme/.icons/bes_theme/skull-scan.svg deleted file mode 100644 index de0871f7..00000000 --- a/bes_theme/.icons/bes_theme/skull-scan.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/skull.svg b/bes_theme/.icons/bes_theme/skull.svg deleted file mode 100644 index b2b0d285..00000000 --- a/bes_theme/.icons/bes_theme/skull.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/skype-business.svg b/bes_theme/.icons/bes_theme/skype-business.svg deleted file mode 100644 index 2eb33b90..00000000 --- a/bes_theme/.icons/bes_theme/skype-business.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/skype.svg b/bes_theme/.icons/bes_theme/skype.svg deleted file mode 100644 index ca492cb6..00000000 --- a/bes_theme/.icons/bes_theme/skype.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/slack.svg b/bes_theme/.icons/bes_theme/slack.svg deleted file mode 100644 index b9380d1a..00000000 --- a/bes_theme/.icons/bes_theme/slack.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/slash-forward-box.svg b/bes_theme/.icons/bes_theme/slash-forward-box.svg deleted file mode 100644 index b615dfec..00000000 --- a/bes_theme/.icons/bes_theme/slash-forward-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/slash-forward.svg b/bes_theme/.icons/bes_theme/slash-forward.svg deleted file mode 100644 index 3f9d7eb5..00000000 --- a/bes_theme/.icons/bes_theme/slash-forward.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sleep-off.svg b/bes_theme/.icons/bes_theme/sleep-off.svg deleted file mode 100644 index f4aaa5ef..00000000 --- a/bes_theme/.icons/bes_theme/sleep-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sleep.svg b/bes_theme/.icons/bes_theme/sleep.svg deleted file mode 100644 index 86c4ee55..00000000 --- a/bes_theme/.icons/bes_theme/sleep.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/slide.svg b/bes_theme/.icons/bes_theme/slide.svg deleted file mode 100644 index 2173b509..00000000 --- a/bes_theme/.icons/bes_theme/slide.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/slope-downhill.svg b/bes_theme/.icons/bes_theme/slope-downhill.svg deleted file mode 100644 index 4e28c8b5..00000000 --- a/bes_theme/.icons/bes_theme/slope-downhill.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/slope-uphill.svg b/bes_theme/.icons/bes_theme/slope-uphill.svg deleted file mode 100644 index 9f559a11..00000000 --- a/bes_theme/.icons/bes_theme/slope-uphill.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/slot-machine-outline.svg b/bes_theme/.icons/bes_theme/slot-machine-outline.svg deleted file mode 100644 index 18472e4f..00000000 --- a/bes_theme/.icons/bes_theme/slot-machine-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/slot-machine.svg b/bes_theme/.icons/bes_theme/slot-machine.svg deleted file mode 100644 index 9b38ef3c..00000000 --- a/bes_theme/.icons/bes_theme/slot-machine.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/smart-card-outline.svg b/bes_theme/.icons/bes_theme/smart-card-outline.svg deleted file mode 100644 index 037e1c1d..00000000 --- a/bes_theme/.icons/bes_theme/smart-card-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/smart-card-reader-outline.svg b/bes_theme/.icons/bes_theme/smart-card-reader-outline.svg deleted file mode 100644 index 23af1765..00000000 --- a/bes_theme/.icons/bes_theme/smart-card-reader-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/smart-card-reader.svg b/bes_theme/.icons/bes_theme/smart-card-reader.svg deleted file mode 100644 index 809c1cce..00000000 --- a/bes_theme/.icons/bes_theme/smart-card-reader.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/smart-card.svg b/bes_theme/.icons/bes_theme/smart-card.svg deleted file mode 100644 index dc0e3722..00000000 --- a/bes_theme/.icons/bes_theme/smart-card.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/smog.svg b/bes_theme/.icons/bes_theme/smog.svg deleted file mode 100644 index 0983ed41..00000000 --- a/bes_theme/.icons/bes_theme/smog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/smoke-detector.svg b/bes_theme/.icons/bes_theme/smoke-detector.svg deleted file mode 100644 index 284da507..00000000 --- a/bes_theme/.icons/bes_theme/smoke-detector.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/smoking-off.svg b/bes_theme/.icons/bes_theme/smoking-off.svg deleted file mode 100644 index 4ea253a5..00000000 --- a/bes_theme/.icons/bes_theme/smoking-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/smoking-pipe-off.svg b/bes_theme/.icons/bes_theme/smoking-pipe-off.svg deleted file mode 100644 index 9569c535..00000000 --- a/bes_theme/.icons/bes_theme/smoking-pipe-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/smoking-pipe.svg b/bes_theme/.icons/bes_theme/smoking-pipe.svg deleted file mode 100644 index 6ab8e3fb..00000000 --- a/bes_theme/.icons/bes_theme/smoking-pipe.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/smoking.svg b/bes_theme/.icons/bes_theme/smoking.svg deleted file mode 100644 index 70211e09..00000000 --- a/bes_theme/.icons/bes_theme/smoking.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/snail.svg b/bes_theme/.icons/bes_theme/snail.svg deleted file mode 100644 index c98cc7a9..00000000 --- a/bes_theme/.icons/bes_theme/snail.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/snake.svg b/bes_theme/.icons/bes_theme/snake.svg deleted file mode 100644 index 202a039b..00000000 --- a/bes_theme/.icons/bes_theme/snake.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/snapchat.svg b/bes_theme/.icons/bes_theme/snapchat.svg deleted file mode 100644 index c8bb706c..00000000 --- a/bes_theme/.icons/bes_theme/snapchat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/snowboard.svg b/bes_theme/.icons/bes_theme/snowboard.svg deleted file mode 100644 index 74242c2c..00000000 --- a/bes_theme/.icons/bes_theme/snowboard.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/snowflake-alert.svg b/bes_theme/.icons/bes_theme/snowflake-alert.svg deleted file mode 100644 index e743c00a..00000000 --- a/bes_theme/.icons/bes_theme/snowflake-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/snowflake-melt.svg b/bes_theme/.icons/bes_theme/snowflake-melt.svg deleted file mode 100644 index c3912829..00000000 --- a/bes_theme/.icons/bes_theme/snowflake-melt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/snowflake-off.svg b/bes_theme/.icons/bes_theme/snowflake-off.svg deleted file mode 100644 index 5371ea80..00000000 --- a/bes_theme/.icons/bes_theme/snowflake-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/snowflake-variant.svg b/bes_theme/.icons/bes_theme/snowflake-variant.svg deleted file mode 100644 index f0d1b7f0..00000000 --- a/bes_theme/.icons/bes_theme/snowflake-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/snowflake.svg b/bes_theme/.icons/bes_theme/snowflake.svg deleted file mode 100644 index 5aa6a712..00000000 --- a/bes_theme/.icons/bes_theme/snowflake.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/snowman.svg b/bes_theme/.icons/bes_theme/snowman.svg deleted file mode 100644 index bc318cfb..00000000 --- a/bes_theme/.icons/bes_theme/snowman.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/soccer-field.svg b/bes_theme/.icons/bes_theme/soccer-field.svg deleted file mode 100644 index ac6d317e..00000000 --- a/bes_theme/.icons/bes_theme/soccer-field.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/soccer.svg b/bes_theme/.icons/bes_theme/soccer.svg deleted file mode 100644 index e093d7f6..00000000 --- a/bes_theme/.icons/bes_theme/soccer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/social-distance-2-meters.svg b/bes_theme/.icons/bes_theme/social-distance-2-meters.svg deleted file mode 100644 index 610062ed..00000000 --- a/bes_theme/.icons/bes_theme/social-distance-2-meters.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/social-distance-6-feet.svg b/bes_theme/.icons/bes_theme/social-distance-6-feet.svg deleted file mode 100644 index 76b6b125..00000000 --- a/bes_theme/.icons/bes_theme/social-distance-6-feet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sofa-outline.svg b/bes_theme/.icons/bes_theme/sofa-outline.svg deleted file mode 100644 index d169fcc3..00000000 --- a/bes_theme/.icons/bes_theme/sofa-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sofa-single-outline.svg b/bes_theme/.icons/bes_theme/sofa-single-outline.svg deleted file mode 100644 index 2a8bed85..00000000 --- a/bes_theme/.icons/bes_theme/sofa-single-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sofa-single.svg b/bes_theme/.icons/bes_theme/sofa-single.svg deleted file mode 100644 index e708c0d1..00000000 --- a/bes_theme/.icons/bes_theme/sofa-single.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sofa.svg b/bes_theme/.icons/bes_theme/sofa.svg deleted file mode 100644 index 3ef89eee..00000000 --- a/bes_theme/.icons/bes_theme/sofa.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/solar-panel-large.svg b/bes_theme/.icons/bes_theme/solar-panel-large.svg deleted file mode 100644 index ca3bdd94..00000000 --- a/bes_theme/.icons/bes_theme/solar-panel-large.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/solar-panel.svg b/bes_theme/.icons/bes_theme/solar-panel.svg deleted file mode 100644 index 1baf1c34..00000000 --- a/bes_theme/.icons/bes_theme/solar-panel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/solar-power.svg b/bes_theme/.icons/bes_theme/solar-power.svg deleted file mode 100644 index e0178400..00000000 --- a/bes_theme/.icons/bes_theme/solar-power.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/soldering-iron.svg b/bes_theme/.icons/bes_theme/soldering-iron.svg deleted file mode 100644 index 7ca24b82..00000000 --- a/bes_theme/.icons/bes_theme/soldering-iron.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/solid.svg b/bes_theme/.icons/bes_theme/solid.svg deleted file mode 100644 index 950c6c6c..00000000 --- a/bes_theme/.icons/bes_theme/solid.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sony-playstation.svg b/bes_theme/.icons/bes_theme/sony-playstation.svg deleted file mode 100644 index 97ac128e..00000000 --- a/bes_theme/.icons/bes_theme/sony-playstation.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sort-alphabetical-ascending-variant.svg b/bes_theme/.icons/bes_theme/sort-alphabetical-ascending-variant.svg deleted file mode 100644 index 38952941..00000000 --- a/bes_theme/.icons/bes_theme/sort-alphabetical-ascending-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sort-alphabetical-ascending.svg b/bes_theme/.icons/bes_theme/sort-alphabetical-ascending.svg deleted file mode 100644 index 8495c0eb..00000000 --- a/bes_theme/.icons/bes_theme/sort-alphabetical-ascending.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sort-alphabetical-descending-variant.svg b/bes_theme/.icons/bes_theme/sort-alphabetical-descending-variant.svg deleted file mode 100644 index 720d63a3..00000000 --- a/bes_theme/.icons/bes_theme/sort-alphabetical-descending-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sort-alphabetical-descending.svg b/bes_theme/.icons/bes_theme/sort-alphabetical-descending.svg deleted file mode 100644 index 62f05cec..00000000 --- a/bes_theme/.icons/bes_theme/sort-alphabetical-descending.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sort-alphabetical-variant.svg b/bes_theme/.icons/bes_theme/sort-alphabetical-variant.svg deleted file mode 100644 index 3ab4c624..00000000 --- a/bes_theme/.icons/bes_theme/sort-alphabetical-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sort-ascending.svg b/bes_theme/.icons/bes_theme/sort-ascending.svg deleted file mode 100644 index 190bec8b..00000000 --- a/bes_theme/.icons/bes_theme/sort-ascending.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sort-bool-ascending-variant.svg b/bes_theme/.icons/bes_theme/sort-bool-ascending-variant.svg deleted file mode 100644 index c1737700..00000000 --- a/bes_theme/.icons/bes_theme/sort-bool-ascending-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sort-bool-ascending.svg b/bes_theme/.icons/bes_theme/sort-bool-ascending.svg deleted file mode 100644 index e35f00a6..00000000 --- a/bes_theme/.icons/bes_theme/sort-bool-ascending.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sort-bool-descending-variant.svg b/bes_theme/.icons/bes_theme/sort-bool-descending-variant.svg deleted file mode 100644 index b27cd8bc..00000000 --- a/bes_theme/.icons/bes_theme/sort-bool-descending-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sort-bool-descending.svg b/bes_theme/.icons/bes_theme/sort-bool-descending.svg deleted file mode 100644 index fbe94d63..00000000 --- a/bes_theme/.icons/bes_theme/sort-bool-descending.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sort-calendar-ascending.svg b/bes_theme/.icons/bes_theme/sort-calendar-ascending.svg deleted file mode 100644 index 4e3986b0..00000000 --- a/bes_theme/.icons/bes_theme/sort-calendar-ascending.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sort-calendar-descending.svg b/bes_theme/.icons/bes_theme/sort-calendar-descending.svg deleted file mode 100644 index c566ce11..00000000 --- a/bes_theme/.icons/bes_theme/sort-calendar-descending.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sort-clock-ascending-outline.svg b/bes_theme/.icons/bes_theme/sort-clock-ascending-outline.svg deleted file mode 100644 index e3025985..00000000 --- a/bes_theme/.icons/bes_theme/sort-clock-ascending-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sort-clock-ascending.svg b/bes_theme/.icons/bes_theme/sort-clock-ascending.svg deleted file mode 100644 index 9e9fba1d..00000000 --- a/bes_theme/.icons/bes_theme/sort-clock-ascending.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sort-clock-descending-outline.svg b/bes_theme/.icons/bes_theme/sort-clock-descending-outline.svg deleted file mode 100644 index 87756021..00000000 --- a/bes_theme/.icons/bes_theme/sort-clock-descending-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sort-clock-descending.svg b/bes_theme/.icons/bes_theme/sort-clock-descending.svg deleted file mode 100644 index e63e1a1e..00000000 --- a/bes_theme/.icons/bes_theme/sort-clock-descending.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sort-descending.svg b/bes_theme/.icons/bes_theme/sort-descending.svg deleted file mode 100644 index c47f9c7e..00000000 --- a/bes_theme/.icons/bes_theme/sort-descending.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sort-numeric-ascending-variant.svg b/bes_theme/.icons/bes_theme/sort-numeric-ascending-variant.svg deleted file mode 100644 index 502f97e0..00000000 --- a/bes_theme/.icons/bes_theme/sort-numeric-ascending-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sort-numeric-ascending.svg b/bes_theme/.icons/bes_theme/sort-numeric-ascending.svg deleted file mode 100644 index 5c56afdd..00000000 --- a/bes_theme/.icons/bes_theme/sort-numeric-ascending.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sort-numeric-descending-variant.svg b/bes_theme/.icons/bes_theme/sort-numeric-descending-variant.svg deleted file mode 100644 index 1d44c2f0..00000000 --- a/bes_theme/.icons/bes_theme/sort-numeric-descending-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sort-numeric-descending.svg b/bes_theme/.icons/bes_theme/sort-numeric-descending.svg deleted file mode 100644 index 6c7a3d8e..00000000 --- a/bes_theme/.icons/bes_theme/sort-numeric-descending.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sort-numeric-variant.svg b/bes_theme/.icons/bes_theme/sort-numeric-variant.svg deleted file mode 100644 index f447bf14..00000000 --- a/bes_theme/.icons/bes_theme/sort-numeric-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sort-reverse-variant.svg b/bes_theme/.icons/bes_theme/sort-reverse-variant.svg deleted file mode 100644 index 9b60d241..00000000 --- a/bes_theme/.icons/bes_theme/sort-reverse-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sort-variant-lock-open.svg b/bes_theme/.icons/bes_theme/sort-variant-lock-open.svg deleted file mode 100644 index 50b3ddea..00000000 --- a/bes_theme/.icons/bes_theme/sort-variant-lock-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sort-variant-lock.svg b/bes_theme/.icons/bes_theme/sort-variant-lock.svg deleted file mode 100644 index e68d1a33..00000000 --- a/bes_theme/.icons/bes_theme/sort-variant-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sort-variant-remove.svg b/bes_theme/.icons/bes_theme/sort-variant-remove.svg deleted file mode 100644 index 91fb1980..00000000 --- a/bes_theme/.icons/bes_theme/sort-variant-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sort-variant.svg b/bes_theme/.icons/bes_theme/sort-variant.svg deleted file mode 100644 index 8370e297..00000000 --- a/bes_theme/.icons/bes_theme/sort-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sort.svg b/bes_theme/.icons/bes_theme/sort.svg deleted file mode 100644 index 72d5a0dc..00000000 --- a/bes_theme/.icons/bes_theme/sort.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/soundcloud.svg b/bes_theme/.icons/bes_theme/soundcloud.svg deleted file mode 100644 index 094b496b..00000000 --- a/bes_theme/.icons/bes_theme/soundcloud.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/source-branch-check.svg b/bes_theme/.icons/bes_theme/source-branch-check.svg deleted file mode 100644 index b7b5ab17..00000000 --- a/bes_theme/.icons/bes_theme/source-branch-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/source-branch-minus.svg b/bes_theme/.icons/bes_theme/source-branch-minus.svg deleted file mode 100644 index c0107a86..00000000 --- a/bes_theme/.icons/bes_theme/source-branch-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/source-branch-plus.svg b/bes_theme/.icons/bes_theme/source-branch-plus.svg deleted file mode 100644 index 9acfd64d..00000000 --- a/bes_theme/.icons/bes_theme/source-branch-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/source-branch-refresh.svg b/bes_theme/.icons/bes_theme/source-branch-refresh.svg deleted file mode 100644 index 6b6687e1..00000000 --- a/bes_theme/.icons/bes_theme/source-branch-refresh.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/source-branch-remove.svg b/bes_theme/.icons/bes_theme/source-branch-remove.svg deleted file mode 100644 index 007aee29..00000000 --- a/bes_theme/.icons/bes_theme/source-branch-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/source-branch-sync.svg b/bes_theme/.icons/bes_theme/source-branch-sync.svg deleted file mode 100644 index 9b5734ac..00000000 --- a/bes_theme/.icons/bes_theme/source-branch-sync.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/source-branch.svg b/bes_theme/.icons/bes_theme/source-branch.svg deleted file mode 100644 index 3d656aee..00000000 --- a/bes_theme/.icons/bes_theme/source-branch.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/source-commit-end-local.svg b/bes_theme/.icons/bes_theme/source-commit-end-local.svg deleted file mode 100644 index c26f632f..00000000 --- a/bes_theme/.icons/bes_theme/source-commit-end-local.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/source-commit-end.svg b/bes_theme/.icons/bes_theme/source-commit-end.svg deleted file mode 100644 index e3c37a99..00000000 --- a/bes_theme/.icons/bes_theme/source-commit-end.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/source-commit-local.svg b/bes_theme/.icons/bes_theme/source-commit-local.svg deleted file mode 100644 index 838fb870..00000000 --- a/bes_theme/.icons/bes_theme/source-commit-local.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/source-commit-next-local.svg b/bes_theme/.icons/bes_theme/source-commit-next-local.svg deleted file mode 100644 index 5d57b17c..00000000 --- a/bes_theme/.icons/bes_theme/source-commit-next-local.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/source-commit-start-next-local.svg b/bes_theme/.icons/bes_theme/source-commit-start-next-local.svg deleted file mode 100644 index 0e0361a7..00000000 --- a/bes_theme/.icons/bes_theme/source-commit-start-next-local.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/source-commit-start.svg b/bes_theme/.icons/bes_theme/source-commit-start.svg deleted file mode 100644 index ebcb7423..00000000 --- a/bes_theme/.icons/bes_theme/source-commit-start.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/source-commit.svg b/bes_theme/.icons/bes_theme/source-commit.svg deleted file mode 100644 index 02c9220f..00000000 --- a/bes_theme/.icons/bes_theme/source-commit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/source-fork.svg b/bes_theme/.icons/bes_theme/source-fork.svg deleted file mode 100644 index f8e89b69..00000000 --- a/bes_theme/.icons/bes_theme/source-fork.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/source-merge.svg b/bes_theme/.icons/bes_theme/source-merge.svg deleted file mode 100644 index 2f3583b1..00000000 --- a/bes_theme/.icons/bes_theme/source-merge.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/source-pull.svg b/bes_theme/.icons/bes_theme/source-pull.svg deleted file mode 100644 index 9dd56415..00000000 --- a/bes_theme/.icons/bes_theme/source-pull.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/source-repository-multiple.svg b/bes_theme/.icons/bes_theme/source-repository-multiple.svg deleted file mode 100644 index 6eda7d48..00000000 --- a/bes_theme/.icons/bes_theme/source-repository-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/source-repository.svg b/bes_theme/.icons/bes_theme/source-repository.svg deleted file mode 100644 index f5085a5d..00000000 --- a/bes_theme/.icons/bes_theme/source-repository.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/soy-sauce-off.svg b/bes_theme/.icons/bes_theme/soy-sauce-off.svg deleted file mode 100644 index e3950d1d..00000000 --- a/bes_theme/.icons/bes_theme/soy-sauce-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/soy-sauce.svg b/bes_theme/.icons/bes_theme/soy-sauce.svg deleted file mode 100644 index 87eee0b9..00000000 --- a/bes_theme/.icons/bes_theme/soy-sauce.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/spa-outline.svg b/bes_theme/.icons/bes_theme/spa-outline.svg deleted file mode 100644 index 0bb09a86..00000000 --- a/bes_theme/.icons/bes_theme/spa-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/spa.svg b/bes_theme/.icons/bes_theme/spa.svg deleted file mode 100644 index 5925bb88..00000000 --- a/bes_theme/.icons/bes_theme/spa.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/space-invaders.svg b/bes_theme/.icons/bes_theme/space-invaders.svg deleted file mode 100644 index e41eb4f0..00000000 --- a/bes_theme/.icons/bes_theme/space-invaders.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/space-station.svg b/bes_theme/.icons/bes_theme/space-station.svg deleted file mode 100644 index d7f60b35..00000000 --- a/bes_theme/.icons/bes_theme/space-station.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/spade.svg b/bes_theme/.icons/bes_theme/spade.svg deleted file mode 100644 index 5dabbe68..00000000 --- a/bes_theme/.icons/bes_theme/spade.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sparkles.svg b/bes_theme/.icons/bes_theme/sparkles.svg deleted file mode 100644 index 5ba44d8f..00000000 --- a/bes_theme/.icons/bes_theme/sparkles.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/speaker-bluetooth.svg b/bes_theme/.icons/bes_theme/speaker-bluetooth.svg deleted file mode 100644 index 85d68e1b..00000000 --- a/bes_theme/.icons/bes_theme/speaker-bluetooth.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/speaker-multiple.svg b/bes_theme/.icons/bes_theme/speaker-multiple.svg deleted file mode 100644 index da486d7c..00000000 --- a/bes_theme/.icons/bes_theme/speaker-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/speaker-off.svg b/bes_theme/.icons/bes_theme/speaker-off.svg deleted file mode 100644 index 28301ddc..00000000 --- a/bes_theme/.icons/bes_theme/speaker-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/speaker-wireless.svg b/bes_theme/.icons/bes_theme/speaker-wireless.svg deleted file mode 100644 index d916f0fe..00000000 --- a/bes_theme/.icons/bes_theme/speaker-wireless.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/speaker.svg b/bes_theme/.icons/bes_theme/speaker.svg deleted file mode 100644 index 70e9fc40..00000000 --- a/bes_theme/.icons/bes_theme/speaker.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/speedometer-medium.svg b/bes_theme/.icons/bes_theme/speedometer-medium.svg deleted file mode 100644 index 9dadfc28..00000000 --- a/bes_theme/.icons/bes_theme/speedometer-medium.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/speedometer-slow.svg b/bes_theme/.icons/bes_theme/speedometer-slow.svg deleted file mode 100644 index a8791da9..00000000 --- a/bes_theme/.icons/bes_theme/speedometer-slow.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/speedometer.svg b/bes_theme/.icons/bes_theme/speedometer.svg deleted file mode 100644 index 851c9ace..00000000 --- a/bes_theme/.icons/bes_theme/speedometer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/spellcheck.svg b/bes_theme/.icons/bes_theme/spellcheck.svg deleted file mode 100644 index e36c7f20..00000000 --- a/bes_theme/.icons/bes_theme/spellcheck.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/spider-thread.svg b/bes_theme/.icons/bes_theme/spider-thread.svg deleted file mode 100644 index a8f0b562..00000000 --- a/bes_theme/.icons/bes_theme/spider-thread.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/spider-web.svg b/bes_theme/.icons/bes_theme/spider-web.svg deleted file mode 100644 index 7ced456e..00000000 --- a/bes_theme/.icons/bes_theme/spider-web.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/spider.svg b/bes_theme/.icons/bes_theme/spider.svg deleted file mode 100644 index d22386e2..00000000 --- a/bes_theme/.icons/bes_theme/spider.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/spirit-level.svg b/bes_theme/.icons/bes_theme/spirit-level.svg deleted file mode 100644 index 7f3b1f84..00000000 --- a/bes_theme/.icons/bes_theme/spirit-level.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/spoon-sugar.svg b/bes_theme/.icons/bes_theme/spoon-sugar.svg deleted file mode 100644 index 153167c7..00000000 --- a/bes_theme/.icons/bes_theme/spoon-sugar.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/spotify.svg b/bes_theme/.icons/bes_theme/spotify.svg deleted file mode 100644 index 0f6ef29d..00000000 --- a/bes_theme/.icons/bes_theme/spotify.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/spotlight-beam.svg b/bes_theme/.icons/bes_theme/spotlight-beam.svg deleted file mode 100644 index 15e9ad86..00000000 --- a/bes_theme/.icons/bes_theme/spotlight-beam.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/spotlight.svg b/bes_theme/.icons/bes_theme/spotlight.svg deleted file mode 100644 index 6c952808..00000000 --- a/bes_theme/.icons/bes_theme/spotlight.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/spray-bottle.svg b/bes_theme/.icons/bes_theme/spray-bottle.svg deleted file mode 100644 index 8743f633..00000000 --- a/bes_theme/.icons/bes_theme/spray-bottle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/spray.svg b/bes_theme/.icons/bes_theme/spray.svg deleted file mode 100644 index 2fdb0491..00000000 --- a/bes_theme/.icons/bes_theme/spray.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sprinkler-variant.svg b/bes_theme/.icons/bes_theme/sprinkler-variant.svg deleted file mode 100644 index 06565b63..00000000 --- a/bes_theme/.icons/bes_theme/sprinkler-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sprinkler.svg b/bes_theme/.icons/bes_theme/sprinkler.svg deleted file mode 100644 index 4cc8aa98..00000000 --- a/bes_theme/.icons/bes_theme/sprinkler.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sprout-outline.svg b/bes_theme/.icons/bes_theme/sprout-outline.svg deleted file mode 100644 index caec8f87..00000000 --- a/bes_theme/.icons/bes_theme/sprout-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sprout.svg b/bes_theme/.icons/bes_theme/sprout.svg deleted file mode 100644 index a027cdf2..00000000 --- a/bes_theme/.icons/bes_theme/sprout.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/square-circle.svg b/bes_theme/.icons/bes_theme/square-circle.svg deleted file mode 100644 index 5ffe1205..00000000 --- a/bes_theme/.icons/bes_theme/square-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/square-edit-outline.svg b/bes_theme/.icons/bes_theme/square-edit-outline.svg deleted file mode 100644 index b92712f4..00000000 --- a/bes_theme/.icons/bes_theme/square-edit-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/square-medium-outline.svg b/bes_theme/.icons/bes_theme/square-medium-outline.svg deleted file mode 100644 index 82a0b440..00000000 --- a/bes_theme/.icons/bes_theme/square-medium-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/square-medium.svg b/bes_theme/.icons/bes_theme/square-medium.svg deleted file mode 100644 index cdde8b21..00000000 --- a/bes_theme/.icons/bes_theme/square-medium.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/square-off-outline.svg b/bes_theme/.icons/bes_theme/square-off-outline.svg deleted file mode 100644 index 27915c7a..00000000 --- a/bes_theme/.icons/bes_theme/square-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/square-off.svg b/bes_theme/.icons/bes_theme/square-off.svg deleted file mode 100644 index 375bbd0a..00000000 --- a/bes_theme/.icons/bes_theme/square-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/square-outline.svg b/bes_theme/.icons/bes_theme/square-outline.svg deleted file mode 100644 index f9621bc7..00000000 --- a/bes_theme/.icons/bes_theme/square-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/square-root-box.svg b/bes_theme/.icons/bes_theme/square-root-box.svg deleted file mode 100644 index 29b7c003..00000000 --- a/bes_theme/.icons/bes_theme/square-root-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/square-root.svg b/bes_theme/.icons/bes_theme/square-root.svg deleted file mode 100644 index 53ee48fb..00000000 --- a/bes_theme/.icons/bes_theme/square-root.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/square-rounded-outline.svg b/bes_theme/.icons/bes_theme/square-rounded-outline.svg deleted file mode 100644 index 01758064..00000000 --- a/bes_theme/.icons/bes_theme/square-rounded-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/square-rounded.svg b/bes_theme/.icons/bes_theme/square-rounded.svg deleted file mode 100644 index 44250671..00000000 --- a/bes_theme/.icons/bes_theme/square-rounded.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/square-small.svg b/bes_theme/.icons/bes_theme/square-small.svg deleted file mode 100644 index a3663031..00000000 --- a/bes_theme/.icons/bes_theme/square-small.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/square-wave.svg b/bes_theme/.icons/bes_theme/square-wave.svg deleted file mode 100644 index 9e352f54..00000000 --- a/bes_theme/.icons/bes_theme/square-wave.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/square.svg b/bes_theme/.icons/bes_theme/square.svg deleted file mode 100644 index 50e39f54..00000000 --- a/bes_theme/.icons/bes_theme/square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/squeegee.svg b/bes_theme/.icons/bes_theme/squeegee.svg deleted file mode 100644 index ef69201e..00000000 --- a/bes_theme/.icons/bes_theme/squeegee.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ssh.svg b/bes_theme/.icons/bes_theme/ssh.svg deleted file mode 100644 index 6a303d76..00000000 --- a/bes_theme/.icons/bes_theme/ssh.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/stack-exchange.svg b/bes_theme/.icons/bes_theme/stack-exchange.svg deleted file mode 100644 index 17d50a55..00000000 --- a/bes_theme/.icons/bes_theme/stack-exchange.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/stack-overflow.svg b/bes_theme/.icons/bes_theme/stack-overflow.svg deleted file mode 100644 index 8861dfb3..00000000 --- a/bes_theme/.icons/bes_theme/stack-overflow.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/stackpath.svg b/bes_theme/.icons/bes_theme/stackpath.svg deleted file mode 100644 index d15b4627..00000000 --- a/bes_theme/.icons/bes_theme/stackpath.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/stadium-variant.svg b/bes_theme/.icons/bes_theme/stadium-variant.svg deleted file mode 100644 index 4ec3187f..00000000 --- a/bes_theme/.icons/bes_theme/stadium-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/stadium.svg b/bes_theme/.icons/bes_theme/stadium.svg deleted file mode 100644 index 065d7e12..00000000 --- a/bes_theme/.icons/bes_theme/stadium.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/stairs-box.svg b/bes_theme/.icons/bes_theme/stairs-box.svg deleted file mode 100644 index e90ac817..00000000 --- a/bes_theme/.icons/bes_theme/stairs-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/stairs-down.svg b/bes_theme/.icons/bes_theme/stairs-down.svg deleted file mode 100644 index 0f44861a..00000000 --- a/bes_theme/.icons/bes_theme/stairs-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/stairs-up.svg b/bes_theme/.icons/bes_theme/stairs-up.svg deleted file mode 100644 index 4c1685ab..00000000 --- a/bes_theme/.icons/bes_theme/stairs-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/stairs.svg b/bes_theme/.icons/bes_theme/stairs.svg deleted file mode 100644 index 798e2f5e..00000000 --- a/bes_theme/.icons/bes_theme/stairs.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/stamper.svg b/bes_theme/.icons/bes_theme/stamper.svg deleted file mode 100644 index 328b9a83..00000000 --- a/bes_theme/.icons/bes_theme/stamper.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/standard-definition.svg b/bes_theme/.icons/bes_theme/standard-definition.svg deleted file mode 100644 index 3086e4fa..00000000 --- a/bes_theme/.icons/bes_theme/standard-definition.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/star-box-multiple-outline.svg b/bes_theme/.icons/bes_theme/star-box-multiple-outline.svg deleted file mode 100644 index 1014ea48..00000000 --- a/bes_theme/.icons/bes_theme/star-box-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/star-box-multiple.svg b/bes_theme/.icons/bes_theme/star-box-multiple.svg deleted file mode 100644 index 7a90a2e1..00000000 --- a/bes_theme/.icons/bes_theme/star-box-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/star-box-outline.svg b/bes_theme/.icons/bes_theme/star-box-outline.svg deleted file mode 100644 index 99a560cd..00000000 --- a/bes_theme/.icons/bes_theme/star-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/star-box.svg b/bes_theme/.icons/bes_theme/star-box.svg deleted file mode 100644 index ce05ad21..00000000 --- a/bes_theme/.icons/bes_theme/star-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/star-check-outline.svg b/bes_theme/.icons/bes_theme/star-check-outline.svg deleted file mode 100644 index b4b1ee9f..00000000 --- a/bes_theme/.icons/bes_theme/star-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/star-check.svg b/bes_theme/.icons/bes_theme/star-check.svg deleted file mode 100644 index 7dfa0dcc..00000000 --- a/bes_theme/.icons/bes_theme/star-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/star-circle-outline.svg b/bes_theme/.icons/bes_theme/star-circle-outline.svg deleted file mode 100644 index cf3a7734..00000000 --- a/bes_theme/.icons/bes_theme/star-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/star-circle.svg b/bes_theme/.icons/bes_theme/star-circle.svg deleted file mode 100644 index 3b233e7b..00000000 --- a/bes_theme/.icons/bes_theme/star-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/star-cog-outline.svg b/bes_theme/.icons/bes_theme/star-cog-outline.svg deleted file mode 100644 index 1078e997..00000000 --- a/bes_theme/.icons/bes_theme/star-cog-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/star-cog.svg b/bes_theme/.icons/bes_theme/star-cog.svg deleted file mode 100644 index 627c3f7c..00000000 --- a/bes_theme/.icons/bes_theme/star-cog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/star-face.svg b/bes_theme/.icons/bes_theme/star-face.svg deleted file mode 100644 index b69fffa2..00000000 --- a/bes_theme/.icons/bes_theme/star-face.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/star-four-points-outline.svg b/bes_theme/.icons/bes_theme/star-four-points-outline.svg deleted file mode 100644 index c3fb78b6..00000000 --- a/bes_theme/.icons/bes_theme/star-four-points-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/star-four-points.svg b/bes_theme/.icons/bes_theme/star-four-points.svg deleted file mode 100644 index 15da4860..00000000 --- a/bes_theme/.icons/bes_theme/star-four-points.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/star-half-full.svg b/bes_theme/.icons/bes_theme/star-half-full.svg deleted file mode 100644 index 2ef46d17..00000000 --- a/bes_theme/.icons/bes_theme/star-half-full.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/star-half.svg b/bes_theme/.icons/bes_theme/star-half.svg deleted file mode 100644 index 9ed9aaa7..00000000 --- a/bes_theme/.icons/bes_theme/star-half.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/star-minus-outline.svg b/bes_theme/.icons/bes_theme/star-minus-outline.svg deleted file mode 100644 index 03dbf444..00000000 --- a/bes_theme/.icons/bes_theme/star-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/star-minus.svg b/bes_theme/.icons/bes_theme/star-minus.svg deleted file mode 100644 index 9da7227d..00000000 --- a/bes_theme/.icons/bes_theme/star-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/star-off-outline.svg b/bes_theme/.icons/bes_theme/star-off-outline.svg deleted file mode 100644 index 15f3f427..00000000 --- a/bes_theme/.icons/bes_theme/star-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/star-off.svg b/bes_theme/.icons/bes_theme/star-off.svg deleted file mode 100644 index b841790e..00000000 --- a/bes_theme/.icons/bes_theme/star-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/star-outline.svg b/bes_theme/.icons/bes_theme/star-outline.svg deleted file mode 100644 index e9b3cbd6..00000000 --- a/bes_theme/.icons/bes_theme/star-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/star-plus-outline.svg b/bes_theme/.icons/bes_theme/star-plus-outline.svg deleted file mode 100644 index b753752b..00000000 --- a/bes_theme/.icons/bes_theme/star-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/star-plus.svg b/bes_theme/.icons/bes_theme/star-plus.svg deleted file mode 100644 index 6b6e7258..00000000 --- a/bes_theme/.icons/bes_theme/star-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/star-remove-outline.svg b/bes_theme/.icons/bes_theme/star-remove-outline.svg deleted file mode 100644 index 136e6928..00000000 --- a/bes_theme/.icons/bes_theme/star-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/star-remove.svg b/bes_theme/.icons/bes_theme/star-remove.svg deleted file mode 100644 index 9226081e..00000000 --- a/bes_theme/.icons/bes_theme/star-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/star-settings-outline.svg b/bes_theme/.icons/bes_theme/star-settings-outline.svg deleted file mode 100644 index c2056b49..00000000 --- a/bes_theme/.icons/bes_theme/star-settings-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/star-settings.svg b/bes_theme/.icons/bes_theme/star-settings.svg deleted file mode 100644 index b672cdc0..00000000 --- a/bes_theme/.icons/bes_theme/star-settings.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/star-shooting-outline.svg b/bes_theme/.icons/bes_theme/star-shooting-outline.svg deleted file mode 100644 index 817d30a3..00000000 --- a/bes_theme/.icons/bes_theme/star-shooting-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/star-shooting.svg b/bes_theme/.icons/bes_theme/star-shooting.svg deleted file mode 100644 index 2130d215..00000000 --- a/bes_theme/.icons/bes_theme/star-shooting.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/star-three-points-outline.svg b/bes_theme/.icons/bes_theme/star-three-points-outline.svg deleted file mode 100644 index 15646505..00000000 --- a/bes_theme/.icons/bes_theme/star-three-points-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/star-three-points.svg b/bes_theme/.icons/bes_theme/star-three-points.svg deleted file mode 100644 index c390f846..00000000 --- a/bes_theme/.icons/bes_theme/star-three-points.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/star.svg b/bes_theme/.icons/bes_theme/star.svg deleted file mode 100644 index 5852c44f..00000000 --- a/bes_theme/.icons/bes_theme/star.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/state-machine.svg b/bes_theme/.icons/bes_theme/state-machine.svg deleted file mode 100644 index 4c7646f8..00000000 --- a/bes_theme/.icons/bes_theme/state-machine.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/steam.svg b/bes_theme/.icons/bes_theme/steam.svg deleted file mode 100644 index 8d0ef3dd..00000000 --- a/bes_theme/.icons/bes_theme/steam.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/steering-off.svg b/bes_theme/.icons/bes_theme/steering-off.svg deleted file mode 100644 index b66708e5..00000000 --- a/bes_theme/.icons/bes_theme/steering-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/steering.svg b/bes_theme/.icons/bes_theme/steering.svg deleted file mode 100644 index d8db499a..00000000 --- a/bes_theme/.icons/bes_theme/steering.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/step-backward-2.svg b/bes_theme/.icons/bes_theme/step-backward-2.svg deleted file mode 100644 index bef45a49..00000000 --- a/bes_theme/.icons/bes_theme/step-backward-2.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/step-backward.svg b/bes_theme/.icons/bes_theme/step-backward.svg deleted file mode 100644 index 889f501e..00000000 --- a/bes_theme/.icons/bes_theme/step-backward.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/step-forward-2.svg b/bes_theme/.icons/bes_theme/step-forward-2.svg deleted file mode 100644 index 8732a3d7..00000000 --- a/bes_theme/.icons/bes_theme/step-forward-2.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/step-forward.svg b/bes_theme/.icons/bes_theme/step-forward.svg deleted file mode 100644 index d4a0c7ab..00000000 --- a/bes_theme/.icons/bes_theme/step-forward.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/stethoscope.svg b/bes_theme/.icons/bes_theme/stethoscope.svg deleted file mode 100644 index 1a861d0b..00000000 --- a/bes_theme/.icons/bes_theme/stethoscope.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sticker-alert-outline.svg b/bes_theme/.icons/bes_theme/sticker-alert-outline.svg deleted file mode 100644 index e45ed838..00000000 --- a/bes_theme/.icons/bes_theme/sticker-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sticker-alert.svg b/bes_theme/.icons/bes_theme/sticker-alert.svg deleted file mode 100644 index e68cf3d6..00000000 --- a/bes_theme/.icons/bes_theme/sticker-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sticker-check-outline.svg b/bes_theme/.icons/bes_theme/sticker-check-outline.svg deleted file mode 100644 index c8d85b42..00000000 --- a/bes_theme/.icons/bes_theme/sticker-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sticker-check.svg b/bes_theme/.icons/bes_theme/sticker-check.svg deleted file mode 100644 index 83cab579..00000000 --- a/bes_theme/.icons/bes_theme/sticker-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sticker-circle-outline.svg b/bes_theme/.icons/bes_theme/sticker-circle-outline.svg deleted file mode 100644 index 3066bfae..00000000 --- a/bes_theme/.icons/bes_theme/sticker-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sticker-emoji.svg b/bes_theme/.icons/bes_theme/sticker-emoji.svg deleted file mode 100644 index 11a685c7..00000000 --- a/bes_theme/.icons/bes_theme/sticker-emoji.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sticker-minus-outline.svg b/bes_theme/.icons/bes_theme/sticker-minus-outline.svg deleted file mode 100644 index a041d8ed..00000000 --- a/bes_theme/.icons/bes_theme/sticker-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sticker-minus.svg b/bes_theme/.icons/bes_theme/sticker-minus.svg deleted file mode 100644 index 16030d99..00000000 --- a/bes_theme/.icons/bes_theme/sticker-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sticker-outline.svg b/bes_theme/.icons/bes_theme/sticker-outline.svg deleted file mode 100644 index 07e07cb7..00000000 --- a/bes_theme/.icons/bes_theme/sticker-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sticker-plus-outline.svg b/bes_theme/.icons/bes_theme/sticker-plus-outline.svg deleted file mode 100644 index 4161bfa4..00000000 --- a/bes_theme/.icons/bes_theme/sticker-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sticker-plus.svg b/bes_theme/.icons/bes_theme/sticker-plus.svg deleted file mode 100644 index a62efd97..00000000 --- a/bes_theme/.icons/bes_theme/sticker-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sticker-remove-outline.svg b/bes_theme/.icons/bes_theme/sticker-remove-outline.svg deleted file mode 100644 index 71bd9a03..00000000 --- a/bes_theme/.icons/bes_theme/sticker-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sticker-remove.svg b/bes_theme/.icons/bes_theme/sticker-remove.svg deleted file mode 100644 index e7ae9c6e..00000000 --- a/bes_theme/.icons/bes_theme/sticker-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sticker.svg b/bes_theme/.icons/bes_theme/sticker.svg deleted file mode 100644 index 3013f0af..00000000 --- a/bes_theme/.icons/bes_theme/sticker.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/stocking.svg b/bes_theme/.icons/bes_theme/stocking.svg deleted file mode 100644 index faa61915..00000000 --- a/bes_theme/.icons/bes_theme/stocking.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/stomach.svg b/bes_theme/.icons/bes_theme/stomach.svg deleted file mode 100644 index b30ff538..00000000 --- a/bes_theme/.icons/bes_theme/stomach.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/stop-circle-outline.svg b/bes_theme/.icons/bes_theme/stop-circle-outline.svg deleted file mode 100644 index ac046cf2..00000000 --- a/bes_theme/.icons/bes_theme/stop-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/stop-circle.svg b/bes_theme/.icons/bes_theme/stop-circle.svg deleted file mode 100644 index aa6d0b53..00000000 --- a/bes_theme/.icons/bes_theme/stop-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/stop.svg b/bes_theme/.icons/bes_theme/stop.svg deleted file mode 100644 index e4b3e5e1..00000000 --- a/bes_theme/.icons/bes_theme/stop.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/store-24-hour.svg b/bes_theme/.icons/bes_theme/store-24-hour.svg deleted file mode 100644 index 6a81ecd8..00000000 --- a/bes_theme/.icons/bes_theme/store-24-hour.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/store-minus.svg b/bes_theme/.icons/bes_theme/store-minus.svg deleted file mode 100644 index 1bbe99c6..00000000 --- a/bes_theme/.icons/bes_theme/store-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/store-outline.svg b/bes_theme/.icons/bes_theme/store-outline.svg deleted file mode 100644 index fac6fa6c..00000000 --- a/bes_theme/.icons/bes_theme/store-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/store-plus.svg b/bes_theme/.icons/bes_theme/store-plus.svg deleted file mode 100644 index 1d3149fb..00000000 --- a/bes_theme/.icons/bes_theme/store-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/store-remove.svg b/bes_theme/.icons/bes_theme/store-remove.svg deleted file mode 100644 index 87ec6f31..00000000 --- a/bes_theme/.icons/bes_theme/store-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/store.svg b/bes_theme/.icons/bes_theme/store.svg deleted file mode 100644 index b5e287ba..00000000 --- a/bes_theme/.icons/bes_theme/store.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/storefront-outline.svg b/bes_theme/.icons/bes_theme/storefront-outline.svg deleted file mode 100644 index 089e8912..00000000 --- a/bes_theme/.icons/bes_theme/storefront-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/storefront.svg b/bes_theme/.icons/bes_theme/storefront.svg deleted file mode 100644 index 6555d65b..00000000 --- a/bes_theme/.icons/bes_theme/storefront.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/stove.svg b/bes_theme/.icons/bes_theme/stove.svg deleted file mode 100644 index 8b59744f..00000000 --- a/bes_theme/.icons/bes_theme/stove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/strategy.svg b/bes_theme/.icons/bes_theme/strategy.svg deleted file mode 100644 index df1ecae2..00000000 --- a/bes_theme/.icons/bes_theme/strategy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/stretch-to-page-outline.svg b/bes_theme/.icons/bes_theme/stretch-to-page-outline.svg deleted file mode 100644 index bfd20594..00000000 --- a/bes_theme/.icons/bes_theme/stretch-to-page-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/stretch-to-page.svg b/bes_theme/.icons/bes_theme/stretch-to-page.svg deleted file mode 100644 index 4aab4718..00000000 --- a/bes_theme/.icons/bes_theme/stretch-to-page.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/string-lights-off.svg b/bes_theme/.icons/bes_theme/string-lights-off.svg deleted file mode 100644 index 8cdb2023..00000000 --- a/bes_theme/.icons/bes_theme/string-lights-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/string-lights.svg b/bes_theme/.icons/bes_theme/string-lights.svg deleted file mode 100644 index 1b1f13ae..00000000 --- a/bes_theme/.icons/bes_theme/string-lights.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/subdirectory-arrow-left.svg b/bes_theme/.icons/bes_theme/subdirectory-arrow-left.svg deleted file mode 100644 index a8c5bf98..00000000 --- a/bes_theme/.icons/bes_theme/subdirectory-arrow-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/subdirectory-arrow-right.svg b/bes_theme/.icons/bes_theme/subdirectory-arrow-right.svg deleted file mode 100644 index 8c7904c0..00000000 --- a/bes_theme/.icons/bes_theme/subdirectory-arrow-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/submarine.svg b/bes_theme/.icons/bes_theme/submarine.svg deleted file mode 100644 index 0f792ba9..00000000 --- a/bes_theme/.icons/bes_theme/submarine.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/subtitles-outline.svg b/bes_theme/.icons/bes_theme/subtitles-outline.svg deleted file mode 100644 index a6aaeb25..00000000 --- a/bes_theme/.icons/bes_theme/subtitles-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/subtitles.svg b/bes_theme/.icons/bes_theme/subtitles.svg deleted file mode 100644 index 6dff3cc1..00000000 --- a/bes_theme/.icons/bes_theme/subtitles.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/subway-alert-variant.svg b/bes_theme/.icons/bes_theme/subway-alert-variant.svg deleted file mode 100644 index 82229759..00000000 --- a/bes_theme/.icons/bes_theme/subway-alert-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/subway-variant.svg b/bes_theme/.icons/bes_theme/subway-variant.svg deleted file mode 100644 index fe742afd..00000000 --- a/bes_theme/.icons/bes_theme/subway-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/subway.svg b/bes_theme/.icons/bes_theme/subway.svg deleted file mode 100644 index c4099f65..00000000 --- a/bes_theme/.icons/bes_theme/subway.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/summit.svg b/bes_theme/.icons/bes_theme/summit.svg deleted file mode 100644 index 6ca5e882..00000000 --- a/bes_theme/.icons/bes_theme/summit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sunglasses.svg b/bes_theme/.icons/bes_theme/sunglasses.svg deleted file mode 100644 index 614e9f4c..00000000 --- a/bes_theme/.icons/bes_theme/sunglasses.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/surround-sound-2-0.svg b/bes_theme/.icons/bes_theme/surround-sound-2-0.svg deleted file mode 100644 index e1196b98..00000000 --- a/bes_theme/.icons/bes_theme/surround-sound-2-0.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/surround-sound-2-1.svg b/bes_theme/.icons/bes_theme/surround-sound-2-1.svg deleted file mode 100644 index 6659c8a9..00000000 --- a/bes_theme/.icons/bes_theme/surround-sound-2-1.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/surround-sound-3-1.svg b/bes_theme/.icons/bes_theme/surround-sound-3-1.svg deleted file mode 100644 index fded5fb9..00000000 --- a/bes_theme/.icons/bes_theme/surround-sound-3-1.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/surround-sound-5-1-2.svg b/bes_theme/.icons/bes_theme/surround-sound-5-1-2.svg deleted file mode 100644 index 0ab6e880..00000000 --- a/bes_theme/.icons/bes_theme/surround-sound-5-1-2.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/surround-sound-5-1.svg b/bes_theme/.icons/bes_theme/surround-sound-5-1.svg deleted file mode 100644 index c737bf19..00000000 --- a/bes_theme/.icons/bes_theme/surround-sound-5-1.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/surround-sound-7-1.svg b/bes_theme/.icons/bes_theme/surround-sound-7-1.svg deleted file mode 100644 index cef8f580..00000000 --- a/bes_theme/.icons/bes_theme/surround-sound-7-1.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/surround-sound.svg b/bes_theme/.icons/bes_theme/surround-sound.svg deleted file mode 100644 index 1a45cb1e..00000000 --- a/bes_theme/.icons/bes_theme/surround-sound.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/svg.svg b/bes_theme/.icons/bes_theme/svg.svg deleted file mode 100644 index 0ef0deae..00000000 --- a/bes_theme/.icons/bes_theme/svg.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/swap-horizontal-bold.svg b/bes_theme/.icons/bes_theme/swap-horizontal-bold.svg deleted file mode 100644 index b2d87269..00000000 --- a/bes_theme/.icons/bes_theme/swap-horizontal-bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/swap-horizontal-circle-outline.svg b/bes_theme/.icons/bes_theme/swap-horizontal-circle-outline.svg deleted file mode 100644 index bc813567..00000000 --- a/bes_theme/.icons/bes_theme/swap-horizontal-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/swap-horizontal-circle.svg b/bes_theme/.icons/bes_theme/swap-horizontal-circle.svg deleted file mode 100644 index b89eeb4d..00000000 --- a/bes_theme/.icons/bes_theme/swap-horizontal-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/swap-horizontal-variant.svg b/bes_theme/.icons/bes_theme/swap-horizontal-variant.svg deleted file mode 100644 index f022b18c..00000000 --- a/bes_theme/.icons/bes_theme/swap-horizontal-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/swap-horizontal.svg b/bes_theme/.icons/bes_theme/swap-horizontal.svg deleted file mode 100644 index d2dd884f..00000000 --- a/bes_theme/.icons/bes_theme/swap-horizontal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/swap-vertical-bold.svg b/bes_theme/.icons/bes_theme/swap-vertical-bold.svg deleted file mode 100644 index b436483d..00000000 --- a/bes_theme/.icons/bes_theme/swap-vertical-bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/swap-vertical-circle-outline.svg b/bes_theme/.icons/bes_theme/swap-vertical-circle-outline.svg deleted file mode 100644 index 177c0af0..00000000 --- a/bes_theme/.icons/bes_theme/swap-vertical-circle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/swap-vertical-circle.svg b/bes_theme/.icons/bes_theme/swap-vertical-circle.svg deleted file mode 100644 index 1e0bae2f..00000000 --- a/bes_theme/.icons/bes_theme/swap-vertical-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/swap-vertical-variant.svg b/bes_theme/.icons/bes_theme/swap-vertical-variant.svg deleted file mode 100644 index c16c9907..00000000 --- a/bes_theme/.icons/bes_theme/swap-vertical-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/swap-vertical.svg b/bes_theme/.icons/bes_theme/swap-vertical.svg deleted file mode 100644 index 8f205f5d..00000000 --- a/bes_theme/.icons/bes_theme/swap-vertical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/swim.svg b/bes_theme/.icons/bes_theme/swim.svg deleted file mode 100644 index 8bd5961a..00000000 --- a/bes_theme/.icons/bes_theme/swim.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/switch.svg b/bes_theme/.icons/bes_theme/switch.svg deleted file mode 100644 index 1dc5f0e8..00000000 --- a/bes_theme/.icons/bes_theme/switch.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sword-cross.svg b/bes_theme/.icons/bes_theme/sword-cross.svg deleted file mode 100644 index 21bd5371..00000000 --- a/bes_theme/.icons/bes_theme/sword-cross.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sword.svg b/bes_theme/.icons/bes_theme/sword.svg deleted file mode 100644 index c2077c66..00000000 --- a/bes_theme/.icons/bes_theme/sword.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/syllabary-hangul.svg b/bes_theme/.icons/bes_theme/syllabary-hangul.svg deleted file mode 100644 index 65620d03..00000000 --- a/bes_theme/.icons/bes_theme/syllabary-hangul.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/syllabary-hiragana.svg b/bes_theme/.icons/bes_theme/syllabary-hiragana.svg deleted file mode 100644 index b0d26fd3..00000000 --- a/bes_theme/.icons/bes_theme/syllabary-hiragana.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/syllabary-katakana-halfwidth.svg b/bes_theme/.icons/bes_theme/syllabary-katakana-halfwidth.svg deleted file mode 100644 index 3c547589..00000000 --- a/bes_theme/.icons/bes_theme/syllabary-katakana-halfwidth.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/syllabary-katakana.svg b/bes_theme/.icons/bes_theme/syllabary-katakana.svg deleted file mode 100644 index 0eeb0627..00000000 --- a/bes_theme/.icons/bes_theme/syllabary-katakana.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/symbol.svg b/bes_theme/.icons/bes_theme/symbol.svg deleted file mode 100644 index a2d21778..00000000 --- a/bes_theme/.icons/bes_theme/symbol.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/symfony.svg b/bes_theme/.icons/bes_theme/symfony.svg deleted file mode 100644 index 8e470743..00000000 --- a/bes_theme/.icons/bes_theme/symfony.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sync-alert.svg b/bes_theme/.icons/bes_theme/sync-alert.svg deleted file mode 100644 index ac423e43..00000000 --- a/bes_theme/.icons/bes_theme/sync-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sync-circle.svg b/bes_theme/.icons/bes_theme/sync-circle.svg deleted file mode 100644 index f4861dff..00000000 --- a/bes_theme/.icons/bes_theme/sync-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sync-off.svg b/bes_theme/.icons/bes_theme/sync-off.svg deleted file mode 100644 index f33e7387..00000000 --- a/bes_theme/.icons/bes_theme/sync-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/sync.svg b/bes_theme/.icons/bes_theme/sync.svg deleted file mode 100644 index d39e25b6..00000000 --- a/bes_theme/.icons/bes_theme/sync.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tab-minus.svg b/bes_theme/.icons/bes_theme/tab-minus.svg deleted file mode 100644 index 0d022aa5..00000000 --- a/bes_theme/.icons/bes_theme/tab-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tab-plus.svg b/bes_theme/.icons/bes_theme/tab-plus.svg deleted file mode 100644 index c91207c6..00000000 --- a/bes_theme/.icons/bes_theme/tab-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tab-remove.svg b/bes_theme/.icons/bes_theme/tab-remove.svg deleted file mode 100644 index ec1a52dd..00000000 --- a/bes_theme/.icons/bes_theme/tab-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tab-unselected.svg b/bes_theme/.icons/bes_theme/tab-unselected.svg deleted file mode 100644 index 9d028525..00000000 --- a/bes_theme/.icons/bes_theme/tab-unselected.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tab.svg b/bes_theme/.icons/bes_theme/tab.svg deleted file mode 100644 index 4ffd9636..00000000 --- a/bes_theme/.icons/bes_theme/tab.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-account.svg b/bes_theme/.icons/bes_theme/table-account.svg deleted file mode 100644 index 6e1015d9..00000000 --- a/bes_theme/.icons/bes_theme/table-account.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-alert.svg b/bes_theme/.icons/bes_theme/table-alert.svg deleted file mode 100644 index a3604c25..00000000 --- a/bes_theme/.icons/bes_theme/table-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-arrow-down.svg b/bes_theme/.icons/bes_theme/table-arrow-down.svg deleted file mode 100644 index 35b080ba..00000000 --- a/bes_theme/.icons/bes_theme/table-arrow-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-arrow-left.svg b/bes_theme/.icons/bes_theme/table-arrow-left.svg deleted file mode 100644 index 8bf216c5..00000000 --- a/bes_theme/.icons/bes_theme/table-arrow-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-arrow-right.svg b/bes_theme/.icons/bes_theme/table-arrow-right.svg deleted file mode 100644 index dba095c3..00000000 --- a/bes_theme/.icons/bes_theme/table-arrow-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-arrow-up.svg b/bes_theme/.icons/bes_theme/table-arrow-up.svg deleted file mode 100644 index b11960d9..00000000 --- a/bes_theme/.icons/bes_theme/table-arrow-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-border.svg b/bes_theme/.icons/bes_theme/table-border.svg deleted file mode 100644 index 86f8d38b..00000000 --- a/bes_theme/.icons/bes_theme/table-border.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-cancel.svg b/bes_theme/.icons/bes_theme/table-cancel.svg deleted file mode 100644 index 8c9a3a9e..00000000 --- a/bes_theme/.icons/bes_theme/table-cancel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-chair.svg b/bes_theme/.icons/bes_theme/table-chair.svg deleted file mode 100644 index 48fc9f5a..00000000 --- a/bes_theme/.icons/bes_theme/table-chair.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-check.svg b/bes_theme/.icons/bes_theme/table-check.svg deleted file mode 100644 index a79f49d7..00000000 --- a/bes_theme/.icons/bes_theme/table-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-clock.svg b/bes_theme/.icons/bes_theme/table-clock.svg deleted file mode 100644 index 19237a84..00000000 --- a/bes_theme/.icons/bes_theme/table-clock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-cog.svg b/bes_theme/.icons/bes_theme/table-cog.svg deleted file mode 100644 index 5050c82d..00000000 --- a/bes_theme/.icons/bes_theme/table-cog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-column-plus-after.svg b/bes_theme/.icons/bes_theme/table-column-plus-after.svg deleted file mode 100644 index 24851369..00000000 --- a/bes_theme/.icons/bes_theme/table-column-plus-after.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-column-plus-before.svg b/bes_theme/.icons/bes_theme/table-column-plus-before.svg deleted file mode 100644 index 386be916..00000000 --- a/bes_theme/.icons/bes_theme/table-column-plus-before.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-column-remove.svg b/bes_theme/.icons/bes_theme/table-column-remove.svg deleted file mode 100644 index 4801006d..00000000 --- a/bes_theme/.icons/bes_theme/table-column-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-column-width.svg b/bes_theme/.icons/bes_theme/table-column-width.svg deleted file mode 100644 index 959783ad..00000000 --- a/bes_theme/.icons/bes_theme/table-column-width.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-column.svg b/bes_theme/.icons/bes_theme/table-column.svg deleted file mode 100644 index c496d9f5..00000000 --- a/bes_theme/.icons/bes_theme/table-column.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-edit.svg b/bes_theme/.icons/bes_theme/table-edit.svg deleted file mode 100644 index e324b415..00000000 --- a/bes_theme/.icons/bes_theme/table-edit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-eye-off.svg b/bes_theme/.icons/bes_theme/table-eye-off.svg deleted file mode 100644 index 8b4999b3..00000000 --- a/bes_theme/.icons/bes_theme/table-eye-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-eye.svg b/bes_theme/.icons/bes_theme/table-eye.svg deleted file mode 100644 index 591a5c71..00000000 --- a/bes_theme/.icons/bes_theme/table-eye.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-furniture.svg b/bes_theme/.icons/bes_theme/table-furniture.svg deleted file mode 100644 index 9c20e78b..00000000 --- a/bes_theme/.icons/bes_theme/table-furniture.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-headers-eye-off.svg b/bes_theme/.icons/bes_theme/table-headers-eye-off.svg deleted file mode 100644 index d6c8a777..00000000 --- a/bes_theme/.icons/bes_theme/table-headers-eye-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-headers-eye.svg b/bes_theme/.icons/bes_theme/table-headers-eye.svg deleted file mode 100644 index 676c2e82..00000000 --- a/bes_theme/.icons/bes_theme/table-headers-eye.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-heart.svg b/bes_theme/.icons/bes_theme/table-heart.svg deleted file mode 100644 index a12a8aa7..00000000 --- a/bes_theme/.icons/bes_theme/table-heart.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-key.svg b/bes_theme/.icons/bes_theme/table-key.svg deleted file mode 100644 index ba8bb60c..00000000 --- a/bes_theme/.icons/bes_theme/table-key.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-large-plus.svg b/bes_theme/.icons/bes_theme/table-large-plus.svg deleted file mode 100644 index e4b06758..00000000 --- a/bes_theme/.icons/bes_theme/table-large-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-large-remove.svg b/bes_theme/.icons/bes_theme/table-large-remove.svg deleted file mode 100644 index c595b523..00000000 --- a/bes_theme/.icons/bes_theme/table-large-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-large.svg b/bes_theme/.icons/bes_theme/table-large.svg deleted file mode 100644 index c0df6d2a..00000000 --- a/bes_theme/.icons/bes_theme/table-large.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-lock.svg b/bes_theme/.icons/bes_theme/table-lock.svg deleted file mode 100644 index 24bc7018..00000000 --- a/bes_theme/.icons/bes_theme/table-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-merge-cells.svg b/bes_theme/.icons/bes_theme/table-merge-cells.svg deleted file mode 100644 index 19d20214..00000000 --- a/bes_theme/.icons/bes_theme/table-merge-cells.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-minus.svg b/bes_theme/.icons/bes_theme/table-minus.svg deleted file mode 100644 index f76b442b..00000000 --- a/bes_theme/.icons/bes_theme/table-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-multiple.svg b/bes_theme/.icons/bes_theme/table-multiple.svg deleted file mode 100644 index 503819ca..00000000 --- a/bes_theme/.icons/bes_theme/table-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-network.svg b/bes_theme/.icons/bes_theme/table-network.svg deleted file mode 100644 index 0d7cba5d..00000000 --- a/bes_theme/.icons/bes_theme/table-network.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-of-contents.svg b/bes_theme/.icons/bes_theme/table-of-contents.svg deleted file mode 100644 index 0a4d0c96..00000000 --- a/bes_theme/.icons/bes_theme/table-of-contents.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-off.svg b/bes_theme/.icons/bes_theme/table-off.svg deleted file mode 100644 index 3d9bc107..00000000 --- a/bes_theme/.icons/bes_theme/table-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-picnic.svg b/bes_theme/.icons/bes_theme/table-picnic.svg deleted file mode 100644 index 7f697c55..00000000 --- a/bes_theme/.icons/bes_theme/table-picnic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-plus.svg b/bes_theme/.icons/bes_theme/table-plus.svg deleted file mode 100644 index e89fd6b8..00000000 --- a/bes_theme/.icons/bes_theme/table-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-refresh.svg b/bes_theme/.icons/bes_theme/table-refresh.svg deleted file mode 100644 index 84614779..00000000 --- a/bes_theme/.icons/bes_theme/table-refresh.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-remove.svg b/bes_theme/.icons/bes_theme/table-remove.svg deleted file mode 100644 index 40992651..00000000 --- a/bes_theme/.icons/bes_theme/table-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-row-height.svg b/bes_theme/.icons/bes_theme/table-row-height.svg deleted file mode 100644 index fedd2681..00000000 --- a/bes_theme/.icons/bes_theme/table-row-height.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-row-plus-after.svg b/bes_theme/.icons/bes_theme/table-row-plus-after.svg deleted file mode 100644 index aba4d28a..00000000 --- a/bes_theme/.icons/bes_theme/table-row-plus-after.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-row-plus-before.svg b/bes_theme/.icons/bes_theme/table-row-plus-before.svg deleted file mode 100644 index 86c1e818..00000000 --- a/bes_theme/.icons/bes_theme/table-row-plus-before.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-row-remove.svg b/bes_theme/.icons/bes_theme/table-row-remove.svg deleted file mode 100644 index 39c0bdc0..00000000 --- a/bes_theme/.icons/bes_theme/table-row-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-row.svg b/bes_theme/.icons/bes_theme/table-row.svg deleted file mode 100644 index b7312763..00000000 --- a/bes_theme/.icons/bes_theme/table-row.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-search.svg b/bes_theme/.icons/bes_theme/table-search.svg deleted file mode 100644 index fb9bc6c8..00000000 --- a/bes_theme/.icons/bes_theme/table-search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-settings.svg b/bes_theme/.icons/bes_theme/table-settings.svg deleted file mode 100644 index bb53de3f..00000000 --- a/bes_theme/.icons/bes_theme/table-settings.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-split-cell.svg b/bes_theme/.icons/bes_theme/table-split-cell.svg deleted file mode 100644 index 97adff14..00000000 --- a/bes_theme/.icons/bes_theme/table-split-cell.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-star.svg b/bes_theme/.icons/bes_theme/table-star.svg deleted file mode 100644 index 8df50a44..00000000 --- a/bes_theme/.icons/bes_theme/table-star.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-sync.svg b/bes_theme/.icons/bes_theme/table-sync.svg deleted file mode 100644 index 5ff0c3e5..00000000 --- a/bes_theme/.icons/bes_theme/table-sync.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table-tennis.svg b/bes_theme/.icons/bes_theme/table-tennis.svg deleted file mode 100644 index 55786654..00000000 --- a/bes_theme/.icons/bes_theme/table-tennis.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/table.svg b/bes_theme/.icons/bes_theme/table.svg deleted file mode 100644 index eba8f87f..00000000 --- a/bes_theme/.icons/bes_theme/table.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tablet-android.svg b/bes_theme/.icons/bes_theme/tablet-android.svg deleted file mode 100644 index dc41c44d..00000000 --- a/bes_theme/.icons/bes_theme/tablet-android.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tablet-cellphone.svg b/bes_theme/.icons/bes_theme/tablet-cellphone.svg deleted file mode 100644 index aacb6a78..00000000 --- a/bes_theme/.icons/bes_theme/tablet-cellphone.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tablet-dashboard.svg b/bes_theme/.icons/bes_theme/tablet-dashboard.svg deleted file mode 100644 index 9c78b295..00000000 --- a/bes_theme/.icons/bes_theme/tablet-dashboard.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tablet-ipad.svg b/bes_theme/.icons/bes_theme/tablet-ipad.svg deleted file mode 100644 index e1f04095..00000000 --- a/bes_theme/.icons/bes_theme/tablet-ipad.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tablet.svg b/bes_theme/.icons/bes_theme/tablet.svg deleted file mode 100644 index d1e10a7c..00000000 --- a/bes_theme/.icons/bes_theme/tablet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/taco.svg b/bes_theme/.icons/bes_theme/taco.svg deleted file mode 100644 index a7750464..00000000 --- a/bes_theme/.icons/bes_theme/taco.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tag-arrow-down-outline.svg b/bes_theme/.icons/bes_theme/tag-arrow-down-outline.svg deleted file mode 100644 index 87021d54..00000000 --- a/bes_theme/.icons/bes_theme/tag-arrow-down-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tag-arrow-down.svg b/bes_theme/.icons/bes_theme/tag-arrow-down.svg deleted file mode 100644 index b2ed1b0e..00000000 --- a/bes_theme/.icons/bes_theme/tag-arrow-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tag-arrow-left-outline.svg b/bes_theme/.icons/bes_theme/tag-arrow-left-outline.svg deleted file mode 100644 index 15c6f6f3..00000000 --- a/bes_theme/.icons/bes_theme/tag-arrow-left-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tag-arrow-left.svg b/bes_theme/.icons/bes_theme/tag-arrow-left.svg deleted file mode 100644 index 6bcc627a..00000000 --- a/bes_theme/.icons/bes_theme/tag-arrow-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tag-arrow-right-outline.svg b/bes_theme/.icons/bes_theme/tag-arrow-right-outline.svg deleted file mode 100644 index 0f21c0dc..00000000 --- a/bes_theme/.icons/bes_theme/tag-arrow-right-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tag-arrow-right.svg b/bes_theme/.icons/bes_theme/tag-arrow-right.svg deleted file mode 100644 index 615e692f..00000000 --- a/bes_theme/.icons/bes_theme/tag-arrow-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tag-arrow-up-outline.svg b/bes_theme/.icons/bes_theme/tag-arrow-up-outline.svg deleted file mode 100644 index e97e9810..00000000 --- a/bes_theme/.icons/bes_theme/tag-arrow-up-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tag-arrow-up.svg b/bes_theme/.icons/bes_theme/tag-arrow-up.svg deleted file mode 100644 index 6a0b0ecb..00000000 --- a/bes_theme/.icons/bes_theme/tag-arrow-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tag-faces.svg b/bes_theme/.icons/bes_theme/tag-faces.svg deleted file mode 100644 index 84810bc2..00000000 --- a/bes_theme/.icons/bes_theme/tag-faces.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tag-heart-outline.svg b/bes_theme/.icons/bes_theme/tag-heart-outline.svg deleted file mode 100644 index edffe0cf..00000000 --- a/bes_theme/.icons/bes_theme/tag-heart-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tag-heart.svg b/bes_theme/.icons/bes_theme/tag-heart.svg deleted file mode 100644 index 9d329665..00000000 --- a/bes_theme/.icons/bes_theme/tag-heart.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tag-minus-outline.svg b/bes_theme/.icons/bes_theme/tag-minus-outline.svg deleted file mode 100644 index e3a8b326..00000000 --- a/bes_theme/.icons/bes_theme/tag-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tag-minus.svg b/bes_theme/.icons/bes_theme/tag-minus.svg deleted file mode 100644 index 17184151..00000000 --- a/bes_theme/.icons/bes_theme/tag-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tag-multiple-outline.svg b/bes_theme/.icons/bes_theme/tag-multiple-outline.svg deleted file mode 100644 index 19762289..00000000 --- a/bes_theme/.icons/bes_theme/tag-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tag-multiple.svg b/bes_theme/.icons/bes_theme/tag-multiple.svg deleted file mode 100644 index e2aeac70..00000000 --- a/bes_theme/.icons/bes_theme/tag-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tag-off-outline.svg b/bes_theme/.icons/bes_theme/tag-off-outline.svg deleted file mode 100644 index 43e8af52..00000000 --- a/bes_theme/.icons/bes_theme/tag-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tag-off.svg b/bes_theme/.icons/bes_theme/tag-off.svg deleted file mode 100644 index e97c59b5..00000000 --- a/bes_theme/.icons/bes_theme/tag-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tag-outline.svg b/bes_theme/.icons/bes_theme/tag-outline.svg deleted file mode 100644 index 5ef6bdbb..00000000 --- a/bes_theme/.icons/bes_theme/tag-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tag-plus-outline.svg b/bes_theme/.icons/bes_theme/tag-plus-outline.svg deleted file mode 100644 index c5d45d1c..00000000 --- a/bes_theme/.icons/bes_theme/tag-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tag-plus.svg b/bes_theme/.icons/bes_theme/tag-plus.svg deleted file mode 100644 index c727a836..00000000 --- a/bes_theme/.icons/bes_theme/tag-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tag-remove-outline.svg b/bes_theme/.icons/bes_theme/tag-remove-outline.svg deleted file mode 100644 index 49fd3cbf..00000000 --- a/bes_theme/.icons/bes_theme/tag-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tag-remove.svg b/bes_theme/.icons/bes_theme/tag-remove.svg deleted file mode 100644 index f3f5e6b7..00000000 --- a/bes_theme/.icons/bes_theme/tag-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tag-text-outline.svg b/bes_theme/.icons/bes_theme/tag-text-outline.svg deleted file mode 100644 index bd155075..00000000 --- a/bes_theme/.icons/bes_theme/tag-text-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tag-text.svg b/bes_theme/.icons/bes_theme/tag-text.svg deleted file mode 100644 index 7f47b305..00000000 --- a/bes_theme/.icons/bes_theme/tag-text.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tag.svg b/bes_theme/.icons/bes_theme/tag.svg deleted file mode 100644 index 25c11e7c..00000000 --- a/bes_theme/.icons/bes_theme/tag.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tailwind.svg b/bes_theme/.icons/bes_theme/tailwind.svg deleted file mode 100644 index d8fb3efd..00000000 --- a/bes_theme/.icons/bes_theme/tailwind.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tank.svg b/bes_theme/.icons/bes_theme/tank.svg deleted file mode 100644 index cdd80812..00000000 --- a/bes_theme/.icons/bes_theme/tank.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tanker-truck.svg b/bes_theme/.icons/bes_theme/tanker-truck.svg deleted file mode 100644 index ae851eb6..00000000 --- a/bes_theme/.icons/bes_theme/tanker-truck.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tape-drive.svg b/bes_theme/.icons/bes_theme/tape-drive.svg deleted file mode 100644 index 203908af..00000000 --- a/bes_theme/.icons/bes_theme/tape-drive.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tape-measure.svg b/bes_theme/.icons/bes_theme/tape-measure.svg deleted file mode 100644 index 4ba063e4..00000000 --- a/bes_theme/.icons/bes_theme/tape-measure.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/target-account.svg b/bes_theme/.icons/bes_theme/target-account.svg deleted file mode 100644 index a926fe47..00000000 --- a/bes_theme/.icons/bes_theme/target-account.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/target-variant.svg b/bes_theme/.icons/bes_theme/target-variant.svg deleted file mode 100644 index f0bd7785..00000000 --- a/bes_theme/.icons/bes_theme/target-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/target.svg b/bes_theme/.icons/bes_theme/target.svg deleted file mode 100644 index 10b92f3b..00000000 --- a/bes_theme/.icons/bes_theme/target.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/taxi.svg b/bes_theme/.icons/bes_theme/taxi.svg deleted file mode 100644 index dba1000a..00000000 --- a/bes_theme/.icons/bes_theme/taxi.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tea-outline.svg b/bes_theme/.icons/bes_theme/tea-outline.svg deleted file mode 100644 index 6c056ece..00000000 --- a/bes_theme/.icons/bes_theme/tea-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tea.svg b/bes_theme/.icons/bes_theme/tea.svg deleted file mode 100644 index 7bb5eeb8..00000000 --- a/bes_theme/.icons/bes_theme/tea.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/teach.svg b/bes_theme/.icons/bes_theme/teach.svg deleted file mode 100644 index fba3e6ac..00000000 --- a/bes_theme/.icons/bes_theme/teach.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/teamviewer.svg b/bes_theme/.icons/bes_theme/teamviewer.svg deleted file mode 100644 index 11a82865..00000000 --- a/bes_theme/.icons/bes_theme/teamviewer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/telegram.svg b/bes_theme/.icons/bes_theme/telegram.svg deleted file mode 100644 index bb1b65be..00000000 --- a/bes_theme/.icons/bes_theme/telegram.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/telescope.svg b/bes_theme/.icons/bes_theme/telescope.svg deleted file mode 100644 index aeeb31fa..00000000 --- a/bes_theme/.icons/bes_theme/telescope.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/television-ambient-light.svg b/bes_theme/.icons/bes_theme/television-ambient-light.svg deleted file mode 100644 index b5e2467a..00000000 --- a/bes_theme/.icons/bes_theme/television-ambient-light.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/television-box.svg b/bes_theme/.icons/bes_theme/television-box.svg deleted file mode 100644 index ef4de8ca..00000000 --- a/bes_theme/.icons/bes_theme/television-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/television-classic-off.svg b/bes_theme/.icons/bes_theme/television-classic-off.svg deleted file mode 100644 index 8b4876f5..00000000 --- a/bes_theme/.icons/bes_theme/television-classic-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/television-classic.svg b/bes_theme/.icons/bes_theme/television-classic.svg deleted file mode 100644 index 6e00f99d..00000000 --- a/bes_theme/.icons/bes_theme/television-classic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/television-clean.svg b/bes_theme/.icons/bes_theme/television-clean.svg deleted file mode 100644 index d6c9dcbc..00000000 --- a/bes_theme/.icons/bes_theme/television-clean.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/television-guide.svg b/bes_theme/.icons/bes_theme/television-guide.svg deleted file mode 100644 index 1ae44b1c..00000000 --- a/bes_theme/.icons/bes_theme/television-guide.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/television-off.svg b/bes_theme/.icons/bes_theme/television-off.svg deleted file mode 100644 index 10fbdacf..00000000 --- a/bes_theme/.icons/bes_theme/television-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/television-pause.svg b/bes_theme/.icons/bes_theme/television-pause.svg deleted file mode 100644 index e1d19372..00000000 --- a/bes_theme/.icons/bes_theme/television-pause.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/television-play.svg b/bes_theme/.icons/bes_theme/television-play.svg deleted file mode 100644 index a4f61965..00000000 --- a/bes_theme/.icons/bes_theme/television-play.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/television-stop.svg b/bes_theme/.icons/bes_theme/television-stop.svg deleted file mode 100644 index c4d7b57c..00000000 --- a/bes_theme/.icons/bes_theme/television-stop.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/television.svg b/bes_theme/.icons/bes_theme/television.svg deleted file mode 100644 index a9d4e613..00000000 --- a/bes_theme/.icons/bes_theme/television.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/temperature-celsius.svg b/bes_theme/.icons/bes_theme/temperature-celsius.svg deleted file mode 100644 index de81106f..00000000 --- a/bes_theme/.icons/bes_theme/temperature-celsius.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/temperature-fahrenheit.svg b/bes_theme/.icons/bes_theme/temperature-fahrenheit.svg deleted file mode 100644 index e9a1842f..00000000 --- a/bes_theme/.icons/bes_theme/temperature-fahrenheit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/temperature-kelvin.svg b/bes_theme/.icons/bes_theme/temperature-kelvin.svg deleted file mode 100644 index 8e99bbfc..00000000 --- a/bes_theme/.icons/bes_theme/temperature-kelvin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tennis-ball.svg b/bes_theme/.icons/bes_theme/tennis-ball.svg deleted file mode 100644 index 0f40fd42..00000000 --- a/bes_theme/.icons/bes_theme/tennis-ball.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tennis.svg b/bes_theme/.icons/bes_theme/tennis.svg deleted file mode 100644 index 34be5ff2..00000000 --- a/bes_theme/.icons/bes_theme/tennis.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tent.svg b/bes_theme/.icons/bes_theme/tent.svg deleted file mode 100644 index 2212e2b5..00000000 --- a/bes_theme/.icons/bes_theme/tent.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/terraform.svg b/bes_theme/.icons/bes_theme/terraform.svg deleted file mode 100644 index 5028cb86..00000000 --- a/bes_theme/.icons/bes_theme/terraform.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/terrain.svg b/bes_theme/.icons/bes_theme/terrain.svg deleted file mode 100644 index 9f426bb0..00000000 --- a/bes_theme/.icons/bes_theme/terrain.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/test-tube-empty.svg b/bes_theme/.icons/bes_theme/test-tube-empty.svg deleted file mode 100644 index 2de9c6cb..00000000 --- a/bes_theme/.icons/bes_theme/test-tube-empty.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/test-tube-off.svg b/bes_theme/.icons/bes_theme/test-tube-off.svg deleted file mode 100644 index 34e7c895..00000000 --- a/bes_theme/.icons/bes_theme/test-tube-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/test-tube.svg b/bes_theme/.icons/bes_theme/test-tube.svg deleted file mode 100644 index 8f487209..00000000 --- a/bes_theme/.icons/bes_theme/test-tube.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/text-account.svg b/bes_theme/.icons/bes_theme/text-account.svg deleted file mode 100644 index c9fe06f2..00000000 --- a/bes_theme/.icons/bes_theme/text-account.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/text-box-check-outline.svg b/bes_theme/.icons/bes_theme/text-box-check-outline.svg deleted file mode 100644 index 7e75569e..00000000 --- a/bes_theme/.icons/bes_theme/text-box-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/text-box-check.svg b/bes_theme/.icons/bes_theme/text-box-check.svg deleted file mode 100644 index 8bdd1f0c..00000000 --- a/bes_theme/.icons/bes_theme/text-box-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/text-box-minus-outline.svg b/bes_theme/.icons/bes_theme/text-box-minus-outline.svg deleted file mode 100644 index b892e7a0..00000000 --- a/bes_theme/.icons/bes_theme/text-box-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/text-box-minus.svg b/bes_theme/.icons/bes_theme/text-box-minus.svg deleted file mode 100644 index b74bf1e2..00000000 --- a/bes_theme/.icons/bes_theme/text-box-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/text-box-multiple-outline.svg b/bes_theme/.icons/bes_theme/text-box-multiple-outline.svg deleted file mode 100644 index 9987ad53..00000000 --- a/bes_theme/.icons/bes_theme/text-box-multiple-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/text-box-multiple.svg b/bes_theme/.icons/bes_theme/text-box-multiple.svg deleted file mode 100644 index 740c2d04..00000000 --- a/bes_theme/.icons/bes_theme/text-box-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/text-box-outline.svg b/bes_theme/.icons/bes_theme/text-box-outline.svg deleted file mode 100644 index 2fafb512..00000000 --- a/bes_theme/.icons/bes_theme/text-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/text-box-plus-outline.svg b/bes_theme/.icons/bes_theme/text-box-plus-outline.svg deleted file mode 100644 index 11819bf9..00000000 --- a/bes_theme/.icons/bes_theme/text-box-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/text-box-plus.svg b/bes_theme/.icons/bes_theme/text-box-plus.svg deleted file mode 100644 index 53e940a2..00000000 --- a/bes_theme/.icons/bes_theme/text-box-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/text-box-remove-outline.svg b/bes_theme/.icons/bes_theme/text-box-remove-outline.svg deleted file mode 100644 index 297d3914..00000000 --- a/bes_theme/.icons/bes_theme/text-box-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/text-box-remove.svg b/bes_theme/.icons/bes_theme/text-box-remove.svg deleted file mode 100644 index 1434434f..00000000 --- a/bes_theme/.icons/bes_theme/text-box-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/text-box-search-outline.svg b/bes_theme/.icons/bes_theme/text-box-search-outline.svg deleted file mode 100644 index 334231e8..00000000 --- a/bes_theme/.icons/bes_theme/text-box-search-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/text-box-search.svg b/bes_theme/.icons/bes_theme/text-box-search.svg deleted file mode 100644 index 7afd0629..00000000 --- a/bes_theme/.icons/bes_theme/text-box-search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/text-box.svg b/bes_theme/.icons/bes_theme/text-box.svg deleted file mode 100644 index 3f7cb5e2..00000000 --- a/bes_theme/.icons/bes_theme/text-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/text-recognition.svg b/bes_theme/.icons/bes_theme/text-recognition.svg deleted file mode 100644 index 965d782e..00000000 --- a/bes_theme/.icons/bes_theme/text-recognition.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/text-search.svg b/bes_theme/.icons/bes_theme/text-search.svg deleted file mode 100644 index de5e58cb..00000000 --- a/bes_theme/.icons/bes_theme/text-search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/text-shadow.svg b/bes_theme/.icons/bes_theme/text-shadow.svg deleted file mode 100644 index 8d13398d..00000000 --- a/bes_theme/.icons/bes_theme/text-shadow.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/text-short.svg b/bes_theme/.icons/bes_theme/text-short.svg deleted file mode 100644 index 45410439..00000000 --- a/bes_theme/.icons/bes_theme/text-short.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/text-subject.svg b/bes_theme/.icons/bes_theme/text-subject.svg deleted file mode 100644 index 58d13045..00000000 --- a/bes_theme/.icons/bes_theme/text-subject.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/text-to-speech-off.svg b/bes_theme/.icons/bes_theme/text-to-speech-off.svg deleted file mode 100644 index 42cfe32f..00000000 --- a/bes_theme/.icons/bes_theme/text-to-speech-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/text-to-speech.svg b/bes_theme/.icons/bes_theme/text-to-speech.svg deleted file mode 100644 index 7bed94dc..00000000 --- a/bes_theme/.icons/bes_theme/text-to-speech.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/text.svg b/bes_theme/.icons/bes_theme/text.svg deleted file mode 100644 index e5f966ab..00000000 --- a/bes_theme/.icons/bes_theme/text.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/texture-box.svg b/bes_theme/.icons/bes_theme/texture-box.svg deleted file mode 100644 index 0f349084..00000000 --- a/bes_theme/.icons/bes_theme/texture-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/texture.svg b/bes_theme/.icons/bes_theme/texture.svg deleted file mode 100644 index b51cf5a0..00000000 --- a/bes_theme/.icons/bes_theme/texture.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/theater.svg b/bes_theme/.icons/bes_theme/theater.svg deleted file mode 100644 index 1b430cf8..00000000 --- a/bes_theme/.icons/bes_theme/theater.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/theme-light-dark.svg b/bes_theme/.icons/bes_theme/theme-light-dark.svg deleted file mode 100644 index 83195aeb..00000000 --- a/bes_theme/.icons/bes_theme/theme-light-dark.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/thermometer-alert.svg b/bes_theme/.icons/bes_theme/thermometer-alert.svg deleted file mode 100644 index 9403eca4..00000000 --- a/bes_theme/.icons/bes_theme/thermometer-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/thermometer-chevron-down.svg b/bes_theme/.icons/bes_theme/thermometer-chevron-down.svg deleted file mode 100644 index abb2d963..00000000 --- a/bes_theme/.icons/bes_theme/thermometer-chevron-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/thermometer-chevron-up.svg b/bes_theme/.icons/bes_theme/thermometer-chevron-up.svg deleted file mode 100644 index 6658083c..00000000 --- a/bes_theme/.icons/bes_theme/thermometer-chevron-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/thermometer-high.svg b/bes_theme/.icons/bes_theme/thermometer-high.svg deleted file mode 100644 index d9fd1d73..00000000 --- a/bes_theme/.icons/bes_theme/thermometer-high.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/thermometer-lines.svg b/bes_theme/.icons/bes_theme/thermometer-lines.svg deleted file mode 100644 index f25ae005..00000000 --- a/bes_theme/.icons/bes_theme/thermometer-lines.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/thermometer-low.svg b/bes_theme/.icons/bes_theme/thermometer-low.svg deleted file mode 100644 index 870e6ad8..00000000 --- a/bes_theme/.icons/bes_theme/thermometer-low.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/thermometer-minus.svg b/bes_theme/.icons/bes_theme/thermometer-minus.svg deleted file mode 100644 index e3007bee..00000000 --- a/bes_theme/.icons/bes_theme/thermometer-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/thermometer-off.svg b/bes_theme/.icons/bes_theme/thermometer-off.svg deleted file mode 100644 index 3c9d238c..00000000 --- a/bes_theme/.icons/bes_theme/thermometer-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/thermometer-plus.svg b/bes_theme/.icons/bes_theme/thermometer-plus.svg deleted file mode 100644 index 6af038b3..00000000 --- a/bes_theme/.icons/bes_theme/thermometer-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/thermometer.svg b/bes_theme/.icons/bes_theme/thermometer.svg deleted file mode 100644 index 7ce41c58..00000000 --- a/bes_theme/.icons/bes_theme/thermometer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/thermostat-box.svg b/bes_theme/.icons/bes_theme/thermostat-box.svg deleted file mode 100644 index f98691b0..00000000 --- a/bes_theme/.icons/bes_theme/thermostat-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/thermostat.svg b/bes_theme/.icons/bes_theme/thermostat.svg deleted file mode 100644 index 6e6edfed..00000000 --- a/bes_theme/.icons/bes_theme/thermostat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/thought-bubble-outline.svg b/bes_theme/.icons/bes_theme/thought-bubble-outline.svg deleted file mode 100644 index fde52d8a..00000000 --- a/bes_theme/.icons/bes_theme/thought-bubble-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/thought-bubble.svg b/bes_theme/.icons/bes_theme/thought-bubble.svg deleted file mode 100644 index ddf005f4..00000000 --- a/bes_theme/.icons/bes_theme/thought-bubble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/thumb-down-outline.svg b/bes_theme/.icons/bes_theme/thumb-down-outline.svg deleted file mode 100644 index f40dd509..00000000 --- a/bes_theme/.icons/bes_theme/thumb-down-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/thumb-down.svg b/bes_theme/.icons/bes_theme/thumb-down.svg deleted file mode 100644 index 50b89050..00000000 --- a/bes_theme/.icons/bes_theme/thumb-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/thumb-up-outline.svg b/bes_theme/.icons/bes_theme/thumb-up-outline.svg deleted file mode 100644 index 640b1138..00000000 --- a/bes_theme/.icons/bes_theme/thumb-up-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/thumb-up.svg b/bes_theme/.icons/bes_theme/thumb-up.svg deleted file mode 100644 index 3d41329d..00000000 --- a/bes_theme/.icons/bes_theme/thumb-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/thumbs-up-down.svg b/bes_theme/.icons/bes_theme/thumbs-up-down.svg deleted file mode 100644 index 323b164e..00000000 --- a/bes_theme/.icons/bes_theme/thumbs-up-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ticket-account.svg b/bes_theme/.icons/bes_theme/ticket-account.svg deleted file mode 100644 index 4bf74c4f..00000000 --- a/bes_theme/.icons/bes_theme/ticket-account.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ticket-confirmation-outline.svg b/bes_theme/.icons/bes_theme/ticket-confirmation-outline.svg deleted file mode 100644 index 11ad6652..00000000 --- a/bes_theme/.icons/bes_theme/ticket-confirmation-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ticket-confirmation.svg b/bes_theme/.icons/bes_theme/ticket-confirmation.svg deleted file mode 100644 index b053db74..00000000 --- a/bes_theme/.icons/bes_theme/ticket-confirmation.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ticket-outline.svg b/bes_theme/.icons/bes_theme/ticket-outline.svg deleted file mode 100644 index 8663f920..00000000 --- a/bes_theme/.icons/bes_theme/ticket-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ticket-percent-outline.svg b/bes_theme/.icons/bes_theme/ticket-percent-outline.svg deleted file mode 100644 index ce1c1b85..00000000 --- a/bes_theme/.icons/bes_theme/ticket-percent-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ticket-percent.svg b/bes_theme/.icons/bes_theme/ticket-percent.svg deleted file mode 100644 index 3ba7a61d..00000000 --- a/bes_theme/.icons/bes_theme/ticket-percent.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ticket.svg b/bes_theme/.icons/bes_theme/ticket.svg deleted file mode 100644 index fe36c44c..00000000 --- a/bes_theme/.icons/bes_theme/ticket.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tie.svg b/bes_theme/.icons/bes_theme/tie.svg deleted file mode 100644 index 505dbc0a..00000000 --- a/bes_theme/.icons/bes_theme/tie.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tilde.svg b/bes_theme/.icons/bes_theme/tilde.svg deleted file mode 100644 index 22a0e5a5..00000000 --- a/bes_theme/.icons/bes_theme/tilde.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/timelapse.svg b/bes_theme/.icons/bes_theme/timelapse.svg deleted file mode 100644 index 42c1356d..00000000 --- a/bes_theme/.icons/bes_theme/timelapse.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/timeline-alert-outline.svg b/bes_theme/.icons/bes_theme/timeline-alert-outline.svg deleted file mode 100644 index a8f941e6..00000000 --- a/bes_theme/.icons/bes_theme/timeline-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/timeline-alert.svg b/bes_theme/.icons/bes_theme/timeline-alert.svg deleted file mode 100644 index 2a7a58fc..00000000 --- a/bes_theme/.icons/bes_theme/timeline-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/timeline-check-outline.svg b/bes_theme/.icons/bes_theme/timeline-check-outline.svg deleted file mode 100644 index 223e2836..00000000 --- a/bes_theme/.icons/bes_theme/timeline-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/timeline-check.svg b/bes_theme/.icons/bes_theme/timeline-check.svg deleted file mode 100644 index ec920ab1..00000000 --- a/bes_theme/.icons/bes_theme/timeline-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/timeline-clock-outline.svg b/bes_theme/.icons/bes_theme/timeline-clock-outline.svg deleted file mode 100644 index dea034d8..00000000 --- a/bes_theme/.icons/bes_theme/timeline-clock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/timeline-clock.svg b/bes_theme/.icons/bes_theme/timeline-clock.svg deleted file mode 100644 index f0d9e407..00000000 --- a/bes_theme/.icons/bes_theme/timeline-clock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/timeline-help-outline.svg b/bes_theme/.icons/bes_theme/timeline-help-outline.svg deleted file mode 100644 index 683352e1..00000000 --- a/bes_theme/.icons/bes_theme/timeline-help-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/timeline-help.svg b/bes_theme/.icons/bes_theme/timeline-help.svg deleted file mode 100644 index a441c69f..00000000 --- a/bes_theme/.icons/bes_theme/timeline-help.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/timeline-minus-outline.svg b/bes_theme/.icons/bes_theme/timeline-minus-outline.svg deleted file mode 100644 index b79abbe8..00000000 --- a/bes_theme/.icons/bes_theme/timeline-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/timeline-minus.svg b/bes_theme/.icons/bes_theme/timeline-minus.svg deleted file mode 100644 index 84d3060d..00000000 --- a/bes_theme/.icons/bes_theme/timeline-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/timeline-outline.svg b/bes_theme/.icons/bes_theme/timeline-outline.svg deleted file mode 100644 index 61e05ee5..00000000 --- a/bes_theme/.icons/bes_theme/timeline-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/timeline-plus-outline.svg b/bes_theme/.icons/bes_theme/timeline-plus-outline.svg deleted file mode 100644 index aea4fc32..00000000 --- a/bes_theme/.icons/bes_theme/timeline-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/timeline-plus.svg b/bes_theme/.icons/bes_theme/timeline-plus.svg deleted file mode 100644 index 1663262a..00000000 --- a/bes_theme/.icons/bes_theme/timeline-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/timeline-remove-outline.svg b/bes_theme/.icons/bes_theme/timeline-remove-outline.svg deleted file mode 100644 index fb623bb1..00000000 --- a/bes_theme/.icons/bes_theme/timeline-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/timeline-remove.svg b/bes_theme/.icons/bes_theme/timeline-remove.svg deleted file mode 100644 index e0f1e6c3..00000000 --- a/bes_theme/.icons/bes_theme/timeline-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/timeline-text-outline.svg b/bes_theme/.icons/bes_theme/timeline-text-outline.svg deleted file mode 100644 index b9cb63dd..00000000 --- a/bes_theme/.icons/bes_theme/timeline-text-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/timeline-text.svg b/bes_theme/.icons/bes_theme/timeline-text.svg deleted file mode 100644 index e14a0c56..00000000 --- a/bes_theme/.icons/bes_theme/timeline-text.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/timeline.svg b/bes_theme/.icons/bes_theme/timeline.svg deleted file mode 100644 index 7e192e76..00000000 --- a/bes_theme/.icons/bes_theme/timeline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/timer-10.svg b/bes_theme/.icons/bes_theme/timer-10.svg deleted file mode 100644 index c45173af..00000000 --- a/bes_theme/.icons/bes_theme/timer-10.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/timer-3.svg b/bes_theme/.icons/bes_theme/timer-3.svg deleted file mode 100644 index b3a391dd..00000000 --- a/bes_theme/.icons/bes_theme/timer-3.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/timer-off-outline.svg b/bes_theme/.icons/bes_theme/timer-off-outline.svg deleted file mode 100644 index 23b22357..00000000 --- a/bes_theme/.icons/bes_theme/timer-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/timer-off.svg b/bes_theme/.icons/bes_theme/timer-off.svg deleted file mode 100644 index 2e25279b..00000000 --- a/bes_theme/.icons/bes_theme/timer-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/timer-outline.svg b/bes_theme/.icons/bes_theme/timer-outline.svg deleted file mode 100644 index b39d8325..00000000 --- a/bes_theme/.icons/bes_theme/timer-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/timer-sand-empty.svg b/bes_theme/.icons/bes_theme/timer-sand-empty.svg deleted file mode 100644 index 4e0b9638..00000000 --- a/bes_theme/.icons/bes_theme/timer-sand-empty.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/timer-sand-full.svg b/bes_theme/.icons/bes_theme/timer-sand-full.svg deleted file mode 100644 index 17400dcd..00000000 --- a/bes_theme/.icons/bes_theme/timer-sand-full.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/timer-sand.svg b/bes_theme/.icons/bes_theme/timer-sand.svg deleted file mode 100644 index 8dd6a33d..00000000 --- a/bes_theme/.icons/bes_theme/timer-sand.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/timer.svg b/bes_theme/.icons/bes_theme/timer.svg deleted file mode 100644 index a7562de4..00000000 --- a/bes_theme/.icons/bes_theme/timer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/timetable.svg b/bes_theme/.icons/bes_theme/timetable.svg deleted file mode 100644 index df1d50a5..00000000 --- a/bes_theme/.icons/bes_theme/timetable.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/toaster-off.svg b/bes_theme/.icons/bes_theme/toaster-off.svg deleted file mode 100644 index 845c0b46..00000000 --- a/bes_theme/.icons/bes_theme/toaster-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/toaster-oven.svg b/bes_theme/.icons/bes_theme/toaster-oven.svg deleted file mode 100644 index 1feae37b..00000000 --- a/bes_theme/.icons/bes_theme/toaster-oven.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/toaster.svg b/bes_theme/.icons/bes_theme/toaster.svg deleted file mode 100644 index 1e7e1ef7..00000000 --- a/bes_theme/.icons/bes_theme/toaster.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/toggle-switch-off-outline.svg b/bes_theme/.icons/bes_theme/toggle-switch-off-outline.svg deleted file mode 100644 index 9daaa0eb..00000000 --- a/bes_theme/.icons/bes_theme/toggle-switch-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/toggle-switch-off.svg b/bes_theme/.icons/bes_theme/toggle-switch-off.svg deleted file mode 100644 index 1a5f8284..00000000 --- a/bes_theme/.icons/bes_theme/toggle-switch-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/toggle-switch-outline.svg b/bes_theme/.icons/bes_theme/toggle-switch-outline.svg deleted file mode 100644 index 58a30b9f..00000000 --- a/bes_theme/.icons/bes_theme/toggle-switch-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/toggle-switch.svg b/bes_theme/.icons/bes_theme/toggle-switch.svg deleted file mode 100644 index a5cb0f93..00000000 --- a/bes_theme/.icons/bes_theme/toggle-switch.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/toilet.svg b/bes_theme/.icons/bes_theme/toilet.svg deleted file mode 100644 index a81dd750..00000000 --- a/bes_theme/.icons/bes_theme/toilet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/toolbox-outline.svg b/bes_theme/.icons/bes_theme/toolbox-outline.svg deleted file mode 100644 index c8861506..00000000 --- a/bes_theme/.icons/bes_theme/toolbox-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/toolbox.svg b/bes_theme/.icons/bes_theme/toolbox.svg deleted file mode 100644 index 7f64fb72..00000000 --- a/bes_theme/.icons/bes_theme/toolbox.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tools.svg b/bes_theme/.icons/bes_theme/tools.svg deleted file mode 100644 index 121ebcf9..00000000 --- a/bes_theme/.icons/bes_theme/tools.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tooltip-account.svg b/bes_theme/.icons/bes_theme/tooltip-account.svg deleted file mode 100644 index 7ebc8212..00000000 --- a/bes_theme/.icons/bes_theme/tooltip-account.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tooltip-check-outline.svg b/bes_theme/.icons/bes_theme/tooltip-check-outline.svg deleted file mode 100644 index 006a3c9f..00000000 --- a/bes_theme/.icons/bes_theme/tooltip-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tooltip-check.svg b/bes_theme/.icons/bes_theme/tooltip-check.svg deleted file mode 100644 index ba780f2c..00000000 --- a/bes_theme/.icons/bes_theme/tooltip-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tooltip-edit-outline.svg b/bes_theme/.icons/bes_theme/tooltip-edit-outline.svg deleted file mode 100644 index 0e16c4f6..00000000 --- a/bes_theme/.icons/bes_theme/tooltip-edit-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tooltip-edit.svg b/bes_theme/.icons/bes_theme/tooltip-edit.svg deleted file mode 100644 index 129dc3ad..00000000 --- a/bes_theme/.icons/bes_theme/tooltip-edit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tooltip-image-outline.svg b/bes_theme/.icons/bes_theme/tooltip-image-outline.svg deleted file mode 100644 index 4c5c4731..00000000 --- a/bes_theme/.icons/bes_theme/tooltip-image-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tooltip-image.svg b/bes_theme/.icons/bes_theme/tooltip-image.svg deleted file mode 100644 index c3af6f01..00000000 --- a/bes_theme/.icons/bes_theme/tooltip-image.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tooltip-minus-outline.svg b/bes_theme/.icons/bes_theme/tooltip-minus-outline.svg deleted file mode 100644 index b6dc40f0..00000000 --- a/bes_theme/.icons/bes_theme/tooltip-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tooltip-minus.svg b/bes_theme/.icons/bes_theme/tooltip-minus.svg deleted file mode 100644 index 42e10940..00000000 --- a/bes_theme/.icons/bes_theme/tooltip-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tooltip-outline.svg b/bes_theme/.icons/bes_theme/tooltip-outline.svg deleted file mode 100644 index a69bf504..00000000 --- a/bes_theme/.icons/bes_theme/tooltip-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tooltip-plus-outline.svg b/bes_theme/.icons/bes_theme/tooltip-plus-outline.svg deleted file mode 100644 index 2e673a79..00000000 --- a/bes_theme/.icons/bes_theme/tooltip-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tooltip-plus.svg b/bes_theme/.icons/bes_theme/tooltip-plus.svg deleted file mode 100644 index 25e9cd5d..00000000 --- a/bes_theme/.icons/bes_theme/tooltip-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tooltip-remove-outline.svg b/bes_theme/.icons/bes_theme/tooltip-remove-outline.svg deleted file mode 100644 index d522f719..00000000 --- a/bes_theme/.icons/bes_theme/tooltip-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tooltip-remove.svg b/bes_theme/.icons/bes_theme/tooltip-remove.svg deleted file mode 100644 index 1fda3cc1..00000000 --- a/bes_theme/.icons/bes_theme/tooltip-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tooltip-text-outline.svg b/bes_theme/.icons/bes_theme/tooltip-text-outline.svg deleted file mode 100644 index 2739418e..00000000 --- a/bes_theme/.icons/bes_theme/tooltip-text-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tooltip-text.svg b/bes_theme/.icons/bes_theme/tooltip-text.svg deleted file mode 100644 index ee2c01e6..00000000 --- a/bes_theme/.icons/bes_theme/tooltip-text.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tooltip.svg b/bes_theme/.icons/bes_theme/tooltip.svg deleted file mode 100644 index 44bcd908..00000000 --- a/bes_theme/.icons/bes_theme/tooltip.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tooth-outline.svg b/bes_theme/.icons/bes_theme/tooth-outline.svg deleted file mode 100644 index a933a1a0..00000000 --- a/bes_theme/.icons/bes_theme/tooth-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tooth.svg b/bes_theme/.icons/bes_theme/tooth.svg deleted file mode 100644 index e44fdc5f..00000000 --- a/bes_theme/.icons/bes_theme/tooth.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/toothbrush-electric.svg b/bes_theme/.icons/bes_theme/toothbrush-electric.svg deleted file mode 100644 index a9427f10..00000000 --- a/bes_theme/.icons/bes_theme/toothbrush-electric.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/toothbrush-paste.svg b/bes_theme/.icons/bes_theme/toothbrush-paste.svg deleted file mode 100644 index 35339862..00000000 --- a/bes_theme/.icons/bes_theme/toothbrush-paste.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/toothbrush.svg b/bes_theme/.icons/bes_theme/toothbrush.svg deleted file mode 100644 index cd4d012f..00000000 --- a/bes_theme/.icons/bes_theme/toothbrush.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/torch.svg b/bes_theme/.icons/bes_theme/torch.svg deleted file mode 100644 index 22641764..00000000 --- a/bes_theme/.icons/bes_theme/torch.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tortoise.svg b/bes_theme/.icons/bes_theme/tortoise.svg deleted file mode 100644 index 5b2d0e7b..00000000 --- a/bes_theme/.icons/bes_theme/tortoise.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/toslink.svg b/bes_theme/.icons/bes_theme/toslink.svg deleted file mode 100644 index 11958af7..00000000 --- a/bes_theme/.icons/bes_theme/toslink.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tournament.svg b/bes_theme/.icons/bes_theme/tournament.svg deleted file mode 100644 index 16a141f7..00000000 --- a/bes_theme/.icons/bes_theme/tournament.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tow-truck.svg b/bes_theme/.icons/bes_theme/tow-truck.svg deleted file mode 100644 index 41dc5676..00000000 --- a/bes_theme/.icons/bes_theme/tow-truck.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tower-beach.svg b/bes_theme/.icons/bes_theme/tower-beach.svg deleted file mode 100644 index df0ff6ac..00000000 --- a/bes_theme/.icons/bes_theme/tower-beach.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tower-fire.svg b/bes_theme/.icons/bes_theme/tower-fire.svg deleted file mode 100644 index 0fb96e90..00000000 --- a/bes_theme/.icons/bes_theme/tower-fire.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/toy-brick-marker-outline.svg b/bes_theme/.icons/bes_theme/toy-brick-marker-outline.svg deleted file mode 100644 index 9f4b67a0..00000000 --- a/bes_theme/.icons/bes_theme/toy-brick-marker-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/toy-brick-marker.svg b/bes_theme/.icons/bes_theme/toy-brick-marker.svg deleted file mode 100644 index c25f6ca2..00000000 --- a/bes_theme/.icons/bes_theme/toy-brick-marker.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/toy-brick-minus-outline.svg b/bes_theme/.icons/bes_theme/toy-brick-minus-outline.svg deleted file mode 100644 index 430c38db..00000000 --- a/bes_theme/.icons/bes_theme/toy-brick-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/toy-brick-minus.svg b/bes_theme/.icons/bes_theme/toy-brick-minus.svg deleted file mode 100644 index 375d31d0..00000000 --- a/bes_theme/.icons/bes_theme/toy-brick-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/toy-brick-outline.svg b/bes_theme/.icons/bes_theme/toy-brick-outline.svg deleted file mode 100644 index ae17ee36..00000000 --- a/bes_theme/.icons/bes_theme/toy-brick-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/toy-brick-plus-outline.svg b/bes_theme/.icons/bes_theme/toy-brick-plus-outline.svg deleted file mode 100644 index bcc485cb..00000000 --- a/bes_theme/.icons/bes_theme/toy-brick-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/toy-brick-plus.svg b/bes_theme/.icons/bes_theme/toy-brick-plus.svg deleted file mode 100644 index ab212e30..00000000 --- a/bes_theme/.icons/bes_theme/toy-brick-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/toy-brick-remove-outline.svg b/bes_theme/.icons/bes_theme/toy-brick-remove-outline.svg deleted file mode 100644 index 726401fe..00000000 --- a/bes_theme/.icons/bes_theme/toy-brick-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/toy-brick-remove.svg b/bes_theme/.icons/bes_theme/toy-brick-remove.svg deleted file mode 100644 index 0e113ac3..00000000 --- a/bes_theme/.icons/bes_theme/toy-brick-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/toy-brick-search-outline.svg b/bes_theme/.icons/bes_theme/toy-brick-search-outline.svg deleted file mode 100644 index 3dc81503..00000000 --- a/bes_theme/.icons/bes_theme/toy-brick-search-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/toy-brick-search.svg b/bes_theme/.icons/bes_theme/toy-brick-search.svg deleted file mode 100644 index 532293cf..00000000 --- a/bes_theme/.icons/bes_theme/toy-brick-search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/toy-brick.svg b/bes_theme/.icons/bes_theme/toy-brick.svg deleted file mode 100644 index d0115efe..00000000 --- a/bes_theme/.icons/bes_theme/toy-brick.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/track-light.svg b/bes_theme/.icons/bes_theme/track-light.svg deleted file mode 100644 index 47bad050..00000000 --- a/bes_theme/.icons/bes_theme/track-light.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/trackpad-lock.svg b/bes_theme/.icons/bes_theme/trackpad-lock.svg deleted file mode 100644 index 4f269bb5..00000000 --- a/bes_theme/.icons/bes_theme/trackpad-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/trackpad.svg b/bes_theme/.icons/bes_theme/trackpad.svg deleted file mode 100644 index 125de132..00000000 --- a/bes_theme/.icons/bes_theme/trackpad.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tractor-variant.svg b/bes_theme/.icons/bes_theme/tractor-variant.svg deleted file mode 100644 index b8d90c39..00000000 --- a/bes_theme/.icons/bes_theme/tractor-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tractor.svg b/bes_theme/.icons/bes_theme/tractor.svg deleted file mode 100644 index 3929d3ec..00000000 --- a/bes_theme/.icons/bes_theme/tractor.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/trademark.svg b/bes_theme/.icons/bes_theme/trademark.svg deleted file mode 100644 index 5fad41ae..00000000 --- a/bes_theme/.icons/bes_theme/trademark.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/traffic-cone.svg b/bes_theme/.icons/bes_theme/traffic-cone.svg deleted file mode 100644 index 70711d40..00000000 --- a/bes_theme/.icons/bes_theme/traffic-cone.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/traffic-light.svg b/bes_theme/.icons/bes_theme/traffic-light.svg deleted file mode 100644 index ce120e39..00000000 --- a/bes_theme/.icons/bes_theme/traffic-light.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/train-car-passenger-door-open.svg b/bes_theme/.icons/bes_theme/train-car-passenger-door-open.svg deleted file mode 100644 index 0e70428e..00000000 --- a/bes_theme/.icons/bes_theme/train-car-passenger-door-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/train-car-passenger-door.svg b/bes_theme/.icons/bes_theme/train-car-passenger-door.svg deleted file mode 100644 index cbf6818a..00000000 --- a/bes_theme/.icons/bes_theme/train-car-passenger-door.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/train-car-passenger-variant.svg b/bes_theme/.icons/bes_theme/train-car-passenger-variant.svg deleted file mode 100644 index 71a6ce34..00000000 --- a/bes_theme/.icons/bes_theme/train-car-passenger-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/train-car-passenger.svg b/bes_theme/.icons/bes_theme/train-car-passenger.svg deleted file mode 100644 index 04477a46..00000000 --- a/bes_theme/.icons/bes_theme/train-car-passenger.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/train-car.svg b/bes_theme/.icons/bes_theme/train-car.svg deleted file mode 100644 index b7957312..00000000 --- a/bes_theme/.icons/bes_theme/train-car.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/train-variant.svg b/bes_theme/.icons/bes_theme/train-variant.svg deleted file mode 100644 index c51be3d1..00000000 --- a/bes_theme/.icons/bes_theme/train-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/train.svg b/bes_theme/.icons/bes_theme/train.svg deleted file mode 100644 index 89210abd..00000000 --- a/bes_theme/.icons/bes_theme/train.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tram-side.svg b/bes_theme/.icons/bes_theme/tram-side.svg deleted file mode 100644 index 5fd9c7d7..00000000 --- a/bes_theme/.icons/bes_theme/tram-side.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tram.svg b/bes_theme/.icons/bes_theme/tram.svg deleted file mode 100644 index 2b82f056..00000000 --- a/bes_theme/.icons/bes_theme/tram.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/transcribe-close.svg b/bes_theme/.icons/bes_theme/transcribe-close.svg deleted file mode 100644 index d7ef0716..00000000 --- a/bes_theme/.icons/bes_theme/transcribe-close.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/transcribe.svg b/bes_theme/.icons/bes_theme/transcribe.svg deleted file mode 100644 index e1eff7b1..00000000 --- a/bes_theme/.icons/bes_theme/transcribe.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/transfer-down.svg b/bes_theme/.icons/bes_theme/transfer-down.svg deleted file mode 100644 index f510a761..00000000 --- a/bes_theme/.icons/bes_theme/transfer-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/transfer-left.svg b/bes_theme/.icons/bes_theme/transfer-left.svg deleted file mode 100644 index d82467d3..00000000 --- a/bes_theme/.icons/bes_theme/transfer-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/transfer-right.svg b/bes_theme/.icons/bes_theme/transfer-right.svg deleted file mode 100644 index 0379f206..00000000 --- a/bes_theme/.icons/bes_theme/transfer-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/transfer-up.svg b/bes_theme/.icons/bes_theme/transfer-up.svg deleted file mode 100644 index 674c1ef3..00000000 --- a/bes_theme/.icons/bes_theme/transfer-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/transfer.svg b/bes_theme/.icons/bes_theme/transfer.svg deleted file mode 100644 index ffb12278..00000000 --- a/bes_theme/.icons/bes_theme/transfer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/transit-connection-horizontal.svg b/bes_theme/.icons/bes_theme/transit-connection-horizontal.svg deleted file mode 100644 index 40664cc2..00000000 --- a/bes_theme/.icons/bes_theme/transit-connection-horizontal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/transit-connection-variant.svg b/bes_theme/.icons/bes_theme/transit-connection-variant.svg deleted file mode 100644 index df4463cd..00000000 --- a/bes_theme/.icons/bes_theme/transit-connection-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/transit-connection.svg b/bes_theme/.icons/bes_theme/transit-connection.svg deleted file mode 100644 index 3144d688..00000000 --- a/bes_theme/.icons/bes_theme/transit-connection.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/transit-detour.svg b/bes_theme/.icons/bes_theme/transit-detour.svg deleted file mode 100644 index 5f4fae74..00000000 --- a/bes_theme/.icons/bes_theme/transit-detour.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/transit-skip.svg b/bes_theme/.icons/bes_theme/transit-skip.svg deleted file mode 100644 index fd600450..00000000 --- a/bes_theme/.icons/bes_theme/transit-skip.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/transit-transfer.svg b/bes_theme/.icons/bes_theme/transit-transfer.svg deleted file mode 100644 index 6f30c664..00000000 --- a/bes_theme/.icons/bes_theme/transit-transfer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/transition-masked.svg b/bes_theme/.icons/bes_theme/transition-masked.svg deleted file mode 100644 index 985ce0a8..00000000 --- a/bes_theme/.icons/bes_theme/transition-masked.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/transition.svg b/bes_theme/.icons/bes_theme/transition.svg deleted file mode 100644 index b52efc4c..00000000 --- a/bes_theme/.icons/bes_theme/transition.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/translate-off.svg b/bes_theme/.icons/bes_theme/translate-off.svg deleted file mode 100644 index e6418e37..00000000 --- a/bes_theme/.icons/bes_theme/translate-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/translate.svg b/bes_theme/.icons/bes_theme/translate.svg deleted file mode 100644 index a1d3b182..00000000 --- a/bes_theme/.icons/bes_theme/translate.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/transmission-tower.svg b/bes_theme/.icons/bes_theme/transmission-tower.svg deleted file mode 100644 index c348b9cc..00000000 --- a/bes_theme/.icons/bes_theme/transmission-tower.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/trash-can-outline.svg b/bes_theme/.icons/bes_theme/trash-can-outline.svg deleted file mode 100644 index 5f866782..00000000 --- a/bes_theme/.icons/bes_theme/trash-can-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/trash-can.svg b/bes_theme/.icons/bes_theme/trash-can.svg deleted file mode 100644 index 8578a769..00000000 --- a/bes_theme/.icons/bes_theme/trash-can.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tray-alert.svg b/bes_theme/.icons/bes_theme/tray-alert.svg deleted file mode 100644 index 0d77c376..00000000 --- a/bes_theme/.icons/bes_theme/tray-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tray-full.svg b/bes_theme/.icons/bes_theme/tray-full.svg deleted file mode 100644 index a7011ce7..00000000 --- a/bes_theme/.icons/bes_theme/tray-full.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tray-minus.svg b/bes_theme/.icons/bes_theme/tray-minus.svg deleted file mode 100644 index 71a5452f..00000000 --- a/bes_theme/.icons/bes_theme/tray-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tray-plus.svg b/bes_theme/.icons/bes_theme/tray-plus.svg deleted file mode 100644 index 50d60c61..00000000 --- a/bes_theme/.icons/bes_theme/tray-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tray-remove.svg b/bes_theme/.icons/bes_theme/tray-remove.svg deleted file mode 100644 index b89bed3f..00000000 --- a/bes_theme/.icons/bes_theme/tray-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tray.svg b/bes_theme/.icons/bes_theme/tray.svg deleted file mode 100644 index 84b98f5e..00000000 --- a/bes_theme/.icons/bes_theme/tray.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/treasure-chest.svg b/bes_theme/.icons/bes_theme/treasure-chest.svg deleted file mode 100644 index 7a866f7d..00000000 --- a/bes_theme/.icons/bes_theme/treasure-chest.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tree-outline.svg b/bes_theme/.icons/bes_theme/tree-outline.svg deleted file mode 100644 index 601fd205..00000000 --- a/bes_theme/.icons/bes_theme/tree-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tree.svg b/bes_theme/.icons/bes_theme/tree.svg deleted file mode 100644 index c3d5e121..00000000 --- a/bes_theme/.icons/bes_theme/tree.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/trello.svg b/bes_theme/.icons/bes_theme/trello.svg deleted file mode 100644 index 88fe0aef..00000000 --- a/bes_theme/.icons/bes_theme/trello.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/trending-down.svg b/bes_theme/.icons/bes_theme/trending-down.svg deleted file mode 100644 index 8cee5195..00000000 --- a/bes_theme/.icons/bes_theme/trending-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/trending-neutral.svg b/bes_theme/.icons/bes_theme/trending-neutral.svg deleted file mode 100644 index 114c817a..00000000 --- a/bes_theme/.icons/bes_theme/trending-neutral.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/trending-up.svg b/bes_theme/.icons/bes_theme/trending-up.svg deleted file mode 100644 index 40730736..00000000 --- a/bes_theme/.icons/bes_theme/trending-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/triangle-outline.svg b/bes_theme/.icons/bes_theme/triangle-outline.svg deleted file mode 100644 index 51efe14b..00000000 --- a/bes_theme/.icons/bes_theme/triangle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/triangle-wave.svg b/bes_theme/.icons/bes_theme/triangle-wave.svg deleted file mode 100644 index 7d2df50f..00000000 --- a/bes_theme/.icons/bes_theme/triangle-wave.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/triangle.svg b/bes_theme/.icons/bes_theme/triangle.svg deleted file mode 100644 index 6de1d39f..00000000 --- a/bes_theme/.icons/bes_theme/triangle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/triforce.svg b/bes_theme/.icons/bes_theme/triforce.svg deleted file mode 100644 index 0dad4b64..00000000 --- a/bes_theme/.icons/bes_theme/triforce.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/trophy-award.svg b/bes_theme/.icons/bes_theme/trophy-award.svg deleted file mode 100644 index d1922b5d..00000000 --- a/bes_theme/.icons/bes_theme/trophy-award.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/trophy-broken.svg b/bes_theme/.icons/bes_theme/trophy-broken.svg deleted file mode 100644 index 97a39046..00000000 --- a/bes_theme/.icons/bes_theme/trophy-broken.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/trophy-outline.svg b/bes_theme/.icons/bes_theme/trophy-outline.svg deleted file mode 100644 index bf312d15..00000000 --- a/bes_theme/.icons/bes_theme/trophy-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/trophy-variant-outline.svg b/bes_theme/.icons/bes_theme/trophy-variant-outline.svg deleted file mode 100644 index a44ddc2f..00000000 --- a/bes_theme/.icons/bes_theme/trophy-variant-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/trophy-variant.svg b/bes_theme/.icons/bes_theme/trophy-variant.svg deleted file mode 100644 index a61d6ce1..00000000 --- a/bes_theme/.icons/bes_theme/trophy-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/trophy.svg b/bes_theme/.icons/bes_theme/trophy.svg deleted file mode 100644 index 9a4f3949..00000000 --- a/bes_theme/.icons/bes_theme/trophy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/truck-check-outline.svg b/bes_theme/.icons/bes_theme/truck-check-outline.svg deleted file mode 100644 index b32ce0f1..00000000 --- a/bes_theme/.icons/bes_theme/truck-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/truck-check.svg b/bes_theme/.icons/bes_theme/truck-check.svg deleted file mode 100644 index 474c14f9..00000000 --- a/bes_theme/.icons/bes_theme/truck-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/truck-delivery-outline.svg b/bes_theme/.icons/bes_theme/truck-delivery-outline.svg deleted file mode 100644 index 75fa750b..00000000 --- a/bes_theme/.icons/bes_theme/truck-delivery-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/truck-delivery.svg b/bes_theme/.icons/bes_theme/truck-delivery.svg deleted file mode 100644 index 293d4957..00000000 --- a/bes_theme/.icons/bes_theme/truck-delivery.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/truck-fast-outline.svg b/bes_theme/.icons/bes_theme/truck-fast-outline.svg deleted file mode 100644 index ec1fd30a..00000000 --- a/bes_theme/.icons/bes_theme/truck-fast-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/truck-fast.svg b/bes_theme/.icons/bes_theme/truck-fast.svg deleted file mode 100644 index bd2225a1..00000000 --- a/bes_theme/.icons/bes_theme/truck-fast.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/truck-outline.svg b/bes_theme/.icons/bes_theme/truck-outline.svg deleted file mode 100644 index fc619d13..00000000 --- a/bes_theme/.icons/bes_theme/truck-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/truck-trailer.svg b/bes_theme/.icons/bes_theme/truck-trailer.svg deleted file mode 100644 index e4951881..00000000 --- a/bes_theme/.icons/bes_theme/truck-trailer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/truck.svg b/bes_theme/.icons/bes_theme/truck.svg deleted file mode 100644 index 9f3cb4ad..00000000 --- a/bes_theme/.icons/bes_theme/truck.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/trumpet.svg b/bes_theme/.icons/bes_theme/trumpet.svg deleted file mode 100644 index 05395ff2..00000000 --- a/bes_theme/.icons/bes_theme/trumpet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tshirt-crew-outline.svg b/bes_theme/.icons/bes_theme/tshirt-crew-outline.svg deleted file mode 100644 index 5550d2bd..00000000 --- a/bes_theme/.icons/bes_theme/tshirt-crew-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tshirt-crew.svg b/bes_theme/.icons/bes_theme/tshirt-crew.svg deleted file mode 100644 index 051630eb..00000000 --- a/bes_theme/.icons/bes_theme/tshirt-crew.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tshirt-v-outline.svg b/bes_theme/.icons/bes_theme/tshirt-v-outline.svg deleted file mode 100644 index 5cad1405..00000000 --- a/bes_theme/.icons/bes_theme/tshirt-v-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tshirt-v.svg b/bes_theme/.icons/bes_theme/tshirt-v.svg deleted file mode 100644 index 5ea670d8..00000000 --- a/bes_theme/.icons/bes_theme/tshirt-v.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tumble-dryer-alert.svg b/bes_theme/.icons/bes_theme/tumble-dryer-alert.svg deleted file mode 100644 index e10e09f3..00000000 --- a/bes_theme/.icons/bes_theme/tumble-dryer-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tumble-dryer-off.svg b/bes_theme/.icons/bes_theme/tumble-dryer-off.svg deleted file mode 100644 index 4282e8a2..00000000 --- a/bes_theme/.icons/bes_theme/tumble-dryer-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tumble-dryer.svg b/bes_theme/.icons/bes_theme/tumble-dryer.svg deleted file mode 100644 index b0f092e2..00000000 --- a/bes_theme/.icons/bes_theme/tumble-dryer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tune-variant.svg b/bes_theme/.icons/bes_theme/tune-variant.svg deleted file mode 100644 index 6f85be9b..00000000 --- a/bes_theme/.icons/bes_theme/tune-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tune-vertical-variant.svg b/bes_theme/.icons/bes_theme/tune-vertical-variant.svg deleted file mode 100644 index a00c6553..00000000 --- a/bes_theme/.icons/bes_theme/tune-vertical-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tune-vertical.svg b/bes_theme/.icons/bes_theme/tune-vertical.svg deleted file mode 100644 index 39f4288f..00000000 --- a/bes_theme/.icons/bes_theme/tune-vertical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/tune.svg b/bes_theme/.icons/bes_theme/tune.svg deleted file mode 100644 index 041f1dbb..00000000 --- a/bes_theme/.icons/bes_theme/tune.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/turkey.svg b/bes_theme/.icons/bes_theme/turkey.svg deleted file mode 100644 index fe989459..00000000 --- a/bes_theme/.icons/bes_theme/turkey.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/turnstile-outline.svg b/bes_theme/.icons/bes_theme/turnstile-outline.svg deleted file mode 100644 index 8a7d6d68..00000000 --- a/bes_theme/.icons/bes_theme/turnstile-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/turnstile.svg b/bes_theme/.icons/bes_theme/turnstile.svg deleted file mode 100644 index e089c4c0..00000000 --- a/bes_theme/.icons/bes_theme/turnstile.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/turtle.svg b/bes_theme/.icons/bes_theme/turtle.svg deleted file mode 100644 index 8d7fd57f..00000000 --- a/bes_theme/.icons/bes_theme/turtle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/twitch.svg b/bes_theme/.icons/bes_theme/twitch.svg deleted file mode 100644 index edc4ddac..00000000 --- a/bes_theme/.icons/bes_theme/twitch.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/twitter-retweet.svg b/bes_theme/.icons/bes_theme/twitter-retweet.svg deleted file mode 100644 index e894368c..00000000 --- a/bes_theme/.icons/bes_theme/twitter-retweet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/twitter.svg b/bes_theme/.icons/bes_theme/twitter.svg deleted file mode 100644 index ba0b63b3..00000000 --- a/bes_theme/.icons/bes_theme/twitter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/two-factor-authentication.svg b/bes_theme/.icons/bes_theme/two-factor-authentication.svg deleted file mode 100644 index b539d3e5..00000000 --- a/bes_theme/.icons/bes_theme/two-factor-authentication.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/typewriter.svg b/bes_theme/.icons/bes_theme/typewriter.svg deleted file mode 100644 index 93f015eb..00000000 --- a/bes_theme/.icons/bes_theme/typewriter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ubisoft.svg b/bes_theme/.icons/bes_theme/ubisoft.svg deleted file mode 100644 index f84d736f..00000000 --- a/bes_theme/.icons/bes_theme/ubisoft.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ubuntu.svg b/bes_theme/.icons/bes_theme/ubuntu.svg deleted file mode 100644 index cf359a15..00000000 --- a/bes_theme/.icons/bes_theme/ubuntu.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ufo-outline.svg b/bes_theme/.icons/bes_theme/ufo-outline.svg deleted file mode 100644 index 19d00bac..00000000 --- a/bes_theme/.icons/bes_theme/ufo-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ufo.svg b/bes_theme/.icons/bes_theme/ufo.svg deleted file mode 100644 index b4d93262..00000000 --- a/bes_theme/.icons/bes_theme/ufo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ultra-high-definition.svg b/bes_theme/.icons/bes_theme/ultra-high-definition.svg deleted file mode 100644 index 1ec3fe4e..00000000 --- a/bes_theme/.icons/bes_theme/ultra-high-definition.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/umbraco.svg b/bes_theme/.icons/bes_theme/umbraco.svg deleted file mode 100644 index cf959f7c..00000000 --- a/bes_theme/.icons/bes_theme/umbraco.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/umbrella-closed-outline.svg b/bes_theme/.icons/bes_theme/umbrella-closed-outline.svg deleted file mode 100644 index 39fc0838..00000000 --- a/bes_theme/.icons/bes_theme/umbrella-closed-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/umbrella-closed-variant.svg b/bes_theme/.icons/bes_theme/umbrella-closed-variant.svg deleted file mode 100644 index aa898f9c..00000000 --- a/bes_theme/.icons/bes_theme/umbrella-closed-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/umbrella-closed.svg b/bes_theme/.icons/bes_theme/umbrella-closed.svg deleted file mode 100644 index f11f942c..00000000 --- a/bes_theme/.icons/bes_theme/umbrella-closed.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/umbrella-outline.svg b/bes_theme/.icons/bes_theme/umbrella-outline.svg deleted file mode 100644 index 328759c2..00000000 --- a/bes_theme/.icons/bes_theme/umbrella-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/umbrella.svg b/bes_theme/.icons/bes_theme/umbrella.svg deleted file mode 100644 index 80b400d8..00000000 --- a/bes_theme/.icons/bes_theme/umbrella.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/undo-variant.svg b/bes_theme/.icons/bes_theme/undo-variant.svg deleted file mode 100644 index fab12516..00000000 --- a/bes_theme/.icons/bes_theme/undo-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/undo.svg b/bes_theme/.icons/bes_theme/undo.svg deleted file mode 100644 index 0e1558a2..00000000 --- a/bes_theme/.icons/bes_theme/undo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/unfold-less-horizontal.svg b/bes_theme/.icons/bes_theme/unfold-less-horizontal.svg deleted file mode 100644 index c6f4c239..00000000 --- a/bes_theme/.icons/bes_theme/unfold-less-horizontal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/unfold-less-vertical.svg b/bes_theme/.icons/bes_theme/unfold-less-vertical.svg deleted file mode 100644 index 18c18701..00000000 --- a/bes_theme/.icons/bes_theme/unfold-less-vertical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/unfold-more-horizontal.svg b/bes_theme/.icons/bes_theme/unfold-more-horizontal.svg deleted file mode 100644 index 8a8a148f..00000000 --- a/bes_theme/.icons/bes_theme/unfold-more-horizontal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/unfold-more-vertical.svg b/bes_theme/.icons/bes_theme/unfold-more-vertical.svg deleted file mode 100644 index 76be79e8..00000000 --- a/bes_theme/.icons/bes_theme/unfold-more-vertical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/ungroup.svg b/bes_theme/.icons/bes_theme/ungroup.svg deleted file mode 100644 index 77dc5bf8..00000000 --- a/bes_theme/.icons/bes_theme/ungroup.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/unicode.svg b/bes_theme/.icons/bes_theme/unicode.svg deleted file mode 100644 index 1d18fb91..00000000 --- a/bes_theme/.icons/bes_theme/unicode.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/unicorn-variant.svg b/bes_theme/.icons/bes_theme/unicorn-variant.svg deleted file mode 100644 index f748772f..00000000 --- a/bes_theme/.icons/bes_theme/unicorn-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/unicorn.svg b/bes_theme/.icons/bes_theme/unicorn.svg deleted file mode 100644 index 23dd9d45..00000000 --- a/bes_theme/.icons/bes_theme/unicorn.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/unicycle.svg b/bes_theme/.icons/bes_theme/unicycle.svg deleted file mode 100644 index fa813754..00000000 --- a/bes_theme/.icons/bes_theme/unicycle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/unity.svg b/bes_theme/.icons/bes_theme/unity.svg deleted file mode 100644 index 7138ea42..00000000 --- a/bes_theme/.icons/bes_theme/unity.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/unreal.svg b/bes_theme/.icons/bes_theme/unreal.svg deleted file mode 100644 index 851b5cfc..00000000 --- a/bes_theme/.icons/bes_theme/unreal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/untappd.svg b/bes_theme/.icons/bes_theme/untappd.svg deleted file mode 100644 index a5ef959c..00000000 --- a/bes_theme/.icons/bes_theme/untappd.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/update.svg b/bes_theme/.icons/bes_theme/update.svg deleted file mode 100644 index 2bf16a2c..00000000 --- a/bes_theme/.icons/bes_theme/update.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/upload-lock-outline.svg b/bes_theme/.icons/bes_theme/upload-lock-outline.svg deleted file mode 100644 index 03838392..00000000 --- a/bes_theme/.icons/bes_theme/upload-lock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/upload-lock.svg b/bes_theme/.icons/bes_theme/upload-lock.svg deleted file mode 100644 index 48022788..00000000 --- a/bes_theme/.icons/bes_theme/upload-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/upload-multiple.svg b/bes_theme/.icons/bes_theme/upload-multiple.svg deleted file mode 100644 index 5189863a..00000000 --- a/bes_theme/.icons/bes_theme/upload-multiple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/upload-network-outline.svg b/bes_theme/.icons/bes_theme/upload-network-outline.svg deleted file mode 100644 index b497e848..00000000 --- a/bes_theme/.icons/bes_theme/upload-network-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/upload-network.svg b/bes_theme/.icons/bes_theme/upload-network.svg deleted file mode 100644 index f995921e..00000000 --- a/bes_theme/.icons/bes_theme/upload-network.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/upload-off-outline.svg b/bes_theme/.icons/bes_theme/upload-off-outline.svg deleted file mode 100644 index cd12cb67..00000000 --- a/bes_theme/.icons/bes_theme/upload-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/upload-off.svg b/bes_theme/.icons/bes_theme/upload-off.svg deleted file mode 100644 index d68d123b..00000000 --- a/bes_theme/.icons/bes_theme/upload-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/upload-outline.svg b/bes_theme/.icons/bes_theme/upload-outline.svg deleted file mode 100644 index 903d8621..00000000 --- a/bes_theme/.icons/bes_theme/upload-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/upload.svg b/bes_theme/.icons/bes_theme/upload.svg deleted file mode 100644 index 60406fbc..00000000 --- a/bes_theme/.icons/bes_theme/upload.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/usb-flash-drive-outline.svg b/bes_theme/.icons/bes_theme/usb-flash-drive-outline.svg deleted file mode 100644 index d6fa2c00..00000000 --- a/bes_theme/.icons/bes_theme/usb-flash-drive-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/usb-flash-drive.svg b/bes_theme/.icons/bes_theme/usb-flash-drive.svg deleted file mode 100644 index f654f544..00000000 --- a/bes_theme/.icons/bes_theme/usb-flash-drive.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/usb-port.svg b/bes_theme/.icons/bes_theme/usb-port.svg deleted file mode 100644 index e2242f20..00000000 --- a/bes_theme/.icons/bes_theme/usb-port.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/usb.svg b/bes_theme/.icons/bes_theme/usb.svg deleted file mode 100644 index 11e1ebc9..00000000 --- a/bes_theme/.icons/bes_theme/usb.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/valve-closed.svg b/bes_theme/.icons/bes_theme/valve-closed.svg deleted file mode 100644 index 8a269f37..00000000 --- a/bes_theme/.icons/bes_theme/valve-closed.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/valve-open.svg b/bes_theme/.icons/bes_theme/valve-open.svg deleted file mode 100644 index d76a60bb..00000000 --- a/bes_theme/.icons/bes_theme/valve-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/valve.svg b/bes_theme/.icons/bes_theme/valve.svg deleted file mode 100644 index 67f4fcdc..00000000 --- a/bes_theme/.icons/bes_theme/valve.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/van-passenger.svg b/bes_theme/.icons/bes_theme/van-passenger.svg deleted file mode 100644 index e49c3d3b..00000000 --- a/bes_theme/.icons/bes_theme/van-passenger.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/van-utility.svg b/bes_theme/.icons/bes_theme/van-utility.svg deleted file mode 100644 index 60f70aed..00000000 --- a/bes_theme/.icons/bes_theme/van-utility.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vanish-quarter.svg b/bes_theme/.icons/bes_theme/vanish-quarter.svg deleted file mode 100644 index 23900873..00000000 --- a/bes_theme/.icons/bes_theme/vanish-quarter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vanish.svg b/bes_theme/.icons/bes_theme/vanish.svg deleted file mode 100644 index 2b641c4d..00000000 --- a/bes_theme/.icons/bes_theme/vanish.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vanity-light.svg b/bes_theme/.icons/bes_theme/vanity-light.svg deleted file mode 100644 index eae22830..00000000 --- a/bes_theme/.icons/bes_theme/vanity-light.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/variable-box.svg b/bes_theme/.icons/bes_theme/variable-box.svg deleted file mode 100644 index 8340af7f..00000000 --- a/bes_theme/.icons/bes_theme/variable-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/variable.svg b/bes_theme/.icons/bes_theme/variable.svg deleted file mode 100644 index 85ccabef..00000000 --- a/bes_theme/.icons/bes_theme/variable.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vector-arrange-above.svg b/bes_theme/.icons/bes_theme/vector-arrange-above.svg deleted file mode 100644 index 14de4206..00000000 --- a/bes_theme/.icons/bes_theme/vector-arrange-above.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vector-arrange-below.svg b/bes_theme/.icons/bes_theme/vector-arrange-below.svg deleted file mode 100644 index 6cdc0b0b..00000000 --- a/bes_theme/.icons/bes_theme/vector-arrange-below.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vector-bezier.svg b/bes_theme/.icons/bes_theme/vector-bezier.svg deleted file mode 100644 index d414fbb0..00000000 --- a/bes_theme/.icons/bes_theme/vector-bezier.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vector-circle-variant.svg b/bes_theme/.icons/bes_theme/vector-circle-variant.svg deleted file mode 100644 index 867ba901..00000000 --- a/bes_theme/.icons/bes_theme/vector-circle-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vector-circle.svg b/bes_theme/.icons/bes_theme/vector-circle.svg deleted file mode 100644 index fef3d046..00000000 --- a/bes_theme/.icons/bes_theme/vector-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vector-combine.svg b/bes_theme/.icons/bes_theme/vector-combine.svg deleted file mode 100644 index c6119cb6..00000000 --- a/bes_theme/.icons/bes_theme/vector-combine.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vector-curve.svg b/bes_theme/.icons/bes_theme/vector-curve.svg deleted file mode 100644 index ee19227d..00000000 --- a/bes_theme/.icons/bes_theme/vector-curve.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vector-difference-ab.svg b/bes_theme/.icons/bes_theme/vector-difference-ab.svg deleted file mode 100644 index 69d3a6b4..00000000 --- a/bes_theme/.icons/bes_theme/vector-difference-ab.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vector-difference-ba.svg b/bes_theme/.icons/bes_theme/vector-difference-ba.svg deleted file mode 100644 index 89368bdf..00000000 --- a/bes_theme/.icons/bes_theme/vector-difference-ba.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vector-difference.svg b/bes_theme/.icons/bes_theme/vector-difference.svg deleted file mode 100644 index 20625a05..00000000 --- a/bes_theme/.icons/bes_theme/vector-difference.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vector-ellipse.svg b/bes_theme/.icons/bes_theme/vector-ellipse.svg deleted file mode 100644 index 459a8585..00000000 --- a/bes_theme/.icons/bes_theme/vector-ellipse.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vector-intersection.svg b/bes_theme/.icons/bes_theme/vector-intersection.svg deleted file mode 100644 index f1efada7..00000000 --- a/bes_theme/.icons/bes_theme/vector-intersection.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vector-line.svg b/bes_theme/.icons/bes_theme/vector-line.svg deleted file mode 100644 index 8c8dce7e..00000000 --- a/bes_theme/.icons/bes_theme/vector-line.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vector-link.svg b/bes_theme/.icons/bes_theme/vector-link.svg deleted file mode 100644 index d487656b..00000000 --- a/bes_theme/.icons/bes_theme/vector-link.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vector-point.svg b/bes_theme/.icons/bes_theme/vector-point.svg deleted file mode 100644 index 2722b5e4..00000000 --- a/bes_theme/.icons/bes_theme/vector-point.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vector-polygon.svg b/bes_theme/.icons/bes_theme/vector-polygon.svg deleted file mode 100644 index 6efb05cf..00000000 --- a/bes_theme/.icons/bes_theme/vector-polygon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vector-polyline-edit.svg b/bes_theme/.icons/bes_theme/vector-polyline-edit.svg deleted file mode 100644 index e06b0b2f..00000000 --- a/bes_theme/.icons/bes_theme/vector-polyline-edit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vector-polyline-minus.svg b/bes_theme/.icons/bes_theme/vector-polyline-minus.svg deleted file mode 100644 index c45cc429..00000000 --- a/bes_theme/.icons/bes_theme/vector-polyline-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vector-polyline-plus.svg b/bes_theme/.icons/bes_theme/vector-polyline-plus.svg deleted file mode 100644 index 8820cbd2..00000000 --- a/bes_theme/.icons/bes_theme/vector-polyline-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vector-polyline-remove.svg b/bes_theme/.icons/bes_theme/vector-polyline-remove.svg deleted file mode 100644 index 6d2da31c..00000000 --- a/bes_theme/.icons/bes_theme/vector-polyline-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vector-polyline.svg b/bes_theme/.icons/bes_theme/vector-polyline.svg deleted file mode 100644 index b8af7899..00000000 --- a/bes_theme/.icons/bes_theme/vector-polyline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vector-radius.svg b/bes_theme/.icons/bes_theme/vector-radius.svg deleted file mode 100644 index ac734bb5..00000000 --- a/bes_theme/.icons/bes_theme/vector-radius.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vector-rectangle.svg b/bes_theme/.icons/bes_theme/vector-rectangle.svg deleted file mode 100644 index 195355fc..00000000 --- a/bes_theme/.icons/bes_theme/vector-rectangle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vector-selection.svg b/bes_theme/.icons/bes_theme/vector-selection.svg deleted file mode 100644 index d76f7f02..00000000 --- a/bes_theme/.icons/bes_theme/vector-selection.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vector-square.svg b/bes_theme/.icons/bes_theme/vector-square.svg deleted file mode 100644 index ebeb0bd9..00000000 --- a/bes_theme/.icons/bes_theme/vector-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vector-triangle.svg b/bes_theme/.icons/bes_theme/vector-triangle.svg deleted file mode 100644 index 1f457cc6..00000000 --- a/bes_theme/.icons/bes_theme/vector-triangle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vector-union.svg b/bes_theme/.icons/bes_theme/vector-union.svg deleted file mode 100644 index 5d3e681f..00000000 --- a/bes_theme/.icons/bes_theme/vector-union.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vhs.svg b/bes_theme/.icons/bes_theme/vhs.svg deleted file mode 100644 index f84d30f5..00000000 --- a/bes_theme/.icons/bes_theme/vhs.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vibrate-off.svg b/bes_theme/.icons/bes_theme/vibrate-off.svg deleted file mode 100644 index fb45fec9..00000000 --- a/bes_theme/.icons/bes_theme/vibrate-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vibrate.svg b/bes_theme/.icons/bes_theme/vibrate.svg deleted file mode 100644 index 03f10b44..00000000 --- a/bes_theme/.icons/bes_theme/vibrate.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/video-3d-off.svg b/bes_theme/.icons/bes_theme/video-3d-off.svg deleted file mode 100644 index 7c2cf8ce..00000000 --- a/bes_theme/.icons/bes_theme/video-3d-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/video-3d-variant.svg b/bes_theme/.icons/bes_theme/video-3d-variant.svg deleted file mode 100644 index 0fe81d50..00000000 --- a/bes_theme/.icons/bes_theme/video-3d-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/video-3d.svg b/bes_theme/.icons/bes_theme/video-3d.svg deleted file mode 100644 index a23c3ce4..00000000 --- a/bes_theme/.icons/bes_theme/video-3d.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/video-4k-box.svg b/bes_theme/.icons/bes_theme/video-4k-box.svg deleted file mode 100644 index f5e45c56..00000000 --- a/bes_theme/.icons/bes_theme/video-4k-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/video-account.svg b/bes_theme/.icons/bes_theme/video-account.svg deleted file mode 100644 index b20fb340..00000000 --- a/bes_theme/.icons/bes_theme/video-account.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/video-box-off.svg b/bes_theme/.icons/bes_theme/video-box-off.svg deleted file mode 100644 index d909f59e..00000000 --- a/bes_theme/.icons/bes_theme/video-box-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/video-box.svg b/bes_theme/.icons/bes_theme/video-box.svg deleted file mode 100644 index 144f7962..00000000 --- a/bes_theme/.icons/bes_theme/video-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/video-check-outline.svg b/bes_theme/.icons/bes_theme/video-check-outline.svg deleted file mode 100644 index 19fcb61d..00000000 --- a/bes_theme/.icons/bes_theme/video-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/video-check.svg b/bes_theme/.icons/bes_theme/video-check.svg deleted file mode 100644 index 0593aa8c..00000000 --- a/bes_theme/.icons/bes_theme/video-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/video-high-definition.svg b/bes_theme/.icons/bes_theme/video-high-definition.svg deleted file mode 100644 index 3167527a..00000000 --- a/bes_theme/.icons/bes_theme/video-high-definition.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/video-image.svg b/bes_theme/.icons/bes_theme/video-image.svg deleted file mode 100644 index 88a90b22..00000000 --- a/bes_theme/.icons/bes_theme/video-image.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/video-input-antenna.svg b/bes_theme/.icons/bes_theme/video-input-antenna.svg deleted file mode 100644 index 6f145f60..00000000 --- a/bes_theme/.icons/bes_theme/video-input-antenna.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/video-input-component.svg b/bes_theme/.icons/bes_theme/video-input-component.svg deleted file mode 100644 index cfeabdd1..00000000 --- a/bes_theme/.icons/bes_theme/video-input-component.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/video-input-hdmi.svg b/bes_theme/.icons/bes_theme/video-input-hdmi.svg deleted file mode 100644 index 83ccd476..00000000 --- a/bes_theme/.icons/bes_theme/video-input-hdmi.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/video-input-scart.svg b/bes_theme/.icons/bes_theme/video-input-scart.svg deleted file mode 100644 index 3d82c4ff..00000000 --- a/bes_theme/.icons/bes_theme/video-input-scart.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/video-input-svideo.svg b/bes_theme/.icons/bes_theme/video-input-svideo.svg deleted file mode 100644 index 318ace92..00000000 --- a/bes_theme/.icons/bes_theme/video-input-svideo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/video-minus-outline.svg b/bes_theme/.icons/bes_theme/video-minus-outline.svg deleted file mode 100644 index c4911fa9..00000000 --- a/bes_theme/.icons/bes_theme/video-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/video-minus.svg b/bes_theme/.icons/bes_theme/video-minus.svg deleted file mode 100644 index cb442f7d..00000000 --- a/bes_theme/.icons/bes_theme/video-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/video-off-outline.svg b/bes_theme/.icons/bes_theme/video-off-outline.svg deleted file mode 100644 index e4266154..00000000 --- a/bes_theme/.icons/bes_theme/video-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/video-off.svg b/bes_theme/.icons/bes_theme/video-off.svg deleted file mode 100644 index 753456b0..00000000 --- a/bes_theme/.icons/bes_theme/video-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/video-outline.svg b/bes_theme/.icons/bes_theme/video-outline.svg deleted file mode 100644 index a8f862e7..00000000 --- a/bes_theme/.icons/bes_theme/video-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/video-plus-outline.svg b/bes_theme/.icons/bes_theme/video-plus-outline.svg deleted file mode 100644 index 25a2a3f3..00000000 --- a/bes_theme/.icons/bes_theme/video-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/video-plus.svg b/bes_theme/.icons/bes_theme/video-plus.svg deleted file mode 100644 index 93733e53..00000000 --- a/bes_theme/.icons/bes_theme/video-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/video-stabilization.svg b/bes_theme/.icons/bes_theme/video-stabilization.svg deleted file mode 100644 index 18b87bcd..00000000 --- a/bes_theme/.icons/bes_theme/video-stabilization.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/video-switch-outline.svg b/bes_theme/.icons/bes_theme/video-switch-outline.svg deleted file mode 100644 index 0e0145e5..00000000 --- a/bes_theme/.icons/bes_theme/video-switch-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/video-switch.svg b/bes_theme/.icons/bes_theme/video-switch.svg deleted file mode 100644 index 41698577..00000000 --- a/bes_theme/.icons/bes_theme/video-switch.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/video-vintage.svg b/bes_theme/.icons/bes_theme/video-vintage.svg deleted file mode 100644 index 920ccc78..00000000 --- a/bes_theme/.icons/bes_theme/video-vintage.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/video-wireless-outline.svg b/bes_theme/.icons/bes_theme/video-wireless-outline.svg deleted file mode 100644 index 47149146..00000000 --- a/bes_theme/.icons/bes_theme/video-wireless-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/video-wireless.svg b/bes_theme/.icons/bes_theme/video-wireless.svg deleted file mode 100644 index d6b275c1..00000000 --- a/bes_theme/.icons/bes_theme/video-wireless.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/video.svg b/bes_theme/.icons/bes_theme/video.svg deleted file mode 100644 index 69e8d0c2..00000000 --- a/bes_theme/.icons/bes_theme/video.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-agenda-outline.svg b/bes_theme/.icons/bes_theme/view-agenda-outline.svg deleted file mode 100644 index 83be97b2..00000000 --- a/bes_theme/.icons/bes_theme/view-agenda-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-agenda.svg b/bes_theme/.icons/bes_theme/view-agenda.svg deleted file mode 100644 index 5ae3ad97..00000000 --- a/bes_theme/.icons/bes_theme/view-agenda.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-array-outline.svg b/bes_theme/.icons/bes_theme/view-array-outline.svg deleted file mode 100644 index cf9dcb24..00000000 --- a/bes_theme/.icons/bes_theme/view-array-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-array.svg b/bes_theme/.icons/bes_theme/view-array.svg deleted file mode 100644 index f126273d..00000000 --- a/bes_theme/.icons/bes_theme/view-array.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-carousel-outline.svg b/bes_theme/.icons/bes_theme/view-carousel-outline.svg deleted file mode 100644 index 85ed3f1e..00000000 --- a/bes_theme/.icons/bes_theme/view-carousel-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-carousel.svg b/bes_theme/.icons/bes_theme/view-carousel.svg deleted file mode 100644 index 9defcc9d..00000000 --- a/bes_theme/.icons/bes_theme/view-carousel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-column-outline.svg b/bes_theme/.icons/bes_theme/view-column-outline.svg deleted file mode 100644 index ffc1a7d3..00000000 --- a/bes_theme/.icons/bes_theme/view-column-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-column.svg b/bes_theme/.icons/bes_theme/view-column.svg deleted file mode 100644 index 71f4a5f7..00000000 --- a/bes_theme/.icons/bes_theme/view-column.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-comfy-outline.svg b/bes_theme/.icons/bes_theme/view-comfy-outline.svg deleted file mode 100644 index 68e7efde..00000000 --- a/bes_theme/.icons/bes_theme/view-comfy-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-comfy.svg b/bes_theme/.icons/bes_theme/view-comfy.svg deleted file mode 100644 index c1196c86..00000000 --- a/bes_theme/.icons/bes_theme/view-comfy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-compact-outline.svg b/bes_theme/.icons/bes_theme/view-compact-outline.svg deleted file mode 100644 index ed872be3..00000000 --- a/bes_theme/.icons/bes_theme/view-compact-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-compact.svg b/bes_theme/.icons/bes_theme/view-compact.svg deleted file mode 100644 index 7f2304d4..00000000 --- a/bes_theme/.icons/bes_theme/view-compact.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-dashboard-outline.svg b/bes_theme/.icons/bes_theme/view-dashboard-outline.svg deleted file mode 100644 index 193aefba..00000000 --- a/bes_theme/.icons/bes_theme/view-dashboard-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-dashboard-variant-outline.svg b/bes_theme/.icons/bes_theme/view-dashboard-variant-outline.svg deleted file mode 100644 index 03ee9365..00000000 --- a/bes_theme/.icons/bes_theme/view-dashboard-variant-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-dashboard-variant.svg b/bes_theme/.icons/bes_theme/view-dashboard-variant.svg deleted file mode 100644 index 2216760a..00000000 --- a/bes_theme/.icons/bes_theme/view-dashboard-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-dashboard.svg b/bes_theme/.icons/bes_theme/view-dashboard.svg deleted file mode 100644 index 8314ea62..00000000 --- a/bes_theme/.icons/bes_theme/view-dashboard.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-day-outline.svg b/bes_theme/.icons/bes_theme/view-day-outline.svg deleted file mode 100644 index f4c062b4..00000000 --- a/bes_theme/.icons/bes_theme/view-day-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-day.svg b/bes_theme/.icons/bes_theme/view-day.svg deleted file mode 100644 index 9a5fd384..00000000 --- a/bes_theme/.icons/bes_theme/view-day.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-grid-outline.svg b/bes_theme/.icons/bes_theme/view-grid-outline.svg deleted file mode 100644 index 8498cd15..00000000 --- a/bes_theme/.icons/bes_theme/view-grid-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-grid-plus-outline.svg b/bes_theme/.icons/bes_theme/view-grid-plus-outline.svg deleted file mode 100644 index e1149edf..00000000 --- a/bes_theme/.icons/bes_theme/view-grid-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-grid-plus.svg b/bes_theme/.icons/bes_theme/view-grid-plus.svg deleted file mode 100644 index 95d71038..00000000 --- a/bes_theme/.icons/bes_theme/view-grid-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-grid.svg b/bes_theme/.icons/bes_theme/view-grid.svg deleted file mode 100644 index fa6bca11..00000000 --- a/bes_theme/.icons/bes_theme/view-grid.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-headline.svg b/bes_theme/.icons/bes_theme/view-headline.svg deleted file mode 100644 index 9c10539c..00000000 --- a/bes_theme/.icons/bes_theme/view-headline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-list-outline.svg b/bes_theme/.icons/bes_theme/view-list-outline.svg deleted file mode 100644 index 4180ab87..00000000 --- a/bes_theme/.icons/bes_theme/view-list-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-list.svg b/bes_theme/.icons/bes_theme/view-list.svg deleted file mode 100644 index 45101600..00000000 --- a/bes_theme/.icons/bes_theme/view-list.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-module-outline.svg b/bes_theme/.icons/bes_theme/view-module-outline.svg deleted file mode 100644 index d426420f..00000000 --- a/bes_theme/.icons/bes_theme/view-module-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-module.svg b/bes_theme/.icons/bes_theme/view-module.svg deleted file mode 100644 index 3612de26..00000000 --- a/bes_theme/.icons/bes_theme/view-module.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-parallel-outline.svg b/bes_theme/.icons/bes_theme/view-parallel-outline.svg deleted file mode 100644 index 82dc29ba..00000000 --- a/bes_theme/.icons/bes_theme/view-parallel-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-parallel.svg b/bes_theme/.icons/bes_theme/view-parallel.svg deleted file mode 100644 index 71a0145a..00000000 --- a/bes_theme/.icons/bes_theme/view-parallel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-quilt-outline.svg b/bes_theme/.icons/bes_theme/view-quilt-outline.svg deleted file mode 100644 index f5344c22..00000000 --- a/bes_theme/.icons/bes_theme/view-quilt-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-quilt.svg b/bes_theme/.icons/bes_theme/view-quilt.svg deleted file mode 100644 index e017b22a..00000000 --- a/bes_theme/.icons/bes_theme/view-quilt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-sequential-outline.svg b/bes_theme/.icons/bes_theme/view-sequential-outline.svg deleted file mode 100644 index 4107c0b5..00000000 --- a/bes_theme/.icons/bes_theme/view-sequential-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-sequential.svg b/bes_theme/.icons/bes_theme/view-sequential.svg deleted file mode 100644 index e351e268..00000000 --- a/bes_theme/.icons/bes_theme/view-sequential.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-split-horizontal.svg b/bes_theme/.icons/bes_theme/view-split-horizontal.svg deleted file mode 100644 index e404da19..00000000 --- a/bes_theme/.icons/bes_theme/view-split-horizontal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-split-vertical.svg b/bes_theme/.icons/bes_theme/view-split-vertical.svg deleted file mode 100644 index 8cd2fc9e..00000000 --- a/bes_theme/.icons/bes_theme/view-split-vertical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-stream-outline.svg b/bes_theme/.icons/bes_theme/view-stream-outline.svg deleted file mode 100644 index c962bb9c..00000000 --- a/bes_theme/.icons/bes_theme/view-stream-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-stream.svg b/bes_theme/.icons/bes_theme/view-stream.svg deleted file mode 100644 index 9301e273..00000000 --- a/bes_theme/.icons/bes_theme/view-stream.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-week-outline.svg b/bes_theme/.icons/bes_theme/view-week-outline.svg deleted file mode 100644 index 42421dac..00000000 --- a/bes_theme/.icons/bes_theme/view-week-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/view-week.svg b/bes_theme/.icons/bes_theme/view-week.svg deleted file mode 100644 index 0a4687f3..00000000 --- a/bes_theme/.icons/bes_theme/view-week.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vimeo.svg b/bes_theme/.icons/bes_theme/vimeo.svg deleted file mode 100644 index e4618659..00000000 --- a/bes_theme/.icons/bes_theme/vimeo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/violin.svg b/bes_theme/.icons/bes_theme/violin.svg deleted file mode 100644 index 39ece6eb..00000000 --- a/bes_theme/.icons/bes_theme/violin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/virtual-reality.svg b/bes_theme/.icons/bes_theme/virtual-reality.svg deleted file mode 100644 index 401a735e..00000000 --- a/bes_theme/.icons/bes_theme/virtual-reality.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/virus-outline.svg b/bes_theme/.icons/bes_theme/virus-outline.svg deleted file mode 100644 index 2d4d1513..00000000 --- a/bes_theme/.icons/bes_theme/virus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/virus.svg b/bes_theme/.icons/bes_theme/virus.svg deleted file mode 100644 index b084c6cb..00000000 --- a/bes_theme/.icons/bes_theme/virus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vk.svg b/bes_theme/.icons/bes_theme/vk.svg deleted file mode 100644 index 6734c39a..00000000 --- a/bes_theme/.icons/bes_theme/vk.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vlc.svg b/bes_theme/.icons/bes_theme/vlc.svg deleted file mode 100644 index 7faaee53..00000000 --- a/bes_theme/.icons/bes_theme/vlc.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/voice-off.svg b/bes_theme/.icons/bes_theme/voice-off.svg deleted file mode 100644 index 8f97f3e6..00000000 --- a/bes_theme/.icons/bes_theme/voice-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/voicemail.svg b/bes_theme/.icons/bes_theme/voicemail.svg deleted file mode 100644 index 9b1711bd..00000000 --- a/bes_theme/.icons/bes_theme/voicemail.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/volleyball.svg b/bes_theme/.icons/bes_theme/volleyball.svg deleted file mode 100644 index 676b572f..00000000 --- a/bes_theme/.icons/bes_theme/volleyball.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/volume-high.svg b/bes_theme/.icons/bes_theme/volume-high.svg deleted file mode 100644 index 1611f029..00000000 --- a/bes_theme/.icons/bes_theme/volume-high.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/volume-low.svg b/bes_theme/.icons/bes_theme/volume-low.svg deleted file mode 100644 index 21216850..00000000 --- a/bes_theme/.icons/bes_theme/volume-low.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/volume-medium.svg b/bes_theme/.icons/bes_theme/volume-medium.svg deleted file mode 100644 index 4156fc16..00000000 --- a/bes_theme/.icons/bes_theme/volume-medium.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/volume-minus.svg b/bes_theme/.icons/bes_theme/volume-minus.svg deleted file mode 100644 index d8576640..00000000 --- a/bes_theme/.icons/bes_theme/volume-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/volume-mute.svg b/bes_theme/.icons/bes_theme/volume-mute.svg deleted file mode 100644 index 0ad42408..00000000 --- a/bes_theme/.icons/bes_theme/volume-mute.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/volume-off.svg b/bes_theme/.icons/bes_theme/volume-off.svg deleted file mode 100644 index c1b69346..00000000 --- a/bes_theme/.icons/bes_theme/volume-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/volume-plus.svg b/bes_theme/.icons/bes_theme/volume-plus.svg deleted file mode 100644 index fb6aa0cd..00000000 --- a/bes_theme/.icons/bes_theme/volume-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/volume-source.svg b/bes_theme/.icons/bes_theme/volume-source.svg deleted file mode 100644 index 8d953a75..00000000 --- a/bes_theme/.icons/bes_theme/volume-source.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/volume-variant-off.svg b/bes_theme/.icons/bes_theme/volume-variant-off.svg deleted file mode 100644 index 2d04d1ac..00000000 --- a/bes_theme/.icons/bes_theme/volume-variant-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/volume-vibrate.svg b/bes_theme/.icons/bes_theme/volume-vibrate.svg deleted file mode 100644 index 2040b7d1..00000000 --- a/bes_theme/.icons/bes_theme/volume-vibrate.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vote-outline.svg b/bes_theme/.icons/bes_theme/vote-outline.svg deleted file mode 100644 index 74304864..00000000 --- a/bes_theme/.icons/bes_theme/vote-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vote.svg b/bes_theme/.icons/bes_theme/vote.svg deleted file mode 100644 index 0b8cf49c..00000000 --- a/bes_theme/.icons/bes_theme/vote.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vpn.svg b/bes_theme/.icons/bes_theme/vpn.svg deleted file mode 100644 index 7fecd8d9..00000000 --- a/bes_theme/.icons/bes_theme/vpn.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vuejs.svg b/bes_theme/.icons/bes_theme/vuejs.svg deleted file mode 100644 index b4ad81d7..00000000 --- a/bes_theme/.icons/bes_theme/vuejs.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/vuetify.svg b/bes_theme/.icons/bes_theme/vuetify.svg deleted file mode 100644 index 946f28a9..00000000 --- a/bes_theme/.icons/bes_theme/vuetify.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/walk.svg b/bes_theme/.icons/bes_theme/walk.svg deleted file mode 100644 index c101d080..00000000 --- a/bes_theme/.icons/bes_theme/walk.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wall-sconce-flat-variant.svg b/bes_theme/.icons/bes_theme/wall-sconce-flat-variant.svg deleted file mode 100644 index 901419f6..00000000 --- a/bes_theme/.icons/bes_theme/wall-sconce-flat-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wall-sconce-flat.svg b/bes_theme/.icons/bes_theme/wall-sconce-flat.svg deleted file mode 100644 index 9a0c87b0..00000000 --- a/bes_theme/.icons/bes_theme/wall-sconce-flat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wall-sconce-round-variant.svg b/bes_theme/.icons/bes_theme/wall-sconce-round-variant.svg deleted file mode 100644 index 67e68104..00000000 --- a/bes_theme/.icons/bes_theme/wall-sconce-round-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wall-sconce-round.svg b/bes_theme/.icons/bes_theme/wall-sconce-round.svg deleted file mode 100644 index c4814ad4..00000000 --- a/bes_theme/.icons/bes_theme/wall-sconce-round.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wall-sconce.svg b/bes_theme/.icons/bes_theme/wall-sconce.svg deleted file mode 100644 index 34864953..00000000 --- a/bes_theme/.icons/bes_theme/wall-sconce.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wall.svg b/bes_theme/.icons/bes_theme/wall.svg deleted file mode 100644 index b12b8bca..00000000 --- a/bes_theme/.icons/bes_theme/wall.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wallet-giftcard.svg b/bes_theme/.icons/bes_theme/wallet-giftcard.svg deleted file mode 100644 index 426b5dea..00000000 --- a/bes_theme/.icons/bes_theme/wallet-giftcard.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wallet-membership.svg b/bes_theme/.icons/bes_theme/wallet-membership.svg deleted file mode 100644 index 9d94017d..00000000 --- a/bes_theme/.icons/bes_theme/wallet-membership.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wallet-outline.svg b/bes_theme/.icons/bes_theme/wallet-outline.svg deleted file mode 100644 index 5c5037c0..00000000 --- a/bes_theme/.icons/bes_theme/wallet-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wallet-plus-outline.svg b/bes_theme/.icons/bes_theme/wallet-plus-outline.svg deleted file mode 100644 index 3c9dbe9d..00000000 --- a/bes_theme/.icons/bes_theme/wallet-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wallet-plus.svg b/bes_theme/.icons/bes_theme/wallet-plus.svg deleted file mode 100644 index 88d37340..00000000 --- a/bes_theme/.icons/bes_theme/wallet-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wallet-travel.svg b/bes_theme/.icons/bes_theme/wallet-travel.svg deleted file mode 100644 index 7ce15c08..00000000 --- a/bes_theme/.icons/bes_theme/wallet-travel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wallet.svg b/bes_theme/.icons/bes_theme/wallet.svg deleted file mode 100644 index d8d62d58..00000000 --- a/bes_theme/.icons/bes_theme/wallet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wallpaper.svg b/bes_theme/.icons/bes_theme/wallpaper.svg deleted file mode 100644 index c21f19a4..00000000 --- a/bes_theme/.icons/bes_theme/wallpaper.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wan.svg b/bes_theme/.icons/bes_theme/wan.svg deleted file mode 100644 index 34059ebb..00000000 --- a/bes_theme/.icons/bes_theme/wan.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wardrobe-outline.svg b/bes_theme/.icons/bes_theme/wardrobe-outline.svg deleted file mode 100644 index b38f5c2d..00000000 --- a/bes_theme/.icons/bes_theme/wardrobe-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wardrobe.svg b/bes_theme/.icons/bes_theme/wardrobe.svg deleted file mode 100644 index f2e17260..00000000 --- a/bes_theme/.icons/bes_theme/wardrobe.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/warehouse.svg b/bes_theme/.icons/bes_theme/warehouse.svg deleted file mode 100644 index 4c3ab721..00000000 --- a/bes_theme/.icons/bes_theme/warehouse.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/washing-machine-alert.svg b/bes_theme/.icons/bes_theme/washing-machine-alert.svg deleted file mode 100644 index d8b3e111..00000000 --- a/bes_theme/.icons/bes_theme/washing-machine-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/washing-machine-off.svg b/bes_theme/.icons/bes_theme/washing-machine-off.svg deleted file mode 100644 index 48e0b879..00000000 --- a/bes_theme/.icons/bes_theme/washing-machine-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/washing-machine.svg b/bes_theme/.icons/bes_theme/washing-machine.svg deleted file mode 100644 index 7ed064c3..00000000 --- a/bes_theme/.icons/bes_theme/washing-machine.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/watch-export-variant.svg b/bes_theme/.icons/bes_theme/watch-export-variant.svg deleted file mode 100644 index 4c1de114..00000000 --- a/bes_theme/.icons/bes_theme/watch-export-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/watch-export.svg b/bes_theme/.icons/bes_theme/watch-export.svg deleted file mode 100644 index 8f8535e7..00000000 --- a/bes_theme/.icons/bes_theme/watch-export.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/watch-import-variant.svg b/bes_theme/.icons/bes_theme/watch-import-variant.svg deleted file mode 100644 index 7556ee87..00000000 --- a/bes_theme/.icons/bes_theme/watch-import-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/watch-import.svg b/bes_theme/.icons/bes_theme/watch-import.svg deleted file mode 100644 index 61f1267d..00000000 --- a/bes_theme/.icons/bes_theme/watch-import.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/watch-variant.svg b/bes_theme/.icons/bes_theme/watch-variant.svg deleted file mode 100644 index 1d9b534b..00000000 --- a/bes_theme/.icons/bes_theme/watch-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/watch-vibrate-off.svg b/bes_theme/.icons/bes_theme/watch-vibrate-off.svg deleted file mode 100644 index 3f666b93..00000000 --- a/bes_theme/.icons/bes_theme/watch-vibrate-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/watch-vibrate.svg b/bes_theme/.icons/bes_theme/watch-vibrate.svg deleted file mode 100644 index 75c75dbc..00000000 --- a/bes_theme/.icons/bes_theme/watch-vibrate.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/watch.svg b/bes_theme/.icons/bes_theme/watch.svg deleted file mode 100644 index 2935e4b6..00000000 --- a/bes_theme/.icons/bes_theme/watch.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/water-alert-outline.svg b/bes_theme/.icons/bes_theme/water-alert-outline.svg deleted file mode 100644 index 40e51ff1..00000000 --- a/bes_theme/.icons/bes_theme/water-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/water-alert.svg b/bes_theme/.icons/bes_theme/water-alert.svg deleted file mode 100644 index 3fe8b970..00000000 --- a/bes_theme/.icons/bes_theme/water-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/water-boiler-alert.svg b/bes_theme/.icons/bes_theme/water-boiler-alert.svg deleted file mode 100644 index 577a47a0..00000000 --- a/bes_theme/.icons/bes_theme/water-boiler-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/water-boiler-off.svg b/bes_theme/.icons/bes_theme/water-boiler-off.svg deleted file mode 100644 index 2ad89788..00000000 --- a/bes_theme/.icons/bes_theme/water-boiler-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/water-boiler.svg b/bes_theme/.icons/bes_theme/water-boiler.svg deleted file mode 100644 index 7668271a..00000000 --- a/bes_theme/.icons/bes_theme/water-boiler.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/water-check-outline.svg b/bes_theme/.icons/bes_theme/water-check-outline.svg deleted file mode 100644 index 81bfd12e..00000000 --- a/bes_theme/.icons/bes_theme/water-check-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/water-check.svg b/bes_theme/.icons/bes_theme/water-check.svg deleted file mode 100644 index 2108db31..00000000 --- a/bes_theme/.icons/bes_theme/water-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/water-minus-outline.svg b/bes_theme/.icons/bes_theme/water-minus-outline.svg deleted file mode 100644 index 4367d1e5..00000000 --- a/bes_theme/.icons/bes_theme/water-minus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/water-minus.svg b/bes_theme/.icons/bes_theme/water-minus.svg deleted file mode 100644 index 0a444893..00000000 --- a/bes_theme/.icons/bes_theme/water-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/water-off-outline.svg b/bes_theme/.icons/bes_theme/water-off-outline.svg deleted file mode 100644 index 1d59abf5..00000000 --- a/bes_theme/.icons/bes_theme/water-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/water-off.svg b/bes_theme/.icons/bes_theme/water-off.svg deleted file mode 100644 index f66c7867..00000000 --- a/bes_theme/.icons/bes_theme/water-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/water-outline.svg b/bes_theme/.icons/bes_theme/water-outline.svg deleted file mode 100644 index e2da6393..00000000 --- a/bes_theme/.icons/bes_theme/water-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/water-percent-alert.svg b/bes_theme/.icons/bes_theme/water-percent-alert.svg deleted file mode 100644 index 4841564b..00000000 --- a/bes_theme/.icons/bes_theme/water-percent-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/water-percent.svg b/bes_theme/.icons/bes_theme/water-percent.svg deleted file mode 100644 index 44698e71..00000000 --- a/bes_theme/.icons/bes_theme/water-percent.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/water-plus-outline.svg b/bes_theme/.icons/bes_theme/water-plus-outline.svg deleted file mode 100644 index 9dcea936..00000000 --- a/bes_theme/.icons/bes_theme/water-plus-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/water-plus.svg b/bes_theme/.icons/bes_theme/water-plus.svg deleted file mode 100644 index 547b54b2..00000000 --- a/bes_theme/.icons/bes_theme/water-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/water-polo.svg b/bes_theme/.icons/bes_theme/water-polo.svg deleted file mode 100644 index c90878d3..00000000 --- a/bes_theme/.icons/bes_theme/water-polo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/water-pump-off.svg b/bes_theme/.icons/bes_theme/water-pump-off.svg deleted file mode 100644 index 2f798fbc..00000000 --- a/bes_theme/.icons/bes_theme/water-pump-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/water-pump.svg b/bes_theme/.icons/bes_theme/water-pump.svg deleted file mode 100644 index 53d71abb..00000000 --- a/bes_theme/.icons/bes_theme/water-pump.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/water-remove-outline.svg b/bes_theme/.icons/bes_theme/water-remove-outline.svg deleted file mode 100644 index 83e42acc..00000000 --- a/bes_theme/.icons/bes_theme/water-remove-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/water-remove.svg b/bes_theme/.icons/bes_theme/water-remove.svg deleted file mode 100644 index 7991378d..00000000 --- a/bes_theme/.icons/bes_theme/water-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/water-well-outline.svg b/bes_theme/.icons/bes_theme/water-well-outline.svg deleted file mode 100644 index 7003e465..00000000 --- a/bes_theme/.icons/bes_theme/water-well-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/water-well.svg b/bes_theme/.icons/bes_theme/water-well.svg deleted file mode 100644 index 0717ffd8..00000000 --- a/bes_theme/.icons/bes_theme/water-well.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/water.svg b/bes_theme/.icons/bes_theme/water.svg deleted file mode 100644 index 030a2f51..00000000 --- a/bes_theme/.icons/bes_theme/water.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/watering-can-outline.svg b/bes_theme/.icons/bes_theme/watering-can-outline.svg deleted file mode 100644 index 2bf36213..00000000 --- a/bes_theme/.icons/bes_theme/watering-can-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/watering-can.svg b/bes_theme/.icons/bes_theme/watering-can.svg deleted file mode 100644 index be725c61..00000000 --- a/bes_theme/.icons/bes_theme/watering-can.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/watermark.svg b/bes_theme/.icons/bes_theme/watermark.svg deleted file mode 100644 index f528af48..00000000 --- a/bes_theme/.icons/bes_theme/watermark.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wave.svg b/bes_theme/.icons/bes_theme/wave.svg deleted file mode 100644 index 611dd615..00000000 --- a/bes_theme/.icons/bes_theme/wave.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/waveform.svg b/bes_theme/.icons/bes_theme/waveform.svg deleted file mode 100644 index ff68d261..00000000 --- a/bes_theme/.icons/bes_theme/waveform.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/waves.svg b/bes_theme/.icons/bes_theme/waves.svg deleted file mode 100644 index 246bcc84..00000000 --- a/bes_theme/.icons/bes_theme/waves.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/waze.svg b/bes_theme/.icons/bes_theme/waze.svg deleted file mode 100644 index 7d2366e9..00000000 --- a/bes_theme/.icons/bes_theme/waze.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weather-cloudy-alert.svg b/bes_theme/.icons/bes_theme/weather-cloudy-alert.svg deleted file mode 100644 index 064121d1..00000000 --- a/bes_theme/.icons/bes_theme/weather-cloudy-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weather-cloudy-arrow-right.svg b/bes_theme/.icons/bes_theme/weather-cloudy-arrow-right.svg deleted file mode 100644 index cc1242aa..00000000 --- a/bes_theme/.icons/bes_theme/weather-cloudy-arrow-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weather-cloudy.svg b/bes_theme/.icons/bes_theme/weather-cloudy.svg deleted file mode 100644 index dca25c1f..00000000 --- a/bes_theme/.icons/bes_theme/weather-cloudy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weather-fog.svg b/bes_theme/.icons/bes_theme/weather-fog.svg deleted file mode 100644 index c219246e..00000000 --- a/bes_theme/.icons/bes_theme/weather-fog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weather-hail.svg b/bes_theme/.icons/bes_theme/weather-hail.svg deleted file mode 100644 index 008bee2e..00000000 --- a/bes_theme/.icons/bes_theme/weather-hail.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weather-hazy.svg b/bes_theme/.icons/bes_theme/weather-hazy.svg deleted file mode 100644 index a0e74e67..00000000 --- a/bes_theme/.icons/bes_theme/weather-hazy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weather-hurricane.svg b/bes_theme/.icons/bes_theme/weather-hurricane.svg deleted file mode 100644 index 78ae9390..00000000 --- a/bes_theme/.icons/bes_theme/weather-hurricane.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weather-lightning-rainy.svg b/bes_theme/.icons/bes_theme/weather-lightning-rainy.svg deleted file mode 100644 index 64a2ca53..00000000 --- a/bes_theme/.icons/bes_theme/weather-lightning-rainy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weather-lightning.svg b/bes_theme/.icons/bes_theme/weather-lightning.svg deleted file mode 100644 index ce070ae7..00000000 --- a/bes_theme/.icons/bes_theme/weather-lightning.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weather-night-partly-cloudy.svg b/bes_theme/.icons/bes_theme/weather-night-partly-cloudy.svg deleted file mode 100644 index d244e0fa..00000000 --- a/bes_theme/.icons/bes_theme/weather-night-partly-cloudy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weather-night.svg b/bes_theme/.icons/bes_theme/weather-night.svg deleted file mode 100644 index d520b559..00000000 --- a/bes_theme/.icons/bes_theme/weather-night.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weather-partly-cloudy.svg b/bes_theme/.icons/bes_theme/weather-partly-cloudy.svg deleted file mode 100644 index 2badb48e..00000000 --- a/bes_theme/.icons/bes_theme/weather-partly-cloudy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weather-partly-lightning.svg b/bes_theme/.icons/bes_theme/weather-partly-lightning.svg deleted file mode 100644 index b4d86b33..00000000 --- a/bes_theme/.icons/bes_theme/weather-partly-lightning.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weather-partly-rainy.svg b/bes_theme/.icons/bes_theme/weather-partly-rainy.svg deleted file mode 100644 index c21292e3..00000000 --- a/bes_theme/.icons/bes_theme/weather-partly-rainy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weather-partly-snowy-rainy.svg b/bes_theme/.icons/bes_theme/weather-partly-snowy-rainy.svg deleted file mode 100644 index 8cbfdfe6..00000000 --- a/bes_theme/.icons/bes_theme/weather-partly-snowy-rainy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weather-partly-snowy.svg b/bes_theme/.icons/bes_theme/weather-partly-snowy.svg deleted file mode 100644 index 645eb045..00000000 --- a/bes_theme/.icons/bes_theme/weather-partly-snowy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weather-pouring.svg b/bes_theme/.icons/bes_theme/weather-pouring.svg deleted file mode 100644 index 0b904e73..00000000 --- a/bes_theme/.icons/bes_theme/weather-pouring.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weather-rainy.svg b/bes_theme/.icons/bes_theme/weather-rainy.svg deleted file mode 100644 index 081cd42b..00000000 --- a/bes_theme/.icons/bes_theme/weather-rainy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weather-snowy-heavy.svg b/bes_theme/.icons/bes_theme/weather-snowy-heavy.svg deleted file mode 100644 index e135cf8c..00000000 --- a/bes_theme/.icons/bes_theme/weather-snowy-heavy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weather-snowy-rainy.svg b/bes_theme/.icons/bes_theme/weather-snowy-rainy.svg deleted file mode 100644 index 611c18f9..00000000 --- a/bes_theme/.icons/bes_theme/weather-snowy-rainy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weather-snowy.svg b/bes_theme/.icons/bes_theme/weather-snowy.svg deleted file mode 100644 index d8e1210e..00000000 --- a/bes_theme/.icons/bes_theme/weather-snowy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weather-sunny-alert.svg b/bes_theme/.icons/bes_theme/weather-sunny-alert.svg deleted file mode 100644 index bcf14a01..00000000 --- a/bes_theme/.icons/bes_theme/weather-sunny-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weather-sunny-off.svg b/bes_theme/.icons/bes_theme/weather-sunny-off.svg deleted file mode 100644 index deada0cc..00000000 --- a/bes_theme/.icons/bes_theme/weather-sunny-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weather-sunny.svg b/bes_theme/.icons/bes_theme/weather-sunny.svg deleted file mode 100644 index e886da98..00000000 --- a/bes_theme/.icons/bes_theme/weather-sunny.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weather-sunset-down.svg b/bes_theme/.icons/bes_theme/weather-sunset-down.svg deleted file mode 100644 index 5da346d4..00000000 --- a/bes_theme/.icons/bes_theme/weather-sunset-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weather-sunset-up.svg b/bes_theme/.icons/bes_theme/weather-sunset-up.svg deleted file mode 100644 index 652f945c..00000000 --- a/bes_theme/.icons/bes_theme/weather-sunset-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weather-sunset.svg b/bes_theme/.icons/bes_theme/weather-sunset.svg deleted file mode 100644 index a171d56c..00000000 --- a/bes_theme/.icons/bes_theme/weather-sunset.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weather-tornado.svg b/bes_theme/.icons/bes_theme/weather-tornado.svg deleted file mode 100644 index c769c9c8..00000000 --- a/bes_theme/.icons/bes_theme/weather-tornado.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weather-windy-variant.svg b/bes_theme/.icons/bes_theme/weather-windy-variant.svg deleted file mode 100644 index 575f950c..00000000 --- a/bes_theme/.icons/bes_theme/weather-windy-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weather-windy.svg b/bes_theme/.icons/bes_theme/weather-windy.svg deleted file mode 100644 index cdd2c6e7..00000000 --- a/bes_theme/.icons/bes_theme/weather-windy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/web-box.svg b/bes_theme/.icons/bes_theme/web-box.svg deleted file mode 100644 index 85f3ea37..00000000 --- a/bes_theme/.icons/bes_theme/web-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/web-clock.svg b/bes_theme/.icons/bes_theme/web-clock.svg deleted file mode 100644 index 0bb1f091..00000000 --- a/bes_theme/.icons/bes_theme/web-clock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/web.svg b/bes_theme/.icons/bes_theme/web.svg deleted file mode 100644 index 0e7390e2..00000000 --- a/bes_theme/.icons/bes_theme/web.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/webcam-off.svg b/bes_theme/.icons/bes_theme/webcam-off.svg deleted file mode 100644 index 8ec3c9a6..00000000 --- a/bes_theme/.icons/bes_theme/webcam-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/webcam.svg b/bes_theme/.icons/bes_theme/webcam.svg deleted file mode 100644 index 6366691f..00000000 --- a/bes_theme/.icons/bes_theme/webcam.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/webhook.svg b/bes_theme/.icons/bes_theme/webhook.svg deleted file mode 100644 index b4d71903..00000000 --- a/bes_theme/.icons/bes_theme/webhook.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/webpack.svg b/bes_theme/.icons/bes_theme/webpack.svg deleted file mode 100644 index c8b5cbd3..00000000 --- a/bes_theme/.icons/bes_theme/webpack.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/webrtc.svg b/bes_theme/.icons/bes_theme/webrtc.svg deleted file mode 100644 index d31dbdb1..00000000 --- a/bes_theme/.icons/bes_theme/webrtc.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wechat.svg b/bes_theme/.icons/bes_theme/wechat.svg deleted file mode 100644 index 0c4b1e23..00000000 --- a/bes_theme/.icons/bes_theme/wechat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weight-gram.svg b/bes_theme/.icons/bes_theme/weight-gram.svg deleted file mode 100644 index 50033ca8..00000000 --- a/bes_theme/.icons/bes_theme/weight-gram.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weight-kilogram.svg b/bes_theme/.icons/bes_theme/weight-kilogram.svg deleted file mode 100644 index c1bc6261..00000000 --- a/bes_theme/.icons/bes_theme/weight-kilogram.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weight-lifter.svg b/bes_theme/.icons/bes_theme/weight-lifter.svg deleted file mode 100644 index d28700cc..00000000 --- a/bes_theme/.icons/bes_theme/weight-lifter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weight-pound.svg b/bes_theme/.icons/bes_theme/weight-pound.svg deleted file mode 100644 index 5082a1f7..00000000 --- a/bes_theme/.icons/bes_theme/weight-pound.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/weight.svg b/bes_theme/.icons/bes_theme/weight.svg deleted file mode 100644 index badad1c7..00000000 --- a/bes_theme/.icons/bes_theme/weight.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/whatsapp.svg b/bes_theme/.icons/bes_theme/whatsapp.svg deleted file mode 100644 index d5764110..00000000 --- a/bes_theme/.icons/bes_theme/whatsapp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wheel-barrow.svg b/bes_theme/.icons/bes_theme/wheel-barrow.svg deleted file mode 100644 index a5632a2d..00000000 --- a/bes_theme/.icons/bes_theme/wheel-barrow.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wheelchair-accessibility.svg b/bes_theme/.icons/bes_theme/wheelchair-accessibility.svg deleted file mode 100644 index 1ef4c78a..00000000 --- a/bes_theme/.icons/bes_theme/wheelchair-accessibility.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/whistle-outline.svg b/bes_theme/.icons/bes_theme/whistle-outline.svg deleted file mode 100644 index 8499f529..00000000 --- a/bes_theme/.icons/bes_theme/whistle-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/whistle.svg b/bes_theme/.icons/bes_theme/whistle.svg deleted file mode 100644 index e374d2b3..00000000 --- a/bes_theme/.icons/bes_theme/whistle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/white-balance-auto.svg b/bes_theme/.icons/bes_theme/white-balance-auto.svg deleted file mode 100644 index 1caed799..00000000 --- a/bes_theme/.icons/bes_theme/white-balance-auto.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/white-balance-incandescent.svg b/bes_theme/.icons/bes_theme/white-balance-incandescent.svg deleted file mode 100644 index f7956e5e..00000000 --- a/bes_theme/.icons/bes_theme/white-balance-incandescent.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/white-balance-iridescent.svg b/bes_theme/.icons/bes_theme/white-balance-iridescent.svg deleted file mode 100644 index 5f6a0715..00000000 --- a/bes_theme/.icons/bes_theme/white-balance-iridescent.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/white-balance-sunny.svg b/bes_theme/.icons/bes_theme/white-balance-sunny.svg deleted file mode 100644 index ebdf0352..00000000 --- a/bes_theme/.icons/bes_theme/white-balance-sunny.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/widgets-outline.svg b/bes_theme/.icons/bes_theme/widgets-outline.svg deleted file mode 100644 index 6ec59412..00000000 --- a/bes_theme/.icons/bes_theme/widgets-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/widgets.svg b/bes_theme/.icons/bes_theme/widgets.svg deleted file mode 100644 index a14820fd..00000000 --- a/bes_theme/.icons/bes_theme/widgets.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-alert.svg b/bes_theme/.icons/bes_theme/wifi-alert.svg deleted file mode 100644 index 1d1494bd..00000000 --- a/bes_theme/.icons/bes_theme/wifi-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-arrow-down.svg b/bes_theme/.icons/bes_theme/wifi-arrow-down.svg deleted file mode 100644 index bb91096f..00000000 --- a/bes_theme/.icons/bes_theme/wifi-arrow-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-arrow-left-right.svg b/bes_theme/.icons/bes_theme/wifi-arrow-left-right.svg deleted file mode 100644 index b3c0b893..00000000 --- a/bes_theme/.icons/bes_theme/wifi-arrow-left-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-arrow-left.svg b/bes_theme/.icons/bes_theme/wifi-arrow-left.svg deleted file mode 100644 index 120a2816..00000000 --- a/bes_theme/.icons/bes_theme/wifi-arrow-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-arrow-right.svg b/bes_theme/.icons/bes_theme/wifi-arrow-right.svg deleted file mode 100644 index c94a0622..00000000 --- a/bes_theme/.icons/bes_theme/wifi-arrow-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-arrow-up-down.svg b/bes_theme/.icons/bes_theme/wifi-arrow-up-down.svg deleted file mode 100644 index a5664e01..00000000 --- a/bes_theme/.icons/bes_theme/wifi-arrow-up-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-arrow-up.svg b/bes_theme/.icons/bes_theme/wifi-arrow-up.svg deleted file mode 100644 index 16d554be..00000000 --- a/bes_theme/.icons/bes_theme/wifi-arrow-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-cancel.svg b/bes_theme/.icons/bes_theme/wifi-cancel.svg deleted file mode 100644 index 5bade397..00000000 --- a/bes_theme/.icons/bes_theme/wifi-cancel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-check.svg b/bes_theme/.icons/bes_theme/wifi-check.svg deleted file mode 100644 index 06002e36..00000000 --- a/bes_theme/.icons/bes_theme/wifi-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-cog.svg b/bes_theme/.icons/bes_theme/wifi-cog.svg deleted file mode 100644 index 8aacc120..00000000 --- a/bes_theme/.icons/bes_theme/wifi-cog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-lock-open.svg b/bes_theme/.icons/bes_theme/wifi-lock-open.svg deleted file mode 100644 index be752665..00000000 --- a/bes_theme/.icons/bes_theme/wifi-lock-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-lock.svg b/bes_theme/.icons/bes_theme/wifi-lock.svg deleted file mode 100644 index 921c46cd..00000000 --- a/bes_theme/.icons/bes_theme/wifi-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-marker.svg b/bes_theme/.icons/bes_theme/wifi-marker.svg deleted file mode 100644 index 514778eb..00000000 --- a/bes_theme/.icons/bes_theme/wifi-marker.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-minus.svg b/bes_theme/.icons/bes_theme/wifi-minus.svg deleted file mode 100644 index 6a700ef3..00000000 --- a/bes_theme/.icons/bes_theme/wifi-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-off.svg b/bes_theme/.icons/bes_theme/wifi-off.svg deleted file mode 100644 index 747588af..00000000 --- a/bes_theme/.icons/bes_theme/wifi-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-plus.svg b/bes_theme/.icons/bes_theme/wifi-plus.svg deleted file mode 100644 index 449e3184..00000000 --- a/bes_theme/.icons/bes_theme/wifi-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-refresh.svg b/bes_theme/.icons/bes_theme/wifi-refresh.svg deleted file mode 100644 index 85609725..00000000 --- a/bes_theme/.icons/bes_theme/wifi-refresh.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-remove.svg b/bes_theme/.icons/bes_theme/wifi-remove.svg deleted file mode 100644 index 2a5f90a8..00000000 --- a/bes_theme/.icons/bes_theme/wifi-remove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-settings.svg b/bes_theme/.icons/bes_theme/wifi-settings.svg deleted file mode 100644 index 59b02839..00000000 --- a/bes_theme/.icons/bes_theme/wifi-settings.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-star.svg b/bes_theme/.icons/bes_theme/wifi-star.svg deleted file mode 100644 index a6840b0d..00000000 --- a/bes_theme/.icons/bes_theme/wifi-star.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-strength-1-alert.svg b/bes_theme/.icons/bes_theme/wifi-strength-1-alert.svg deleted file mode 100644 index 12bfb2e9..00000000 --- a/bes_theme/.icons/bes_theme/wifi-strength-1-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-strength-1-lock-open.svg b/bes_theme/.icons/bes_theme/wifi-strength-1-lock-open.svg deleted file mode 100644 index cb703da6..00000000 --- a/bes_theme/.icons/bes_theme/wifi-strength-1-lock-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-strength-1-lock.svg b/bes_theme/.icons/bes_theme/wifi-strength-1-lock.svg deleted file mode 100644 index eb162440..00000000 --- a/bes_theme/.icons/bes_theme/wifi-strength-1-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-strength-1.svg b/bes_theme/.icons/bes_theme/wifi-strength-1.svg deleted file mode 100644 index 91300941..00000000 --- a/bes_theme/.icons/bes_theme/wifi-strength-1.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-strength-2-alert.svg b/bes_theme/.icons/bes_theme/wifi-strength-2-alert.svg deleted file mode 100644 index 852727e2..00000000 --- a/bes_theme/.icons/bes_theme/wifi-strength-2-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-strength-2-lock-open.svg b/bes_theme/.icons/bes_theme/wifi-strength-2-lock-open.svg deleted file mode 100644 index de857185..00000000 --- a/bes_theme/.icons/bes_theme/wifi-strength-2-lock-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-strength-2-lock.svg b/bes_theme/.icons/bes_theme/wifi-strength-2-lock.svg deleted file mode 100644 index c7c233fd..00000000 --- a/bes_theme/.icons/bes_theme/wifi-strength-2-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-strength-2.svg b/bes_theme/.icons/bes_theme/wifi-strength-2.svg deleted file mode 100644 index 8df5afb3..00000000 --- a/bes_theme/.icons/bes_theme/wifi-strength-2.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-strength-3-alert.svg b/bes_theme/.icons/bes_theme/wifi-strength-3-alert.svg deleted file mode 100644 index caa68f84..00000000 --- a/bes_theme/.icons/bes_theme/wifi-strength-3-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-strength-3-lock-open.svg b/bes_theme/.icons/bes_theme/wifi-strength-3-lock-open.svg deleted file mode 100644 index daefc31e..00000000 --- a/bes_theme/.icons/bes_theme/wifi-strength-3-lock-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-strength-3-lock.svg b/bes_theme/.icons/bes_theme/wifi-strength-3-lock.svg deleted file mode 100644 index 86593416..00000000 --- a/bes_theme/.icons/bes_theme/wifi-strength-3-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-strength-3.svg b/bes_theme/.icons/bes_theme/wifi-strength-3.svg deleted file mode 100644 index 4f99322b..00000000 --- a/bes_theme/.icons/bes_theme/wifi-strength-3.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-strength-4-alert.svg b/bes_theme/.icons/bes_theme/wifi-strength-4-alert.svg deleted file mode 100644 index a3d57fd5..00000000 --- a/bes_theme/.icons/bes_theme/wifi-strength-4-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-strength-4-lock-open.svg b/bes_theme/.icons/bes_theme/wifi-strength-4-lock-open.svg deleted file mode 100644 index c0ed32b6..00000000 --- a/bes_theme/.icons/bes_theme/wifi-strength-4-lock-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-strength-4-lock.svg b/bes_theme/.icons/bes_theme/wifi-strength-4-lock.svg deleted file mode 100644 index d3396db9..00000000 --- a/bes_theme/.icons/bes_theme/wifi-strength-4-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-strength-4.svg b/bes_theme/.icons/bes_theme/wifi-strength-4.svg deleted file mode 100644 index 4c4b1b27..00000000 --- a/bes_theme/.icons/bes_theme/wifi-strength-4.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-strength-alert-outline.svg b/bes_theme/.icons/bes_theme/wifi-strength-alert-outline.svg deleted file mode 100644 index da941988..00000000 --- a/bes_theme/.icons/bes_theme/wifi-strength-alert-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-strength-lock-open-outline.svg b/bes_theme/.icons/bes_theme/wifi-strength-lock-open-outline.svg deleted file mode 100644 index fa5e90f2..00000000 --- a/bes_theme/.icons/bes_theme/wifi-strength-lock-open-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-strength-lock-outline.svg b/bes_theme/.icons/bes_theme/wifi-strength-lock-outline.svg deleted file mode 100644 index 75ca1e20..00000000 --- a/bes_theme/.icons/bes_theme/wifi-strength-lock-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-strength-off-outline.svg b/bes_theme/.icons/bes_theme/wifi-strength-off-outline.svg deleted file mode 100644 index 6120184d..00000000 --- a/bes_theme/.icons/bes_theme/wifi-strength-off-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-strength-off.svg b/bes_theme/.icons/bes_theme/wifi-strength-off.svg deleted file mode 100644 index 50b535c3..00000000 --- a/bes_theme/.icons/bes_theme/wifi-strength-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-strength-outline.svg b/bes_theme/.icons/bes_theme/wifi-strength-outline.svg deleted file mode 100644 index 47b65de6..00000000 --- a/bes_theme/.icons/bes_theme/wifi-strength-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi-sync.svg b/bes_theme/.icons/bes_theme/wifi-sync.svg deleted file mode 100644 index 190c99c1..00000000 --- a/bes_theme/.icons/bes_theme/wifi-sync.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wifi.svg b/bes_theme/.icons/bes_theme/wifi.svg deleted file mode 100644 index f31b1bab..00000000 --- a/bes_theme/.icons/bes_theme/wifi.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wikipedia.svg b/bes_theme/.icons/bes_theme/wikipedia.svg deleted file mode 100644 index 418699fd..00000000 --- a/bes_theme/.icons/bes_theme/wikipedia.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wind-turbine.svg b/bes_theme/.icons/bes_theme/wind-turbine.svg deleted file mode 100644 index 031c1e6c..00000000 --- a/bes_theme/.icons/bes_theme/wind-turbine.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/window-close.svg b/bes_theme/.icons/bes_theme/window-close.svg deleted file mode 100644 index 82191890..00000000 --- a/bes_theme/.icons/bes_theme/window-close.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/window-closed-variant.svg b/bes_theme/.icons/bes_theme/window-closed-variant.svg deleted file mode 100644 index ee946013..00000000 --- a/bes_theme/.icons/bes_theme/window-closed-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/window-closed.svg b/bes_theme/.icons/bes_theme/window-closed.svg deleted file mode 100644 index 6bf16c28..00000000 --- a/bes_theme/.icons/bes_theme/window-closed.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/window-maximize.svg b/bes_theme/.icons/bes_theme/window-maximize.svg deleted file mode 100644 index 87ae176c..00000000 --- a/bes_theme/.icons/bes_theme/window-maximize.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/window-minimize.svg b/bes_theme/.icons/bes_theme/window-minimize.svg deleted file mode 100644 index 2d541e96..00000000 --- a/bes_theme/.icons/bes_theme/window-minimize.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/window-open-variant.svg b/bes_theme/.icons/bes_theme/window-open-variant.svg deleted file mode 100644 index 355ece26..00000000 --- a/bes_theme/.icons/bes_theme/window-open-variant.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/window-open.svg b/bes_theme/.icons/bes_theme/window-open.svg deleted file mode 100644 index f2b1f0e5..00000000 --- a/bes_theme/.icons/bes_theme/window-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/window-restore.svg b/bes_theme/.icons/bes_theme/window-restore.svg deleted file mode 100644 index b2aa2153..00000000 --- a/bes_theme/.icons/bes_theme/window-restore.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/window-shutter-alert.svg b/bes_theme/.icons/bes_theme/window-shutter-alert.svg deleted file mode 100644 index 2b2900a7..00000000 --- a/bes_theme/.icons/bes_theme/window-shutter-alert.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/window-shutter-open.svg b/bes_theme/.icons/bes_theme/window-shutter-open.svg deleted file mode 100644 index cda238f8..00000000 --- a/bes_theme/.icons/bes_theme/window-shutter-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/window-shutter.svg b/bes_theme/.icons/bes_theme/window-shutter.svg deleted file mode 100644 index e858cec2..00000000 --- a/bes_theme/.icons/bes_theme/window-shutter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/windsock.svg b/bes_theme/.icons/bes_theme/windsock.svg deleted file mode 100644 index 664c0216..00000000 --- a/bes_theme/.icons/bes_theme/windsock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wiper-wash.svg b/bes_theme/.icons/bes_theme/wiper-wash.svg deleted file mode 100644 index dc848aef..00000000 --- a/bes_theme/.icons/bes_theme/wiper-wash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wiper.svg b/bes_theme/.icons/bes_theme/wiper.svg deleted file mode 100644 index adc64bd0..00000000 --- a/bes_theme/.icons/bes_theme/wiper.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wizard-hat.svg b/bes_theme/.icons/bes_theme/wizard-hat.svg deleted file mode 100644 index d67525f7..00000000 --- a/bes_theme/.icons/bes_theme/wizard-hat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wordpress.svg b/bes_theme/.icons/bes_theme/wordpress.svg deleted file mode 100644 index 80045c29..00000000 --- a/bes_theme/.icons/bes_theme/wordpress.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wrap-disabled.svg b/bes_theme/.icons/bes_theme/wrap-disabled.svg deleted file mode 100644 index b1551130..00000000 --- a/bes_theme/.icons/bes_theme/wrap-disabled.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wrap.svg b/bes_theme/.icons/bes_theme/wrap.svg deleted file mode 100644 index 0fb38c83..00000000 --- a/bes_theme/.icons/bes_theme/wrap.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wrench-outline.svg b/bes_theme/.icons/bes_theme/wrench-outline.svg deleted file mode 100644 index de9849e8..00000000 --- a/bes_theme/.icons/bes_theme/wrench-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/wrench.svg b/bes_theme/.icons/bes_theme/wrench.svg deleted file mode 100644 index af2cba97..00000000 --- a/bes_theme/.icons/bes_theme/wrench.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/xamarin-outline.svg b/bes_theme/.icons/bes_theme/xamarin-outline.svg deleted file mode 100644 index 76ce95a6..00000000 --- a/bes_theme/.icons/bes_theme/xamarin-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/xamarin.svg b/bes_theme/.icons/bes_theme/xamarin.svg deleted file mode 100644 index 9fb6ea34..00000000 --- a/bes_theme/.icons/bes_theme/xamarin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/xing.svg b/bes_theme/.icons/bes_theme/xing.svg deleted file mode 100644 index c3fe1382..00000000 --- a/bes_theme/.icons/bes_theme/xing.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/xml.svg b/bes_theme/.icons/bes_theme/xml.svg deleted file mode 100644 index e8017407..00000000 --- a/bes_theme/.icons/bes_theme/xml.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/xmpp.svg b/bes_theme/.icons/bes_theme/xmpp.svg deleted file mode 100644 index 18b89429..00000000 --- a/bes_theme/.icons/bes_theme/xmpp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/y-combinator.svg b/bes_theme/.icons/bes_theme/y-combinator.svg deleted file mode 100644 index 427cd227..00000000 --- a/bes_theme/.icons/bes_theme/y-combinator.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/yahoo.svg b/bes_theme/.icons/bes_theme/yahoo.svg deleted file mode 100644 index 6d66387b..00000000 --- a/bes_theme/.icons/bes_theme/yahoo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/yeast.svg b/bes_theme/.icons/bes_theme/yeast.svg deleted file mode 100644 index 29e2ebd2..00000000 --- a/bes_theme/.icons/bes_theme/yeast.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/yin-yang.svg b/bes_theme/.icons/bes_theme/yin-yang.svg deleted file mode 100644 index 169b596a..00000000 --- a/bes_theme/.icons/bes_theme/yin-yang.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/yoga.svg b/bes_theme/.icons/bes_theme/yoga.svg deleted file mode 100644 index 4df6fc91..00000000 --- a/bes_theme/.icons/bes_theme/yoga.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/youtube-gaming.svg b/bes_theme/.icons/bes_theme/youtube-gaming.svg deleted file mode 100644 index 2ee13233..00000000 --- a/bes_theme/.icons/bes_theme/youtube-gaming.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/youtube-studio.svg b/bes_theme/.icons/bes_theme/youtube-studio.svg deleted file mode 100644 index b6940e2d..00000000 --- a/bes_theme/.icons/bes_theme/youtube-studio.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/youtube-subscription.svg b/bes_theme/.icons/bes_theme/youtube-subscription.svg deleted file mode 100644 index 64e5b904..00000000 --- a/bes_theme/.icons/bes_theme/youtube-subscription.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/youtube-tv.svg b/bes_theme/.icons/bes_theme/youtube-tv.svg deleted file mode 100644 index f2413b9d..00000000 --- a/bes_theme/.icons/bes_theme/youtube-tv.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/youtube.svg b/bes_theme/.icons/bes_theme/youtube.svg deleted file mode 100644 index 5f0b60b9..00000000 --- a/bes_theme/.icons/bes_theme/youtube.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/yurt.svg b/bes_theme/.icons/bes_theme/yurt.svg deleted file mode 100644 index 7a58762f..00000000 --- a/bes_theme/.icons/bes_theme/yurt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/z-wave.svg b/bes_theme/.icons/bes_theme/z-wave.svg deleted file mode 100644 index b1ec35a9..00000000 --- a/bes_theme/.icons/bes_theme/z-wave.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/zend.svg b/bes_theme/.icons/bes_theme/zend.svg deleted file mode 100644 index 120c5c3f..00000000 --- a/bes_theme/.icons/bes_theme/zend.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/zigbee.svg b/bes_theme/.icons/bes_theme/zigbee.svg deleted file mode 100644 index 2251a503..00000000 --- a/bes_theme/.icons/bes_theme/zigbee.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/zip-box-outline.svg b/bes_theme/.icons/bes_theme/zip-box-outline.svg deleted file mode 100644 index ba44915b..00000000 --- a/bes_theme/.icons/bes_theme/zip-box-outline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/zip-box.svg b/bes_theme/.icons/bes_theme/zip-box.svg deleted file mode 100644 index 63381099..00000000 --- a/bes_theme/.icons/bes_theme/zip-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/zip-disk.svg b/bes_theme/.icons/bes_theme/zip-disk.svg deleted file mode 100644 index e2a1d632..00000000 --- a/bes_theme/.icons/bes_theme/zip-disk.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/zodiac-aquarius.svg b/bes_theme/.icons/bes_theme/zodiac-aquarius.svg deleted file mode 100644 index 6aa4de42..00000000 --- a/bes_theme/.icons/bes_theme/zodiac-aquarius.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/zodiac-aries.svg b/bes_theme/.icons/bes_theme/zodiac-aries.svg deleted file mode 100644 index 0694d887..00000000 --- a/bes_theme/.icons/bes_theme/zodiac-aries.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/zodiac-cancer.svg b/bes_theme/.icons/bes_theme/zodiac-cancer.svg deleted file mode 100644 index 91bcef84..00000000 --- a/bes_theme/.icons/bes_theme/zodiac-cancer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/zodiac-capricorn.svg b/bes_theme/.icons/bes_theme/zodiac-capricorn.svg deleted file mode 100644 index bbd36e64..00000000 --- a/bes_theme/.icons/bes_theme/zodiac-capricorn.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/zodiac-gemini.svg b/bes_theme/.icons/bes_theme/zodiac-gemini.svg deleted file mode 100644 index c6aec7fa..00000000 --- a/bes_theme/.icons/bes_theme/zodiac-gemini.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/zodiac-leo.svg b/bes_theme/.icons/bes_theme/zodiac-leo.svg deleted file mode 100644 index 6d3cc4cf..00000000 --- a/bes_theme/.icons/bes_theme/zodiac-leo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/zodiac-libra.svg b/bes_theme/.icons/bes_theme/zodiac-libra.svg deleted file mode 100644 index 383c22fe..00000000 --- a/bes_theme/.icons/bes_theme/zodiac-libra.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/zodiac-pisces.svg b/bes_theme/.icons/bes_theme/zodiac-pisces.svg deleted file mode 100644 index cdc45d71..00000000 --- a/bes_theme/.icons/bes_theme/zodiac-pisces.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/zodiac-sagittarius.svg b/bes_theme/.icons/bes_theme/zodiac-sagittarius.svg deleted file mode 100644 index 09b6f19c..00000000 --- a/bes_theme/.icons/bes_theme/zodiac-sagittarius.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/zodiac-scorpio.svg b/bes_theme/.icons/bes_theme/zodiac-scorpio.svg deleted file mode 100644 index e60d6e52..00000000 --- a/bes_theme/.icons/bes_theme/zodiac-scorpio.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/zodiac-taurus.svg b/bes_theme/.icons/bes_theme/zodiac-taurus.svg deleted file mode 100644 index fcf4730d..00000000 --- a/bes_theme/.icons/bes_theme/zodiac-taurus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/bes_theme/zodiac-virgo.svg b/bes_theme/.icons/bes_theme/zodiac-virgo.svg deleted file mode 100644 index ed5a1be2..00000000 --- a/bes_theme/.icons/bes_theme/zodiac-virgo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/LICENSE.txt b/bes_theme/.icons/fontawesome/LICENSE.txt deleted file mode 100644 index f31bef92..00000000 --- a/bes_theme/.icons/fontawesome/LICENSE.txt +++ /dev/null @@ -1,34 +0,0 @@ -Font Awesome Free License -------------------------- - -Font Awesome Free is free, open source, and GPL friendly. You can use it for -commercial projects, open source projects, or really almost whatever you want. -Full Font Awesome Free license: https://fontawesome.com/license/free. - -# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/) -In the Font Awesome Free download, the CC BY 4.0 license applies to all icons -packaged as SVG and JS file types. - -# Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL) -In the Font Awesome Free download, the SIL OFL license applies to all icons -packaged as web and desktop font files. - -# Code: MIT License (https://opensource.org/licenses/MIT) -In the Font Awesome Free download, the MIT license applies to all non-font and -non-icon files. - -# Attribution -Attribution is required by MIT, SIL OFL, and CC BY licenses. Downloaded Font -Awesome Free files already contain embedded comments with sufficient -attribution, so you shouldn't need to do anything additional when using these -files normally. - -We've kept attribution comments terse, so we ask that you do not actively work -to remove them from files, especially code. They're a great way for folks to -learn about Font Awesome. - -# Brand Icons -All brand icons are trademarks of their respective owners. The use of these -trademarks does not indicate endorsement of the trademark holder by Font -Awesome, nor vice versa. **Please do not use brand logos for any purpose except -to represent the company, product, or service to which they refer.** diff --git a/bes_theme/.icons/fontawesome/brands/500px.svg b/bes_theme/.icons/fontawesome/brands/500px.svg deleted file mode 100644 index d872f24a..00000000 --- a/bes_theme/.icons/fontawesome/brands/500px.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/accessible-icon.svg b/bes_theme/.icons/fontawesome/brands/accessible-icon.svg deleted file mode 100644 index aee1e4d4..00000000 --- a/bes_theme/.icons/fontawesome/brands/accessible-icon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/accusoft.svg b/bes_theme/.icons/fontawesome/brands/accusoft.svg deleted file mode 100644 index 7be2e628..00000000 --- a/bes_theme/.icons/fontawesome/brands/accusoft.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/acquisitions-incorporated.svg b/bes_theme/.icons/fontawesome/brands/acquisitions-incorporated.svg deleted file mode 100644 index 459cb0e0..00000000 --- a/bes_theme/.icons/fontawesome/brands/acquisitions-incorporated.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/adn.svg b/bes_theme/.icons/fontawesome/brands/adn.svg deleted file mode 100644 index 568b038f..00000000 --- a/bes_theme/.icons/fontawesome/brands/adn.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/adversal.svg b/bes_theme/.icons/fontawesome/brands/adversal.svg deleted file mode 100644 index 125dd501..00000000 --- a/bes_theme/.icons/fontawesome/brands/adversal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/affiliatetheme.svg b/bes_theme/.icons/fontawesome/brands/affiliatetheme.svg deleted file mode 100644 index d5dd4e8e..00000000 --- a/bes_theme/.icons/fontawesome/brands/affiliatetheme.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/airbnb.svg b/bes_theme/.icons/fontawesome/brands/airbnb.svg deleted file mode 100644 index b3ca9d6b..00000000 --- a/bes_theme/.icons/fontawesome/brands/airbnb.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/algolia.svg b/bes_theme/.icons/fontawesome/brands/algolia.svg deleted file mode 100644 index 1431b8dc..00000000 --- a/bes_theme/.icons/fontawesome/brands/algolia.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/alipay.svg b/bes_theme/.icons/fontawesome/brands/alipay.svg deleted file mode 100644 index de341fbc..00000000 --- a/bes_theme/.icons/fontawesome/brands/alipay.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/amazon-pay.svg b/bes_theme/.icons/fontawesome/brands/amazon-pay.svg deleted file mode 100644 index 76e4c4a2..00000000 --- a/bes_theme/.icons/fontawesome/brands/amazon-pay.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/amazon.svg b/bes_theme/.icons/fontawesome/brands/amazon.svg deleted file mode 100644 index 642fdb2d..00000000 --- a/bes_theme/.icons/fontawesome/brands/amazon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/amilia.svg b/bes_theme/.icons/fontawesome/brands/amilia.svg deleted file mode 100644 index 48c693c9..00000000 --- a/bes_theme/.icons/fontawesome/brands/amilia.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/android.svg b/bes_theme/.icons/fontawesome/brands/android.svg deleted file mode 100644 index ce2e9ae8..00000000 --- a/bes_theme/.icons/fontawesome/brands/android.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/angellist.svg b/bes_theme/.icons/fontawesome/brands/angellist.svg deleted file mode 100644 index 422885c2..00000000 --- a/bes_theme/.icons/fontawesome/brands/angellist.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/angrycreative.svg b/bes_theme/.icons/fontawesome/brands/angrycreative.svg deleted file mode 100644 index 415b9178..00000000 --- a/bes_theme/.icons/fontawesome/brands/angrycreative.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/angular.svg b/bes_theme/.icons/fontawesome/brands/angular.svg deleted file mode 100644 index 89bbbec5..00000000 --- a/bes_theme/.icons/fontawesome/brands/angular.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/app-store-ios.svg b/bes_theme/.icons/fontawesome/brands/app-store-ios.svg deleted file mode 100644 index 12fc8484..00000000 --- a/bes_theme/.icons/fontawesome/brands/app-store-ios.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/app-store.svg b/bes_theme/.icons/fontawesome/brands/app-store.svg deleted file mode 100644 index 542705e6..00000000 --- a/bes_theme/.icons/fontawesome/brands/app-store.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/apper.svg b/bes_theme/.icons/fontawesome/brands/apper.svg deleted file mode 100644 index f986f504..00000000 --- a/bes_theme/.icons/fontawesome/brands/apper.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/apple-pay.svg b/bes_theme/.icons/fontawesome/brands/apple-pay.svg deleted file mode 100644 index 5d3145ad..00000000 --- a/bes_theme/.icons/fontawesome/brands/apple-pay.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/apple.svg b/bes_theme/.icons/fontawesome/brands/apple.svg deleted file mode 100644 index e24ed63e..00000000 --- a/bes_theme/.icons/fontawesome/brands/apple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/artstation.svg b/bes_theme/.icons/fontawesome/brands/artstation.svg deleted file mode 100644 index 34b455cc..00000000 --- a/bes_theme/.icons/fontawesome/brands/artstation.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/asymmetrik.svg b/bes_theme/.icons/fontawesome/brands/asymmetrik.svg deleted file mode 100644 index a31dfe17..00000000 --- a/bes_theme/.icons/fontawesome/brands/asymmetrik.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/atlassian.svg b/bes_theme/.icons/fontawesome/brands/atlassian.svg deleted file mode 100644 index c07561e7..00000000 --- a/bes_theme/.icons/fontawesome/brands/atlassian.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/audible.svg b/bes_theme/.icons/fontawesome/brands/audible.svg deleted file mode 100644 index dc97f825..00000000 --- a/bes_theme/.icons/fontawesome/brands/audible.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/autoprefixer.svg b/bes_theme/.icons/fontawesome/brands/autoprefixer.svg deleted file mode 100644 index 443a1d0c..00000000 --- a/bes_theme/.icons/fontawesome/brands/autoprefixer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/avianex.svg b/bes_theme/.icons/fontawesome/brands/avianex.svg deleted file mode 100644 index 336dbd0d..00000000 --- a/bes_theme/.icons/fontawesome/brands/avianex.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/aviato.svg b/bes_theme/.icons/fontawesome/brands/aviato.svg deleted file mode 100644 index 3fdce0ca..00000000 --- a/bes_theme/.icons/fontawesome/brands/aviato.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/aws.svg b/bes_theme/.icons/fontawesome/brands/aws.svg deleted file mode 100644 index 61973d34..00000000 --- a/bes_theme/.icons/fontawesome/brands/aws.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/bandcamp.svg b/bes_theme/.icons/fontawesome/brands/bandcamp.svg deleted file mode 100644 index f861974e..00000000 --- a/bes_theme/.icons/fontawesome/brands/bandcamp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/battle-net.svg b/bes_theme/.icons/fontawesome/brands/battle-net.svg deleted file mode 100644 index 8ceec68e..00000000 --- a/bes_theme/.icons/fontawesome/brands/battle-net.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/behance-square.svg b/bes_theme/.icons/fontawesome/brands/behance-square.svg deleted file mode 100644 index 2d9e08bf..00000000 --- a/bes_theme/.icons/fontawesome/brands/behance-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/behance.svg b/bes_theme/.icons/fontawesome/brands/behance.svg deleted file mode 100644 index 73e94677..00000000 --- a/bes_theme/.icons/fontawesome/brands/behance.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/bimobject.svg b/bes_theme/.icons/fontawesome/brands/bimobject.svg deleted file mode 100644 index b708fdea..00000000 --- a/bes_theme/.icons/fontawesome/brands/bimobject.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/bitbucket.svg b/bes_theme/.icons/fontawesome/brands/bitbucket.svg deleted file mode 100644 index 2902d353..00000000 --- a/bes_theme/.icons/fontawesome/brands/bitbucket.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/bitcoin.svg b/bes_theme/.icons/fontawesome/brands/bitcoin.svg deleted file mode 100644 index 9ee5f2ef..00000000 --- a/bes_theme/.icons/fontawesome/brands/bitcoin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/bity.svg b/bes_theme/.icons/fontawesome/brands/bity.svg deleted file mode 100644 index 1d9eab43..00000000 --- a/bes_theme/.icons/fontawesome/brands/bity.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/black-tie.svg b/bes_theme/.icons/fontawesome/brands/black-tie.svg deleted file mode 100644 index 36f3eb79..00000000 --- a/bes_theme/.icons/fontawesome/brands/black-tie.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/blackberry.svg b/bes_theme/.icons/fontawesome/brands/blackberry.svg deleted file mode 100644 index d8308865..00000000 --- a/bes_theme/.icons/fontawesome/brands/blackberry.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/blogger-b.svg b/bes_theme/.icons/fontawesome/brands/blogger-b.svg deleted file mode 100644 index 4da431eb..00000000 --- a/bes_theme/.icons/fontawesome/brands/blogger-b.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/blogger.svg b/bes_theme/.icons/fontawesome/brands/blogger.svg deleted file mode 100644 index 7707557e..00000000 --- a/bes_theme/.icons/fontawesome/brands/blogger.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/bluetooth-b.svg b/bes_theme/.icons/fontawesome/brands/bluetooth-b.svg deleted file mode 100644 index 267496c8..00000000 --- a/bes_theme/.icons/fontawesome/brands/bluetooth-b.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/bluetooth.svg b/bes_theme/.icons/fontawesome/brands/bluetooth.svg deleted file mode 100644 index 998f1f2e..00000000 --- a/bes_theme/.icons/fontawesome/brands/bluetooth.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/bootstrap.svg b/bes_theme/.icons/fontawesome/brands/bootstrap.svg deleted file mode 100644 index 35fa43cb..00000000 --- a/bes_theme/.icons/fontawesome/brands/bootstrap.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/btc.svg b/bes_theme/.icons/fontawesome/brands/btc.svg deleted file mode 100644 index 45e65158..00000000 --- a/bes_theme/.icons/fontawesome/brands/btc.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/buffer.svg b/bes_theme/.icons/fontawesome/brands/buffer.svg deleted file mode 100644 index f74474c2..00000000 --- a/bes_theme/.icons/fontawesome/brands/buffer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/buromobelexperte.svg b/bes_theme/.icons/fontawesome/brands/buromobelexperte.svg deleted file mode 100644 index f419c909..00000000 --- a/bes_theme/.icons/fontawesome/brands/buromobelexperte.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/buy-n-large.svg b/bes_theme/.icons/fontawesome/brands/buy-n-large.svg deleted file mode 100644 index cbb298c3..00000000 --- a/bes_theme/.icons/fontawesome/brands/buy-n-large.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/buysellads.svg b/bes_theme/.icons/fontawesome/brands/buysellads.svg deleted file mode 100644 index 61e80097..00000000 --- a/bes_theme/.icons/fontawesome/brands/buysellads.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/canadian-maple-leaf.svg b/bes_theme/.icons/fontawesome/brands/canadian-maple-leaf.svg deleted file mode 100644 index ca96f7c4..00000000 --- a/bes_theme/.icons/fontawesome/brands/canadian-maple-leaf.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/cc-amazon-pay.svg b/bes_theme/.icons/fontawesome/brands/cc-amazon-pay.svg deleted file mode 100644 index 7a986691..00000000 --- a/bes_theme/.icons/fontawesome/brands/cc-amazon-pay.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/cc-amex.svg b/bes_theme/.icons/fontawesome/brands/cc-amex.svg deleted file mode 100644 index d45354f2..00000000 --- a/bes_theme/.icons/fontawesome/brands/cc-amex.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/cc-apple-pay.svg b/bes_theme/.icons/fontawesome/brands/cc-apple-pay.svg deleted file mode 100644 index a8a56ed5..00000000 --- a/bes_theme/.icons/fontawesome/brands/cc-apple-pay.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/cc-diners-club.svg b/bes_theme/.icons/fontawesome/brands/cc-diners-club.svg deleted file mode 100644 index 7ade2bb5..00000000 --- a/bes_theme/.icons/fontawesome/brands/cc-diners-club.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/cc-discover.svg b/bes_theme/.icons/fontawesome/brands/cc-discover.svg deleted file mode 100644 index 25dffbc7..00000000 --- a/bes_theme/.icons/fontawesome/brands/cc-discover.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/cc-jcb.svg b/bes_theme/.icons/fontawesome/brands/cc-jcb.svg deleted file mode 100644 index 8671a884..00000000 --- a/bes_theme/.icons/fontawesome/brands/cc-jcb.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/cc-mastercard.svg b/bes_theme/.icons/fontawesome/brands/cc-mastercard.svg deleted file mode 100644 index cc73c4a2..00000000 --- a/bes_theme/.icons/fontawesome/brands/cc-mastercard.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/cc-paypal.svg b/bes_theme/.icons/fontawesome/brands/cc-paypal.svg deleted file mode 100644 index 5f506136..00000000 --- a/bes_theme/.icons/fontawesome/brands/cc-paypal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/cc-stripe.svg b/bes_theme/.icons/fontawesome/brands/cc-stripe.svg deleted file mode 100644 index ea52729f..00000000 --- a/bes_theme/.icons/fontawesome/brands/cc-stripe.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/cc-visa.svg b/bes_theme/.icons/fontawesome/brands/cc-visa.svg deleted file mode 100644 index 3dbf8fae..00000000 --- a/bes_theme/.icons/fontawesome/brands/cc-visa.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/centercode.svg b/bes_theme/.icons/fontawesome/brands/centercode.svg deleted file mode 100644 index 440b9c83..00000000 --- a/bes_theme/.icons/fontawesome/brands/centercode.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/centos.svg b/bes_theme/.icons/fontawesome/brands/centos.svg deleted file mode 100644 index 448f34a6..00000000 --- a/bes_theme/.icons/fontawesome/brands/centos.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/chrome.svg b/bes_theme/.icons/fontawesome/brands/chrome.svg deleted file mode 100644 index c1624986..00000000 --- a/bes_theme/.icons/fontawesome/brands/chrome.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/chromecast.svg b/bes_theme/.icons/fontawesome/brands/chromecast.svg deleted file mode 100644 index 773f9225..00000000 --- a/bes_theme/.icons/fontawesome/brands/chromecast.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/cloudflare.svg b/bes_theme/.icons/fontawesome/brands/cloudflare.svg deleted file mode 100644 index 7663b488..00000000 --- a/bes_theme/.icons/fontawesome/brands/cloudflare.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/cloudscale.svg b/bes_theme/.icons/fontawesome/brands/cloudscale.svg deleted file mode 100644 index e617b8e0..00000000 --- a/bes_theme/.icons/fontawesome/brands/cloudscale.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/cloudsmith.svg b/bes_theme/.icons/fontawesome/brands/cloudsmith.svg deleted file mode 100644 index bd2d4704..00000000 --- a/bes_theme/.icons/fontawesome/brands/cloudsmith.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/cloudversify.svg b/bes_theme/.icons/fontawesome/brands/cloudversify.svg deleted file mode 100644 index 4ed2518d..00000000 --- a/bes_theme/.icons/fontawesome/brands/cloudversify.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/codepen.svg b/bes_theme/.icons/fontawesome/brands/codepen.svg deleted file mode 100644 index 9f914e47..00000000 --- a/bes_theme/.icons/fontawesome/brands/codepen.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/codiepie.svg b/bes_theme/.icons/fontawesome/brands/codiepie.svg deleted file mode 100644 index 3e82ac5e..00000000 --- a/bes_theme/.icons/fontawesome/brands/codiepie.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/confluence.svg b/bes_theme/.icons/fontawesome/brands/confluence.svg deleted file mode 100644 index ffeb9239..00000000 --- a/bes_theme/.icons/fontawesome/brands/confluence.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/connectdevelop.svg b/bes_theme/.icons/fontawesome/brands/connectdevelop.svg deleted file mode 100644 index 93909b68..00000000 --- a/bes_theme/.icons/fontawesome/brands/connectdevelop.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/contao.svg b/bes_theme/.icons/fontawesome/brands/contao.svg deleted file mode 100644 index a08f60af..00000000 --- a/bes_theme/.icons/fontawesome/brands/contao.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/cotton-bureau.svg b/bes_theme/.icons/fontawesome/brands/cotton-bureau.svg deleted file mode 100644 index b3b1db8f..00000000 --- a/bes_theme/.icons/fontawesome/brands/cotton-bureau.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/cpanel.svg b/bes_theme/.icons/fontawesome/brands/cpanel.svg deleted file mode 100644 index c95511c1..00000000 --- a/bes_theme/.icons/fontawesome/brands/cpanel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/creative-commons-by.svg b/bes_theme/.icons/fontawesome/brands/creative-commons-by.svg deleted file mode 100644 index 5432986b..00000000 --- a/bes_theme/.icons/fontawesome/brands/creative-commons-by.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/creative-commons-nc-eu.svg b/bes_theme/.icons/fontawesome/brands/creative-commons-nc-eu.svg deleted file mode 100644 index c1fc532d..00000000 --- a/bes_theme/.icons/fontawesome/brands/creative-commons-nc-eu.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/creative-commons-nc-jp.svg b/bes_theme/.icons/fontawesome/brands/creative-commons-nc-jp.svg deleted file mode 100644 index a8d89b19..00000000 --- a/bes_theme/.icons/fontawesome/brands/creative-commons-nc-jp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/creative-commons-nc.svg b/bes_theme/.icons/fontawesome/brands/creative-commons-nc.svg deleted file mode 100644 index abb1577a..00000000 --- a/bes_theme/.icons/fontawesome/brands/creative-commons-nc.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/creative-commons-nd.svg b/bes_theme/.icons/fontawesome/brands/creative-commons-nd.svg deleted file mode 100644 index 07b5fde4..00000000 --- a/bes_theme/.icons/fontawesome/brands/creative-commons-nd.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/creative-commons-pd-alt.svg b/bes_theme/.icons/fontawesome/brands/creative-commons-pd-alt.svg deleted file mode 100644 index d3621842..00000000 --- a/bes_theme/.icons/fontawesome/brands/creative-commons-pd-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/creative-commons-pd.svg b/bes_theme/.icons/fontawesome/brands/creative-commons-pd.svg deleted file mode 100644 index f8021507..00000000 --- a/bes_theme/.icons/fontawesome/brands/creative-commons-pd.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/creative-commons-remix.svg b/bes_theme/.icons/fontawesome/brands/creative-commons-remix.svg deleted file mode 100644 index 9f9feb38..00000000 --- a/bes_theme/.icons/fontawesome/brands/creative-commons-remix.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/creative-commons-sa.svg b/bes_theme/.icons/fontawesome/brands/creative-commons-sa.svg deleted file mode 100644 index c9f41f8f..00000000 --- a/bes_theme/.icons/fontawesome/brands/creative-commons-sa.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/creative-commons-sampling-plus.svg b/bes_theme/.icons/fontawesome/brands/creative-commons-sampling-plus.svg deleted file mode 100644 index c06a1cd5..00000000 --- a/bes_theme/.icons/fontawesome/brands/creative-commons-sampling-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/creative-commons-sampling.svg b/bes_theme/.icons/fontawesome/brands/creative-commons-sampling.svg deleted file mode 100644 index 40a20c65..00000000 --- a/bes_theme/.icons/fontawesome/brands/creative-commons-sampling.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/creative-commons-share.svg b/bes_theme/.icons/fontawesome/brands/creative-commons-share.svg deleted file mode 100644 index afef40ad..00000000 --- a/bes_theme/.icons/fontawesome/brands/creative-commons-share.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/creative-commons-zero.svg b/bes_theme/.icons/fontawesome/brands/creative-commons-zero.svg deleted file mode 100644 index a67d7898..00000000 --- a/bes_theme/.icons/fontawesome/brands/creative-commons-zero.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/creative-commons.svg b/bes_theme/.icons/fontawesome/brands/creative-commons.svg deleted file mode 100644 index 6b556eef..00000000 --- a/bes_theme/.icons/fontawesome/brands/creative-commons.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/critical-role.svg b/bes_theme/.icons/fontawesome/brands/critical-role.svg deleted file mode 100644 index 12a8c36f..00000000 --- a/bes_theme/.icons/fontawesome/brands/critical-role.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/css3-alt.svg b/bes_theme/.icons/fontawesome/brands/css3-alt.svg deleted file mode 100644 index af2f6d4c..00000000 --- a/bes_theme/.icons/fontawesome/brands/css3-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/css3.svg b/bes_theme/.icons/fontawesome/brands/css3.svg deleted file mode 100644 index 4ae40ae1..00000000 --- a/bes_theme/.icons/fontawesome/brands/css3.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/cuttlefish.svg b/bes_theme/.icons/fontawesome/brands/cuttlefish.svg deleted file mode 100644 index 92f20d8e..00000000 --- a/bes_theme/.icons/fontawesome/brands/cuttlefish.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/d-and-d-beyond.svg b/bes_theme/.icons/fontawesome/brands/d-and-d-beyond.svg deleted file mode 100644 index 1b36b74b..00000000 --- a/bes_theme/.icons/fontawesome/brands/d-and-d-beyond.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/d-and-d.svg b/bes_theme/.icons/fontawesome/brands/d-and-d.svg deleted file mode 100644 index 9411ae03..00000000 --- a/bes_theme/.icons/fontawesome/brands/d-and-d.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/dailymotion.svg b/bes_theme/.icons/fontawesome/brands/dailymotion.svg deleted file mode 100644 index b151817e..00000000 --- a/bes_theme/.icons/fontawesome/brands/dailymotion.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/dashcube.svg b/bes_theme/.icons/fontawesome/brands/dashcube.svg deleted file mode 100644 index c31239b2..00000000 --- a/bes_theme/.icons/fontawesome/brands/dashcube.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/deezer.svg b/bes_theme/.icons/fontawesome/brands/deezer.svg deleted file mode 100644 index 575afeed..00000000 --- a/bes_theme/.icons/fontawesome/brands/deezer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/delicious.svg b/bes_theme/.icons/fontawesome/brands/delicious.svg deleted file mode 100644 index f2077542..00000000 --- a/bes_theme/.icons/fontawesome/brands/delicious.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/deploydog.svg b/bes_theme/.icons/fontawesome/brands/deploydog.svg deleted file mode 100644 index c9764e80..00000000 --- a/bes_theme/.icons/fontawesome/brands/deploydog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/deskpro.svg b/bes_theme/.icons/fontawesome/brands/deskpro.svg deleted file mode 100644 index bbfec88d..00000000 --- a/bes_theme/.icons/fontawesome/brands/deskpro.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/dev.svg b/bes_theme/.icons/fontawesome/brands/dev.svg deleted file mode 100644 index 399017f5..00000000 --- a/bes_theme/.icons/fontawesome/brands/dev.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/deviantart.svg b/bes_theme/.icons/fontawesome/brands/deviantart.svg deleted file mode 100644 index facff32b..00000000 --- a/bes_theme/.icons/fontawesome/brands/deviantart.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/dhl.svg b/bes_theme/.icons/fontawesome/brands/dhl.svg deleted file mode 100644 index 22d9f721..00000000 --- a/bes_theme/.icons/fontawesome/brands/dhl.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/diaspora.svg b/bes_theme/.icons/fontawesome/brands/diaspora.svg deleted file mode 100644 index edd3ace0..00000000 --- a/bes_theme/.icons/fontawesome/brands/diaspora.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/digg.svg b/bes_theme/.icons/fontawesome/brands/digg.svg deleted file mode 100644 index 9c580fb0..00000000 --- a/bes_theme/.icons/fontawesome/brands/digg.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/digital-ocean.svg b/bes_theme/.icons/fontawesome/brands/digital-ocean.svg deleted file mode 100644 index 861def5b..00000000 --- a/bes_theme/.icons/fontawesome/brands/digital-ocean.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/discord.svg b/bes_theme/.icons/fontawesome/brands/discord.svg deleted file mode 100644 index 650fe8f0..00000000 --- a/bes_theme/.icons/fontawesome/brands/discord.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/discourse.svg b/bes_theme/.icons/fontawesome/brands/discourse.svg deleted file mode 100644 index 87403975..00000000 --- a/bes_theme/.icons/fontawesome/brands/discourse.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/dochub.svg b/bes_theme/.icons/fontawesome/brands/dochub.svg deleted file mode 100644 index c336088d..00000000 --- a/bes_theme/.icons/fontawesome/brands/dochub.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/docker.svg b/bes_theme/.icons/fontawesome/brands/docker.svg deleted file mode 100644 index c4b13198..00000000 --- a/bes_theme/.icons/fontawesome/brands/docker.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/draft2digital.svg b/bes_theme/.icons/fontawesome/brands/draft2digital.svg deleted file mode 100644 index edf3bbad..00000000 --- a/bes_theme/.icons/fontawesome/brands/draft2digital.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/dribbble-square.svg b/bes_theme/.icons/fontawesome/brands/dribbble-square.svg deleted file mode 100644 index 147f5aee..00000000 --- a/bes_theme/.icons/fontawesome/brands/dribbble-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/dribbble.svg b/bes_theme/.icons/fontawesome/brands/dribbble.svg deleted file mode 100644 index 165c90af..00000000 --- a/bes_theme/.icons/fontawesome/brands/dribbble.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/dropbox.svg b/bes_theme/.icons/fontawesome/brands/dropbox.svg deleted file mode 100644 index d2231d67..00000000 --- a/bes_theme/.icons/fontawesome/brands/dropbox.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/drupal.svg b/bes_theme/.icons/fontawesome/brands/drupal.svg deleted file mode 100644 index 09a90aee..00000000 --- a/bes_theme/.icons/fontawesome/brands/drupal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/dyalog.svg b/bes_theme/.icons/fontawesome/brands/dyalog.svg deleted file mode 100644 index 40a59c73..00000000 --- a/bes_theme/.icons/fontawesome/brands/dyalog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/earlybirds.svg b/bes_theme/.icons/fontawesome/brands/earlybirds.svg deleted file mode 100644 index 42c9f51f..00000000 --- a/bes_theme/.icons/fontawesome/brands/earlybirds.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/ebay.svg b/bes_theme/.icons/fontawesome/brands/ebay.svg deleted file mode 100644 index 2c1ad2c0..00000000 --- a/bes_theme/.icons/fontawesome/brands/ebay.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/edge-legacy.svg b/bes_theme/.icons/fontawesome/brands/edge-legacy.svg deleted file mode 100644 index bfc77d01..00000000 --- a/bes_theme/.icons/fontawesome/brands/edge-legacy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/edge.svg b/bes_theme/.icons/fontawesome/brands/edge.svg deleted file mode 100644 index 13428f1f..00000000 --- a/bes_theme/.icons/fontawesome/brands/edge.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/elementor.svg b/bes_theme/.icons/fontawesome/brands/elementor.svg deleted file mode 100644 index da050213..00000000 --- a/bes_theme/.icons/fontawesome/brands/elementor.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/ello.svg b/bes_theme/.icons/fontawesome/brands/ello.svg deleted file mode 100644 index 4cc8b075..00000000 --- a/bes_theme/.icons/fontawesome/brands/ello.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/ember.svg b/bes_theme/.icons/fontawesome/brands/ember.svg deleted file mode 100644 index 69b71761..00000000 --- a/bes_theme/.icons/fontawesome/brands/ember.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/empire.svg b/bes_theme/.icons/fontawesome/brands/empire.svg deleted file mode 100644 index 34961472..00000000 --- a/bes_theme/.icons/fontawesome/brands/empire.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/envira.svg b/bes_theme/.icons/fontawesome/brands/envira.svg deleted file mode 100644 index 92aee143..00000000 --- a/bes_theme/.icons/fontawesome/brands/envira.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/erlang.svg b/bes_theme/.icons/fontawesome/brands/erlang.svg deleted file mode 100644 index 01e29ac9..00000000 --- a/bes_theme/.icons/fontawesome/brands/erlang.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/ethereum.svg b/bes_theme/.icons/fontawesome/brands/ethereum.svg deleted file mode 100644 index 74da5c3e..00000000 --- a/bes_theme/.icons/fontawesome/brands/ethereum.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/etsy.svg b/bes_theme/.icons/fontawesome/brands/etsy.svg deleted file mode 100644 index 1dc36341..00000000 --- a/bes_theme/.icons/fontawesome/brands/etsy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/evernote.svg b/bes_theme/.icons/fontawesome/brands/evernote.svg deleted file mode 100644 index f5834eea..00000000 --- a/bes_theme/.icons/fontawesome/brands/evernote.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/expeditedssl.svg b/bes_theme/.icons/fontawesome/brands/expeditedssl.svg deleted file mode 100644 index a5c29368..00000000 --- a/bes_theme/.icons/fontawesome/brands/expeditedssl.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/facebook-f.svg b/bes_theme/.icons/fontawesome/brands/facebook-f.svg deleted file mode 100644 index dfbbfc18..00000000 --- a/bes_theme/.icons/fontawesome/brands/facebook-f.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/facebook-messenger.svg b/bes_theme/.icons/fontawesome/brands/facebook-messenger.svg deleted file mode 100644 index 98833834..00000000 --- a/bes_theme/.icons/fontawesome/brands/facebook-messenger.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/facebook-square.svg b/bes_theme/.icons/fontawesome/brands/facebook-square.svg deleted file mode 100644 index dc9b9d8d..00000000 --- a/bes_theme/.icons/fontawesome/brands/facebook-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/facebook.svg b/bes_theme/.icons/fontawesome/brands/facebook.svg deleted file mode 100644 index 6e23a941..00000000 --- a/bes_theme/.icons/fontawesome/brands/facebook.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/fantasy-flight-games.svg b/bes_theme/.icons/fontawesome/brands/fantasy-flight-games.svg deleted file mode 100644 index 9a9fb25b..00000000 --- a/bes_theme/.icons/fontawesome/brands/fantasy-flight-games.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/fedex.svg b/bes_theme/.icons/fontawesome/brands/fedex.svg deleted file mode 100644 index 05548a3a..00000000 --- a/bes_theme/.icons/fontawesome/brands/fedex.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/fedora.svg b/bes_theme/.icons/fontawesome/brands/fedora.svg deleted file mode 100644 index 761ea1f2..00000000 --- a/bes_theme/.icons/fontawesome/brands/fedora.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/figma.svg b/bes_theme/.icons/fontawesome/brands/figma.svg deleted file mode 100644 index 8c2f960c..00000000 --- a/bes_theme/.icons/fontawesome/brands/figma.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/firefox-browser.svg b/bes_theme/.icons/fontawesome/brands/firefox-browser.svg deleted file mode 100644 index c3bcaff2..00000000 --- a/bes_theme/.icons/fontawesome/brands/firefox-browser.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/firefox.svg b/bes_theme/.icons/fontawesome/brands/firefox.svg deleted file mode 100644 index 4d2e2bbd..00000000 --- a/bes_theme/.icons/fontawesome/brands/firefox.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/first-order-alt.svg b/bes_theme/.icons/fontawesome/brands/first-order-alt.svg deleted file mode 100644 index 86853cea..00000000 --- a/bes_theme/.icons/fontawesome/brands/first-order-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/first-order.svg b/bes_theme/.icons/fontawesome/brands/first-order.svg deleted file mode 100644 index 527e4a5a..00000000 --- a/bes_theme/.icons/fontawesome/brands/first-order.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/firstdraft.svg b/bes_theme/.icons/fontawesome/brands/firstdraft.svg deleted file mode 100644 index c2bcd312..00000000 --- a/bes_theme/.icons/fontawesome/brands/firstdraft.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/flickr.svg b/bes_theme/.icons/fontawesome/brands/flickr.svg deleted file mode 100644 index 15dcfc6c..00000000 --- a/bes_theme/.icons/fontawesome/brands/flickr.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/flipboard.svg b/bes_theme/.icons/fontawesome/brands/flipboard.svg deleted file mode 100644 index 866f82fd..00000000 --- a/bes_theme/.icons/fontawesome/brands/flipboard.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/fly.svg b/bes_theme/.icons/fontawesome/brands/fly.svg deleted file mode 100644 index 69ee5c7b..00000000 --- a/bes_theme/.icons/fontawesome/brands/fly.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/font-awesome-alt.svg b/bes_theme/.icons/fontawesome/brands/font-awesome-alt.svg deleted file mode 100644 index f80146ae..00000000 --- a/bes_theme/.icons/fontawesome/brands/font-awesome-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/font-awesome-flag.svg b/bes_theme/.icons/fontawesome/brands/font-awesome-flag.svg deleted file mode 100644 index 9f0b7a48..00000000 --- a/bes_theme/.icons/fontawesome/brands/font-awesome-flag.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/font-awesome-logo-full.svg b/bes_theme/.icons/fontawesome/brands/font-awesome-logo-full.svg deleted file mode 100644 index 64dd279a..00000000 --- a/bes_theme/.icons/fontawesome/brands/font-awesome-logo-full.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/font-awesome.svg b/bes_theme/.icons/fontawesome/brands/font-awesome.svg deleted file mode 100644 index 8c1d4452..00000000 --- a/bes_theme/.icons/fontawesome/brands/font-awesome.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/fonticons-fi.svg b/bes_theme/.icons/fontawesome/brands/fonticons-fi.svg deleted file mode 100644 index 2d8c4a20..00000000 --- a/bes_theme/.icons/fontawesome/brands/fonticons-fi.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/fonticons.svg b/bes_theme/.icons/fontawesome/brands/fonticons.svg deleted file mode 100644 index 55739a11..00000000 --- a/bes_theme/.icons/fontawesome/brands/fonticons.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/fort-awesome-alt.svg b/bes_theme/.icons/fontawesome/brands/fort-awesome-alt.svg deleted file mode 100644 index bc6d0c24..00000000 --- a/bes_theme/.icons/fontawesome/brands/fort-awesome-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/fort-awesome.svg b/bes_theme/.icons/fontawesome/brands/fort-awesome.svg deleted file mode 100644 index a763d437..00000000 --- a/bes_theme/.icons/fontawesome/brands/fort-awesome.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/forumbee.svg b/bes_theme/.icons/fontawesome/brands/forumbee.svg deleted file mode 100644 index d31d6411..00000000 --- a/bes_theme/.icons/fontawesome/brands/forumbee.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/foursquare.svg b/bes_theme/.icons/fontawesome/brands/foursquare.svg deleted file mode 100644 index 69e0516a..00000000 --- a/bes_theme/.icons/fontawesome/brands/foursquare.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/free-code-camp.svg b/bes_theme/.icons/fontawesome/brands/free-code-camp.svg deleted file mode 100644 index 803e56ef..00000000 --- a/bes_theme/.icons/fontawesome/brands/free-code-camp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/freebsd.svg b/bes_theme/.icons/fontawesome/brands/freebsd.svg deleted file mode 100644 index 98c790fa..00000000 --- a/bes_theme/.icons/fontawesome/brands/freebsd.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/fulcrum.svg b/bes_theme/.icons/fontawesome/brands/fulcrum.svg deleted file mode 100644 index 7012cbae..00000000 --- a/bes_theme/.icons/fontawesome/brands/fulcrum.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/galactic-republic.svg b/bes_theme/.icons/fontawesome/brands/galactic-republic.svg deleted file mode 100644 index 44c3f8ca..00000000 --- a/bes_theme/.icons/fontawesome/brands/galactic-republic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/galactic-senate.svg b/bes_theme/.icons/fontawesome/brands/galactic-senate.svg deleted file mode 100644 index 7ee63c16..00000000 --- a/bes_theme/.icons/fontawesome/brands/galactic-senate.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/get-pocket.svg b/bes_theme/.icons/fontawesome/brands/get-pocket.svg deleted file mode 100644 index f6046088..00000000 --- a/bes_theme/.icons/fontawesome/brands/get-pocket.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/gg-circle.svg b/bes_theme/.icons/fontawesome/brands/gg-circle.svg deleted file mode 100644 index 06dc636e..00000000 --- a/bes_theme/.icons/fontawesome/brands/gg-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/gg.svg b/bes_theme/.icons/fontawesome/brands/gg.svg deleted file mode 100644 index 054a09cd..00000000 --- a/bes_theme/.icons/fontawesome/brands/gg.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/git-alt.svg b/bes_theme/.icons/fontawesome/brands/git-alt.svg deleted file mode 100644 index 48c45fc4..00000000 --- a/bes_theme/.icons/fontawesome/brands/git-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/git-square.svg b/bes_theme/.icons/fontawesome/brands/git-square.svg deleted file mode 100644 index aac3e5c9..00000000 --- a/bes_theme/.icons/fontawesome/brands/git-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/git.svg b/bes_theme/.icons/fontawesome/brands/git.svg deleted file mode 100644 index 40571b1f..00000000 --- a/bes_theme/.icons/fontawesome/brands/git.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/github-alt.svg b/bes_theme/.icons/fontawesome/brands/github-alt.svg deleted file mode 100644 index 43d2da5d..00000000 --- a/bes_theme/.icons/fontawesome/brands/github-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/github-square.svg b/bes_theme/.icons/fontawesome/brands/github-square.svg deleted file mode 100644 index a235d2f4..00000000 --- a/bes_theme/.icons/fontawesome/brands/github-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/github.svg b/bes_theme/.icons/fontawesome/brands/github.svg deleted file mode 100644 index 53bd7b2d..00000000 --- a/bes_theme/.icons/fontawesome/brands/github.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/gitkraken.svg b/bes_theme/.icons/fontawesome/brands/gitkraken.svg deleted file mode 100644 index a3bc20fc..00000000 --- a/bes_theme/.icons/fontawesome/brands/gitkraken.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/gitlab.svg b/bes_theme/.icons/fontawesome/brands/gitlab.svg deleted file mode 100644 index 37ce8be4..00000000 --- a/bes_theme/.icons/fontawesome/brands/gitlab.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/gitter.svg b/bes_theme/.icons/fontawesome/brands/gitter.svg deleted file mode 100644 index 6aaafd9a..00000000 --- a/bes_theme/.icons/fontawesome/brands/gitter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/glide-g.svg b/bes_theme/.icons/fontawesome/brands/glide-g.svg deleted file mode 100644 index 7517405f..00000000 --- a/bes_theme/.icons/fontawesome/brands/glide-g.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/glide.svg b/bes_theme/.icons/fontawesome/brands/glide.svg deleted file mode 100644 index 0fbdca4b..00000000 --- a/bes_theme/.icons/fontawesome/brands/glide.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/gofore.svg b/bes_theme/.icons/fontawesome/brands/gofore.svg deleted file mode 100644 index 792de75e..00000000 --- a/bes_theme/.icons/fontawesome/brands/gofore.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/goodreads-g.svg b/bes_theme/.icons/fontawesome/brands/goodreads-g.svg deleted file mode 100644 index b3554663..00000000 --- a/bes_theme/.icons/fontawesome/brands/goodreads-g.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/goodreads.svg b/bes_theme/.icons/fontawesome/brands/goodreads.svg deleted file mode 100644 index 040163af..00000000 --- a/bes_theme/.icons/fontawesome/brands/goodreads.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/google-drive.svg b/bes_theme/.icons/fontawesome/brands/google-drive.svg deleted file mode 100644 index c27d492b..00000000 --- a/bes_theme/.icons/fontawesome/brands/google-drive.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/google-pay.svg b/bes_theme/.icons/fontawesome/brands/google-pay.svg deleted file mode 100644 index 0335aec8..00000000 --- a/bes_theme/.icons/fontawesome/brands/google-pay.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/google-play.svg b/bes_theme/.icons/fontawesome/brands/google-play.svg deleted file mode 100644 index 0aedd8b6..00000000 --- a/bes_theme/.icons/fontawesome/brands/google-play.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/google-plus-g.svg b/bes_theme/.icons/fontawesome/brands/google-plus-g.svg deleted file mode 100644 index c4587db3..00000000 --- a/bes_theme/.icons/fontawesome/brands/google-plus-g.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/google-plus-square.svg b/bes_theme/.icons/fontawesome/brands/google-plus-square.svg deleted file mode 100644 index f18979c9..00000000 --- a/bes_theme/.icons/fontawesome/brands/google-plus-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/google-plus.svg b/bes_theme/.icons/fontawesome/brands/google-plus.svg deleted file mode 100644 index 97edb404..00000000 --- a/bes_theme/.icons/fontawesome/brands/google-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/google-wallet.svg b/bes_theme/.icons/fontawesome/brands/google-wallet.svg deleted file mode 100644 index 009afb61..00000000 --- a/bes_theme/.icons/fontawesome/brands/google-wallet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/google.svg b/bes_theme/.icons/fontawesome/brands/google.svg deleted file mode 100644 index 014b5ceb..00000000 --- a/bes_theme/.icons/fontawesome/brands/google.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/gratipay.svg b/bes_theme/.icons/fontawesome/brands/gratipay.svg deleted file mode 100644 index 0dca9e40..00000000 --- a/bes_theme/.icons/fontawesome/brands/gratipay.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/grav.svg b/bes_theme/.icons/fontawesome/brands/grav.svg deleted file mode 100644 index e12bbf51..00000000 --- a/bes_theme/.icons/fontawesome/brands/grav.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/gripfire.svg b/bes_theme/.icons/fontawesome/brands/gripfire.svg deleted file mode 100644 index 561aa2d7..00000000 --- a/bes_theme/.icons/fontawesome/brands/gripfire.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/grunt.svg b/bes_theme/.icons/fontawesome/brands/grunt.svg deleted file mode 100644 index a36fab81..00000000 --- a/bes_theme/.icons/fontawesome/brands/grunt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/guilded.svg b/bes_theme/.icons/fontawesome/brands/guilded.svg deleted file mode 100644 index 32ca8368..00000000 --- a/bes_theme/.icons/fontawesome/brands/guilded.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/gulp.svg b/bes_theme/.icons/fontawesome/brands/gulp.svg deleted file mode 100644 index a0fda958..00000000 --- a/bes_theme/.icons/fontawesome/brands/gulp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/hacker-news-square.svg b/bes_theme/.icons/fontawesome/brands/hacker-news-square.svg deleted file mode 100644 index 1bb8cab4..00000000 --- a/bes_theme/.icons/fontawesome/brands/hacker-news-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/hacker-news.svg b/bes_theme/.icons/fontawesome/brands/hacker-news.svg deleted file mode 100644 index 0de37e65..00000000 --- a/bes_theme/.icons/fontawesome/brands/hacker-news.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/hackerrank.svg b/bes_theme/.icons/fontawesome/brands/hackerrank.svg deleted file mode 100644 index d2a44d1b..00000000 --- a/bes_theme/.icons/fontawesome/brands/hackerrank.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/hips.svg b/bes_theme/.icons/fontawesome/brands/hips.svg deleted file mode 100644 index 7eb9cdf4..00000000 --- a/bes_theme/.icons/fontawesome/brands/hips.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/hire-a-helper.svg b/bes_theme/.icons/fontawesome/brands/hire-a-helper.svg deleted file mode 100644 index 5fdb39dc..00000000 --- a/bes_theme/.icons/fontawesome/brands/hire-a-helper.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/hive.svg b/bes_theme/.icons/fontawesome/brands/hive.svg deleted file mode 100644 index 6b24fd55..00000000 --- a/bes_theme/.icons/fontawesome/brands/hive.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/hooli.svg b/bes_theme/.icons/fontawesome/brands/hooli.svg deleted file mode 100644 index 1517ae72..00000000 --- a/bes_theme/.icons/fontawesome/brands/hooli.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/hornbill.svg b/bes_theme/.icons/fontawesome/brands/hornbill.svg deleted file mode 100644 index ce9375db..00000000 --- a/bes_theme/.icons/fontawesome/brands/hornbill.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/hotjar.svg b/bes_theme/.icons/fontawesome/brands/hotjar.svg deleted file mode 100644 index 7e477296..00000000 --- a/bes_theme/.icons/fontawesome/brands/hotjar.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/houzz.svg b/bes_theme/.icons/fontawesome/brands/houzz.svg deleted file mode 100644 index 1ad90a21..00000000 --- a/bes_theme/.icons/fontawesome/brands/houzz.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/html5.svg b/bes_theme/.icons/fontawesome/brands/html5.svg deleted file mode 100644 index c0f611c5..00000000 --- a/bes_theme/.icons/fontawesome/brands/html5.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/hubspot.svg b/bes_theme/.icons/fontawesome/brands/hubspot.svg deleted file mode 100644 index 03f8f4e0..00000000 --- a/bes_theme/.icons/fontawesome/brands/hubspot.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/ideal.svg b/bes_theme/.icons/fontawesome/brands/ideal.svg deleted file mode 100644 index bfa6a8c3..00000000 --- a/bes_theme/.icons/fontawesome/brands/ideal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/imdb.svg b/bes_theme/.icons/fontawesome/brands/imdb.svg deleted file mode 100644 index a4d5eb55..00000000 --- a/bes_theme/.icons/fontawesome/brands/imdb.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/innosoft.svg b/bes_theme/.icons/fontawesome/brands/innosoft.svg deleted file mode 100644 index f7648a9a..00000000 --- a/bes_theme/.icons/fontawesome/brands/innosoft.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/instagram-square.svg b/bes_theme/.icons/fontawesome/brands/instagram-square.svg deleted file mode 100644 index b1c94d86..00000000 --- a/bes_theme/.icons/fontawesome/brands/instagram-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/instagram.svg b/bes_theme/.icons/fontawesome/brands/instagram.svg deleted file mode 100644 index 89c89b76..00000000 --- a/bes_theme/.icons/fontawesome/brands/instagram.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/instalod.svg b/bes_theme/.icons/fontawesome/brands/instalod.svg deleted file mode 100644 index d8cf41ac..00000000 --- a/bes_theme/.icons/fontawesome/brands/instalod.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/intercom.svg b/bes_theme/.icons/fontawesome/brands/intercom.svg deleted file mode 100644 index a36742b7..00000000 --- a/bes_theme/.icons/fontawesome/brands/intercom.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/internet-explorer.svg b/bes_theme/.icons/fontawesome/brands/internet-explorer.svg deleted file mode 100644 index 36173c0b..00000000 --- a/bes_theme/.icons/fontawesome/brands/internet-explorer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/invision.svg b/bes_theme/.icons/fontawesome/brands/invision.svg deleted file mode 100644 index 3af871b1..00000000 --- a/bes_theme/.icons/fontawesome/brands/invision.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/ioxhost.svg b/bes_theme/.icons/fontawesome/brands/ioxhost.svg deleted file mode 100644 index 64f31af2..00000000 --- a/bes_theme/.icons/fontawesome/brands/ioxhost.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/itch-io.svg b/bes_theme/.icons/fontawesome/brands/itch-io.svg deleted file mode 100644 index c87fb703..00000000 --- a/bes_theme/.icons/fontawesome/brands/itch-io.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/itunes-note.svg b/bes_theme/.icons/fontawesome/brands/itunes-note.svg deleted file mode 100644 index bb46e702..00000000 --- a/bes_theme/.icons/fontawesome/brands/itunes-note.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/itunes.svg b/bes_theme/.icons/fontawesome/brands/itunes.svg deleted file mode 100644 index 32736ae8..00000000 --- a/bes_theme/.icons/fontawesome/brands/itunes.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/java.svg b/bes_theme/.icons/fontawesome/brands/java.svg deleted file mode 100644 index 15fc4ddc..00000000 --- a/bes_theme/.icons/fontawesome/brands/java.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/jedi-order.svg b/bes_theme/.icons/fontawesome/brands/jedi-order.svg deleted file mode 100644 index 990461a6..00000000 --- a/bes_theme/.icons/fontawesome/brands/jedi-order.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/jenkins.svg b/bes_theme/.icons/fontawesome/brands/jenkins.svg deleted file mode 100644 index 4c2251f1..00000000 --- a/bes_theme/.icons/fontawesome/brands/jenkins.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/jira.svg b/bes_theme/.icons/fontawesome/brands/jira.svg deleted file mode 100644 index 1864c77e..00000000 --- a/bes_theme/.icons/fontawesome/brands/jira.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/joget.svg b/bes_theme/.icons/fontawesome/brands/joget.svg deleted file mode 100644 index 1007ec64..00000000 --- a/bes_theme/.icons/fontawesome/brands/joget.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/joomla.svg b/bes_theme/.icons/fontawesome/brands/joomla.svg deleted file mode 100644 index d4472e53..00000000 --- a/bes_theme/.icons/fontawesome/brands/joomla.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/js-square.svg b/bes_theme/.icons/fontawesome/brands/js-square.svg deleted file mode 100644 index 389af1c1..00000000 --- a/bes_theme/.icons/fontawesome/brands/js-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/js.svg b/bes_theme/.icons/fontawesome/brands/js.svg deleted file mode 100644 index 1bf21b89..00000000 --- a/bes_theme/.icons/fontawesome/brands/js.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/jsfiddle.svg b/bes_theme/.icons/fontawesome/brands/jsfiddle.svg deleted file mode 100644 index 2fb27ee3..00000000 --- a/bes_theme/.icons/fontawesome/brands/jsfiddle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/kaggle.svg b/bes_theme/.icons/fontawesome/brands/kaggle.svg deleted file mode 100644 index cce10758..00000000 --- a/bes_theme/.icons/fontawesome/brands/kaggle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/keybase.svg b/bes_theme/.icons/fontawesome/brands/keybase.svg deleted file mode 100644 index be1135a3..00000000 --- a/bes_theme/.icons/fontawesome/brands/keybase.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/keycdn.svg b/bes_theme/.icons/fontawesome/brands/keycdn.svg deleted file mode 100644 index 1f667a7b..00000000 --- a/bes_theme/.icons/fontawesome/brands/keycdn.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/kickstarter-k.svg b/bes_theme/.icons/fontawesome/brands/kickstarter-k.svg deleted file mode 100644 index 4ad8ad2c..00000000 --- a/bes_theme/.icons/fontawesome/brands/kickstarter-k.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/kickstarter.svg b/bes_theme/.icons/fontawesome/brands/kickstarter.svg deleted file mode 100644 index c765b1b4..00000000 --- a/bes_theme/.icons/fontawesome/brands/kickstarter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/korvue.svg b/bes_theme/.icons/fontawesome/brands/korvue.svg deleted file mode 100644 index f658e88c..00000000 --- a/bes_theme/.icons/fontawesome/brands/korvue.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/laravel.svg b/bes_theme/.icons/fontawesome/brands/laravel.svg deleted file mode 100644 index 2fa63a69..00000000 --- a/bes_theme/.icons/fontawesome/brands/laravel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/lastfm-square.svg b/bes_theme/.icons/fontawesome/brands/lastfm-square.svg deleted file mode 100644 index e9febdb6..00000000 --- a/bes_theme/.icons/fontawesome/brands/lastfm-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/lastfm.svg b/bes_theme/.icons/fontawesome/brands/lastfm.svg deleted file mode 100644 index a38c45c0..00000000 --- a/bes_theme/.icons/fontawesome/brands/lastfm.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/leanpub.svg b/bes_theme/.icons/fontawesome/brands/leanpub.svg deleted file mode 100644 index 63ea79b8..00000000 --- a/bes_theme/.icons/fontawesome/brands/leanpub.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/less.svg b/bes_theme/.icons/fontawesome/brands/less.svg deleted file mode 100644 index 12a0ae2a..00000000 --- a/bes_theme/.icons/fontawesome/brands/less.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/line.svg b/bes_theme/.icons/fontawesome/brands/line.svg deleted file mode 100644 index 866abd87..00000000 --- a/bes_theme/.icons/fontawesome/brands/line.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/linkedin-in.svg b/bes_theme/.icons/fontawesome/brands/linkedin-in.svg deleted file mode 100644 index b65c89fb..00000000 --- a/bes_theme/.icons/fontawesome/brands/linkedin-in.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/linkedin.svg b/bes_theme/.icons/fontawesome/brands/linkedin.svg deleted file mode 100644 index 69d8e973..00000000 --- a/bes_theme/.icons/fontawesome/brands/linkedin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/linode.svg b/bes_theme/.icons/fontawesome/brands/linode.svg deleted file mode 100644 index 7244b5dd..00000000 --- a/bes_theme/.icons/fontawesome/brands/linode.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/linux.svg b/bes_theme/.icons/fontawesome/brands/linux.svg deleted file mode 100644 index ca9b9a85..00000000 --- a/bes_theme/.icons/fontawesome/brands/linux.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/lyft.svg b/bes_theme/.icons/fontawesome/brands/lyft.svg deleted file mode 100644 index 4283ec51..00000000 --- a/bes_theme/.icons/fontawesome/brands/lyft.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/magento.svg b/bes_theme/.icons/fontawesome/brands/magento.svg deleted file mode 100644 index 15cf71a1..00000000 --- a/bes_theme/.icons/fontawesome/brands/magento.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/mailchimp.svg b/bes_theme/.icons/fontawesome/brands/mailchimp.svg deleted file mode 100644 index 8dff9bff..00000000 --- a/bes_theme/.icons/fontawesome/brands/mailchimp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/mandalorian.svg b/bes_theme/.icons/fontawesome/brands/mandalorian.svg deleted file mode 100644 index 3ed75162..00000000 --- a/bes_theme/.icons/fontawesome/brands/mandalorian.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/markdown.svg b/bes_theme/.icons/fontawesome/brands/markdown.svg deleted file mode 100644 index 843d4801..00000000 --- a/bes_theme/.icons/fontawesome/brands/markdown.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/mastodon.svg b/bes_theme/.icons/fontawesome/brands/mastodon.svg deleted file mode 100644 index bb7c4285..00000000 --- a/bes_theme/.icons/fontawesome/brands/mastodon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/maxcdn.svg b/bes_theme/.icons/fontawesome/brands/maxcdn.svg deleted file mode 100644 index 4f4b85da..00000000 --- a/bes_theme/.icons/fontawesome/brands/maxcdn.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/mdb.svg b/bes_theme/.icons/fontawesome/brands/mdb.svg deleted file mode 100644 index 61fa344d..00000000 --- a/bes_theme/.icons/fontawesome/brands/mdb.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/medapps.svg b/bes_theme/.icons/fontawesome/brands/medapps.svg deleted file mode 100644 index bb1a667a..00000000 --- a/bes_theme/.icons/fontawesome/brands/medapps.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/medium-m.svg b/bes_theme/.icons/fontawesome/brands/medium-m.svg deleted file mode 100644 index 8305fdac..00000000 --- a/bes_theme/.icons/fontawesome/brands/medium-m.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/medium.svg b/bes_theme/.icons/fontawesome/brands/medium.svg deleted file mode 100644 index 7e08b51e..00000000 --- a/bes_theme/.icons/fontawesome/brands/medium.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/medrt.svg b/bes_theme/.icons/fontawesome/brands/medrt.svg deleted file mode 100644 index 37759446..00000000 --- a/bes_theme/.icons/fontawesome/brands/medrt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/meetup.svg b/bes_theme/.icons/fontawesome/brands/meetup.svg deleted file mode 100644 index d387c4bd..00000000 --- a/bes_theme/.icons/fontawesome/brands/meetup.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/megaport.svg b/bes_theme/.icons/fontawesome/brands/megaport.svg deleted file mode 100644 index 17faf7ce..00000000 --- a/bes_theme/.icons/fontawesome/brands/megaport.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/mendeley.svg b/bes_theme/.icons/fontawesome/brands/mendeley.svg deleted file mode 100644 index c0f76a8d..00000000 --- a/bes_theme/.icons/fontawesome/brands/mendeley.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/microblog.svg b/bes_theme/.icons/fontawesome/brands/microblog.svg deleted file mode 100644 index 28925eb2..00000000 --- a/bes_theme/.icons/fontawesome/brands/microblog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/microsoft.svg b/bes_theme/.icons/fontawesome/brands/microsoft.svg deleted file mode 100644 index ed898955..00000000 --- a/bes_theme/.icons/fontawesome/brands/microsoft.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/mix.svg b/bes_theme/.icons/fontawesome/brands/mix.svg deleted file mode 100644 index d131e232..00000000 --- a/bes_theme/.icons/fontawesome/brands/mix.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/mixcloud.svg b/bes_theme/.icons/fontawesome/brands/mixcloud.svg deleted file mode 100644 index 094239bb..00000000 --- a/bes_theme/.icons/fontawesome/brands/mixcloud.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/mixer.svg b/bes_theme/.icons/fontawesome/brands/mixer.svg deleted file mode 100644 index b0627f5a..00000000 --- a/bes_theme/.icons/fontawesome/brands/mixer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/mizuni.svg b/bes_theme/.icons/fontawesome/brands/mizuni.svg deleted file mode 100644 index 8cb8d918..00000000 --- a/bes_theme/.icons/fontawesome/brands/mizuni.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/modx.svg b/bes_theme/.icons/fontawesome/brands/modx.svg deleted file mode 100644 index 0b505dc7..00000000 --- a/bes_theme/.icons/fontawesome/brands/modx.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/monero.svg b/bes_theme/.icons/fontawesome/brands/monero.svg deleted file mode 100644 index c4892b6c..00000000 --- a/bes_theme/.icons/fontawesome/brands/monero.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/napster.svg b/bes_theme/.icons/fontawesome/brands/napster.svg deleted file mode 100644 index 866e31da..00000000 --- a/bes_theme/.icons/fontawesome/brands/napster.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/neos.svg b/bes_theme/.icons/fontawesome/brands/neos.svg deleted file mode 100644 index bb4ea010..00000000 --- a/bes_theme/.icons/fontawesome/brands/neos.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/nimblr.svg b/bes_theme/.icons/fontawesome/brands/nimblr.svg deleted file mode 100644 index add60b07..00000000 --- a/bes_theme/.icons/fontawesome/brands/nimblr.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/node-js.svg b/bes_theme/.icons/fontawesome/brands/node-js.svg deleted file mode 100644 index c73f1a64..00000000 --- a/bes_theme/.icons/fontawesome/brands/node-js.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/node.svg b/bes_theme/.icons/fontawesome/brands/node.svg deleted file mode 100644 index 5d74868f..00000000 --- a/bes_theme/.icons/fontawesome/brands/node.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/npm.svg b/bes_theme/.icons/fontawesome/brands/npm.svg deleted file mode 100644 index ad643c36..00000000 --- a/bes_theme/.icons/fontawesome/brands/npm.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/ns8.svg b/bes_theme/.icons/fontawesome/brands/ns8.svg deleted file mode 100644 index 4d9d71a4..00000000 --- a/bes_theme/.icons/fontawesome/brands/ns8.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/nutritionix.svg b/bes_theme/.icons/fontawesome/brands/nutritionix.svg deleted file mode 100644 index 19eb0e07..00000000 --- a/bes_theme/.icons/fontawesome/brands/nutritionix.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/octopus-deploy.svg b/bes_theme/.icons/fontawesome/brands/octopus-deploy.svg deleted file mode 100644 index 80e096a5..00000000 --- a/bes_theme/.icons/fontawesome/brands/octopus-deploy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/odnoklassniki-square.svg b/bes_theme/.icons/fontawesome/brands/odnoklassniki-square.svg deleted file mode 100644 index e2793a94..00000000 --- a/bes_theme/.icons/fontawesome/brands/odnoklassniki-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/odnoklassniki.svg b/bes_theme/.icons/fontawesome/brands/odnoklassniki.svg deleted file mode 100644 index f426fd36..00000000 --- a/bes_theme/.icons/fontawesome/brands/odnoklassniki.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/old-republic.svg b/bes_theme/.icons/fontawesome/brands/old-republic.svg deleted file mode 100644 index 8b62644c..00000000 --- a/bes_theme/.icons/fontawesome/brands/old-republic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/opencart.svg b/bes_theme/.icons/fontawesome/brands/opencart.svg deleted file mode 100644 index 2f1498a1..00000000 --- a/bes_theme/.icons/fontawesome/brands/opencart.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/openid.svg b/bes_theme/.icons/fontawesome/brands/openid.svg deleted file mode 100644 index 2a08cef3..00000000 --- a/bes_theme/.icons/fontawesome/brands/openid.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/opera.svg b/bes_theme/.icons/fontawesome/brands/opera.svg deleted file mode 100644 index 4fd8cb92..00000000 --- a/bes_theme/.icons/fontawesome/brands/opera.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/optin-monster.svg b/bes_theme/.icons/fontawesome/brands/optin-monster.svg deleted file mode 100644 index cbf70491..00000000 --- a/bes_theme/.icons/fontawesome/brands/optin-monster.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/orcid.svg b/bes_theme/.icons/fontawesome/brands/orcid.svg deleted file mode 100644 index 501fc769..00000000 --- a/bes_theme/.icons/fontawesome/brands/orcid.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/osi.svg b/bes_theme/.icons/fontawesome/brands/osi.svg deleted file mode 100644 index f362cfd1..00000000 --- a/bes_theme/.icons/fontawesome/brands/osi.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/page4.svg b/bes_theme/.icons/fontawesome/brands/page4.svg deleted file mode 100644 index 05a20814..00000000 --- a/bes_theme/.icons/fontawesome/brands/page4.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/pagelines.svg b/bes_theme/.icons/fontawesome/brands/pagelines.svg deleted file mode 100644 index 6722988a..00000000 --- a/bes_theme/.icons/fontawesome/brands/pagelines.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/palfed.svg b/bes_theme/.icons/fontawesome/brands/palfed.svg deleted file mode 100644 index 5c8a4b2c..00000000 --- a/bes_theme/.icons/fontawesome/brands/palfed.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/patreon.svg b/bes_theme/.icons/fontawesome/brands/patreon.svg deleted file mode 100644 index 19909571..00000000 --- a/bes_theme/.icons/fontawesome/brands/patreon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/paypal.svg b/bes_theme/.icons/fontawesome/brands/paypal.svg deleted file mode 100644 index ecf00b6d..00000000 --- a/bes_theme/.icons/fontawesome/brands/paypal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/penny-arcade.svg b/bes_theme/.icons/fontawesome/brands/penny-arcade.svg deleted file mode 100644 index fcca49b7..00000000 --- a/bes_theme/.icons/fontawesome/brands/penny-arcade.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/perbyte.svg b/bes_theme/.icons/fontawesome/brands/perbyte.svg deleted file mode 100644 index dc824a8a..00000000 --- a/bes_theme/.icons/fontawesome/brands/perbyte.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/periscope.svg b/bes_theme/.icons/fontawesome/brands/periscope.svg deleted file mode 100644 index 9f46704c..00000000 --- a/bes_theme/.icons/fontawesome/brands/periscope.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/phabricator.svg b/bes_theme/.icons/fontawesome/brands/phabricator.svg deleted file mode 100644 index e4e43355..00000000 --- a/bes_theme/.icons/fontawesome/brands/phabricator.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/phoenix-framework.svg b/bes_theme/.icons/fontawesome/brands/phoenix-framework.svg deleted file mode 100644 index 4542fc2f..00000000 --- a/bes_theme/.icons/fontawesome/brands/phoenix-framework.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/phoenix-squadron.svg b/bes_theme/.icons/fontawesome/brands/phoenix-squadron.svg deleted file mode 100644 index 961adc44..00000000 --- a/bes_theme/.icons/fontawesome/brands/phoenix-squadron.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/php.svg b/bes_theme/.icons/fontawesome/brands/php.svg deleted file mode 100644 index c2d86d48..00000000 --- a/bes_theme/.icons/fontawesome/brands/php.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/pied-piper-alt.svg b/bes_theme/.icons/fontawesome/brands/pied-piper-alt.svg deleted file mode 100644 index ef73456c..00000000 --- a/bes_theme/.icons/fontawesome/brands/pied-piper-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/pied-piper-hat.svg b/bes_theme/.icons/fontawesome/brands/pied-piper-hat.svg deleted file mode 100644 index 2f93465d..00000000 --- a/bes_theme/.icons/fontawesome/brands/pied-piper-hat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/pied-piper-pp.svg b/bes_theme/.icons/fontawesome/brands/pied-piper-pp.svg deleted file mode 100644 index 092ca730..00000000 --- a/bes_theme/.icons/fontawesome/brands/pied-piper-pp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/pied-piper-square.svg b/bes_theme/.icons/fontawesome/brands/pied-piper-square.svg deleted file mode 100644 index 889e8ca0..00000000 --- a/bes_theme/.icons/fontawesome/brands/pied-piper-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/pied-piper.svg b/bes_theme/.icons/fontawesome/brands/pied-piper.svg deleted file mode 100644 index 5f23038f..00000000 --- a/bes_theme/.icons/fontawesome/brands/pied-piper.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/pinterest-p.svg b/bes_theme/.icons/fontawesome/brands/pinterest-p.svg deleted file mode 100644 index 311932af..00000000 --- a/bes_theme/.icons/fontawesome/brands/pinterest-p.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/pinterest-square.svg b/bes_theme/.icons/fontawesome/brands/pinterest-square.svg deleted file mode 100644 index 7a502a79..00000000 --- a/bes_theme/.icons/fontawesome/brands/pinterest-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/pinterest.svg b/bes_theme/.icons/fontawesome/brands/pinterest.svg deleted file mode 100644 index 42c1f645..00000000 --- a/bes_theme/.icons/fontawesome/brands/pinterest.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/playstation.svg b/bes_theme/.icons/fontawesome/brands/playstation.svg deleted file mode 100644 index 3cd7fcad..00000000 --- a/bes_theme/.icons/fontawesome/brands/playstation.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/product-hunt.svg b/bes_theme/.icons/fontawesome/brands/product-hunt.svg deleted file mode 100644 index 847ac2c2..00000000 --- a/bes_theme/.icons/fontawesome/brands/product-hunt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/pushed.svg b/bes_theme/.icons/fontawesome/brands/pushed.svg deleted file mode 100644 index 9f419b74..00000000 --- a/bes_theme/.icons/fontawesome/brands/pushed.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/python.svg b/bes_theme/.icons/fontawesome/brands/python.svg deleted file mode 100644 index cf92eb97..00000000 --- a/bes_theme/.icons/fontawesome/brands/python.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/qq.svg b/bes_theme/.icons/fontawesome/brands/qq.svg deleted file mode 100644 index 541bdd57..00000000 --- a/bes_theme/.icons/fontawesome/brands/qq.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/quinscape.svg b/bes_theme/.icons/fontawesome/brands/quinscape.svg deleted file mode 100644 index 695087f8..00000000 --- a/bes_theme/.icons/fontawesome/brands/quinscape.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/quora.svg b/bes_theme/.icons/fontawesome/brands/quora.svg deleted file mode 100644 index 601d815c..00000000 --- a/bes_theme/.icons/fontawesome/brands/quora.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/r-project.svg b/bes_theme/.icons/fontawesome/brands/r-project.svg deleted file mode 100644 index ef4076e4..00000000 --- a/bes_theme/.icons/fontawesome/brands/r-project.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/raspberry-pi.svg b/bes_theme/.icons/fontawesome/brands/raspberry-pi.svg deleted file mode 100644 index ebc681e2..00000000 --- a/bes_theme/.icons/fontawesome/brands/raspberry-pi.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/ravelry.svg b/bes_theme/.icons/fontawesome/brands/ravelry.svg deleted file mode 100644 index a95b445e..00000000 --- a/bes_theme/.icons/fontawesome/brands/ravelry.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/react.svg b/bes_theme/.icons/fontawesome/brands/react.svg deleted file mode 100644 index e5884106..00000000 --- a/bes_theme/.icons/fontawesome/brands/react.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/reacteurope.svg b/bes_theme/.icons/fontawesome/brands/reacteurope.svg deleted file mode 100644 index cf3748c4..00000000 --- a/bes_theme/.icons/fontawesome/brands/reacteurope.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/readme.svg b/bes_theme/.icons/fontawesome/brands/readme.svg deleted file mode 100644 index 482c337e..00000000 --- a/bes_theme/.icons/fontawesome/brands/readme.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/rebel.svg b/bes_theme/.icons/fontawesome/brands/rebel.svg deleted file mode 100644 index 555b0533..00000000 --- a/bes_theme/.icons/fontawesome/brands/rebel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/red-river.svg b/bes_theme/.icons/fontawesome/brands/red-river.svg deleted file mode 100644 index 6e7044f2..00000000 --- a/bes_theme/.icons/fontawesome/brands/red-river.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/reddit-alien.svg b/bes_theme/.icons/fontawesome/brands/reddit-alien.svg deleted file mode 100644 index 85b98591..00000000 --- a/bes_theme/.icons/fontawesome/brands/reddit-alien.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/reddit-square.svg b/bes_theme/.icons/fontawesome/brands/reddit-square.svg deleted file mode 100644 index e940a851..00000000 --- a/bes_theme/.icons/fontawesome/brands/reddit-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/reddit.svg b/bes_theme/.icons/fontawesome/brands/reddit.svg deleted file mode 100644 index 262d0a7f..00000000 --- a/bes_theme/.icons/fontawesome/brands/reddit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/redhat.svg b/bes_theme/.icons/fontawesome/brands/redhat.svg deleted file mode 100644 index 0c2c9b81..00000000 --- a/bes_theme/.icons/fontawesome/brands/redhat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/renren.svg b/bes_theme/.icons/fontawesome/brands/renren.svg deleted file mode 100644 index 9706a702..00000000 --- a/bes_theme/.icons/fontawesome/brands/renren.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/replyd.svg b/bes_theme/.icons/fontawesome/brands/replyd.svg deleted file mode 100644 index fe526f2b..00000000 --- a/bes_theme/.icons/fontawesome/brands/replyd.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/researchgate.svg b/bes_theme/.icons/fontawesome/brands/researchgate.svg deleted file mode 100644 index db7149f4..00000000 --- a/bes_theme/.icons/fontawesome/brands/researchgate.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/resolving.svg b/bes_theme/.icons/fontawesome/brands/resolving.svg deleted file mode 100644 index b461bd36..00000000 --- a/bes_theme/.icons/fontawesome/brands/resolving.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/rev.svg b/bes_theme/.icons/fontawesome/brands/rev.svg deleted file mode 100644 index 2574a171..00000000 --- a/bes_theme/.icons/fontawesome/brands/rev.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/rocketchat.svg b/bes_theme/.icons/fontawesome/brands/rocketchat.svg deleted file mode 100644 index 95f4c2b5..00000000 --- a/bes_theme/.icons/fontawesome/brands/rocketchat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/rockrms.svg b/bes_theme/.icons/fontawesome/brands/rockrms.svg deleted file mode 100644 index 6c41d790..00000000 --- a/bes_theme/.icons/fontawesome/brands/rockrms.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/rust.svg b/bes_theme/.icons/fontawesome/brands/rust.svg deleted file mode 100644 index 397e893c..00000000 --- a/bes_theme/.icons/fontawesome/brands/rust.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/safari.svg b/bes_theme/.icons/fontawesome/brands/safari.svg deleted file mode 100644 index c72ed936..00000000 --- a/bes_theme/.icons/fontawesome/brands/safari.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/salesforce.svg b/bes_theme/.icons/fontawesome/brands/salesforce.svg deleted file mode 100644 index 09f2e372..00000000 --- a/bes_theme/.icons/fontawesome/brands/salesforce.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/sass.svg b/bes_theme/.icons/fontawesome/brands/sass.svg deleted file mode 100644 index 5543c1c7..00000000 --- a/bes_theme/.icons/fontawesome/brands/sass.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/schlix.svg b/bes_theme/.icons/fontawesome/brands/schlix.svg deleted file mode 100644 index 2a0783db..00000000 --- a/bes_theme/.icons/fontawesome/brands/schlix.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/scribd.svg b/bes_theme/.icons/fontawesome/brands/scribd.svg deleted file mode 100644 index f1ecad19..00000000 --- a/bes_theme/.icons/fontawesome/brands/scribd.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/searchengin.svg b/bes_theme/.icons/fontawesome/brands/searchengin.svg deleted file mode 100644 index e21fd86c..00000000 --- a/bes_theme/.icons/fontawesome/brands/searchengin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/sellcast.svg b/bes_theme/.icons/fontawesome/brands/sellcast.svg deleted file mode 100644 index 75b47f18..00000000 --- a/bes_theme/.icons/fontawesome/brands/sellcast.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/sellsy.svg b/bes_theme/.icons/fontawesome/brands/sellsy.svg deleted file mode 100644 index 6119fe58..00000000 --- a/bes_theme/.icons/fontawesome/brands/sellsy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/servicestack.svg b/bes_theme/.icons/fontawesome/brands/servicestack.svg deleted file mode 100644 index 9f937eb4..00000000 --- a/bes_theme/.icons/fontawesome/brands/servicestack.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/shirtsinbulk.svg b/bes_theme/.icons/fontawesome/brands/shirtsinbulk.svg deleted file mode 100644 index bb3fee76..00000000 --- a/bes_theme/.icons/fontawesome/brands/shirtsinbulk.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/shopify.svg b/bes_theme/.icons/fontawesome/brands/shopify.svg deleted file mode 100644 index 62b3b4c0..00000000 --- a/bes_theme/.icons/fontawesome/brands/shopify.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/shopware.svg b/bes_theme/.icons/fontawesome/brands/shopware.svg deleted file mode 100644 index 8078f3c7..00000000 --- a/bes_theme/.icons/fontawesome/brands/shopware.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/simplybuilt.svg b/bes_theme/.icons/fontawesome/brands/simplybuilt.svg deleted file mode 100644 index fbecfe96..00000000 --- a/bes_theme/.icons/fontawesome/brands/simplybuilt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/sistrix.svg b/bes_theme/.icons/fontawesome/brands/sistrix.svg deleted file mode 100644 index 4b84242f..00000000 --- a/bes_theme/.icons/fontawesome/brands/sistrix.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/sith.svg b/bes_theme/.icons/fontawesome/brands/sith.svg deleted file mode 100644 index bd2afd9d..00000000 --- a/bes_theme/.icons/fontawesome/brands/sith.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/sketch.svg b/bes_theme/.icons/fontawesome/brands/sketch.svg deleted file mode 100644 index 641bcffa..00000000 --- a/bes_theme/.icons/fontawesome/brands/sketch.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/skyatlas.svg b/bes_theme/.icons/fontawesome/brands/skyatlas.svg deleted file mode 100644 index d2c8a3bf..00000000 --- a/bes_theme/.icons/fontawesome/brands/skyatlas.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/skype.svg b/bes_theme/.icons/fontawesome/brands/skype.svg deleted file mode 100644 index 538843cd..00000000 --- a/bes_theme/.icons/fontawesome/brands/skype.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/slack-hash.svg b/bes_theme/.icons/fontawesome/brands/slack-hash.svg deleted file mode 100644 index 1f9815d4..00000000 --- a/bes_theme/.icons/fontawesome/brands/slack-hash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/slack.svg b/bes_theme/.icons/fontawesome/brands/slack.svg deleted file mode 100644 index ee293d67..00000000 --- a/bes_theme/.icons/fontawesome/brands/slack.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/slideshare.svg b/bes_theme/.icons/fontawesome/brands/slideshare.svg deleted file mode 100644 index 5f647ff1..00000000 --- a/bes_theme/.icons/fontawesome/brands/slideshare.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/snapchat-ghost.svg b/bes_theme/.icons/fontawesome/brands/snapchat-ghost.svg deleted file mode 100644 index 4497f0cf..00000000 --- a/bes_theme/.icons/fontawesome/brands/snapchat-ghost.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/snapchat-square.svg b/bes_theme/.icons/fontawesome/brands/snapchat-square.svg deleted file mode 100644 index c91e05ec..00000000 --- a/bes_theme/.icons/fontawesome/brands/snapchat-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/snapchat.svg b/bes_theme/.icons/fontawesome/brands/snapchat.svg deleted file mode 100644 index 88cfa167..00000000 --- a/bes_theme/.icons/fontawesome/brands/snapchat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/soundcloud.svg b/bes_theme/.icons/fontawesome/brands/soundcloud.svg deleted file mode 100644 index 9d8352df..00000000 --- a/bes_theme/.icons/fontawesome/brands/soundcloud.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/sourcetree.svg b/bes_theme/.icons/fontawesome/brands/sourcetree.svg deleted file mode 100644 index 40f346dc..00000000 --- a/bes_theme/.icons/fontawesome/brands/sourcetree.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/speakap.svg b/bes_theme/.icons/fontawesome/brands/speakap.svg deleted file mode 100644 index fafd62fc..00000000 --- a/bes_theme/.icons/fontawesome/brands/speakap.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/speaker-deck.svg b/bes_theme/.icons/fontawesome/brands/speaker-deck.svg deleted file mode 100644 index 6816698a..00000000 --- a/bes_theme/.icons/fontawesome/brands/speaker-deck.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/spotify.svg b/bes_theme/.icons/fontawesome/brands/spotify.svg deleted file mode 100644 index dcd028a9..00000000 --- a/bes_theme/.icons/fontawesome/brands/spotify.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/squarespace.svg b/bes_theme/.icons/fontawesome/brands/squarespace.svg deleted file mode 100644 index 5eb1da1e..00000000 --- a/bes_theme/.icons/fontawesome/brands/squarespace.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/stack-exchange.svg b/bes_theme/.icons/fontawesome/brands/stack-exchange.svg deleted file mode 100644 index 3889ae23..00000000 --- a/bes_theme/.icons/fontawesome/brands/stack-exchange.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/stack-overflow.svg b/bes_theme/.icons/fontawesome/brands/stack-overflow.svg deleted file mode 100644 index 49d3d7c9..00000000 --- a/bes_theme/.icons/fontawesome/brands/stack-overflow.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/stackpath.svg b/bes_theme/.icons/fontawesome/brands/stackpath.svg deleted file mode 100644 index 2281bc3a..00000000 --- a/bes_theme/.icons/fontawesome/brands/stackpath.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/staylinked.svg b/bes_theme/.icons/fontawesome/brands/staylinked.svg deleted file mode 100644 index af95ece2..00000000 --- a/bes_theme/.icons/fontawesome/brands/staylinked.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/steam-square.svg b/bes_theme/.icons/fontawesome/brands/steam-square.svg deleted file mode 100644 index 59a6a8f6..00000000 --- a/bes_theme/.icons/fontawesome/brands/steam-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/steam-symbol.svg b/bes_theme/.icons/fontawesome/brands/steam-symbol.svg deleted file mode 100644 index f0ab74db..00000000 --- a/bes_theme/.icons/fontawesome/brands/steam-symbol.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/steam.svg b/bes_theme/.icons/fontawesome/brands/steam.svg deleted file mode 100644 index 642650a8..00000000 --- a/bes_theme/.icons/fontawesome/brands/steam.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/sticker-mule.svg b/bes_theme/.icons/fontawesome/brands/sticker-mule.svg deleted file mode 100644 index 6a23f17f..00000000 --- a/bes_theme/.icons/fontawesome/brands/sticker-mule.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/strava.svg b/bes_theme/.icons/fontawesome/brands/strava.svg deleted file mode 100644 index dd77091d..00000000 --- a/bes_theme/.icons/fontawesome/brands/strava.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/stripe-s.svg b/bes_theme/.icons/fontawesome/brands/stripe-s.svg deleted file mode 100644 index d310daea..00000000 --- a/bes_theme/.icons/fontawesome/brands/stripe-s.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/stripe.svg b/bes_theme/.icons/fontawesome/brands/stripe.svg deleted file mode 100644 index 2c795141..00000000 --- a/bes_theme/.icons/fontawesome/brands/stripe.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/studiovinari.svg b/bes_theme/.icons/fontawesome/brands/studiovinari.svg deleted file mode 100644 index b8a2d93c..00000000 --- a/bes_theme/.icons/fontawesome/brands/studiovinari.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/stumbleupon-circle.svg b/bes_theme/.icons/fontawesome/brands/stumbleupon-circle.svg deleted file mode 100644 index a4b42346..00000000 --- a/bes_theme/.icons/fontawesome/brands/stumbleupon-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/stumbleupon.svg b/bes_theme/.icons/fontawesome/brands/stumbleupon.svg deleted file mode 100644 index 98d68a5c..00000000 --- a/bes_theme/.icons/fontawesome/brands/stumbleupon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/superpowers.svg b/bes_theme/.icons/fontawesome/brands/superpowers.svg deleted file mode 100644 index a6f13f6d..00000000 --- a/bes_theme/.icons/fontawesome/brands/superpowers.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/supple.svg b/bes_theme/.icons/fontawesome/brands/supple.svg deleted file mode 100644 index 5afe8792..00000000 --- a/bes_theme/.icons/fontawesome/brands/supple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/suse.svg b/bes_theme/.icons/fontawesome/brands/suse.svg deleted file mode 100644 index adb6390d..00000000 --- a/bes_theme/.icons/fontawesome/brands/suse.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/swift.svg b/bes_theme/.icons/fontawesome/brands/swift.svg deleted file mode 100644 index d475cc18..00000000 --- a/bes_theme/.icons/fontawesome/brands/swift.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/symfony.svg b/bes_theme/.icons/fontawesome/brands/symfony.svg deleted file mode 100644 index 51905feb..00000000 --- a/bes_theme/.icons/fontawesome/brands/symfony.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/teamspeak.svg b/bes_theme/.icons/fontawesome/brands/teamspeak.svg deleted file mode 100644 index f430b5fb..00000000 --- a/bes_theme/.icons/fontawesome/brands/teamspeak.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/telegram-plane.svg b/bes_theme/.icons/fontawesome/brands/telegram-plane.svg deleted file mode 100644 index ccbf63a6..00000000 --- a/bes_theme/.icons/fontawesome/brands/telegram-plane.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/telegram.svg b/bes_theme/.icons/fontawesome/brands/telegram.svg deleted file mode 100644 index 1f793d25..00000000 --- a/bes_theme/.icons/fontawesome/brands/telegram.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/tencent-weibo.svg b/bes_theme/.icons/fontawesome/brands/tencent-weibo.svg deleted file mode 100644 index 30b49fc8..00000000 --- a/bes_theme/.icons/fontawesome/brands/tencent-weibo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/the-red-yeti.svg b/bes_theme/.icons/fontawesome/brands/the-red-yeti.svg deleted file mode 100644 index 7e399f59..00000000 --- a/bes_theme/.icons/fontawesome/brands/the-red-yeti.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/themeco.svg b/bes_theme/.icons/fontawesome/brands/themeco.svg deleted file mode 100644 index a923399f..00000000 --- a/bes_theme/.icons/fontawesome/brands/themeco.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/themeisle.svg b/bes_theme/.icons/fontawesome/brands/themeisle.svg deleted file mode 100644 index b9337755..00000000 --- a/bes_theme/.icons/fontawesome/brands/themeisle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/think-peaks.svg b/bes_theme/.icons/fontawesome/brands/think-peaks.svg deleted file mode 100644 index dda56c5d..00000000 --- a/bes_theme/.icons/fontawesome/brands/think-peaks.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/tiktok.svg b/bes_theme/.icons/fontawesome/brands/tiktok.svg deleted file mode 100644 index 76600b27..00000000 --- a/bes_theme/.icons/fontawesome/brands/tiktok.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/trade-federation.svg b/bes_theme/.icons/fontawesome/brands/trade-federation.svg deleted file mode 100644 index 2952df50..00000000 --- a/bes_theme/.icons/fontawesome/brands/trade-federation.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/trello.svg b/bes_theme/.icons/fontawesome/brands/trello.svg deleted file mode 100644 index 634c6c3b..00000000 --- a/bes_theme/.icons/fontawesome/brands/trello.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/tripadvisor.svg b/bes_theme/.icons/fontawesome/brands/tripadvisor.svg deleted file mode 100644 index f1581d13..00000000 --- a/bes_theme/.icons/fontawesome/brands/tripadvisor.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/tumblr-square.svg b/bes_theme/.icons/fontawesome/brands/tumblr-square.svg deleted file mode 100644 index 96b8cf5c..00000000 --- a/bes_theme/.icons/fontawesome/brands/tumblr-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/tumblr.svg b/bes_theme/.icons/fontawesome/brands/tumblr.svg deleted file mode 100644 index da593777..00000000 --- a/bes_theme/.icons/fontawesome/brands/tumblr.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/twitch.svg b/bes_theme/.icons/fontawesome/brands/twitch.svg deleted file mode 100644 index 8d7165e0..00000000 --- a/bes_theme/.icons/fontawesome/brands/twitch.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/twitter-square.svg b/bes_theme/.icons/fontawesome/brands/twitter-square.svg deleted file mode 100644 index 0ca7e0b9..00000000 --- a/bes_theme/.icons/fontawesome/brands/twitter-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/twitter.svg b/bes_theme/.icons/fontawesome/brands/twitter.svg deleted file mode 100644 index f0ed9c5f..00000000 --- a/bes_theme/.icons/fontawesome/brands/twitter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/typo3.svg b/bes_theme/.icons/fontawesome/brands/typo3.svg deleted file mode 100644 index 4da76b3b..00000000 --- a/bes_theme/.icons/fontawesome/brands/typo3.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/uber.svg b/bes_theme/.icons/fontawesome/brands/uber.svg deleted file mode 100644 index 569a1cd9..00000000 --- a/bes_theme/.icons/fontawesome/brands/uber.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/ubuntu.svg b/bes_theme/.icons/fontawesome/brands/ubuntu.svg deleted file mode 100644 index e1958dc4..00000000 --- a/bes_theme/.icons/fontawesome/brands/ubuntu.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/uikit.svg b/bes_theme/.icons/fontawesome/brands/uikit.svg deleted file mode 100644 index a1bccd3d..00000000 --- a/bes_theme/.icons/fontawesome/brands/uikit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/umbraco.svg b/bes_theme/.icons/fontawesome/brands/umbraco.svg deleted file mode 100644 index 454e1152..00000000 --- a/bes_theme/.icons/fontawesome/brands/umbraco.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/uncharted.svg b/bes_theme/.icons/fontawesome/brands/uncharted.svg deleted file mode 100644 index 410d14ac..00000000 --- a/bes_theme/.icons/fontawesome/brands/uncharted.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/uniregistry.svg b/bes_theme/.icons/fontawesome/brands/uniregistry.svg deleted file mode 100644 index c77b4914..00000000 --- a/bes_theme/.icons/fontawesome/brands/uniregistry.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/unity.svg b/bes_theme/.icons/fontawesome/brands/unity.svg deleted file mode 100644 index 3c2db3cb..00000000 --- a/bes_theme/.icons/fontawesome/brands/unity.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/unsplash.svg b/bes_theme/.icons/fontawesome/brands/unsplash.svg deleted file mode 100644 index a13868c1..00000000 --- a/bes_theme/.icons/fontawesome/brands/unsplash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/untappd.svg b/bes_theme/.icons/fontawesome/brands/untappd.svg deleted file mode 100644 index c4a609fc..00000000 --- a/bes_theme/.icons/fontawesome/brands/untappd.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/ups.svg b/bes_theme/.icons/fontawesome/brands/ups.svg deleted file mode 100644 index eecae78c..00000000 --- a/bes_theme/.icons/fontawesome/brands/ups.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/usb.svg b/bes_theme/.icons/fontawesome/brands/usb.svg deleted file mode 100644 index a9d265ee..00000000 --- a/bes_theme/.icons/fontawesome/brands/usb.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/usps.svg b/bes_theme/.icons/fontawesome/brands/usps.svg deleted file mode 100644 index f939b3e2..00000000 --- a/bes_theme/.icons/fontawesome/brands/usps.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/ussunnah.svg b/bes_theme/.icons/fontawesome/brands/ussunnah.svg deleted file mode 100644 index dac3f0b4..00000000 --- a/bes_theme/.icons/fontawesome/brands/ussunnah.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/vaadin.svg b/bes_theme/.icons/fontawesome/brands/vaadin.svg deleted file mode 100644 index fadce5ad..00000000 --- a/bes_theme/.icons/fontawesome/brands/vaadin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/viacoin.svg b/bes_theme/.icons/fontawesome/brands/viacoin.svg deleted file mode 100644 index c4777d6f..00000000 --- a/bes_theme/.icons/fontawesome/brands/viacoin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/viadeo-square.svg b/bes_theme/.icons/fontawesome/brands/viadeo-square.svg deleted file mode 100644 index 9212671d..00000000 --- a/bes_theme/.icons/fontawesome/brands/viadeo-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/viadeo.svg b/bes_theme/.icons/fontawesome/brands/viadeo.svg deleted file mode 100644 index f4c1f8a1..00000000 --- a/bes_theme/.icons/fontawesome/brands/viadeo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/viber.svg b/bes_theme/.icons/fontawesome/brands/viber.svg deleted file mode 100644 index e40506b7..00000000 --- a/bes_theme/.icons/fontawesome/brands/viber.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/vimeo-square.svg b/bes_theme/.icons/fontawesome/brands/vimeo-square.svg deleted file mode 100644 index eed266e7..00000000 --- a/bes_theme/.icons/fontawesome/brands/vimeo-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/vimeo-v.svg b/bes_theme/.icons/fontawesome/brands/vimeo-v.svg deleted file mode 100644 index c8715281..00000000 --- a/bes_theme/.icons/fontawesome/brands/vimeo-v.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/vimeo.svg b/bes_theme/.icons/fontawesome/brands/vimeo.svg deleted file mode 100644 index 3a0c5273..00000000 --- a/bes_theme/.icons/fontawesome/brands/vimeo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/vine.svg b/bes_theme/.icons/fontawesome/brands/vine.svg deleted file mode 100644 index 53cb27f8..00000000 --- a/bes_theme/.icons/fontawesome/brands/vine.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/vk.svg b/bes_theme/.icons/fontawesome/brands/vk.svg deleted file mode 100644 index 022717d1..00000000 --- a/bes_theme/.icons/fontawesome/brands/vk.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/vnv.svg b/bes_theme/.icons/fontawesome/brands/vnv.svg deleted file mode 100644 index 56cd37b4..00000000 --- a/bes_theme/.icons/fontawesome/brands/vnv.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/vuejs.svg b/bes_theme/.icons/fontawesome/brands/vuejs.svg deleted file mode 100644 index 932887c1..00000000 --- a/bes_theme/.icons/fontawesome/brands/vuejs.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/watchman-monitoring.svg b/bes_theme/.icons/fontawesome/brands/watchman-monitoring.svg deleted file mode 100644 index e12a24cc..00000000 --- a/bes_theme/.icons/fontawesome/brands/watchman-monitoring.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/waze.svg b/bes_theme/.icons/fontawesome/brands/waze.svg deleted file mode 100644 index 237e2316..00000000 --- a/bes_theme/.icons/fontawesome/brands/waze.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/weebly.svg b/bes_theme/.icons/fontawesome/brands/weebly.svg deleted file mode 100644 index 0fa5c4b9..00000000 --- a/bes_theme/.icons/fontawesome/brands/weebly.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/weibo.svg b/bes_theme/.icons/fontawesome/brands/weibo.svg deleted file mode 100644 index 84f18c49..00000000 --- a/bes_theme/.icons/fontawesome/brands/weibo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/weixin.svg b/bes_theme/.icons/fontawesome/brands/weixin.svg deleted file mode 100644 index cd27b198..00000000 --- a/bes_theme/.icons/fontawesome/brands/weixin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/whatsapp-square.svg b/bes_theme/.icons/fontawesome/brands/whatsapp-square.svg deleted file mode 100644 index 7db67533..00000000 --- a/bes_theme/.icons/fontawesome/brands/whatsapp-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/whatsapp.svg b/bes_theme/.icons/fontawesome/brands/whatsapp.svg deleted file mode 100644 index 6ca3eb35..00000000 --- a/bes_theme/.icons/fontawesome/brands/whatsapp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/whmcs.svg b/bes_theme/.icons/fontawesome/brands/whmcs.svg deleted file mode 100644 index e855ecf5..00000000 --- a/bes_theme/.icons/fontawesome/brands/whmcs.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/wikipedia-w.svg b/bes_theme/.icons/fontawesome/brands/wikipedia-w.svg deleted file mode 100644 index 6db32633..00000000 --- a/bes_theme/.icons/fontawesome/brands/wikipedia-w.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/windows.svg b/bes_theme/.icons/fontawesome/brands/windows.svg deleted file mode 100644 index ec60aa1d..00000000 --- a/bes_theme/.icons/fontawesome/brands/windows.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/wix.svg b/bes_theme/.icons/fontawesome/brands/wix.svg deleted file mode 100644 index fdbedaaa..00000000 --- a/bes_theme/.icons/fontawesome/brands/wix.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/wizards-of-the-coast.svg b/bes_theme/.icons/fontawesome/brands/wizards-of-the-coast.svg deleted file mode 100644 index 5f2ff9ac..00000000 --- a/bes_theme/.icons/fontawesome/brands/wizards-of-the-coast.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/wodu.svg b/bes_theme/.icons/fontawesome/brands/wodu.svg deleted file mode 100644 index 4dd1cf02..00000000 --- a/bes_theme/.icons/fontawesome/brands/wodu.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/wolf-pack-battalion.svg b/bes_theme/.icons/fontawesome/brands/wolf-pack-battalion.svg deleted file mode 100644 index 6df86d79..00000000 --- a/bes_theme/.icons/fontawesome/brands/wolf-pack-battalion.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/wordpress-simple.svg b/bes_theme/.icons/fontawesome/brands/wordpress-simple.svg deleted file mode 100644 index f0a23405..00000000 --- a/bes_theme/.icons/fontawesome/brands/wordpress-simple.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/wordpress.svg b/bes_theme/.icons/fontawesome/brands/wordpress.svg deleted file mode 100644 index 05d3ff8f..00000000 --- a/bes_theme/.icons/fontawesome/brands/wordpress.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/wpbeginner.svg b/bes_theme/.icons/fontawesome/brands/wpbeginner.svg deleted file mode 100644 index 1f81e844..00000000 --- a/bes_theme/.icons/fontawesome/brands/wpbeginner.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/wpexplorer.svg b/bes_theme/.icons/fontawesome/brands/wpexplorer.svg deleted file mode 100644 index 6f164262..00000000 --- a/bes_theme/.icons/fontawesome/brands/wpexplorer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/wpforms.svg b/bes_theme/.icons/fontawesome/brands/wpforms.svg deleted file mode 100644 index 396e626b..00000000 --- a/bes_theme/.icons/fontawesome/brands/wpforms.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/wpressr.svg b/bes_theme/.icons/fontawesome/brands/wpressr.svg deleted file mode 100644 index daa6135c..00000000 --- a/bes_theme/.icons/fontawesome/brands/wpressr.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/xbox.svg b/bes_theme/.icons/fontawesome/brands/xbox.svg deleted file mode 100644 index 5420576e..00000000 --- a/bes_theme/.icons/fontawesome/brands/xbox.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/xing-square.svg b/bes_theme/.icons/fontawesome/brands/xing-square.svg deleted file mode 100644 index 8c9fb829..00000000 --- a/bes_theme/.icons/fontawesome/brands/xing-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/xing.svg b/bes_theme/.icons/fontawesome/brands/xing.svg deleted file mode 100644 index c4007711..00000000 --- a/bes_theme/.icons/fontawesome/brands/xing.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/y-combinator.svg b/bes_theme/.icons/fontawesome/brands/y-combinator.svg deleted file mode 100644 index 7d85d98f..00000000 --- a/bes_theme/.icons/fontawesome/brands/y-combinator.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/yahoo.svg b/bes_theme/.icons/fontawesome/brands/yahoo.svg deleted file mode 100644 index 80e6017b..00000000 --- a/bes_theme/.icons/fontawesome/brands/yahoo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/yammer.svg b/bes_theme/.icons/fontawesome/brands/yammer.svg deleted file mode 100644 index e9056787..00000000 --- a/bes_theme/.icons/fontawesome/brands/yammer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/yandex-international.svg b/bes_theme/.icons/fontawesome/brands/yandex-international.svg deleted file mode 100644 index 2b1c10c7..00000000 --- a/bes_theme/.icons/fontawesome/brands/yandex-international.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/yandex.svg b/bes_theme/.icons/fontawesome/brands/yandex.svg deleted file mode 100644 index 3cb6b11d..00000000 --- a/bes_theme/.icons/fontawesome/brands/yandex.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/yarn.svg b/bes_theme/.icons/fontawesome/brands/yarn.svg deleted file mode 100644 index ed00ea94..00000000 --- a/bes_theme/.icons/fontawesome/brands/yarn.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/yelp.svg b/bes_theme/.icons/fontawesome/brands/yelp.svg deleted file mode 100644 index faab43a7..00000000 --- a/bes_theme/.icons/fontawesome/brands/yelp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/yoast.svg b/bes_theme/.icons/fontawesome/brands/yoast.svg deleted file mode 100644 index bf2ec0f1..00000000 --- a/bes_theme/.icons/fontawesome/brands/yoast.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/youtube-square.svg b/bes_theme/.icons/fontawesome/brands/youtube-square.svg deleted file mode 100644 index 80013360..00000000 --- a/bes_theme/.icons/fontawesome/brands/youtube-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/youtube.svg b/bes_theme/.icons/fontawesome/brands/youtube.svg deleted file mode 100644 index e831b886..00000000 --- a/bes_theme/.icons/fontawesome/brands/youtube.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/brands/zhihu.svg b/bes_theme/.icons/fontawesome/brands/zhihu.svg deleted file mode 100644 index c206c266..00000000 --- a/bes_theme/.icons/fontawesome/brands/zhihu.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/address-book.svg b/bes_theme/.icons/fontawesome/regular/address-book.svg deleted file mode 100644 index 1c941ca3..00000000 --- a/bes_theme/.icons/fontawesome/regular/address-book.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/address-card.svg b/bes_theme/.icons/fontawesome/regular/address-card.svg deleted file mode 100644 index 4e0179f5..00000000 --- a/bes_theme/.icons/fontawesome/regular/address-card.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/angry.svg b/bes_theme/.icons/fontawesome/regular/angry.svg deleted file mode 100644 index f8636abe..00000000 --- a/bes_theme/.icons/fontawesome/regular/angry.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/arrow-alt-circle-down.svg b/bes_theme/.icons/fontawesome/regular/arrow-alt-circle-down.svg deleted file mode 100644 index 5f758488..00000000 --- a/bes_theme/.icons/fontawesome/regular/arrow-alt-circle-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/arrow-alt-circle-left.svg b/bes_theme/.icons/fontawesome/regular/arrow-alt-circle-left.svg deleted file mode 100644 index eb3fbdb9..00000000 --- a/bes_theme/.icons/fontawesome/regular/arrow-alt-circle-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/arrow-alt-circle-right.svg b/bes_theme/.icons/fontawesome/regular/arrow-alt-circle-right.svg deleted file mode 100644 index 061d9726..00000000 --- a/bes_theme/.icons/fontawesome/regular/arrow-alt-circle-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/arrow-alt-circle-up.svg b/bes_theme/.icons/fontawesome/regular/arrow-alt-circle-up.svg deleted file mode 100644 index 519288e7..00000000 --- a/bes_theme/.icons/fontawesome/regular/arrow-alt-circle-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/bell-slash.svg b/bes_theme/.icons/fontawesome/regular/bell-slash.svg deleted file mode 100644 index 5df91938..00000000 --- a/bes_theme/.icons/fontawesome/regular/bell-slash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/bell.svg b/bes_theme/.icons/fontawesome/regular/bell.svg deleted file mode 100644 index 2b98a370..00000000 --- a/bes_theme/.icons/fontawesome/regular/bell.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/bookmark.svg b/bes_theme/.icons/fontawesome/regular/bookmark.svg deleted file mode 100644 index d8e16d48..00000000 --- a/bes_theme/.icons/fontawesome/regular/bookmark.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/building.svg b/bes_theme/.icons/fontawesome/regular/building.svg deleted file mode 100644 index 4178db46..00000000 --- a/bes_theme/.icons/fontawesome/regular/building.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/calendar-alt.svg b/bes_theme/.icons/fontawesome/regular/calendar-alt.svg deleted file mode 100644 index 130e2ab7..00000000 --- a/bes_theme/.icons/fontawesome/regular/calendar-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/calendar-check.svg b/bes_theme/.icons/fontawesome/regular/calendar-check.svg deleted file mode 100644 index 3d98c563..00000000 --- a/bes_theme/.icons/fontawesome/regular/calendar-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/calendar-minus.svg b/bes_theme/.icons/fontawesome/regular/calendar-minus.svg deleted file mode 100644 index 0b83b348..00000000 --- a/bes_theme/.icons/fontawesome/regular/calendar-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/calendar-plus.svg b/bes_theme/.icons/fontawesome/regular/calendar-plus.svg deleted file mode 100644 index 7715ffc4..00000000 --- a/bes_theme/.icons/fontawesome/regular/calendar-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/calendar-times.svg b/bes_theme/.icons/fontawesome/regular/calendar-times.svg deleted file mode 100644 index 41613d95..00000000 --- a/bes_theme/.icons/fontawesome/regular/calendar-times.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/calendar.svg b/bes_theme/.icons/fontawesome/regular/calendar.svg deleted file mode 100644 index 725e8879..00000000 --- a/bes_theme/.icons/fontawesome/regular/calendar.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/caret-square-down.svg b/bes_theme/.icons/fontawesome/regular/caret-square-down.svg deleted file mode 100644 index 29a40ab9..00000000 --- a/bes_theme/.icons/fontawesome/regular/caret-square-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/caret-square-left.svg b/bes_theme/.icons/fontawesome/regular/caret-square-left.svg deleted file mode 100644 index 5fa7f8b0..00000000 --- a/bes_theme/.icons/fontawesome/regular/caret-square-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/caret-square-right.svg b/bes_theme/.icons/fontawesome/regular/caret-square-right.svg deleted file mode 100644 index 03b43897..00000000 --- a/bes_theme/.icons/fontawesome/regular/caret-square-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/caret-square-up.svg b/bes_theme/.icons/fontawesome/regular/caret-square-up.svg deleted file mode 100644 index b59f23b3..00000000 --- a/bes_theme/.icons/fontawesome/regular/caret-square-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/chart-bar.svg b/bes_theme/.icons/fontawesome/regular/chart-bar.svg deleted file mode 100644 index 36820b76..00000000 --- a/bes_theme/.icons/fontawesome/regular/chart-bar.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/check-circle.svg b/bes_theme/.icons/fontawesome/regular/check-circle.svg deleted file mode 100644 index 4ccf5bec..00000000 --- a/bes_theme/.icons/fontawesome/regular/check-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/check-square.svg b/bes_theme/.icons/fontawesome/regular/check-square.svg deleted file mode 100644 index 602b375b..00000000 --- a/bes_theme/.icons/fontawesome/regular/check-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/circle.svg b/bes_theme/.icons/fontawesome/regular/circle.svg deleted file mode 100644 index 835815e1..00000000 --- a/bes_theme/.icons/fontawesome/regular/circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/clipboard.svg b/bes_theme/.icons/fontawesome/regular/clipboard.svg deleted file mode 100644 index a9260d17..00000000 --- a/bes_theme/.icons/fontawesome/regular/clipboard.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/clock.svg b/bes_theme/.icons/fontawesome/regular/clock.svg deleted file mode 100644 index 147444f4..00000000 --- a/bes_theme/.icons/fontawesome/regular/clock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/clone.svg b/bes_theme/.icons/fontawesome/regular/clone.svg deleted file mode 100644 index c9804bf3..00000000 --- a/bes_theme/.icons/fontawesome/regular/clone.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/closed-captioning.svg b/bes_theme/.icons/fontawesome/regular/closed-captioning.svg deleted file mode 100644 index 277952b0..00000000 --- a/bes_theme/.icons/fontawesome/regular/closed-captioning.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/comment-alt.svg b/bes_theme/.icons/fontawesome/regular/comment-alt.svg deleted file mode 100644 index cf31f088..00000000 --- a/bes_theme/.icons/fontawesome/regular/comment-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/comment-dots.svg b/bes_theme/.icons/fontawesome/regular/comment-dots.svg deleted file mode 100644 index de4dc072..00000000 --- a/bes_theme/.icons/fontawesome/regular/comment-dots.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/comment.svg b/bes_theme/.icons/fontawesome/regular/comment.svg deleted file mode 100644 index 6fb2541d..00000000 --- a/bes_theme/.icons/fontawesome/regular/comment.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/comments.svg b/bes_theme/.icons/fontawesome/regular/comments.svg deleted file mode 100644 index 9ab2d387..00000000 --- a/bes_theme/.icons/fontawesome/regular/comments.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/compass.svg b/bes_theme/.icons/fontawesome/regular/compass.svg deleted file mode 100644 index 5c7d7b8a..00000000 --- a/bes_theme/.icons/fontawesome/regular/compass.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/copy.svg b/bes_theme/.icons/fontawesome/regular/copy.svg deleted file mode 100644 index 388e7ee5..00000000 --- a/bes_theme/.icons/fontawesome/regular/copy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/copyright.svg b/bes_theme/.icons/fontawesome/regular/copyright.svg deleted file mode 100644 index 2a81ca28..00000000 --- a/bes_theme/.icons/fontawesome/regular/copyright.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/credit-card.svg b/bes_theme/.icons/fontawesome/regular/credit-card.svg deleted file mode 100644 index f5a047fb..00000000 --- a/bes_theme/.icons/fontawesome/regular/credit-card.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/dizzy.svg b/bes_theme/.icons/fontawesome/regular/dizzy.svg deleted file mode 100644 index b84e0059..00000000 --- a/bes_theme/.icons/fontawesome/regular/dizzy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/dot-circle.svg b/bes_theme/.icons/fontawesome/regular/dot-circle.svg deleted file mode 100644 index eacf9b70..00000000 --- a/bes_theme/.icons/fontawesome/regular/dot-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/edit.svg b/bes_theme/.icons/fontawesome/regular/edit.svg deleted file mode 100644 index 175d3450..00000000 --- a/bes_theme/.icons/fontawesome/regular/edit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/envelope-open.svg b/bes_theme/.icons/fontawesome/regular/envelope-open.svg deleted file mode 100644 index 0b71db8f..00000000 --- a/bes_theme/.icons/fontawesome/regular/envelope-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/envelope.svg b/bes_theme/.icons/fontawesome/regular/envelope.svg deleted file mode 100644 index a2557ef2..00000000 --- a/bes_theme/.icons/fontawesome/regular/envelope.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/eye-slash.svg b/bes_theme/.icons/fontawesome/regular/eye-slash.svg deleted file mode 100644 index baacc642..00000000 --- a/bes_theme/.icons/fontawesome/regular/eye-slash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/eye.svg b/bes_theme/.icons/fontawesome/regular/eye.svg deleted file mode 100644 index 09c93453..00000000 --- a/bes_theme/.icons/fontawesome/regular/eye.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/file-alt.svg b/bes_theme/.icons/fontawesome/regular/file-alt.svg deleted file mode 100644 index e32217d2..00000000 --- a/bes_theme/.icons/fontawesome/regular/file-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/file-archive.svg b/bes_theme/.icons/fontawesome/regular/file-archive.svg deleted file mode 100644 index af14d23f..00000000 --- a/bes_theme/.icons/fontawesome/regular/file-archive.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/file-audio.svg b/bes_theme/.icons/fontawesome/regular/file-audio.svg deleted file mode 100644 index 1211dc35..00000000 --- a/bes_theme/.icons/fontawesome/regular/file-audio.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/file-code.svg b/bes_theme/.icons/fontawesome/regular/file-code.svg deleted file mode 100644 index bae2d3fa..00000000 --- a/bes_theme/.icons/fontawesome/regular/file-code.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/file-excel.svg b/bes_theme/.icons/fontawesome/regular/file-excel.svg deleted file mode 100644 index b4183a2b..00000000 --- a/bes_theme/.icons/fontawesome/regular/file-excel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/file-image.svg b/bes_theme/.icons/fontawesome/regular/file-image.svg deleted file mode 100644 index 38632265..00000000 --- a/bes_theme/.icons/fontawesome/regular/file-image.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/file-pdf.svg b/bes_theme/.icons/fontawesome/regular/file-pdf.svg deleted file mode 100644 index ae4a8323..00000000 --- a/bes_theme/.icons/fontawesome/regular/file-pdf.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/file-powerpoint.svg b/bes_theme/.icons/fontawesome/regular/file-powerpoint.svg deleted file mode 100644 index 58690913..00000000 --- a/bes_theme/.icons/fontawesome/regular/file-powerpoint.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/file-video.svg b/bes_theme/.icons/fontawesome/regular/file-video.svg deleted file mode 100644 index a437076a..00000000 --- a/bes_theme/.icons/fontawesome/regular/file-video.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/file-word.svg b/bes_theme/.icons/fontawesome/regular/file-word.svg deleted file mode 100644 index 08d95beb..00000000 --- a/bes_theme/.icons/fontawesome/regular/file-word.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/file.svg b/bes_theme/.icons/fontawesome/regular/file.svg deleted file mode 100644 index c45409a3..00000000 --- a/bes_theme/.icons/fontawesome/regular/file.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/flag.svg b/bes_theme/.icons/fontawesome/regular/flag.svg deleted file mode 100644 index 4df2e03f..00000000 --- a/bes_theme/.icons/fontawesome/regular/flag.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/flushed.svg b/bes_theme/.icons/fontawesome/regular/flushed.svg deleted file mode 100644 index cb201a24..00000000 --- a/bes_theme/.icons/fontawesome/regular/flushed.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/folder-open.svg b/bes_theme/.icons/fontawesome/regular/folder-open.svg deleted file mode 100644 index d367d41b..00000000 --- a/bes_theme/.icons/fontawesome/regular/folder-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/folder.svg b/bes_theme/.icons/fontawesome/regular/folder.svg deleted file mode 100644 index 7c9d6c4d..00000000 --- a/bes_theme/.icons/fontawesome/regular/folder.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/font-awesome-logo-full.svg b/bes_theme/.icons/fontawesome/regular/font-awesome-logo-full.svg deleted file mode 100644 index 64dd279a..00000000 --- a/bes_theme/.icons/fontawesome/regular/font-awesome-logo-full.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/frown-open.svg b/bes_theme/.icons/fontawesome/regular/frown-open.svg deleted file mode 100644 index 728cc1cb..00000000 --- a/bes_theme/.icons/fontawesome/regular/frown-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/frown.svg b/bes_theme/.icons/fontawesome/regular/frown.svg deleted file mode 100644 index a8cb6037..00000000 --- a/bes_theme/.icons/fontawesome/regular/frown.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/futbol.svg b/bes_theme/.icons/fontawesome/regular/futbol.svg deleted file mode 100644 index 0daf54f2..00000000 --- a/bes_theme/.icons/fontawesome/regular/futbol.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/gem.svg b/bes_theme/.icons/fontawesome/regular/gem.svg deleted file mode 100644 index 85504e7d..00000000 --- a/bes_theme/.icons/fontawesome/regular/gem.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/grimace.svg b/bes_theme/.icons/fontawesome/regular/grimace.svg deleted file mode 100644 index 3ef8c880..00000000 --- a/bes_theme/.icons/fontawesome/regular/grimace.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/grin-alt.svg b/bes_theme/.icons/fontawesome/regular/grin-alt.svg deleted file mode 100644 index 6e8ac81e..00000000 --- a/bes_theme/.icons/fontawesome/regular/grin-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/grin-beam-sweat.svg b/bes_theme/.icons/fontawesome/regular/grin-beam-sweat.svg deleted file mode 100644 index 6f221335..00000000 --- a/bes_theme/.icons/fontawesome/regular/grin-beam-sweat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/grin-beam.svg b/bes_theme/.icons/fontawesome/regular/grin-beam.svg deleted file mode 100644 index 0f8b3660..00000000 --- a/bes_theme/.icons/fontawesome/regular/grin-beam.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/grin-hearts.svg b/bes_theme/.icons/fontawesome/regular/grin-hearts.svg deleted file mode 100644 index 3ecf5f4a..00000000 --- a/bes_theme/.icons/fontawesome/regular/grin-hearts.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/grin-squint-tears.svg b/bes_theme/.icons/fontawesome/regular/grin-squint-tears.svg deleted file mode 100644 index 13ab7308..00000000 --- a/bes_theme/.icons/fontawesome/regular/grin-squint-tears.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/grin-squint.svg b/bes_theme/.icons/fontawesome/regular/grin-squint.svg deleted file mode 100644 index b6d15a4e..00000000 --- a/bes_theme/.icons/fontawesome/regular/grin-squint.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/grin-stars.svg b/bes_theme/.icons/fontawesome/regular/grin-stars.svg deleted file mode 100644 index 50b0cc05..00000000 --- a/bes_theme/.icons/fontawesome/regular/grin-stars.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/grin-tears.svg b/bes_theme/.icons/fontawesome/regular/grin-tears.svg deleted file mode 100644 index fefc4237..00000000 --- a/bes_theme/.icons/fontawesome/regular/grin-tears.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/grin-tongue-squint.svg b/bes_theme/.icons/fontawesome/regular/grin-tongue-squint.svg deleted file mode 100644 index 3ba3ad43..00000000 --- a/bes_theme/.icons/fontawesome/regular/grin-tongue-squint.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/grin-tongue-wink.svg b/bes_theme/.icons/fontawesome/regular/grin-tongue-wink.svg deleted file mode 100644 index e75cdccd..00000000 --- a/bes_theme/.icons/fontawesome/regular/grin-tongue-wink.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/grin-tongue.svg b/bes_theme/.icons/fontawesome/regular/grin-tongue.svg deleted file mode 100644 index 1afbcef4..00000000 --- a/bes_theme/.icons/fontawesome/regular/grin-tongue.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/grin-wink.svg b/bes_theme/.icons/fontawesome/regular/grin-wink.svg deleted file mode 100644 index ed3b703d..00000000 --- a/bes_theme/.icons/fontawesome/regular/grin-wink.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/grin.svg b/bes_theme/.icons/fontawesome/regular/grin.svg deleted file mode 100644 index 1630a892..00000000 --- a/bes_theme/.icons/fontawesome/regular/grin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/hand-lizard.svg b/bes_theme/.icons/fontawesome/regular/hand-lizard.svg deleted file mode 100644 index 15705fe5..00000000 --- a/bes_theme/.icons/fontawesome/regular/hand-lizard.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/hand-paper.svg b/bes_theme/.icons/fontawesome/regular/hand-paper.svg deleted file mode 100644 index afe7adb0..00000000 --- a/bes_theme/.icons/fontawesome/regular/hand-paper.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/hand-peace.svg b/bes_theme/.icons/fontawesome/regular/hand-peace.svg deleted file mode 100644 index 506209b2..00000000 --- a/bes_theme/.icons/fontawesome/regular/hand-peace.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/hand-point-down.svg b/bes_theme/.icons/fontawesome/regular/hand-point-down.svg deleted file mode 100644 index 08bc8d84..00000000 --- a/bes_theme/.icons/fontawesome/regular/hand-point-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/hand-point-left.svg b/bes_theme/.icons/fontawesome/regular/hand-point-left.svg deleted file mode 100644 index 82d66403..00000000 --- a/bes_theme/.icons/fontawesome/regular/hand-point-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/hand-point-right.svg b/bes_theme/.icons/fontawesome/regular/hand-point-right.svg deleted file mode 100644 index 312c2093..00000000 --- a/bes_theme/.icons/fontawesome/regular/hand-point-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/hand-point-up.svg b/bes_theme/.icons/fontawesome/regular/hand-point-up.svg deleted file mode 100644 index 6f823c30..00000000 --- a/bes_theme/.icons/fontawesome/regular/hand-point-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/hand-pointer.svg b/bes_theme/.icons/fontawesome/regular/hand-pointer.svg deleted file mode 100644 index 1ff0b8eb..00000000 --- a/bes_theme/.icons/fontawesome/regular/hand-pointer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/hand-rock.svg b/bes_theme/.icons/fontawesome/regular/hand-rock.svg deleted file mode 100644 index a13011ab..00000000 --- a/bes_theme/.icons/fontawesome/regular/hand-rock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/hand-scissors.svg b/bes_theme/.icons/fontawesome/regular/hand-scissors.svg deleted file mode 100644 index 01a8693f..00000000 --- a/bes_theme/.icons/fontawesome/regular/hand-scissors.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/hand-spock.svg b/bes_theme/.icons/fontawesome/regular/hand-spock.svg deleted file mode 100644 index 4d26c8cb..00000000 --- a/bes_theme/.icons/fontawesome/regular/hand-spock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/handshake.svg b/bes_theme/.icons/fontawesome/regular/handshake.svg deleted file mode 100644 index 7e946a1f..00000000 --- a/bes_theme/.icons/fontawesome/regular/handshake.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/hdd.svg b/bes_theme/.icons/fontawesome/regular/hdd.svg deleted file mode 100644 index c4e37399..00000000 --- a/bes_theme/.icons/fontawesome/regular/hdd.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/heart.svg b/bes_theme/.icons/fontawesome/regular/heart.svg deleted file mode 100644 index 9a380831..00000000 --- a/bes_theme/.icons/fontawesome/regular/heart.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/hospital.svg b/bes_theme/.icons/fontawesome/regular/hospital.svg deleted file mode 100644 index 98772863..00000000 --- a/bes_theme/.icons/fontawesome/regular/hospital.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/hourglass.svg b/bes_theme/.icons/fontawesome/regular/hourglass.svg deleted file mode 100644 index c89faa1d..00000000 --- a/bes_theme/.icons/fontawesome/regular/hourglass.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/id-badge.svg b/bes_theme/.icons/fontawesome/regular/id-badge.svg deleted file mode 100644 index 39008027..00000000 --- a/bes_theme/.icons/fontawesome/regular/id-badge.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/id-card.svg b/bes_theme/.icons/fontawesome/regular/id-card.svg deleted file mode 100644 index 58ce378b..00000000 --- a/bes_theme/.icons/fontawesome/regular/id-card.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/image.svg b/bes_theme/.icons/fontawesome/regular/image.svg deleted file mode 100644 index 4f7dd8dd..00000000 --- a/bes_theme/.icons/fontawesome/regular/image.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/images.svg b/bes_theme/.icons/fontawesome/regular/images.svg deleted file mode 100644 index f5ab8ed6..00000000 --- a/bes_theme/.icons/fontawesome/regular/images.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/keyboard.svg b/bes_theme/.icons/fontawesome/regular/keyboard.svg deleted file mode 100644 index 3b3705dc..00000000 --- a/bes_theme/.icons/fontawesome/regular/keyboard.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/kiss-beam.svg b/bes_theme/.icons/fontawesome/regular/kiss-beam.svg deleted file mode 100644 index 85718086..00000000 --- a/bes_theme/.icons/fontawesome/regular/kiss-beam.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/kiss-wink-heart.svg b/bes_theme/.icons/fontawesome/regular/kiss-wink-heart.svg deleted file mode 100644 index 2435767c..00000000 --- a/bes_theme/.icons/fontawesome/regular/kiss-wink-heart.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/kiss.svg b/bes_theme/.icons/fontawesome/regular/kiss.svg deleted file mode 100644 index 5af5fc76..00000000 --- a/bes_theme/.icons/fontawesome/regular/kiss.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/laugh-beam.svg b/bes_theme/.icons/fontawesome/regular/laugh-beam.svg deleted file mode 100644 index 69db48ab..00000000 --- a/bes_theme/.icons/fontawesome/regular/laugh-beam.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/laugh-squint.svg b/bes_theme/.icons/fontawesome/regular/laugh-squint.svg deleted file mode 100644 index 252b9767..00000000 --- a/bes_theme/.icons/fontawesome/regular/laugh-squint.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/laugh-wink.svg b/bes_theme/.icons/fontawesome/regular/laugh-wink.svg deleted file mode 100644 index 39c36954..00000000 --- a/bes_theme/.icons/fontawesome/regular/laugh-wink.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/laugh.svg b/bes_theme/.icons/fontawesome/regular/laugh.svg deleted file mode 100644 index b8524251..00000000 --- a/bes_theme/.icons/fontawesome/regular/laugh.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/lemon.svg b/bes_theme/.icons/fontawesome/regular/lemon.svg deleted file mode 100644 index ab9ed90b..00000000 --- a/bes_theme/.icons/fontawesome/regular/lemon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/life-ring.svg b/bes_theme/.icons/fontawesome/regular/life-ring.svg deleted file mode 100644 index 3ee226be..00000000 --- a/bes_theme/.icons/fontawesome/regular/life-ring.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/lightbulb.svg b/bes_theme/.icons/fontawesome/regular/lightbulb.svg deleted file mode 100644 index abd6ebfe..00000000 --- a/bes_theme/.icons/fontawesome/regular/lightbulb.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/list-alt.svg b/bes_theme/.icons/fontawesome/regular/list-alt.svg deleted file mode 100644 index 1113bbcc..00000000 --- a/bes_theme/.icons/fontawesome/regular/list-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/map.svg b/bes_theme/.icons/fontawesome/regular/map.svg deleted file mode 100644 index 4425cb7a..00000000 --- a/bes_theme/.icons/fontawesome/regular/map.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/meh-blank.svg b/bes_theme/.icons/fontawesome/regular/meh-blank.svg deleted file mode 100644 index ebeece47..00000000 --- a/bes_theme/.icons/fontawesome/regular/meh-blank.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/meh-rolling-eyes.svg b/bes_theme/.icons/fontawesome/regular/meh-rolling-eyes.svg deleted file mode 100644 index 3fb3476f..00000000 --- a/bes_theme/.icons/fontawesome/regular/meh-rolling-eyes.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/meh.svg b/bes_theme/.icons/fontawesome/regular/meh.svg deleted file mode 100644 index 3bff8acc..00000000 --- a/bes_theme/.icons/fontawesome/regular/meh.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/minus-square.svg b/bes_theme/.icons/fontawesome/regular/minus-square.svg deleted file mode 100644 index 6b72714e..00000000 --- a/bes_theme/.icons/fontawesome/regular/minus-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/money-bill-alt.svg b/bes_theme/.icons/fontawesome/regular/money-bill-alt.svg deleted file mode 100644 index 4ce581e1..00000000 --- a/bes_theme/.icons/fontawesome/regular/money-bill-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/moon.svg b/bes_theme/.icons/fontawesome/regular/moon.svg deleted file mode 100644 index 30fb1151..00000000 --- a/bes_theme/.icons/fontawesome/regular/moon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/newspaper.svg b/bes_theme/.icons/fontawesome/regular/newspaper.svg deleted file mode 100644 index a54e3ca5..00000000 --- a/bes_theme/.icons/fontawesome/regular/newspaper.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/object-group.svg b/bes_theme/.icons/fontawesome/regular/object-group.svg deleted file mode 100644 index e483f376..00000000 --- a/bes_theme/.icons/fontawesome/regular/object-group.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/object-ungroup.svg b/bes_theme/.icons/fontawesome/regular/object-ungroup.svg deleted file mode 100644 index 62553630..00000000 --- a/bes_theme/.icons/fontawesome/regular/object-ungroup.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/paper-plane.svg b/bes_theme/.icons/fontawesome/regular/paper-plane.svg deleted file mode 100644 index 0400e556..00000000 --- a/bes_theme/.icons/fontawesome/regular/paper-plane.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/pause-circle.svg b/bes_theme/.icons/fontawesome/regular/pause-circle.svg deleted file mode 100644 index caebd9e9..00000000 --- a/bes_theme/.icons/fontawesome/regular/pause-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/play-circle.svg b/bes_theme/.icons/fontawesome/regular/play-circle.svg deleted file mode 100644 index f1cb311b..00000000 --- a/bes_theme/.icons/fontawesome/regular/play-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/plus-square.svg b/bes_theme/.icons/fontawesome/regular/plus-square.svg deleted file mode 100644 index dfc22ac6..00000000 --- a/bes_theme/.icons/fontawesome/regular/plus-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/question-circle.svg b/bes_theme/.icons/fontawesome/regular/question-circle.svg deleted file mode 100644 index 9a30b85d..00000000 --- a/bes_theme/.icons/fontawesome/regular/question-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/registered.svg b/bes_theme/.icons/fontawesome/regular/registered.svg deleted file mode 100644 index e5dc8a20..00000000 --- a/bes_theme/.icons/fontawesome/regular/registered.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/sad-cry.svg b/bes_theme/.icons/fontawesome/regular/sad-cry.svg deleted file mode 100644 index 8ab84c9f..00000000 --- a/bes_theme/.icons/fontawesome/regular/sad-cry.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/sad-tear.svg b/bes_theme/.icons/fontawesome/regular/sad-tear.svg deleted file mode 100644 index e19421ca..00000000 --- a/bes_theme/.icons/fontawesome/regular/sad-tear.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/save.svg b/bes_theme/.icons/fontawesome/regular/save.svg deleted file mode 100644 index e075e808..00000000 --- a/bes_theme/.icons/fontawesome/regular/save.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/share-square.svg b/bes_theme/.icons/fontawesome/regular/share-square.svg deleted file mode 100644 index 86076c06..00000000 --- a/bes_theme/.icons/fontawesome/regular/share-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/smile-beam.svg b/bes_theme/.icons/fontawesome/regular/smile-beam.svg deleted file mode 100644 index 1077160f..00000000 --- a/bes_theme/.icons/fontawesome/regular/smile-beam.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/smile-wink.svg b/bes_theme/.icons/fontawesome/regular/smile-wink.svg deleted file mode 100644 index e842eede..00000000 --- a/bes_theme/.icons/fontawesome/regular/smile-wink.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/smile.svg b/bes_theme/.icons/fontawesome/regular/smile.svg deleted file mode 100644 index 025898d4..00000000 --- a/bes_theme/.icons/fontawesome/regular/smile.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/snowflake.svg b/bes_theme/.icons/fontawesome/regular/snowflake.svg deleted file mode 100644 index 72bf24c8..00000000 --- a/bes_theme/.icons/fontawesome/regular/snowflake.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/square.svg b/bes_theme/.icons/fontawesome/regular/square.svg deleted file mode 100644 index b9a4b962..00000000 --- a/bes_theme/.icons/fontawesome/regular/square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/star-half.svg b/bes_theme/.icons/fontawesome/regular/star-half.svg deleted file mode 100644 index 5c64f00e..00000000 --- a/bes_theme/.icons/fontawesome/regular/star-half.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/star.svg b/bes_theme/.icons/fontawesome/regular/star.svg deleted file mode 100644 index c79c96ca..00000000 --- a/bes_theme/.icons/fontawesome/regular/star.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/sticky-note.svg b/bes_theme/.icons/fontawesome/regular/sticky-note.svg deleted file mode 100644 index 0882390c..00000000 --- a/bes_theme/.icons/fontawesome/regular/sticky-note.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/stop-circle.svg b/bes_theme/.icons/fontawesome/regular/stop-circle.svg deleted file mode 100644 index 37bf314d..00000000 --- a/bes_theme/.icons/fontawesome/regular/stop-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/sun.svg b/bes_theme/.icons/fontawesome/regular/sun.svg deleted file mode 100644 index 98e12435..00000000 --- a/bes_theme/.icons/fontawesome/regular/sun.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/surprise.svg b/bes_theme/.icons/fontawesome/regular/surprise.svg deleted file mode 100644 index 4210c378..00000000 --- a/bes_theme/.icons/fontawesome/regular/surprise.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/thumbs-down.svg b/bes_theme/.icons/fontawesome/regular/thumbs-down.svg deleted file mode 100644 index d7b49d53..00000000 --- a/bes_theme/.icons/fontawesome/regular/thumbs-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/thumbs-up.svg b/bes_theme/.icons/fontawesome/regular/thumbs-up.svg deleted file mode 100644 index f60e4d11..00000000 --- a/bes_theme/.icons/fontawesome/regular/thumbs-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/times-circle.svg b/bes_theme/.icons/fontawesome/regular/times-circle.svg deleted file mode 100644 index 15181d34..00000000 --- a/bes_theme/.icons/fontawesome/regular/times-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/tired.svg b/bes_theme/.icons/fontawesome/regular/tired.svg deleted file mode 100644 index 6f700be9..00000000 --- a/bes_theme/.icons/fontawesome/regular/tired.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/trash-alt.svg b/bes_theme/.icons/fontawesome/regular/trash-alt.svg deleted file mode 100644 index e3eb2b01..00000000 --- a/bes_theme/.icons/fontawesome/regular/trash-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/user-circle.svg b/bes_theme/.icons/fontawesome/regular/user-circle.svg deleted file mode 100644 index 1d678d24..00000000 --- a/bes_theme/.icons/fontawesome/regular/user-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/user.svg b/bes_theme/.icons/fontawesome/regular/user.svg deleted file mode 100644 index bdc327c6..00000000 --- a/bes_theme/.icons/fontawesome/regular/user.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/window-close.svg b/bes_theme/.icons/fontawesome/regular/window-close.svg deleted file mode 100644 index 7c0137ce..00000000 --- a/bes_theme/.icons/fontawesome/regular/window-close.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/window-maximize.svg b/bes_theme/.icons/fontawesome/regular/window-maximize.svg deleted file mode 100644 index 39c0ac06..00000000 --- a/bes_theme/.icons/fontawesome/regular/window-maximize.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/window-minimize.svg b/bes_theme/.icons/fontawesome/regular/window-minimize.svg deleted file mode 100644 index 0986bbaa..00000000 --- a/bes_theme/.icons/fontawesome/regular/window-minimize.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/regular/window-restore.svg b/bes_theme/.icons/fontawesome/regular/window-restore.svg deleted file mode 100644 index 9d1bfa7b..00000000 --- a/bes_theme/.icons/fontawesome/regular/window-restore.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/ad.svg b/bes_theme/.icons/fontawesome/solid/ad.svg deleted file mode 100644 index 42e4a52e..00000000 --- a/bes_theme/.icons/fontawesome/solid/ad.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/address-book.svg b/bes_theme/.icons/fontawesome/solid/address-book.svg deleted file mode 100644 index f652f5a9..00000000 --- a/bes_theme/.icons/fontawesome/solid/address-book.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/address-card.svg b/bes_theme/.icons/fontawesome/solid/address-card.svg deleted file mode 100644 index 628ced25..00000000 --- a/bes_theme/.icons/fontawesome/solid/address-card.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/adjust.svg b/bes_theme/.icons/fontawesome/solid/adjust.svg deleted file mode 100644 index 2616d99a..00000000 --- a/bes_theme/.icons/fontawesome/solid/adjust.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/air-freshener.svg b/bes_theme/.icons/fontawesome/solid/air-freshener.svg deleted file mode 100644 index 0ca34b7e..00000000 --- a/bes_theme/.icons/fontawesome/solid/air-freshener.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/align-center.svg b/bes_theme/.icons/fontawesome/solid/align-center.svg deleted file mode 100644 index b4cdc131..00000000 --- a/bes_theme/.icons/fontawesome/solid/align-center.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/align-justify.svg b/bes_theme/.icons/fontawesome/solid/align-justify.svg deleted file mode 100644 index d88b9590..00000000 --- a/bes_theme/.icons/fontawesome/solid/align-justify.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/align-left.svg b/bes_theme/.icons/fontawesome/solid/align-left.svg deleted file mode 100644 index 0e57ddef..00000000 --- a/bes_theme/.icons/fontawesome/solid/align-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/align-right.svg b/bes_theme/.icons/fontawesome/solid/align-right.svg deleted file mode 100644 index 34b22e01..00000000 --- a/bes_theme/.icons/fontawesome/solid/align-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/allergies.svg b/bes_theme/.icons/fontawesome/solid/allergies.svg deleted file mode 100644 index 335f5bcb..00000000 --- a/bes_theme/.icons/fontawesome/solid/allergies.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/ambulance.svg b/bes_theme/.icons/fontawesome/solid/ambulance.svg deleted file mode 100644 index b35a7bc0..00000000 --- a/bes_theme/.icons/fontawesome/solid/ambulance.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/american-sign-language-interpreting.svg b/bes_theme/.icons/fontawesome/solid/american-sign-language-interpreting.svg deleted file mode 100644 index 8bca6145..00000000 --- a/bes_theme/.icons/fontawesome/solid/american-sign-language-interpreting.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/anchor.svg b/bes_theme/.icons/fontawesome/solid/anchor.svg deleted file mode 100644 index 792266ba..00000000 --- a/bes_theme/.icons/fontawesome/solid/anchor.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/angle-double-down.svg b/bes_theme/.icons/fontawesome/solid/angle-double-down.svg deleted file mode 100644 index eb327ba1..00000000 --- a/bes_theme/.icons/fontawesome/solid/angle-double-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/angle-double-left.svg b/bes_theme/.icons/fontawesome/solid/angle-double-left.svg deleted file mode 100644 index bbcb4ab0..00000000 --- a/bes_theme/.icons/fontawesome/solid/angle-double-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/angle-double-right.svg b/bes_theme/.icons/fontawesome/solid/angle-double-right.svg deleted file mode 100644 index ac74c417..00000000 --- a/bes_theme/.icons/fontawesome/solid/angle-double-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/angle-double-up.svg b/bes_theme/.icons/fontawesome/solid/angle-double-up.svg deleted file mode 100644 index 5c831e09..00000000 --- a/bes_theme/.icons/fontawesome/solid/angle-double-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/angle-down.svg b/bes_theme/.icons/fontawesome/solid/angle-down.svg deleted file mode 100644 index 60d35fa9..00000000 --- a/bes_theme/.icons/fontawesome/solid/angle-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/angle-left.svg b/bes_theme/.icons/fontawesome/solid/angle-left.svg deleted file mode 100644 index 3520b980..00000000 --- a/bes_theme/.icons/fontawesome/solid/angle-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/angle-right.svg b/bes_theme/.icons/fontawesome/solid/angle-right.svg deleted file mode 100644 index d11857a2..00000000 --- a/bes_theme/.icons/fontawesome/solid/angle-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/angle-up.svg b/bes_theme/.icons/fontawesome/solid/angle-up.svg deleted file mode 100644 index 4e3699f5..00000000 --- a/bes_theme/.icons/fontawesome/solid/angle-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/angry.svg b/bes_theme/.icons/fontawesome/solid/angry.svg deleted file mode 100644 index 15882986..00000000 --- a/bes_theme/.icons/fontawesome/solid/angry.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/ankh.svg b/bes_theme/.icons/fontawesome/solid/ankh.svg deleted file mode 100644 index 2cab7bfd..00000000 --- a/bes_theme/.icons/fontawesome/solid/ankh.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/apple-alt.svg b/bes_theme/.icons/fontawesome/solid/apple-alt.svg deleted file mode 100644 index 995d76e9..00000000 --- a/bes_theme/.icons/fontawesome/solid/apple-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/archive.svg b/bes_theme/.icons/fontawesome/solid/archive.svg deleted file mode 100644 index 394dad2d..00000000 --- a/bes_theme/.icons/fontawesome/solid/archive.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/archway.svg b/bes_theme/.icons/fontawesome/solid/archway.svg deleted file mode 100644 index e5ad2f3d..00000000 --- a/bes_theme/.icons/fontawesome/solid/archway.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/arrow-alt-circle-down.svg b/bes_theme/.icons/fontawesome/solid/arrow-alt-circle-down.svg deleted file mode 100644 index a2f644f8..00000000 --- a/bes_theme/.icons/fontawesome/solid/arrow-alt-circle-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/arrow-alt-circle-left.svg b/bes_theme/.icons/fontawesome/solid/arrow-alt-circle-left.svg deleted file mode 100644 index 8a53b226..00000000 --- a/bes_theme/.icons/fontawesome/solid/arrow-alt-circle-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/arrow-alt-circle-right.svg b/bes_theme/.icons/fontawesome/solid/arrow-alt-circle-right.svg deleted file mode 100644 index 9da44be8..00000000 --- a/bes_theme/.icons/fontawesome/solid/arrow-alt-circle-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/arrow-alt-circle-up.svg b/bes_theme/.icons/fontawesome/solid/arrow-alt-circle-up.svg deleted file mode 100644 index c650c826..00000000 --- a/bes_theme/.icons/fontawesome/solid/arrow-alt-circle-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/arrow-circle-down.svg b/bes_theme/.icons/fontawesome/solid/arrow-circle-down.svg deleted file mode 100644 index 08b9f13a..00000000 --- a/bes_theme/.icons/fontawesome/solid/arrow-circle-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/arrow-circle-left.svg b/bes_theme/.icons/fontawesome/solid/arrow-circle-left.svg deleted file mode 100644 index 59be8d9e..00000000 --- a/bes_theme/.icons/fontawesome/solid/arrow-circle-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/arrow-circle-right.svg b/bes_theme/.icons/fontawesome/solid/arrow-circle-right.svg deleted file mode 100644 index 13d1c39a..00000000 --- a/bes_theme/.icons/fontawesome/solid/arrow-circle-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/arrow-circle-up.svg b/bes_theme/.icons/fontawesome/solid/arrow-circle-up.svg deleted file mode 100644 index aa1b430d..00000000 --- a/bes_theme/.icons/fontawesome/solid/arrow-circle-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/arrow-down.svg b/bes_theme/.icons/fontawesome/solid/arrow-down.svg deleted file mode 100644 index dbbb4d5e..00000000 --- a/bes_theme/.icons/fontawesome/solid/arrow-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/arrow-left.svg b/bes_theme/.icons/fontawesome/solid/arrow-left.svg deleted file mode 100644 index 1da9635c..00000000 --- a/bes_theme/.icons/fontawesome/solid/arrow-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/arrow-right.svg b/bes_theme/.icons/fontawesome/solid/arrow-right.svg deleted file mode 100644 index dd62cffc..00000000 --- a/bes_theme/.icons/fontawesome/solid/arrow-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/arrow-up.svg b/bes_theme/.icons/fontawesome/solid/arrow-up.svg deleted file mode 100644 index ff6a16b4..00000000 --- a/bes_theme/.icons/fontawesome/solid/arrow-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/arrows-alt-h.svg b/bes_theme/.icons/fontawesome/solid/arrows-alt-h.svg deleted file mode 100644 index 0caa926d..00000000 --- a/bes_theme/.icons/fontawesome/solid/arrows-alt-h.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/arrows-alt-v.svg b/bes_theme/.icons/fontawesome/solid/arrows-alt-v.svg deleted file mode 100644 index ebb23acb..00000000 --- a/bes_theme/.icons/fontawesome/solid/arrows-alt-v.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/arrows-alt.svg b/bes_theme/.icons/fontawesome/solid/arrows-alt.svg deleted file mode 100644 index 4c6a4fbe..00000000 --- a/bes_theme/.icons/fontawesome/solid/arrows-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/assistive-listening-systems.svg b/bes_theme/.icons/fontawesome/solid/assistive-listening-systems.svg deleted file mode 100644 index 5071f596..00000000 --- a/bes_theme/.icons/fontawesome/solid/assistive-listening-systems.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/asterisk.svg b/bes_theme/.icons/fontawesome/solid/asterisk.svg deleted file mode 100644 index ea244373..00000000 --- a/bes_theme/.icons/fontawesome/solid/asterisk.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/at.svg b/bes_theme/.icons/fontawesome/solid/at.svg deleted file mode 100644 index 6f35c426..00000000 --- a/bes_theme/.icons/fontawesome/solid/at.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/atlas.svg b/bes_theme/.icons/fontawesome/solid/atlas.svg deleted file mode 100644 index ea31821f..00000000 --- a/bes_theme/.icons/fontawesome/solid/atlas.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/atom.svg b/bes_theme/.icons/fontawesome/solid/atom.svg deleted file mode 100644 index 160c887d..00000000 --- a/bes_theme/.icons/fontawesome/solid/atom.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/audio-description.svg b/bes_theme/.icons/fontawesome/solid/audio-description.svg deleted file mode 100644 index 8ce3a451..00000000 --- a/bes_theme/.icons/fontawesome/solid/audio-description.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/award.svg b/bes_theme/.icons/fontawesome/solid/award.svg deleted file mode 100644 index a8c9de1d..00000000 --- a/bes_theme/.icons/fontawesome/solid/award.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/baby-carriage.svg b/bes_theme/.icons/fontawesome/solid/baby-carriage.svg deleted file mode 100644 index e8dd92b8..00000000 --- a/bes_theme/.icons/fontawesome/solid/baby-carriage.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/baby.svg b/bes_theme/.icons/fontawesome/solid/baby.svg deleted file mode 100644 index e0dc1e83..00000000 --- a/bes_theme/.icons/fontawesome/solid/baby.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/backspace.svg b/bes_theme/.icons/fontawesome/solid/backspace.svg deleted file mode 100644 index 078a9fba..00000000 --- a/bes_theme/.icons/fontawesome/solid/backspace.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/backward.svg b/bes_theme/.icons/fontawesome/solid/backward.svg deleted file mode 100644 index 04c681c8..00000000 --- a/bes_theme/.icons/fontawesome/solid/backward.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/bacon.svg b/bes_theme/.icons/fontawesome/solid/bacon.svg deleted file mode 100644 index e63f67e3..00000000 --- a/bes_theme/.icons/fontawesome/solid/bacon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/bacteria.svg b/bes_theme/.icons/fontawesome/solid/bacteria.svg deleted file mode 100644 index 3c7cd09a..00000000 --- a/bes_theme/.icons/fontawesome/solid/bacteria.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/bacterium.svg b/bes_theme/.icons/fontawesome/solid/bacterium.svg deleted file mode 100644 index a5bf4a84..00000000 --- a/bes_theme/.icons/fontawesome/solid/bacterium.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/bahai.svg b/bes_theme/.icons/fontawesome/solid/bahai.svg deleted file mode 100644 index 0b373cd1..00000000 --- a/bes_theme/.icons/fontawesome/solid/bahai.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/balance-scale-left.svg b/bes_theme/.icons/fontawesome/solid/balance-scale-left.svg deleted file mode 100644 index e7b692e6..00000000 --- a/bes_theme/.icons/fontawesome/solid/balance-scale-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/balance-scale-right.svg b/bes_theme/.icons/fontawesome/solid/balance-scale-right.svg deleted file mode 100644 index 7b06261d..00000000 --- a/bes_theme/.icons/fontawesome/solid/balance-scale-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/balance-scale.svg b/bes_theme/.icons/fontawesome/solid/balance-scale.svg deleted file mode 100644 index e526521e..00000000 --- a/bes_theme/.icons/fontawesome/solid/balance-scale.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/ban.svg b/bes_theme/.icons/fontawesome/solid/ban.svg deleted file mode 100644 index 85f7f06f..00000000 --- a/bes_theme/.icons/fontawesome/solid/ban.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/band-aid.svg b/bes_theme/.icons/fontawesome/solid/band-aid.svg deleted file mode 100644 index 4d0f5591..00000000 --- a/bes_theme/.icons/fontawesome/solid/band-aid.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/barcode.svg b/bes_theme/.icons/fontawesome/solid/barcode.svg deleted file mode 100644 index 58cbee7d..00000000 --- a/bes_theme/.icons/fontawesome/solid/barcode.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/bars.svg b/bes_theme/.icons/fontawesome/solid/bars.svg deleted file mode 100644 index 87d79f9e..00000000 --- a/bes_theme/.icons/fontawesome/solid/bars.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/baseball-ball.svg b/bes_theme/.icons/fontawesome/solid/baseball-ball.svg deleted file mode 100644 index 2ae3c4a0..00000000 --- a/bes_theme/.icons/fontawesome/solid/baseball-ball.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/basketball-ball.svg b/bes_theme/.icons/fontawesome/solid/basketball-ball.svg deleted file mode 100644 index 405f1853..00000000 --- a/bes_theme/.icons/fontawesome/solid/basketball-ball.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/bath.svg b/bes_theme/.icons/fontawesome/solid/bath.svg deleted file mode 100644 index b2d333aa..00000000 --- a/bes_theme/.icons/fontawesome/solid/bath.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/battery-empty.svg b/bes_theme/.icons/fontawesome/solid/battery-empty.svg deleted file mode 100644 index b4a57fac..00000000 --- a/bes_theme/.icons/fontawesome/solid/battery-empty.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/battery-full.svg b/bes_theme/.icons/fontawesome/solid/battery-full.svg deleted file mode 100644 index 056b8189..00000000 --- a/bes_theme/.icons/fontawesome/solid/battery-full.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/battery-half.svg b/bes_theme/.icons/fontawesome/solid/battery-half.svg deleted file mode 100644 index 16a8fc33..00000000 --- a/bes_theme/.icons/fontawesome/solid/battery-half.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/battery-quarter.svg b/bes_theme/.icons/fontawesome/solid/battery-quarter.svg deleted file mode 100644 index d48ca28b..00000000 --- a/bes_theme/.icons/fontawesome/solid/battery-quarter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/battery-three-quarters.svg b/bes_theme/.icons/fontawesome/solid/battery-three-quarters.svg deleted file mode 100644 index 43fc35ad..00000000 --- a/bes_theme/.icons/fontawesome/solid/battery-three-quarters.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/bed.svg b/bes_theme/.icons/fontawesome/solid/bed.svg deleted file mode 100644 index d70b0221..00000000 --- a/bes_theme/.icons/fontawesome/solid/bed.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/beer.svg b/bes_theme/.icons/fontawesome/solid/beer.svg deleted file mode 100644 index 692431b1..00000000 --- a/bes_theme/.icons/fontawesome/solid/beer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/bell-slash.svg b/bes_theme/.icons/fontawesome/solid/bell-slash.svg deleted file mode 100644 index d76c3572..00000000 --- a/bes_theme/.icons/fontawesome/solid/bell-slash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/bell.svg b/bes_theme/.icons/fontawesome/solid/bell.svg deleted file mode 100644 index e45be58c..00000000 --- a/bes_theme/.icons/fontawesome/solid/bell.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/bezier-curve.svg b/bes_theme/.icons/fontawesome/solid/bezier-curve.svg deleted file mode 100644 index ca10d7a7..00000000 --- a/bes_theme/.icons/fontawesome/solid/bezier-curve.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/bible.svg b/bes_theme/.icons/fontawesome/solid/bible.svg deleted file mode 100644 index 8c6c9532..00000000 --- a/bes_theme/.icons/fontawesome/solid/bible.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/bicycle.svg b/bes_theme/.icons/fontawesome/solid/bicycle.svg deleted file mode 100644 index 4ef7ded2..00000000 --- a/bes_theme/.icons/fontawesome/solid/bicycle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/biking.svg b/bes_theme/.icons/fontawesome/solid/biking.svg deleted file mode 100644 index 8fb1d71b..00000000 --- a/bes_theme/.icons/fontawesome/solid/biking.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/binoculars.svg b/bes_theme/.icons/fontawesome/solid/binoculars.svg deleted file mode 100644 index d09ca73b..00000000 --- a/bes_theme/.icons/fontawesome/solid/binoculars.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/biohazard.svg b/bes_theme/.icons/fontawesome/solid/biohazard.svg deleted file mode 100644 index fddaee62..00000000 --- a/bes_theme/.icons/fontawesome/solid/biohazard.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/birthday-cake.svg b/bes_theme/.icons/fontawesome/solid/birthday-cake.svg deleted file mode 100644 index 50e92ae4..00000000 --- a/bes_theme/.icons/fontawesome/solid/birthday-cake.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/blender-phone.svg b/bes_theme/.icons/fontawesome/solid/blender-phone.svg deleted file mode 100644 index 29733d67..00000000 --- a/bes_theme/.icons/fontawesome/solid/blender-phone.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/blender.svg b/bes_theme/.icons/fontawesome/solid/blender.svg deleted file mode 100644 index 8357ad27..00000000 --- a/bes_theme/.icons/fontawesome/solid/blender.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/blind.svg b/bes_theme/.icons/fontawesome/solid/blind.svg deleted file mode 100644 index 7018eb42..00000000 --- a/bes_theme/.icons/fontawesome/solid/blind.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/blog.svg b/bes_theme/.icons/fontawesome/solid/blog.svg deleted file mode 100644 index c9f8bb5b..00000000 --- a/bes_theme/.icons/fontawesome/solid/blog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/bold.svg b/bes_theme/.icons/fontawesome/solid/bold.svg deleted file mode 100644 index d21f0d03..00000000 --- a/bes_theme/.icons/fontawesome/solid/bold.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/bolt.svg b/bes_theme/.icons/fontawesome/solid/bolt.svg deleted file mode 100644 index 4654a1eb..00000000 --- a/bes_theme/.icons/fontawesome/solid/bolt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/bomb.svg b/bes_theme/.icons/fontawesome/solid/bomb.svg deleted file mode 100644 index 92eea40d..00000000 --- a/bes_theme/.icons/fontawesome/solid/bomb.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/bone.svg b/bes_theme/.icons/fontawesome/solid/bone.svg deleted file mode 100644 index 1d43763e..00000000 --- a/bes_theme/.icons/fontawesome/solid/bone.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/bong.svg b/bes_theme/.icons/fontawesome/solid/bong.svg deleted file mode 100644 index 00d03412..00000000 --- a/bes_theme/.icons/fontawesome/solid/bong.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/book-dead.svg b/bes_theme/.icons/fontawesome/solid/book-dead.svg deleted file mode 100644 index 76a2ce39..00000000 --- a/bes_theme/.icons/fontawesome/solid/book-dead.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/book-medical.svg b/bes_theme/.icons/fontawesome/solid/book-medical.svg deleted file mode 100644 index e3c6c717..00000000 --- a/bes_theme/.icons/fontawesome/solid/book-medical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/book-open.svg b/bes_theme/.icons/fontawesome/solid/book-open.svg deleted file mode 100644 index 342917db..00000000 --- a/bes_theme/.icons/fontawesome/solid/book-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/book-reader.svg b/bes_theme/.icons/fontawesome/solid/book-reader.svg deleted file mode 100644 index 4d39dcbc..00000000 --- a/bes_theme/.icons/fontawesome/solid/book-reader.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/book.svg b/bes_theme/.icons/fontawesome/solid/book.svg deleted file mode 100644 index d27fdae7..00000000 --- a/bes_theme/.icons/fontawesome/solid/book.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/bookmark.svg b/bes_theme/.icons/fontawesome/solid/bookmark.svg deleted file mode 100644 index d1c8e4a2..00000000 --- a/bes_theme/.icons/fontawesome/solid/bookmark.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/border-all.svg b/bes_theme/.icons/fontawesome/solid/border-all.svg deleted file mode 100644 index 6e912459..00000000 --- a/bes_theme/.icons/fontawesome/solid/border-all.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/border-none.svg b/bes_theme/.icons/fontawesome/solid/border-none.svg deleted file mode 100644 index b21c8a94..00000000 --- a/bes_theme/.icons/fontawesome/solid/border-none.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/border-style.svg b/bes_theme/.icons/fontawesome/solid/border-style.svg deleted file mode 100644 index fdc9a05a..00000000 --- a/bes_theme/.icons/fontawesome/solid/border-style.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/bowling-ball.svg b/bes_theme/.icons/fontawesome/solid/bowling-ball.svg deleted file mode 100644 index 59602f68..00000000 --- a/bes_theme/.icons/fontawesome/solid/bowling-ball.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/box-open.svg b/bes_theme/.icons/fontawesome/solid/box-open.svg deleted file mode 100644 index 3e32eb9f..00000000 --- a/bes_theme/.icons/fontawesome/solid/box-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/box-tissue.svg b/bes_theme/.icons/fontawesome/solid/box-tissue.svg deleted file mode 100644 index 4f70359b..00000000 --- a/bes_theme/.icons/fontawesome/solid/box-tissue.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/box.svg b/bes_theme/.icons/fontawesome/solid/box.svg deleted file mode 100644 index fc2f6b2f..00000000 --- a/bes_theme/.icons/fontawesome/solid/box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/boxes.svg b/bes_theme/.icons/fontawesome/solid/boxes.svg deleted file mode 100644 index b2da05b6..00000000 --- a/bes_theme/.icons/fontawesome/solid/boxes.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/braille.svg b/bes_theme/.icons/fontawesome/solid/braille.svg deleted file mode 100644 index 08f034ff..00000000 --- a/bes_theme/.icons/fontawesome/solid/braille.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/brain.svg b/bes_theme/.icons/fontawesome/solid/brain.svg deleted file mode 100644 index dee0d37f..00000000 --- a/bes_theme/.icons/fontawesome/solid/brain.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/bread-slice.svg b/bes_theme/.icons/fontawesome/solid/bread-slice.svg deleted file mode 100644 index 9b62b940..00000000 --- a/bes_theme/.icons/fontawesome/solid/bread-slice.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/briefcase-medical.svg b/bes_theme/.icons/fontawesome/solid/briefcase-medical.svg deleted file mode 100644 index f1404740..00000000 --- a/bes_theme/.icons/fontawesome/solid/briefcase-medical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/briefcase.svg b/bes_theme/.icons/fontawesome/solid/briefcase.svg deleted file mode 100644 index 8c2882a0..00000000 --- a/bes_theme/.icons/fontawesome/solid/briefcase.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/broadcast-tower.svg b/bes_theme/.icons/fontawesome/solid/broadcast-tower.svg deleted file mode 100644 index f121b5cc..00000000 --- a/bes_theme/.icons/fontawesome/solid/broadcast-tower.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/broom.svg b/bes_theme/.icons/fontawesome/solid/broom.svg deleted file mode 100644 index fe8428cc..00000000 --- a/bes_theme/.icons/fontawesome/solid/broom.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/brush.svg b/bes_theme/.icons/fontawesome/solid/brush.svg deleted file mode 100644 index e42b048b..00000000 --- a/bes_theme/.icons/fontawesome/solid/brush.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/bug.svg b/bes_theme/.icons/fontawesome/solid/bug.svg deleted file mode 100644 index b9185530..00000000 --- a/bes_theme/.icons/fontawesome/solid/bug.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/building.svg b/bes_theme/.icons/fontawesome/solid/building.svg deleted file mode 100644 index a109377b..00000000 --- a/bes_theme/.icons/fontawesome/solid/building.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/bullhorn.svg b/bes_theme/.icons/fontawesome/solid/bullhorn.svg deleted file mode 100644 index 9d7994cf..00000000 --- a/bes_theme/.icons/fontawesome/solid/bullhorn.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/bullseye.svg b/bes_theme/.icons/fontawesome/solid/bullseye.svg deleted file mode 100644 index ec402e64..00000000 --- a/bes_theme/.icons/fontawesome/solid/bullseye.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/burn.svg b/bes_theme/.icons/fontawesome/solid/burn.svg deleted file mode 100644 index 44183cf1..00000000 --- a/bes_theme/.icons/fontawesome/solid/burn.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/bus-alt.svg b/bes_theme/.icons/fontawesome/solid/bus-alt.svg deleted file mode 100644 index bfaad721..00000000 --- a/bes_theme/.icons/fontawesome/solid/bus-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/bus.svg b/bes_theme/.icons/fontawesome/solid/bus.svg deleted file mode 100644 index 040c4a6b..00000000 --- a/bes_theme/.icons/fontawesome/solid/bus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/business-time.svg b/bes_theme/.icons/fontawesome/solid/business-time.svg deleted file mode 100644 index 74b5a1df..00000000 --- a/bes_theme/.icons/fontawesome/solid/business-time.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/calculator.svg b/bes_theme/.icons/fontawesome/solid/calculator.svg deleted file mode 100644 index 9b367dfa..00000000 --- a/bes_theme/.icons/fontawesome/solid/calculator.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/calendar-alt.svg b/bes_theme/.icons/fontawesome/solid/calendar-alt.svg deleted file mode 100644 index b07a0911..00000000 --- a/bes_theme/.icons/fontawesome/solid/calendar-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/calendar-check.svg b/bes_theme/.icons/fontawesome/solid/calendar-check.svg deleted file mode 100644 index 264582b3..00000000 --- a/bes_theme/.icons/fontawesome/solid/calendar-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/calendar-day.svg b/bes_theme/.icons/fontawesome/solid/calendar-day.svg deleted file mode 100644 index 20f9fa09..00000000 --- a/bes_theme/.icons/fontawesome/solid/calendar-day.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/calendar-minus.svg b/bes_theme/.icons/fontawesome/solid/calendar-minus.svg deleted file mode 100644 index 78b8a3c0..00000000 --- a/bes_theme/.icons/fontawesome/solid/calendar-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/calendar-plus.svg b/bes_theme/.icons/fontawesome/solid/calendar-plus.svg deleted file mode 100644 index 5e1b3382..00000000 --- a/bes_theme/.icons/fontawesome/solid/calendar-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/calendar-times.svg b/bes_theme/.icons/fontawesome/solid/calendar-times.svg deleted file mode 100644 index 273aabff..00000000 --- a/bes_theme/.icons/fontawesome/solid/calendar-times.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/calendar-week.svg b/bes_theme/.icons/fontawesome/solid/calendar-week.svg deleted file mode 100644 index 1bb6c949..00000000 --- a/bes_theme/.icons/fontawesome/solid/calendar-week.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/calendar.svg b/bes_theme/.icons/fontawesome/solid/calendar.svg deleted file mode 100644 index 2d3eefe8..00000000 --- a/bes_theme/.icons/fontawesome/solid/calendar.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/camera-retro.svg b/bes_theme/.icons/fontawesome/solid/camera-retro.svg deleted file mode 100644 index 67b7cfd5..00000000 --- a/bes_theme/.icons/fontawesome/solid/camera-retro.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/camera.svg b/bes_theme/.icons/fontawesome/solid/camera.svg deleted file mode 100644 index dc9f6081..00000000 --- a/bes_theme/.icons/fontawesome/solid/camera.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/campground.svg b/bes_theme/.icons/fontawesome/solid/campground.svg deleted file mode 100644 index 39719580..00000000 --- a/bes_theme/.icons/fontawesome/solid/campground.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/candy-cane.svg b/bes_theme/.icons/fontawesome/solid/candy-cane.svg deleted file mode 100644 index 2a78c936..00000000 --- a/bes_theme/.icons/fontawesome/solid/candy-cane.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/cannabis.svg b/bes_theme/.icons/fontawesome/solid/cannabis.svg deleted file mode 100644 index 20ff4cd3..00000000 --- a/bes_theme/.icons/fontawesome/solid/cannabis.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/capsules.svg b/bes_theme/.icons/fontawesome/solid/capsules.svg deleted file mode 100644 index 7f3a0b1a..00000000 --- a/bes_theme/.icons/fontawesome/solid/capsules.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/car-alt.svg b/bes_theme/.icons/fontawesome/solid/car-alt.svg deleted file mode 100644 index fa581ce4..00000000 --- a/bes_theme/.icons/fontawesome/solid/car-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/car-battery.svg b/bes_theme/.icons/fontawesome/solid/car-battery.svg deleted file mode 100644 index 537e7d29..00000000 --- a/bes_theme/.icons/fontawesome/solid/car-battery.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/car-crash.svg b/bes_theme/.icons/fontawesome/solid/car-crash.svg deleted file mode 100644 index 7bbddbd9..00000000 --- a/bes_theme/.icons/fontawesome/solid/car-crash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/car-side.svg b/bes_theme/.icons/fontawesome/solid/car-side.svg deleted file mode 100644 index 9d5ac6c4..00000000 --- a/bes_theme/.icons/fontawesome/solid/car-side.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/car.svg b/bes_theme/.icons/fontawesome/solid/car.svg deleted file mode 100644 index 9b238990..00000000 --- a/bes_theme/.icons/fontawesome/solid/car.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/caravan.svg b/bes_theme/.icons/fontawesome/solid/caravan.svg deleted file mode 100644 index 314a9de0..00000000 --- a/bes_theme/.icons/fontawesome/solid/caravan.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/caret-down.svg b/bes_theme/.icons/fontawesome/solid/caret-down.svg deleted file mode 100644 index b3ee2ea9..00000000 --- a/bes_theme/.icons/fontawesome/solid/caret-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/caret-left.svg b/bes_theme/.icons/fontawesome/solid/caret-left.svg deleted file mode 100644 index 36d7191a..00000000 --- a/bes_theme/.icons/fontawesome/solid/caret-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/caret-right.svg b/bes_theme/.icons/fontawesome/solid/caret-right.svg deleted file mode 100644 index bcd4cd10..00000000 --- a/bes_theme/.icons/fontawesome/solid/caret-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/caret-square-down.svg b/bes_theme/.icons/fontawesome/solid/caret-square-down.svg deleted file mode 100644 index 87a4f7a0..00000000 --- a/bes_theme/.icons/fontawesome/solid/caret-square-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/caret-square-left.svg b/bes_theme/.icons/fontawesome/solid/caret-square-left.svg deleted file mode 100644 index 856dcac9..00000000 --- a/bes_theme/.icons/fontawesome/solid/caret-square-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/caret-square-right.svg b/bes_theme/.icons/fontawesome/solid/caret-square-right.svg deleted file mode 100644 index f3701c1f..00000000 --- a/bes_theme/.icons/fontawesome/solid/caret-square-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/caret-square-up.svg b/bes_theme/.icons/fontawesome/solid/caret-square-up.svg deleted file mode 100644 index 73c73f6e..00000000 --- a/bes_theme/.icons/fontawesome/solid/caret-square-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/caret-up.svg b/bes_theme/.icons/fontawesome/solid/caret-up.svg deleted file mode 100644 index b4c7e548..00000000 --- a/bes_theme/.icons/fontawesome/solid/caret-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/carrot.svg b/bes_theme/.icons/fontawesome/solid/carrot.svg deleted file mode 100644 index cedac22b..00000000 --- a/bes_theme/.icons/fontawesome/solid/carrot.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/cart-arrow-down.svg b/bes_theme/.icons/fontawesome/solid/cart-arrow-down.svg deleted file mode 100644 index 69e39712..00000000 --- a/bes_theme/.icons/fontawesome/solid/cart-arrow-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/cart-plus.svg b/bes_theme/.icons/fontawesome/solid/cart-plus.svg deleted file mode 100644 index 7f5ab7f5..00000000 --- a/bes_theme/.icons/fontawesome/solid/cart-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/cash-register.svg b/bes_theme/.icons/fontawesome/solid/cash-register.svg deleted file mode 100644 index e785cebb..00000000 --- a/bes_theme/.icons/fontawesome/solid/cash-register.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/cat.svg b/bes_theme/.icons/fontawesome/solid/cat.svg deleted file mode 100644 index 486bbcc4..00000000 --- a/bes_theme/.icons/fontawesome/solid/cat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/certificate.svg b/bes_theme/.icons/fontawesome/solid/certificate.svg deleted file mode 100644 index 55b91f6b..00000000 --- a/bes_theme/.icons/fontawesome/solid/certificate.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/chair.svg b/bes_theme/.icons/fontawesome/solid/chair.svg deleted file mode 100644 index 66b9fa1c..00000000 --- a/bes_theme/.icons/fontawesome/solid/chair.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/chalkboard-teacher.svg b/bes_theme/.icons/fontawesome/solid/chalkboard-teacher.svg deleted file mode 100644 index ce1d9dc5..00000000 --- a/bes_theme/.icons/fontawesome/solid/chalkboard-teacher.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/chalkboard.svg b/bes_theme/.icons/fontawesome/solid/chalkboard.svg deleted file mode 100644 index 6ec7e00d..00000000 --- a/bes_theme/.icons/fontawesome/solid/chalkboard.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/charging-station.svg b/bes_theme/.icons/fontawesome/solid/charging-station.svg deleted file mode 100644 index 5ef3009d..00000000 --- a/bes_theme/.icons/fontawesome/solid/charging-station.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/chart-area.svg b/bes_theme/.icons/fontawesome/solid/chart-area.svg deleted file mode 100644 index 1655c492..00000000 --- a/bes_theme/.icons/fontawesome/solid/chart-area.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/chart-bar.svg b/bes_theme/.icons/fontawesome/solid/chart-bar.svg deleted file mode 100644 index e08c6f7c..00000000 --- a/bes_theme/.icons/fontawesome/solid/chart-bar.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/chart-line.svg b/bes_theme/.icons/fontawesome/solid/chart-line.svg deleted file mode 100644 index 5a0e06fe..00000000 --- a/bes_theme/.icons/fontawesome/solid/chart-line.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/chart-pie.svg b/bes_theme/.icons/fontawesome/solid/chart-pie.svg deleted file mode 100644 index e1b476bd..00000000 --- a/bes_theme/.icons/fontawesome/solid/chart-pie.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/check-circle.svg b/bes_theme/.icons/fontawesome/solid/check-circle.svg deleted file mode 100644 index bdda551e..00000000 --- a/bes_theme/.icons/fontawesome/solid/check-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/check-double.svg b/bes_theme/.icons/fontawesome/solid/check-double.svg deleted file mode 100644 index 73f6ee08..00000000 --- a/bes_theme/.icons/fontawesome/solid/check-double.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/check-square.svg b/bes_theme/.icons/fontawesome/solid/check-square.svg deleted file mode 100644 index 45891e86..00000000 --- a/bes_theme/.icons/fontawesome/solid/check-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/check.svg b/bes_theme/.icons/fontawesome/solid/check.svg deleted file mode 100644 index 9b830a59..00000000 --- a/bes_theme/.icons/fontawesome/solid/check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/cheese.svg b/bes_theme/.icons/fontawesome/solid/cheese.svg deleted file mode 100644 index 8ffcac48..00000000 --- a/bes_theme/.icons/fontawesome/solid/cheese.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/chess-bishop.svg b/bes_theme/.icons/fontawesome/solid/chess-bishop.svg deleted file mode 100644 index 1016f12a..00000000 --- a/bes_theme/.icons/fontawesome/solid/chess-bishop.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/chess-board.svg b/bes_theme/.icons/fontawesome/solid/chess-board.svg deleted file mode 100644 index 8f30ead9..00000000 --- a/bes_theme/.icons/fontawesome/solid/chess-board.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/chess-king.svg b/bes_theme/.icons/fontawesome/solid/chess-king.svg deleted file mode 100644 index 35b0b346..00000000 --- a/bes_theme/.icons/fontawesome/solid/chess-king.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/chess-knight.svg b/bes_theme/.icons/fontawesome/solid/chess-knight.svg deleted file mode 100644 index 17258957..00000000 --- a/bes_theme/.icons/fontawesome/solid/chess-knight.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/chess-pawn.svg b/bes_theme/.icons/fontawesome/solid/chess-pawn.svg deleted file mode 100644 index d56f83ec..00000000 --- a/bes_theme/.icons/fontawesome/solid/chess-pawn.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/chess-queen.svg b/bes_theme/.icons/fontawesome/solid/chess-queen.svg deleted file mode 100644 index 75139a00..00000000 --- a/bes_theme/.icons/fontawesome/solid/chess-queen.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/chess-rook.svg b/bes_theme/.icons/fontawesome/solid/chess-rook.svg deleted file mode 100644 index f279758c..00000000 --- a/bes_theme/.icons/fontawesome/solid/chess-rook.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/chess.svg b/bes_theme/.icons/fontawesome/solid/chess.svg deleted file mode 100644 index 255d78c4..00000000 --- a/bes_theme/.icons/fontawesome/solid/chess.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/chevron-circle-down.svg b/bes_theme/.icons/fontawesome/solid/chevron-circle-down.svg deleted file mode 100644 index 4be7cea6..00000000 --- a/bes_theme/.icons/fontawesome/solid/chevron-circle-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/chevron-circle-left.svg b/bes_theme/.icons/fontawesome/solid/chevron-circle-left.svg deleted file mode 100644 index 60b5ac6e..00000000 --- a/bes_theme/.icons/fontawesome/solid/chevron-circle-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/chevron-circle-right.svg b/bes_theme/.icons/fontawesome/solid/chevron-circle-right.svg deleted file mode 100644 index 93350ee7..00000000 --- a/bes_theme/.icons/fontawesome/solid/chevron-circle-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/chevron-circle-up.svg b/bes_theme/.icons/fontawesome/solid/chevron-circle-up.svg deleted file mode 100644 index d973a5df..00000000 --- a/bes_theme/.icons/fontawesome/solid/chevron-circle-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/chevron-down.svg b/bes_theme/.icons/fontawesome/solid/chevron-down.svg deleted file mode 100644 index c412cad3..00000000 --- a/bes_theme/.icons/fontawesome/solid/chevron-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/chevron-left.svg b/bes_theme/.icons/fontawesome/solid/chevron-left.svg deleted file mode 100644 index 112a291b..00000000 --- a/bes_theme/.icons/fontawesome/solid/chevron-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/chevron-right.svg b/bes_theme/.icons/fontawesome/solid/chevron-right.svg deleted file mode 100644 index 654a28da..00000000 --- a/bes_theme/.icons/fontawesome/solid/chevron-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/chevron-up.svg b/bes_theme/.icons/fontawesome/solid/chevron-up.svg deleted file mode 100644 index 32213a13..00000000 --- a/bes_theme/.icons/fontawesome/solid/chevron-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/child.svg b/bes_theme/.icons/fontawesome/solid/child.svg deleted file mode 100644 index 8bbc718b..00000000 --- a/bes_theme/.icons/fontawesome/solid/child.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/church.svg b/bes_theme/.icons/fontawesome/solid/church.svg deleted file mode 100644 index bfbf8791..00000000 --- a/bes_theme/.icons/fontawesome/solid/church.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/circle-notch.svg b/bes_theme/.icons/fontawesome/solid/circle-notch.svg deleted file mode 100644 index 3cc8c0b5..00000000 --- a/bes_theme/.icons/fontawesome/solid/circle-notch.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/circle.svg b/bes_theme/.icons/fontawesome/solid/circle.svg deleted file mode 100644 index c2db0b25..00000000 --- a/bes_theme/.icons/fontawesome/solid/circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/city.svg b/bes_theme/.icons/fontawesome/solid/city.svg deleted file mode 100644 index a27d3116..00000000 --- a/bes_theme/.icons/fontawesome/solid/city.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/clinic-medical.svg b/bes_theme/.icons/fontawesome/solid/clinic-medical.svg deleted file mode 100644 index d02dab7e..00000000 --- a/bes_theme/.icons/fontawesome/solid/clinic-medical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/clipboard-check.svg b/bes_theme/.icons/fontawesome/solid/clipboard-check.svg deleted file mode 100644 index 2b228ac2..00000000 --- a/bes_theme/.icons/fontawesome/solid/clipboard-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/clipboard-list.svg b/bes_theme/.icons/fontawesome/solid/clipboard-list.svg deleted file mode 100644 index f8421f08..00000000 --- a/bes_theme/.icons/fontawesome/solid/clipboard-list.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/clipboard.svg b/bes_theme/.icons/fontawesome/solid/clipboard.svg deleted file mode 100644 index 1980a2bf..00000000 --- a/bes_theme/.icons/fontawesome/solid/clipboard.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/clock.svg b/bes_theme/.icons/fontawesome/solid/clock.svg deleted file mode 100644 index 9038062e..00000000 --- a/bes_theme/.icons/fontawesome/solid/clock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/clone.svg b/bes_theme/.icons/fontawesome/solid/clone.svg deleted file mode 100644 index 0f40db07..00000000 --- a/bes_theme/.icons/fontawesome/solid/clone.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/closed-captioning.svg b/bes_theme/.icons/fontawesome/solid/closed-captioning.svg deleted file mode 100644 index f0c68d04..00000000 --- a/bes_theme/.icons/fontawesome/solid/closed-captioning.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/cloud-download-alt.svg b/bes_theme/.icons/fontawesome/solid/cloud-download-alt.svg deleted file mode 100644 index 3cd62ac2..00000000 --- a/bes_theme/.icons/fontawesome/solid/cloud-download-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/cloud-meatball.svg b/bes_theme/.icons/fontawesome/solid/cloud-meatball.svg deleted file mode 100644 index fe0a3a98..00000000 --- a/bes_theme/.icons/fontawesome/solid/cloud-meatball.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/cloud-moon-rain.svg b/bes_theme/.icons/fontawesome/solid/cloud-moon-rain.svg deleted file mode 100644 index dc164ec4..00000000 --- a/bes_theme/.icons/fontawesome/solid/cloud-moon-rain.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/cloud-moon.svg b/bes_theme/.icons/fontawesome/solid/cloud-moon.svg deleted file mode 100644 index 2caccfb1..00000000 --- a/bes_theme/.icons/fontawesome/solid/cloud-moon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/cloud-rain.svg b/bes_theme/.icons/fontawesome/solid/cloud-rain.svg deleted file mode 100644 index 766e9ae9..00000000 --- a/bes_theme/.icons/fontawesome/solid/cloud-rain.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/cloud-showers-heavy.svg b/bes_theme/.icons/fontawesome/solid/cloud-showers-heavy.svg deleted file mode 100644 index 9b6d5b6a..00000000 --- a/bes_theme/.icons/fontawesome/solid/cloud-showers-heavy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/cloud-sun-rain.svg b/bes_theme/.icons/fontawesome/solid/cloud-sun-rain.svg deleted file mode 100644 index eedd183b..00000000 --- a/bes_theme/.icons/fontawesome/solid/cloud-sun-rain.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/cloud-sun.svg b/bes_theme/.icons/fontawesome/solid/cloud-sun.svg deleted file mode 100644 index e4afd9ff..00000000 --- a/bes_theme/.icons/fontawesome/solid/cloud-sun.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/cloud-upload-alt.svg b/bes_theme/.icons/fontawesome/solid/cloud-upload-alt.svg deleted file mode 100644 index 8cf98e90..00000000 --- a/bes_theme/.icons/fontawesome/solid/cloud-upload-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/cloud.svg b/bes_theme/.icons/fontawesome/solid/cloud.svg deleted file mode 100644 index 38d2dc53..00000000 --- a/bes_theme/.icons/fontawesome/solid/cloud.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/cocktail.svg b/bes_theme/.icons/fontawesome/solid/cocktail.svg deleted file mode 100644 index b630000b..00000000 --- a/bes_theme/.icons/fontawesome/solid/cocktail.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/code-branch.svg b/bes_theme/.icons/fontawesome/solid/code-branch.svg deleted file mode 100644 index 0f33c5c5..00000000 --- a/bes_theme/.icons/fontawesome/solid/code-branch.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/code.svg b/bes_theme/.icons/fontawesome/solid/code.svg deleted file mode 100644 index 389d6065..00000000 --- a/bes_theme/.icons/fontawesome/solid/code.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/coffee.svg b/bes_theme/.icons/fontawesome/solid/coffee.svg deleted file mode 100644 index af4c0247..00000000 --- a/bes_theme/.icons/fontawesome/solid/coffee.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/cog.svg b/bes_theme/.icons/fontawesome/solid/cog.svg deleted file mode 100644 index 53ccb519..00000000 --- a/bes_theme/.icons/fontawesome/solid/cog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/cogs.svg b/bes_theme/.icons/fontawesome/solid/cogs.svg deleted file mode 100644 index 0eea3329..00000000 --- a/bes_theme/.icons/fontawesome/solid/cogs.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/coins.svg b/bes_theme/.icons/fontawesome/solid/coins.svg deleted file mode 100644 index 511b0331..00000000 --- a/bes_theme/.icons/fontawesome/solid/coins.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/columns.svg b/bes_theme/.icons/fontawesome/solid/columns.svg deleted file mode 100644 index 84ec2a09..00000000 --- a/bes_theme/.icons/fontawesome/solid/columns.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/comment-alt.svg b/bes_theme/.icons/fontawesome/solid/comment-alt.svg deleted file mode 100644 index 5d81f790..00000000 --- a/bes_theme/.icons/fontawesome/solid/comment-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/comment-dollar.svg b/bes_theme/.icons/fontawesome/solid/comment-dollar.svg deleted file mode 100644 index c77a6f06..00000000 --- a/bes_theme/.icons/fontawesome/solid/comment-dollar.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/comment-dots.svg b/bes_theme/.icons/fontawesome/solid/comment-dots.svg deleted file mode 100644 index 5866e419..00000000 --- a/bes_theme/.icons/fontawesome/solid/comment-dots.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/comment-medical.svg b/bes_theme/.icons/fontawesome/solid/comment-medical.svg deleted file mode 100644 index 8bb1e330..00000000 --- a/bes_theme/.icons/fontawesome/solid/comment-medical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/comment-slash.svg b/bes_theme/.icons/fontawesome/solid/comment-slash.svg deleted file mode 100644 index e1307f7e..00000000 --- a/bes_theme/.icons/fontawesome/solid/comment-slash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/comment.svg b/bes_theme/.icons/fontawesome/solid/comment.svg deleted file mode 100644 index f6332836..00000000 --- a/bes_theme/.icons/fontawesome/solid/comment.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/comments-dollar.svg b/bes_theme/.icons/fontawesome/solid/comments-dollar.svg deleted file mode 100644 index aacfa193..00000000 --- a/bes_theme/.icons/fontawesome/solid/comments-dollar.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/comments.svg b/bes_theme/.icons/fontawesome/solid/comments.svg deleted file mode 100644 index 2ea7897c..00000000 --- a/bes_theme/.icons/fontawesome/solid/comments.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/compact-disc.svg b/bes_theme/.icons/fontawesome/solid/compact-disc.svg deleted file mode 100644 index 7a583fce..00000000 --- a/bes_theme/.icons/fontawesome/solid/compact-disc.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/compass.svg b/bes_theme/.icons/fontawesome/solid/compass.svg deleted file mode 100644 index e7f9cb9a..00000000 --- a/bes_theme/.icons/fontawesome/solid/compass.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/compress-alt.svg b/bes_theme/.icons/fontawesome/solid/compress-alt.svg deleted file mode 100644 index 8149f64f..00000000 --- a/bes_theme/.icons/fontawesome/solid/compress-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/compress-arrows-alt.svg b/bes_theme/.icons/fontawesome/solid/compress-arrows-alt.svg deleted file mode 100644 index c454d16d..00000000 --- a/bes_theme/.icons/fontawesome/solid/compress-arrows-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/compress.svg b/bes_theme/.icons/fontawesome/solid/compress.svg deleted file mode 100644 index f2faafbf..00000000 --- a/bes_theme/.icons/fontawesome/solid/compress.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/concierge-bell.svg b/bes_theme/.icons/fontawesome/solid/concierge-bell.svg deleted file mode 100644 index 91d12a63..00000000 --- a/bes_theme/.icons/fontawesome/solid/concierge-bell.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/cookie-bite.svg b/bes_theme/.icons/fontawesome/solid/cookie-bite.svg deleted file mode 100644 index 42d56615..00000000 --- a/bes_theme/.icons/fontawesome/solid/cookie-bite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/cookie.svg b/bes_theme/.icons/fontawesome/solid/cookie.svg deleted file mode 100644 index b7514ac8..00000000 --- a/bes_theme/.icons/fontawesome/solid/cookie.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/copy.svg b/bes_theme/.icons/fontawesome/solid/copy.svg deleted file mode 100644 index 02534e7c..00000000 --- a/bes_theme/.icons/fontawesome/solid/copy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/copyright.svg b/bes_theme/.icons/fontawesome/solid/copyright.svg deleted file mode 100644 index eb5d4c61..00000000 --- a/bes_theme/.icons/fontawesome/solid/copyright.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/couch.svg b/bes_theme/.icons/fontawesome/solid/couch.svg deleted file mode 100644 index ba8c3ffb..00000000 --- a/bes_theme/.icons/fontawesome/solid/couch.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/credit-card.svg b/bes_theme/.icons/fontawesome/solid/credit-card.svg deleted file mode 100644 index 676d3586..00000000 --- a/bes_theme/.icons/fontawesome/solid/credit-card.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/crop-alt.svg b/bes_theme/.icons/fontawesome/solid/crop-alt.svg deleted file mode 100644 index aa7438eb..00000000 --- a/bes_theme/.icons/fontawesome/solid/crop-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/crop.svg b/bes_theme/.icons/fontawesome/solid/crop.svg deleted file mode 100644 index 5bd06a92..00000000 --- a/bes_theme/.icons/fontawesome/solid/crop.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/cross.svg b/bes_theme/.icons/fontawesome/solid/cross.svg deleted file mode 100644 index 86113de5..00000000 --- a/bes_theme/.icons/fontawesome/solid/cross.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/crosshairs.svg b/bes_theme/.icons/fontawesome/solid/crosshairs.svg deleted file mode 100644 index 60acd3e2..00000000 --- a/bes_theme/.icons/fontawesome/solid/crosshairs.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/crow.svg b/bes_theme/.icons/fontawesome/solid/crow.svg deleted file mode 100644 index de91410a..00000000 --- a/bes_theme/.icons/fontawesome/solid/crow.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/crown.svg b/bes_theme/.icons/fontawesome/solid/crown.svg deleted file mode 100644 index 03b1f191..00000000 --- a/bes_theme/.icons/fontawesome/solid/crown.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/crutch.svg b/bes_theme/.icons/fontawesome/solid/crutch.svg deleted file mode 100644 index 0b9b68c3..00000000 --- a/bes_theme/.icons/fontawesome/solid/crutch.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/cube.svg b/bes_theme/.icons/fontawesome/solid/cube.svg deleted file mode 100644 index 5e263fa2..00000000 --- a/bes_theme/.icons/fontawesome/solid/cube.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/cubes.svg b/bes_theme/.icons/fontawesome/solid/cubes.svg deleted file mode 100644 index e0600ec2..00000000 --- a/bes_theme/.icons/fontawesome/solid/cubes.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/cut.svg b/bes_theme/.icons/fontawesome/solid/cut.svg deleted file mode 100644 index b7c7b025..00000000 --- a/bes_theme/.icons/fontawesome/solid/cut.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/database.svg b/bes_theme/.icons/fontawesome/solid/database.svg deleted file mode 100644 index a6e4982b..00000000 --- a/bes_theme/.icons/fontawesome/solid/database.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/deaf.svg b/bes_theme/.icons/fontawesome/solid/deaf.svg deleted file mode 100644 index 25a7a86e..00000000 --- a/bes_theme/.icons/fontawesome/solid/deaf.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/democrat.svg b/bes_theme/.icons/fontawesome/solid/democrat.svg deleted file mode 100644 index ff7b2e74..00000000 --- a/bes_theme/.icons/fontawesome/solid/democrat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/desktop.svg b/bes_theme/.icons/fontawesome/solid/desktop.svg deleted file mode 100644 index bba157e8..00000000 --- a/bes_theme/.icons/fontawesome/solid/desktop.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/dharmachakra.svg b/bes_theme/.icons/fontawesome/solid/dharmachakra.svg deleted file mode 100644 index d0469b9a..00000000 --- a/bes_theme/.icons/fontawesome/solid/dharmachakra.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/diagnoses.svg b/bes_theme/.icons/fontawesome/solid/diagnoses.svg deleted file mode 100644 index 8f56e24c..00000000 --- a/bes_theme/.icons/fontawesome/solid/diagnoses.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/dice-d20.svg b/bes_theme/.icons/fontawesome/solid/dice-d20.svg deleted file mode 100644 index 0d768396..00000000 --- a/bes_theme/.icons/fontawesome/solid/dice-d20.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/dice-d6.svg b/bes_theme/.icons/fontawesome/solid/dice-d6.svg deleted file mode 100644 index 6e785e8e..00000000 --- a/bes_theme/.icons/fontawesome/solid/dice-d6.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/dice-five.svg b/bes_theme/.icons/fontawesome/solid/dice-five.svg deleted file mode 100644 index 7fd8c1d2..00000000 --- a/bes_theme/.icons/fontawesome/solid/dice-five.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/dice-four.svg b/bes_theme/.icons/fontawesome/solid/dice-four.svg deleted file mode 100644 index 9cd681bd..00000000 --- a/bes_theme/.icons/fontawesome/solid/dice-four.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/dice-one.svg b/bes_theme/.icons/fontawesome/solid/dice-one.svg deleted file mode 100644 index e5d3b5e1..00000000 --- a/bes_theme/.icons/fontawesome/solid/dice-one.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/dice-six.svg b/bes_theme/.icons/fontawesome/solid/dice-six.svg deleted file mode 100644 index c1ed7cfc..00000000 --- a/bes_theme/.icons/fontawesome/solid/dice-six.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/dice-three.svg b/bes_theme/.icons/fontawesome/solid/dice-three.svg deleted file mode 100644 index c035c804..00000000 --- a/bes_theme/.icons/fontawesome/solid/dice-three.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/dice-two.svg b/bes_theme/.icons/fontawesome/solid/dice-two.svg deleted file mode 100644 index d6528d79..00000000 --- a/bes_theme/.icons/fontawesome/solid/dice-two.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/dice.svg b/bes_theme/.icons/fontawesome/solid/dice.svg deleted file mode 100644 index da8a8123..00000000 --- a/bes_theme/.icons/fontawesome/solid/dice.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/digital-tachograph.svg b/bes_theme/.icons/fontawesome/solid/digital-tachograph.svg deleted file mode 100644 index 65f4a028..00000000 --- a/bes_theme/.icons/fontawesome/solid/digital-tachograph.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/directions.svg b/bes_theme/.icons/fontawesome/solid/directions.svg deleted file mode 100644 index 68cb8e1c..00000000 --- a/bes_theme/.icons/fontawesome/solid/directions.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/disease.svg b/bes_theme/.icons/fontawesome/solid/disease.svg deleted file mode 100644 index f28c6b97..00000000 --- a/bes_theme/.icons/fontawesome/solid/disease.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/divide.svg b/bes_theme/.icons/fontawesome/solid/divide.svg deleted file mode 100644 index cb6d8b6f..00000000 --- a/bes_theme/.icons/fontawesome/solid/divide.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/dizzy.svg b/bes_theme/.icons/fontawesome/solid/dizzy.svg deleted file mode 100644 index 19eb9fe8..00000000 --- a/bes_theme/.icons/fontawesome/solid/dizzy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/dna.svg b/bes_theme/.icons/fontawesome/solid/dna.svg deleted file mode 100644 index 81cddb6a..00000000 --- a/bes_theme/.icons/fontawesome/solid/dna.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/dog.svg b/bes_theme/.icons/fontawesome/solid/dog.svg deleted file mode 100644 index f88b3e06..00000000 --- a/bes_theme/.icons/fontawesome/solid/dog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/dollar-sign.svg b/bes_theme/.icons/fontawesome/solid/dollar-sign.svg deleted file mode 100644 index e503a9c0..00000000 --- a/bes_theme/.icons/fontawesome/solid/dollar-sign.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/dolly-flatbed.svg b/bes_theme/.icons/fontawesome/solid/dolly-flatbed.svg deleted file mode 100644 index bb20bdeb..00000000 --- a/bes_theme/.icons/fontawesome/solid/dolly-flatbed.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/dolly.svg b/bes_theme/.icons/fontawesome/solid/dolly.svg deleted file mode 100644 index 0fe3a517..00000000 --- a/bes_theme/.icons/fontawesome/solid/dolly.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/donate.svg b/bes_theme/.icons/fontawesome/solid/donate.svg deleted file mode 100644 index bacf83e6..00000000 --- a/bes_theme/.icons/fontawesome/solid/donate.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/door-closed.svg b/bes_theme/.icons/fontawesome/solid/door-closed.svg deleted file mode 100644 index 00add341..00000000 --- a/bes_theme/.icons/fontawesome/solid/door-closed.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/door-open.svg b/bes_theme/.icons/fontawesome/solid/door-open.svg deleted file mode 100644 index e246f1fb..00000000 --- a/bes_theme/.icons/fontawesome/solid/door-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/dot-circle.svg b/bes_theme/.icons/fontawesome/solid/dot-circle.svg deleted file mode 100644 index 5cb222dd..00000000 --- a/bes_theme/.icons/fontawesome/solid/dot-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/dove.svg b/bes_theme/.icons/fontawesome/solid/dove.svg deleted file mode 100644 index 86139028..00000000 --- a/bes_theme/.icons/fontawesome/solid/dove.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/download.svg b/bes_theme/.icons/fontawesome/solid/download.svg deleted file mode 100644 index da5eec40..00000000 --- a/bes_theme/.icons/fontawesome/solid/download.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/drafting-compass.svg b/bes_theme/.icons/fontawesome/solid/drafting-compass.svg deleted file mode 100644 index c2834adb..00000000 --- a/bes_theme/.icons/fontawesome/solid/drafting-compass.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/dragon.svg b/bes_theme/.icons/fontawesome/solid/dragon.svg deleted file mode 100644 index 8685605a..00000000 --- a/bes_theme/.icons/fontawesome/solid/dragon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/draw-polygon.svg b/bes_theme/.icons/fontawesome/solid/draw-polygon.svg deleted file mode 100644 index 99cd9994..00000000 --- a/bes_theme/.icons/fontawesome/solid/draw-polygon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/drum-steelpan.svg b/bes_theme/.icons/fontawesome/solid/drum-steelpan.svg deleted file mode 100644 index c4b12b48..00000000 --- a/bes_theme/.icons/fontawesome/solid/drum-steelpan.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/drum.svg b/bes_theme/.icons/fontawesome/solid/drum.svg deleted file mode 100644 index c712722c..00000000 --- a/bes_theme/.icons/fontawesome/solid/drum.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/drumstick-bite.svg b/bes_theme/.icons/fontawesome/solid/drumstick-bite.svg deleted file mode 100644 index 162f621e..00000000 --- a/bes_theme/.icons/fontawesome/solid/drumstick-bite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/dumbbell.svg b/bes_theme/.icons/fontawesome/solid/dumbbell.svg deleted file mode 100644 index 2fe16673..00000000 --- a/bes_theme/.icons/fontawesome/solid/dumbbell.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/dumpster-fire.svg b/bes_theme/.icons/fontawesome/solid/dumpster-fire.svg deleted file mode 100644 index 153b5458..00000000 --- a/bes_theme/.icons/fontawesome/solid/dumpster-fire.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/dumpster.svg b/bes_theme/.icons/fontawesome/solid/dumpster.svg deleted file mode 100644 index 74cdd3f9..00000000 --- a/bes_theme/.icons/fontawesome/solid/dumpster.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/dungeon.svg b/bes_theme/.icons/fontawesome/solid/dungeon.svg deleted file mode 100644 index 473fc3c6..00000000 --- a/bes_theme/.icons/fontawesome/solid/dungeon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/edit.svg b/bes_theme/.icons/fontawesome/solid/edit.svg deleted file mode 100644 index 6211883a..00000000 --- a/bes_theme/.icons/fontawesome/solid/edit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/egg.svg b/bes_theme/.icons/fontawesome/solid/egg.svg deleted file mode 100644 index 804ac67c..00000000 --- a/bes_theme/.icons/fontawesome/solid/egg.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/eject.svg b/bes_theme/.icons/fontawesome/solid/eject.svg deleted file mode 100644 index d240b0d1..00000000 --- a/bes_theme/.icons/fontawesome/solid/eject.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/ellipsis-h.svg b/bes_theme/.icons/fontawesome/solid/ellipsis-h.svg deleted file mode 100644 index 70748ad9..00000000 --- a/bes_theme/.icons/fontawesome/solid/ellipsis-h.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/ellipsis-v.svg b/bes_theme/.icons/fontawesome/solid/ellipsis-v.svg deleted file mode 100644 index e8e713ad..00000000 --- a/bes_theme/.icons/fontawesome/solid/ellipsis-v.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/envelope-open-text.svg b/bes_theme/.icons/fontawesome/solid/envelope-open-text.svg deleted file mode 100644 index 821168c0..00000000 --- a/bes_theme/.icons/fontawesome/solid/envelope-open-text.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/envelope-open.svg b/bes_theme/.icons/fontawesome/solid/envelope-open.svg deleted file mode 100644 index 947ae25a..00000000 --- a/bes_theme/.icons/fontawesome/solid/envelope-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/envelope-square.svg b/bes_theme/.icons/fontawesome/solid/envelope-square.svg deleted file mode 100644 index c35055f9..00000000 --- a/bes_theme/.icons/fontawesome/solid/envelope-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/envelope.svg b/bes_theme/.icons/fontawesome/solid/envelope.svg deleted file mode 100644 index edbcad3d..00000000 --- a/bes_theme/.icons/fontawesome/solid/envelope.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/equals.svg b/bes_theme/.icons/fontawesome/solid/equals.svg deleted file mode 100644 index 9dcbfdb5..00000000 --- a/bes_theme/.icons/fontawesome/solid/equals.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/eraser.svg b/bes_theme/.icons/fontawesome/solid/eraser.svg deleted file mode 100644 index 9007b120..00000000 --- a/bes_theme/.icons/fontawesome/solid/eraser.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/ethernet.svg b/bes_theme/.icons/fontawesome/solid/ethernet.svg deleted file mode 100644 index 2b391a39..00000000 --- a/bes_theme/.icons/fontawesome/solid/ethernet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/euro-sign.svg b/bes_theme/.icons/fontawesome/solid/euro-sign.svg deleted file mode 100644 index fd18c90d..00000000 --- a/bes_theme/.icons/fontawesome/solid/euro-sign.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/exchange-alt.svg b/bes_theme/.icons/fontawesome/solid/exchange-alt.svg deleted file mode 100644 index b22538a9..00000000 --- a/bes_theme/.icons/fontawesome/solid/exchange-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/exclamation-circle.svg b/bes_theme/.icons/fontawesome/solid/exclamation-circle.svg deleted file mode 100644 index 040bf544..00000000 --- a/bes_theme/.icons/fontawesome/solid/exclamation-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/exclamation-triangle.svg b/bes_theme/.icons/fontawesome/solid/exclamation-triangle.svg deleted file mode 100644 index 8e896785..00000000 --- a/bes_theme/.icons/fontawesome/solid/exclamation-triangle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/exclamation.svg b/bes_theme/.icons/fontawesome/solid/exclamation.svg deleted file mode 100644 index 89ef11a7..00000000 --- a/bes_theme/.icons/fontawesome/solid/exclamation.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/expand-alt.svg b/bes_theme/.icons/fontawesome/solid/expand-alt.svg deleted file mode 100644 index 62dbc719..00000000 --- a/bes_theme/.icons/fontawesome/solid/expand-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/expand-arrows-alt.svg b/bes_theme/.icons/fontawesome/solid/expand-arrows-alt.svg deleted file mode 100644 index c08ecffa..00000000 --- a/bes_theme/.icons/fontawesome/solid/expand-arrows-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/expand.svg b/bes_theme/.icons/fontawesome/solid/expand.svg deleted file mode 100644 index e8f812d4..00000000 --- a/bes_theme/.icons/fontawesome/solid/expand.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/external-link-alt.svg b/bes_theme/.icons/fontawesome/solid/external-link-alt.svg deleted file mode 100644 index fb7b65cc..00000000 --- a/bes_theme/.icons/fontawesome/solid/external-link-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/external-link-square-alt.svg b/bes_theme/.icons/fontawesome/solid/external-link-square-alt.svg deleted file mode 100644 index 099977be..00000000 --- a/bes_theme/.icons/fontawesome/solid/external-link-square-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/eye-dropper.svg b/bes_theme/.icons/fontawesome/solid/eye-dropper.svg deleted file mode 100644 index 51c3453a..00000000 --- a/bes_theme/.icons/fontawesome/solid/eye-dropper.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/eye-slash.svg b/bes_theme/.icons/fontawesome/solid/eye-slash.svg deleted file mode 100644 index 7eefa869..00000000 --- a/bes_theme/.icons/fontawesome/solid/eye-slash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/eye.svg b/bes_theme/.icons/fontawesome/solid/eye.svg deleted file mode 100644 index 477e9ed9..00000000 --- a/bes_theme/.icons/fontawesome/solid/eye.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/fan.svg b/bes_theme/.icons/fontawesome/solid/fan.svg deleted file mode 100644 index 7cca1873..00000000 --- a/bes_theme/.icons/fontawesome/solid/fan.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/fast-backward.svg b/bes_theme/.icons/fontawesome/solid/fast-backward.svg deleted file mode 100644 index dfe10e5c..00000000 --- a/bes_theme/.icons/fontawesome/solid/fast-backward.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/fast-forward.svg b/bes_theme/.icons/fontawesome/solid/fast-forward.svg deleted file mode 100644 index 57c072ae..00000000 --- a/bes_theme/.icons/fontawesome/solid/fast-forward.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/faucet.svg b/bes_theme/.icons/fontawesome/solid/faucet.svg deleted file mode 100644 index 61e47934..00000000 --- a/bes_theme/.icons/fontawesome/solid/faucet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/fax.svg b/bes_theme/.icons/fontawesome/solid/fax.svg deleted file mode 100644 index 9c9cc823..00000000 --- a/bes_theme/.icons/fontawesome/solid/fax.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/feather-alt.svg b/bes_theme/.icons/fontawesome/solid/feather-alt.svg deleted file mode 100644 index a04ebbd1..00000000 --- a/bes_theme/.icons/fontawesome/solid/feather-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/feather.svg b/bes_theme/.icons/fontawesome/solid/feather.svg deleted file mode 100644 index bbdb9342..00000000 --- a/bes_theme/.icons/fontawesome/solid/feather.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/female.svg b/bes_theme/.icons/fontawesome/solid/female.svg deleted file mode 100644 index 7b65dce6..00000000 --- a/bes_theme/.icons/fontawesome/solid/female.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/fighter-jet.svg b/bes_theme/.icons/fontawesome/solid/fighter-jet.svg deleted file mode 100644 index aa4c740a..00000000 --- a/bes_theme/.icons/fontawesome/solid/fighter-jet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/file-alt.svg b/bes_theme/.icons/fontawesome/solid/file-alt.svg deleted file mode 100644 index e1f980c8..00000000 --- a/bes_theme/.icons/fontawesome/solid/file-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/file-archive.svg b/bes_theme/.icons/fontawesome/solid/file-archive.svg deleted file mode 100644 index 078be282..00000000 --- a/bes_theme/.icons/fontawesome/solid/file-archive.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/file-audio.svg b/bes_theme/.icons/fontawesome/solid/file-audio.svg deleted file mode 100644 index c491a45a..00000000 --- a/bes_theme/.icons/fontawesome/solid/file-audio.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/file-code.svg b/bes_theme/.icons/fontawesome/solid/file-code.svg deleted file mode 100644 index 9791933a..00000000 --- a/bes_theme/.icons/fontawesome/solid/file-code.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/file-contract.svg b/bes_theme/.icons/fontawesome/solid/file-contract.svg deleted file mode 100644 index e4d21b17..00000000 --- a/bes_theme/.icons/fontawesome/solid/file-contract.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/file-csv.svg b/bes_theme/.icons/fontawesome/solid/file-csv.svg deleted file mode 100644 index 7b0d2736..00000000 --- a/bes_theme/.icons/fontawesome/solid/file-csv.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/file-download.svg b/bes_theme/.icons/fontawesome/solid/file-download.svg deleted file mode 100644 index f80b1b0d..00000000 --- a/bes_theme/.icons/fontawesome/solid/file-download.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/file-excel.svg b/bes_theme/.icons/fontawesome/solid/file-excel.svg deleted file mode 100644 index 62cec9dd..00000000 --- a/bes_theme/.icons/fontawesome/solid/file-excel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/file-export.svg b/bes_theme/.icons/fontawesome/solid/file-export.svg deleted file mode 100644 index 1590d5de..00000000 --- a/bes_theme/.icons/fontawesome/solid/file-export.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/file-image.svg b/bes_theme/.icons/fontawesome/solid/file-image.svg deleted file mode 100644 index 6c87c8cf..00000000 --- a/bes_theme/.icons/fontawesome/solid/file-image.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/file-import.svg b/bes_theme/.icons/fontawesome/solid/file-import.svg deleted file mode 100644 index a89e8eaf..00000000 --- a/bes_theme/.icons/fontawesome/solid/file-import.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/file-invoice-dollar.svg b/bes_theme/.icons/fontawesome/solid/file-invoice-dollar.svg deleted file mode 100644 index 6fc431e5..00000000 --- a/bes_theme/.icons/fontawesome/solid/file-invoice-dollar.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/file-invoice.svg b/bes_theme/.icons/fontawesome/solid/file-invoice.svg deleted file mode 100644 index 5f5b2419..00000000 --- a/bes_theme/.icons/fontawesome/solid/file-invoice.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/file-medical-alt.svg b/bes_theme/.icons/fontawesome/solid/file-medical-alt.svg deleted file mode 100644 index 0c0699c3..00000000 --- a/bes_theme/.icons/fontawesome/solid/file-medical-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/file-medical.svg b/bes_theme/.icons/fontawesome/solid/file-medical.svg deleted file mode 100644 index f677f71b..00000000 --- a/bes_theme/.icons/fontawesome/solid/file-medical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/file-pdf.svg b/bes_theme/.icons/fontawesome/solid/file-pdf.svg deleted file mode 100644 index f557feac..00000000 --- a/bes_theme/.icons/fontawesome/solid/file-pdf.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/file-powerpoint.svg b/bes_theme/.icons/fontawesome/solid/file-powerpoint.svg deleted file mode 100644 index 59c90d05..00000000 --- a/bes_theme/.icons/fontawesome/solid/file-powerpoint.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/file-prescription.svg b/bes_theme/.icons/fontawesome/solid/file-prescription.svg deleted file mode 100644 index b8a266bf..00000000 --- a/bes_theme/.icons/fontawesome/solid/file-prescription.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/file-signature.svg b/bes_theme/.icons/fontawesome/solid/file-signature.svg deleted file mode 100644 index 64edc71f..00000000 --- a/bes_theme/.icons/fontawesome/solid/file-signature.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/file-upload.svg b/bes_theme/.icons/fontawesome/solid/file-upload.svg deleted file mode 100644 index aa62d89b..00000000 --- a/bes_theme/.icons/fontawesome/solid/file-upload.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/file-video.svg b/bes_theme/.icons/fontawesome/solid/file-video.svg deleted file mode 100644 index 8de9f6cf..00000000 --- a/bes_theme/.icons/fontawesome/solid/file-video.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/file-word.svg b/bes_theme/.icons/fontawesome/solid/file-word.svg deleted file mode 100644 index f484a94c..00000000 --- a/bes_theme/.icons/fontawesome/solid/file-word.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/file.svg b/bes_theme/.icons/fontawesome/solid/file.svg deleted file mode 100644 index 7f495dce..00000000 --- a/bes_theme/.icons/fontawesome/solid/file.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/fill-drip.svg b/bes_theme/.icons/fontawesome/solid/fill-drip.svg deleted file mode 100644 index 74346b5c..00000000 --- a/bes_theme/.icons/fontawesome/solid/fill-drip.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/fill.svg b/bes_theme/.icons/fontawesome/solid/fill.svg deleted file mode 100644 index 92b6dbec..00000000 --- a/bes_theme/.icons/fontawesome/solid/fill.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/film.svg b/bes_theme/.icons/fontawesome/solid/film.svg deleted file mode 100644 index f120aee2..00000000 --- a/bes_theme/.icons/fontawesome/solid/film.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/filter.svg b/bes_theme/.icons/fontawesome/solid/filter.svg deleted file mode 100644 index 95861a39..00000000 --- a/bes_theme/.icons/fontawesome/solid/filter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/fingerprint.svg b/bes_theme/.icons/fontawesome/solid/fingerprint.svg deleted file mode 100644 index f05ea378..00000000 --- a/bes_theme/.icons/fontawesome/solid/fingerprint.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/fire-alt.svg b/bes_theme/.icons/fontawesome/solid/fire-alt.svg deleted file mode 100644 index d8766309..00000000 --- a/bes_theme/.icons/fontawesome/solid/fire-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/fire-extinguisher.svg b/bes_theme/.icons/fontawesome/solid/fire-extinguisher.svg deleted file mode 100644 index 182ad47d..00000000 --- a/bes_theme/.icons/fontawesome/solid/fire-extinguisher.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/fire.svg b/bes_theme/.icons/fontawesome/solid/fire.svg deleted file mode 100644 index 5ab3fa83..00000000 --- a/bes_theme/.icons/fontawesome/solid/fire.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/first-aid.svg b/bes_theme/.icons/fontawesome/solid/first-aid.svg deleted file mode 100644 index 43fd5225..00000000 --- a/bes_theme/.icons/fontawesome/solid/first-aid.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/fish.svg b/bes_theme/.icons/fontawesome/solid/fish.svg deleted file mode 100644 index 8312ff5c..00000000 --- a/bes_theme/.icons/fontawesome/solid/fish.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/fist-raised.svg b/bes_theme/.icons/fontawesome/solid/fist-raised.svg deleted file mode 100644 index 27c77705..00000000 --- a/bes_theme/.icons/fontawesome/solid/fist-raised.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/flag-checkered.svg b/bes_theme/.icons/fontawesome/solid/flag-checkered.svg deleted file mode 100644 index acb3406a..00000000 --- a/bes_theme/.icons/fontawesome/solid/flag-checkered.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/flag-usa.svg b/bes_theme/.icons/fontawesome/solid/flag-usa.svg deleted file mode 100644 index 7cb1a625..00000000 --- a/bes_theme/.icons/fontawesome/solid/flag-usa.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/flag.svg b/bes_theme/.icons/fontawesome/solid/flag.svg deleted file mode 100644 index eb95c9ca..00000000 --- a/bes_theme/.icons/fontawesome/solid/flag.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/flask.svg b/bes_theme/.icons/fontawesome/solid/flask.svg deleted file mode 100644 index 37b9d66e..00000000 --- a/bes_theme/.icons/fontawesome/solid/flask.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/flushed.svg b/bes_theme/.icons/fontawesome/solid/flushed.svg deleted file mode 100644 index 1e6e1c96..00000000 --- a/bes_theme/.icons/fontawesome/solid/flushed.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/folder-minus.svg b/bes_theme/.icons/fontawesome/solid/folder-minus.svg deleted file mode 100644 index 4e554e0d..00000000 --- a/bes_theme/.icons/fontawesome/solid/folder-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/folder-open.svg b/bes_theme/.icons/fontawesome/solid/folder-open.svg deleted file mode 100644 index ddd6911b..00000000 --- a/bes_theme/.icons/fontawesome/solid/folder-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/folder-plus.svg b/bes_theme/.icons/fontawesome/solid/folder-plus.svg deleted file mode 100644 index fbe3f015..00000000 --- a/bes_theme/.icons/fontawesome/solid/folder-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/folder.svg b/bes_theme/.icons/fontawesome/solid/folder.svg deleted file mode 100644 index c9607689..00000000 --- a/bes_theme/.icons/fontawesome/solid/folder.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/font-awesome-logo-full.svg b/bes_theme/.icons/fontawesome/solid/font-awesome-logo-full.svg deleted file mode 100644 index 64dd279a..00000000 --- a/bes_theme/.icons/fontawesome/solid/font-awesome-logo-full.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/font.svg b/bes_theme/.icons/fontawesome/solid/font.svg deleted file mode 100644 index a327a6aa..00000000 --- a/bes_theme/.icons/fontawesome/solid/font.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/football-ball.svg b/bes_theme/.icons/fontawesome/solid/football-ball.svg deleted file mode 100644 index c6629936..00000000 --- a/bes_theme/.icons/fontawesome/solid/football-ball.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/forward.svg b/bes_theme/.icons/fontawesome/solid/forward.svg deleted file mode 100644 index e13df237..00000000 --- a/bes_theme/.icons/fontawesome/solid/forward.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/frog.svg b/bes_theme/.icons/fontawesome/solid/frog.svg deleted file mode 100644 index 96a9ea93..00000000 --- a/bes_theme/.icons/fontawesome/solid/frog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/frown-open.svg b/bes_theme/.icons/fontawesome/solid/frown-open.svg deleted file mode 100644 index dac5ca2a..00000000 --- a/bes_theme/.icons/fontawesome/solid/frown-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/frown.svg b/bes_theme/.icons/fontawesome/solid/frown.svg deleted file mode 100644 index 8207b8dd..00000000 --- a/bes_theme/.icons/fontawesome/solid/frown.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/funnel-dollar.svg b/bes_theme/.icons/fontawesome/solid/funnel-dollar.svg deleted file mode 100644 index 02b61592..00000000 --- a/bes_theme/.icons/fontawesome/solid/funnel-dollar.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/futbol.svg b/bes_theme/.icons/fontawesome/solid/futbol.svg deleted file mode 100644 index d9a7cbdd..00000000 --- a/bes_theme/.icons/fontawesome/solid/futbol.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/gamepad.svg b/bes_theme/.icons/fontawesome/solid/gamepad.svg deleted file mode 100644 index a1d2c131..00000000 --- a/bes_theme/.icons/fontawesome/solid/gamepad.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/gas-pump.svg b/bes_theme/.icons/fontawesome/solid/gas-pump.svg deleted file mode 100644 index 2a8d8d29..00000000 --- a/bes_theme/.icons/fontawesome/solid/gas-pump.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/gavel.svg b/bes_theme/.icons/fontawesome/solid/gavel.svg deleted file mode 100644 index ca2408ae..00000000 --- a/bes_theme/.icons/fontawesome/solid/gavel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/gem.svg b/bes_theme/.icons/fontawesome/solid/gem.svg deleted file mode 100644 index 6414cf35..00000000 --- a/bes_theme/.icons/fontawesome/solid/gem.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/genderless.svg b/bes_theme/.icons/fontawesome/solid/genderless.svg deleted file mode 100644 index 9c928673..00000000 --- a/bes_theme/.icons/fontawesome/solid/genderless.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/ghost.svg b/bes_theme/.icons/fontawesome/solid/ghost.svg deleted file mode 100644 index 91b24056..00000000 --- a/bes_theme/.icons/fontawesome/solid/ghost.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/gift.svg b/bes_theme/.icons/fontawesome/solid/gift.svg deleted file mode 100644 index d3c13490..00000000 --- a/bes_theme/.icons/fontawesome/solid/gift.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/gifts.svg b/bes_theme/.icons/fontawesome/solid/gifts.svg deleted file mode 100644 index e132b647..00000000 --- a/bes_theme/.icons/fontawesome/solid/gifts.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/glass-cheers.svg b/bes_theme/.icons/fontawesome/solid/glass-cheers.svg deleted file mode 100644 index 4e750f8c..00000000 --- a/bes_theme/.icons/fontawesome/solid/glass-cheers.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/glass-martini-alt.svg b/bes_theme/.icons/fontawesome/solid/glass-martini-alt.svg deleted file mode 100644 index dc4aa9c6..00000000 --- a/bes_theme/.icons/fontawesome/solid/glass-martini-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/glass-martini.svg b/bes_theme/.icons/fontawesome/solid/glass-martini.svg deleted file mode 100644 index 283c3c61..00000000 --- a/bes_theme/.icons/fontawesome/solid/glass-martini.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/glass-whiskey.svg b/bes_theme/.icons/fontawesome/solid/glass-whiskey.svg deleted file mode 100644 index 1a8c512d..00000000 --- a/bes_theme/.icons/fontawesome/solid/glass-whiskey.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/glasses.svg b/bes_theme/.icons/fontawesome/solid/glasses.svg deleted file mode 100644 index 51919860..00000000 --- a/bes_theme/.icons/fontawesome/solid/glasses.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/globe-africa.svg b/bes_theme/.icons/fontawesome/solid/globe-africa.svg deleted file mode 100644 index 50009fe5..00000000 --- a/bes_theme/.icons/fontawesome/solid/globe-africa.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/globe-americas.svg b/bes_theme/.icons/fontawesome/solid/globe-americas.svg deleted file mode 100644 index 3e4462e7..00000000 --- a/bes_theme/.icons/fontawesome/solid/globe-americas.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/globe-asia.svg b/bes_theme/.icons/fontawesome/solid/globe-asia.svg deleted file mode 100644 index 5a160176..00000000 --- a/bes_theme/.icons/fontawesome/solid/globe-asia.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/globe-europe.svg b/bes_theme/.icons/fontawesome/solid/globe-europe.svg deleted file mode 100644 index 59823305..00000000 --- a/bes_theme/.icons/fontawesome/solid/globe-europe.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/globe.svg b/bes_theme/.icons/fontawesome/solid/globe.svg deleted file mode 100644 index 93b61784..00000000 --- a/bes_theme/.icons/fontawesome/solid/globe.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/golf-ball.svg b/bes_theme/.icons/fontawesome/solid/golf-ball.svg deleted file mode 100644 index 9e87e82a..00000000 --- a/bes_theme/.icons/fontawesome/solid/golf-ball.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/gopuram.svg b/bes_theme/.icons/fontawesome/solid/gopuram.svg deleted file mode 100644 index efe3a7cc..00000000 --- a/bes_theme/.icons/fontawesome/solid/gopuram.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/graduation-cap.svg b/bes_theme/.icons/fontawesome/solid/graduation-cap.svg deleted file mode 100644 index 0b6a58ae..00000000 --- a/bes_theme/.icons/fontawesome/solid/graduation-cap.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/greater-than-equal.svg b/bes_theme/.icons/fontawesome/solid/greater-than-equal.svg deleted file mode 100644 index 03f76274..00000000 --- a/bes_theme/.icons/fontawesome/solid/greater-than-equal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/greater-than.svg b/bes_theme/.icons/fontawesome/solid/greater-than.svg deleted file mode 100644 index 538cc382..00000000 --- a/bes_theme/.icons/fontawesome/solid/greater-than.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/grimace.svg b/bes_theme/.icons/fontawesome/solid/grimace.svg deleted file mode 100644 index dda0b7b7..00000000 --- a/bes_theme/.icons/fontawesome/solid/grimace.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/grin-alt.svg b/bes_theme/.icons/fontawesome/solid/grin-alt.svg deleted file mode 100644 index c400d4db..00000000 --- a/bes_theme/.icons/fontawesome/solid/grin-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/grin-beam-sweat.svg b/bes_theme/.icons/fontawesome/solid/grin-beam-sweat.svg deleted file mode 100644 index 1e109656..00000000 --- a/bes_theme/.icons/fontawesome/solid/grin-beam-sweat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/grin-beam.svg b/bes_theme/.icons/fontawesome/solid/grin-beam.svg deleted file mode 100644 index cfde54a9..00000000 --- a/bes_theme/.icons/fontawesome/solid/grin-beam.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/grin-hearts.svg b/bes_theme/.icons/fontawesome/solid/grin-hearts.svg deleted file mode 100644 index 28046c35..00000000 --- a/bes_theme/.icons/fontawesome/solid/grin-hearts.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/grin-squint-tears.svg b/bes_theme/.icons/fontawesome/solid/grin-squint-tears.svg deleted file mode 100644 index 39073b7d..00000000 --- a/bes_theme/.icons/fontawesome/solid/grin-squint-tears.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/grin-squint.svg b/bes_theme/.icons/fontawesome/solid/grin-squint.svg deleted file mode 100644 index c957a810..00000000 --- a/bes_theme/.icons/fontawesome/solid/grin-squint.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/grin-stars.svg b/bes_theme/.icons/fontawesome/solid/grin-stars.svg deleted file mode 100644 index 7190aed9..00000000 --- a/bes_theme/.icons/fontawesome/solid/grin-stars.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/grin-tears.svg b/bes_theme/.icons/fontawesome/solid/grin-tears.svg deleted file mode 100644 index 1413617a..00000000 --- a/bes_theme/.icons/fontawesome/solid/grin-tears.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/grin-tongue-squint.svg b/bes_theme/.icons/fontawesome/solid/grin-tongue-squint.svg deleted file mode 100644 index 288dfb58..00000000 --- a/bes_theme/.icons/fontawesome/solid/grin-tongue-squint.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/grin-tongue-wink.svg b/bes_theme/.icons/fontawesome/solid/grin-tongue-wink.svg deleted file mode 100644 index 5e0d22b1..00000000 --- a/bes_theme/.icons/fontawesome/solid/grin-tongue-wink.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/grin-tongue.svg b/bes_theme/.icons/fontawesome/solid/grin-tongue.svg deleted file mode 100644 index 6aff145f..00000000 --- a/bes_theme/.icons/fontawesome/solid/grin-tongue.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/grin-wink.svg b/bes_theme/.icons/fontawesome/solid/grin-wink.svg deleted file mode 100644 index e2c34f37..00000000 --- a/bes_theme/.icons/fontawesome/solid/grin-wink.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/grin.svg b/bes_theme/.icons/fontawesome/solid/grin.svg deleted file mode 100644 index 4ba985a0..00000000 --- a/bes_theme/.icons/fontawesome/solid/grin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/grip-horizontal.svg b/bes_theme/.icons/fontawesome/solid/grip-horizontal.svg deleted file mode 100644 index bb19ff31..00000000 --- a/bes_theme/.icons/fontawesome/solid/grip-horizontal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/grip-lines-vertical.svg b/bes_theme/.icons/fontawesome/solid/grip-lines-vertical.svg deleted file mode 100644 index 92feba89..00000000 --- a/bes_theme/.icons/fontawesome/solid/grip-lines-vertical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/grip-lines.svg b/bes_theme/.icons/fontawesome/solid/grip-lines.svg deleted file mode 100644 index 6fb9ce7c..00000000 --- a/bes_theme/.icons/fontawesome/solid/grip-lines.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/grip-vertical.svg b/bes_theme/.icons/fontawesome/solid/grip-vertical.svg deleted file mode 100644 index a383a433..00000000 --- a/bes_theme/.icons/fontawesome/solid/grip-vertical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/guitar.svg b/bes_theme/.icons/fontawesome/solid/guitar.svg deleted file mode 100644 index a91933e0..00000000 --- a/bes_theme/.icons/fontawesome/solid/guitar.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/h-square.svg b/bes_theme/.icons/fontawesome/solid/h-square.svg deleted file mode 100644 index 0b85e285..00000000 --- a/bes_theme/.icons/fontawesome/solid/h-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hamburger.svg b/bes_theme/.icons/fontawesome/solid/hamburger.svg deleted file mode 100644 index 897f38da..00000000 --- a/bes_theme/.icons/fontawesome/solid/hamburger.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hammer.svg b/bes_theme/.icons/fontawesome/solid/hammer.svg deleted file mode 100644 index ced175a0..00000000 --- a/bes_theme/.icons/fontawesome/solid/hammer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hamsa.svg b/bes_theme/.icons/fontawesome/solid/hamsa.svg deleted file mode 100644 index 4ccb23ad..00000000 --- a/bes_theme/.icons/fontawesome/solid/hamsa.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hand-holding-heart.svg b/bes_theme/.icons/fontawesome/solid/hand-holding-heart.svg deleted file mode 100644 index 65ee45e7..00000000 --- a/bes_theme/.icons/fontawesome/solid/hand-holding-heart.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hand-holding-medical.svg b/bes_theme/.icons/fontawesome/solid/hand-holding-medical.svg deleted file mode 100644 index b016b969..00000000 --- a/bes_theme/.icons/fontawesome/solid/hand-holding-medical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hand-holding-usd.svg b/bes_theme/.icons/fontawesome/solid/hand-holding-usd.svg deleted file mode 100644 index f8d6f5f7..00000000 --- a/bes_theme/.icons/fontawesome/solid/hand-holding-usd.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hand-holding-water.svg b/bes_theme/.icons/fontawesome/solid/hand-holding-water.svg deleted file mode 100644 index 36c5c92a..00000000 --- a/bes_theme/.icons/fontawesome/solid/hand-holding-water.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hand-holding.svg b/bes_theme/.icons/fontawesome/solid/hand-holding.svg deleted file mode 100644 index 1328cfd2..00000000 --- a/bes_theme/.icons/fontawesome/solid/hand-holding.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hand-lizard.svg b/bes_theme/.icons/fontawesome/solid/hand-lizard.svg deleted file mode 100644 index 6d27f0ad..00000000 --- a/bes_theme/.icons/fontawesome/solid/hand-lizard.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hand-middle-finger.svg b/bes_theme/.icons/fontawesome/solid/hand-middle-finger.svg deleted file mode 100644 index 7b896482..00000000 --- a/bes_theme/.icons/fontawesome/solid/hand-middle-finger.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hand-paper.svg b/bes_theme/.icons/fontawesome/solid/hand-paper.svg deleted file mode 100644 index f4aadf12..00000000 --- a/bes_theme/.icons/fontawesome/solid/hand-paper.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hand-peace.svg b/bes_theme/.icons/fontawesome/solid/hand-peace.svg deleted file mode 100644 index 8ed4eede..00000000 --- a/bes_theme/.icons/fontawesome/solid/hand-peace.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hand-point-down.svg b/bes_theme/.icons/fontawesome/solid/hand-point-down.svg deleted file mode 100644 index af8513f0..00000000 --- a/bes_theme/.icons/fontawesome/solid/hand-point-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hand-point-left.svg b/bes_theme/.icons/fontawesome/solid/hand-point-left.svg deleted file mode 100644 index 5fa16c8d..00000000 --- a/bes_theme/.icons/fontawesome/solid/hand-point-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hand-point-right.svg b/bes_theme/.icons/fontawesome/solid/hand-point-right.svg deleted file mode 100644 index e3f50e12..00000000 --- a/bes_theme/.icons/fontawesome/solid/hand-point-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hand-point-up.svg b/bes_theme/.icons/fontawesome/solid/hand-point-up.svg deleted file mode 100644 index 8bf94b71..00000000 --- a/bes_theme/.icons/fontawesome/solid/hand-point-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hand-pointer.svg b/bes_theme/.icons/fontawesome/solid/hand-pointer.svg deleted file mode 100644 index e1367b6c..00000000 --- a/bes_theme/.icons/fontawesome/solid/hand-pointer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hand-rock.svg b/bes_theme/.icons/fontawesome/solid/hand-rock.svg deleted file mode 100644 index ce1f6ea3..00000000 --- a/bes_theme/.icons/fontawesome/solid/hand-rock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hand-scissors.svg b/bes_theme/.icons/fontawesome/solid/hand-scissors.svg deleted file mode 100644 index a5996614..00000000 --- a/bes_theme/.icons/fontawesome/solid/hand-scissors.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hand-sparkles.svg b/bes_theme/.icons/fontawesome/solid/hand-sparkles.svg deleted file mode 100644 index 39112d19..00000000 --- a/bes_theme/.icons/fontawesome/solid/hand-sparkles.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hand-spock.svg b/bes_theme/.icons/fontawesome/solid/hand-spock.svg deleted file mode 100644 index fece8cf2..00000000 --- a/bes_theme/.icons/fontawesome/solid/hand-spock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hands-helping.svg b/bes_theme/.icons/fontawesome/solid/hands-helping.svg deleted file mode 100644 index 162f45e9..00000000 --- a/bes_theme/.icons/fontawesome/solid/hands-helping.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hands-wash.svg b/bes_theme/.icons/fontawesome/solid/hands-wash.svg deleted file mode 100644 index 88350075..00000000 --- a/bes_theme/.icons/fontawesome/solid/hands-wash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hands.svg b/bes_theme/.icons/fontawesome/solid/hands.svg deleted file mode 100644 index 5f0b02d9..00000000 --- a/bes_theme/.icons/fontawesome/solid/hands.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/handshake-alt-slash.svg b/bes_theme/.icons/fontawesome/solid/handshake-alt-slash.svg deleted file mode 100644 index 9fe2febf..00000000 --- a/bes_theme/.icons/fontawesome/solid/handshake-alt-slash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/handshake-slash.svg b/bes_theme/.icons/fontawesome/solid/handshake-slash.svg deleted file mode 100644 index 0050f60d..00000000 --- a/bes_theme/.icons/fontawesome/solid/handshake-slash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/handshake.svg b/bes_theme/.icons/fontawesome/solid/handshake.svg deleted file mode 100644 index bd5cf53e..00000000 --- a/bes_theme/.icons/fontawesome/solid/handshake.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hanukiah.svg b/bes_theme/.icons/fontawesome/solid/hanukiah.svg deleted file mode 100644 index b431d6ae..00000000 --- a/bes_theme/.icons/fontawesome/solid/hanukiah.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hard-hat.svg b/bes_theme/.icons/fontawesome/solid/hard-hat.svg deleted file mode 100644 index cbfa6acf..00000000 --- a/bes_theme/.icons/fontawesome/solid/hard-hat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hashtag.svg b/bes_theme/.icons/fontawesome/solid/hashtag.svg deleted file mode 100644 index 21211fd3..00000000 --- a/bes_theme/.icons/fontawesome/solid/hashtag.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hat-cowboy-side.svg b/bes_theme/.icons/fontawesome/solid/hat-cowboy-side.svg deleted file mode 100644 index 0ba999fa..00000000 --- a/bes_theme/.icons/fontawesome/solid/hat-cowboy-side.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hat-cowboy.svg b/bes_theme/.icons/fontawesome/solid/hat-cowboy.svg deleted file mode 100644 index c02b9eaf..00000000 --- a/bes_theme/.icons/fontawesome/solid/hat-cowboy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hat-wizard.svg b/bes_theme/.icons/fontawesome/solid/hat-wizard.svg deleted file mode 100644 index ff8c1fc6..00000000 --- a/bes_theme/.icons/fontawesome/solid/hat-wizard.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hdd.svg b/bes_theme/.icons/fontawesome/solid/hdd.svg deleted file mode 100644 index cead9cff..00000000 --- a/bes_theme/.icons/fontawesome/solid/hdd.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/head-side-cough-slash.svg b/bes_theme/.icons/fontawesome/solid/head-side-cough-slash.svg deleted file mode 100644 index 622e5cc9..00000000 --- a/bes_theme/.icons/fontawesome/solid/head-side-cough-slash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/head-side-cough.svg b/bes_theme/.icons/fontawesome/solid/head-side-cough.svg deleted file mode 100644 index 2461bb0a..00000000 --- a/bes_theme/.icons/fontawesome/solid/head-side-cough.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/head-side-mask.svg b/bes_theme/.icons/fontawesome/solid/head-side-mask.svg deleted file mode 100644 index ed2b8a81..00000000 --- a/bes_theme/.icons/fontawesome/solid/head-side-mask.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/head-side-virus.svg b/bes_theme/.icons/fontawesome/solid/head-side-virus.svg deleted file mode 100644 index cb2ac796..00000000 --- a/bes_theme/.icons/fontawesome/solid/head-side-virus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/heading.svg b/bes_theme/.icons/fontawesome/solid/heading.svg deleted file mode 100644 index 54d7e7d7..00000000 --- a/bes_theme/.icons/fontawesome/solid/heading.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/headphones-alt.svg b/bes_theme/.icons/fontawesome/solid/headphones-alt.svg deleted file mode 100644 index 735dc8a7..00000000 --- a/bes_theme/.icons/fontawesome/solid/headphones-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/headphones.svg b/bes_theme/.icons/fontawesome/solid/headphones.svg deleted file mode 100644 index c97cde6a..00000000 --- a/bes_theme/.icons/fontawesome/solid/headphones.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/headset.svg b/bes_theme/.icons/fontawesome/solid/headset.svg deleted file mode 100644 index e63e7fd2..00000000 --- a/bes_theme/.icons/fontawesome/solid/headset.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/heart-broken.svg b/bes_theme/.icons/fontawesome/solid/heart-broken.svg deleted file mode 100644 index 0daa6429..00000000 --- a/bes_theme/.icons/fontawesome/solid/heart-broken.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/heart.svg b/bes_theme/.icons/fontawesome/solid/heart.svg deleted file mode 100644 index d9fa587d..00000000 --- a/bes_theme/.icons/fontawesome/solid/heart.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/heartbeat.svg b/bes_theme/.icons/fontawesome/solid/heartbeat.svg deleted file mode 100644 index 4a34f52e..00000000 --- a/bes_theme/.icons/fontawesome/solid/heartbeat.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/helicopter.svg b/bes_theme/.icons/fontawesome/solid/helicopter.svg deleted file mode 100644 index d87c3c4d..00000000 --- a/bes_theme/.icons/fontawesome/solid/helicopter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/highlighter.svg b/bes_theme/.icons/fontawesome/solid/highlighter.svg deleted file mode 100644 index 7f3199cb..00000000 --- a/bes_theme/.icons/fontawesome/solid/highlighter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hiking.svg b/bes_theme/.icons/fontawesome/solid/hiking.svg deleted file mode 100644 index 480a8041..00000000 --- a/bes_theme/.icons/fontawesome/solid/hiking.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hippo.svg b/bes_theme/.icons/fontawesome/solid/hippo.svg deleted file mode 100644 index e8c2a223..00000000 --- a/bes_theme/.icons/fontawesome/solid/hippo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/history.svg b/bes_theme/.icons/fontawesome/solid/history.svg deleted file mode 100644 index dd758d73..00000000 --- a/bes_theme/.icons/fontawesome/solid/history.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hockey-puck.svg b/bes_theme/.icons/fontawesome/solid/hockey-puck.svg deleted file mode 100644 index 24a0a90d..00000000 --- a/bes_theme/.icons/fontawesome/solid/hockey-puck.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/holly-berry.svg b/bes_theme/.icons/fontawesome/solid/holly-berry.svg deleted file mode 100644 index 71e156e5..00000000 --- a/bes_theme/.icons/fontawesome/solid/holly-berry.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/home.svg b/bes_theme/.icons/fontawesome/solid/home.svg deleted file mode 100644 index e5c280c6..00000000 --- a/bes_theme/.icons/fontawesome/solid/home.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/horse-head.svg b/bes_theme/.icons/fontawesome/solid/horse-head.svg deleted file mode 100644 index 159485a7..00000000 --- a/bes_theme/.icons/fontawesome/solid/horse-head.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/horse.svg b/bes_theme/.icons/fontawesome/solid/horse.svg deleted file mode 100644 index 079d8483..00000000 --- a/bes_theme/.icons/fontawesome/solid/horse.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hospital-alt.svg b/bes_theme/.icons/fontawesome/solid/hospital-alt.svg deleted file mode 100644 index 5229e16c..00000000 --- a/bes_theme/.icons/fontawesome/solid/hospital-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hospital-symbol.svg b/bes_theme/.icons/fontawesome/solid/hospital-symbol.svg deleted file mode 100644 index 9463a88d..00000000 --- a/bes_theme/.icons/fontawesome/solid/hospital-symbol.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hospital-user.svg b/bes_theme/.icons/fontawesome/solid/hospital-user.svg deleted file mode 100644 index 35bd9027..00000000 --- a/bes_theme/.icons/fontawesome/solid/hospital-user.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hospital.svg b/bes_theme/.icons/fontawesome/solid/hospital.svg deleted file mode 100644 index 5b6c7b45..00000000 --- a/bes_theme/.icons/fontawesome/solid/hospital.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hot-tub.svg b/bes_theme/.icons/fontawesome/solid/hot-tub.svg deleted file mode 100644 index a49145e3..00000000 --- a/bes_theme/.icons/fontawesome/solid/hot-tub.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hotdog.svg b/bes_theme/.icons/fontawesome/solid/hotdog.svg deleted file mode 100644 index c5e02d73..00000000 --- a/bes_theme/.icons/fontawesome/solid/hotdog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hotel.svg b/bes_theme/.icons/fontawesome/solid/hotel.svg deleted file mode 100644 index 39a8e565..00000000 --- a/bes_theme/.icons/fontawesome/solid/hotel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hourglass-end.svg b/bes_theme/.icons/fontawesome/solid/hourglass-end.svg deleted file mode 100644 index 4773ce65..00000000 --- a/bes_theme/.icons/fontawesome/solid/hourglass-end.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hourglass-half.svg b/bes_theme/.icons/fontawesome/solid/hourglass-half.svg deleted file mode 100644 index adf6f26d..00000000 --- a/bes_theme/.icons/fontawesome/solid/hourglass-half.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hourglass-start.svg b/bes_theme/.icons/fontawesome/solid/hourglass-start.svg deleted file mode 100644 index 214b6c71..00000000 --- a/bes_theme/.icons/fontawesome/solid/hourglass-start.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hourglass.svg b/bes_theme/.icons/fontawesome/solid/hourglass.svg deleted file mode 100644 index cd6052ce..00000000 --- a/bes_theme/.icons/fontawesome/solid/hourglass.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/house-damage.svg b/bes_theme/.icons/fontawesome/solid/house-damage.svg deleted file mode 100644 index 1731f5c3..00000000 --- a/bes_theme/.icons/fontawesome/solid/house-damage.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/house-user.svg b/bes_theme/.icons/fontawesome/solid/house-user.svg deleted file mode 100644 index 96700611..00000000 --- a/bes_theme/.icons/fontawesome/solid/house-user.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/hryvnia.svg b/bes_theme/.icons/fontawesome/solid/hryvnia.svg deleted file mode 100644 index d9373260..00000000 --- a/bes_theme/.icons/fontawesome/solid/hryvnia.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/i-cursor.svg b/bes_theme/.icons/fontawesome/solid/i-cursor.svg deleted file mode 100644 index 2367160d..00000000 --- a/bes_theme/.icons/fontawesome/solid/i-cursor.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/ice-cream.svg b/bes_theme/.icons/fontawesome/solid/ice-cream.svg deleted file mode 100644 index 1f1bb339..00000000 --- a/bes_theme/.icons/fontawesome/solid/ice-cream.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/icicles.svg b/bes_theme/.icons/fontawesome/solid/icicles.svg deleted file mode 100644 index 962982d5..00000000 --- a/bes_theme/.icons/fontawesome/solid/icicles.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/icons.svg b/bes_theme/.icons/fontawesome/solid/icons.svg deleted file mode 100644 index 77d52dc6..00000000 --- a/bes_theme/.icons/fontawesome/solid/icons.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/id-badge.svg b/bes_theme/.icons/fontawesome/solid/id-badge.svg deleted file mode 100644 index a5ce6e1d..00000000 --- a/bes_theme/.icons/fontawesome/solid/id-badge.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/id-card-alt.svg b/bes_theme/.icons/fontawesome/solid/id-card-alt.svg deleted file mode 100644 index 0b21ac36..00000000 --- a/bes_theme/.icons/fontawesome/solid/id-card-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/id-card.svg b/bes_theme/.icons/fontawesome/solid/id-card.svg deleted file mode 100644 index b6be99cb..00000000 --- a/bes_theme/.icons/fontawesome/solid/id-card.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/igloo.svg b/bes_theme/.icons/fontawesome/solid/igloo.svg deleted file mode 100644 index e2d77d48..00000000 --- a/bes_theme/.icons/fontawesome/solid/igloo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/image.svg b/bes_theme/.icons/fontawesome/solid/image.svg deleted file mode 100644 index dbf552da..00000000 --- a/bes_theme/.icons/fontawesome/solid/image.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/images.svg b/bes_theme/.icons/fontawesome/solid/images.svg deleted file mode 100644 index 382c9150..00000000 --- a/bes_theme/.icons/fontawesome/solid/images.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/inbox.svg b/bes_theme/.icons/fontawesome/solid/inbox.svg deleted file mode 100644 index a9d74e09..00000000 --- a/bes_theme/.icons/fontawesome/solid/inbox.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/indent.svg b/bes_theme/.icons/fontawesome/solid/indent.svg deleted file mode 100644 index a77697ea..00000000 --- a/bes_theme/.icons/fontawesome/solid/indent.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/industry.svg b/bes_theme/.icons/fontawesome/solid/industry.svg deleted file mode 100644 index b7bdecbc..00000000 --- a/bes_theme/.icons/fontawesome/solid/industry.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/infinity.svg b/bes_theme/.icons/fontawesome/solid/infinity.svg deleted file mode 100644 index d8dd3984..00000000 --- a/bes_theme/.icons/fontawesome/solid/infinity.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/info-circle.svg b/bes_theme/.icons/fontawesome/solid/info-circle.svg deleted file mode 100644 index a25c1632..00000000 --- a/bes_theme/.icons/fontawesome/solid/info-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/info.svg b/bes_theme/.icons/fontawesome/solid/info.svg deleted file mode 100644 index e6b9c3f6..00000000 --- a/bes_theme/.icons/fontawesome/solid/info.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/italic.svg b/bes_theme/.icons/fontawesome/solid/italic.svg deleted file mode 100644 index f48619e8..00000000 --- a/bes_theme/.icons/fontawesome/solid/italic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/jedi.svg b/bes_theme/.icons/fontawesome/solid/jedi.svg deleted file mode 100644 index bffbff79..00000000 --- a/bes_theme/.icons/fontawesome/solid/jedi.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/joint.svg b/bes_theme/.icons/fontawesome/solid/joint.svg deleted file mode 100644 index cd0c052e..00000000 --- a/bes_theme/.icons/fontawesome/solid/joint.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/journal-whills.svg b/bes_theme/.icons/fontawesome/solid/journal-whills.svg deleted file mode 100644 index 6156752a..00000000 --- a/bes_theme/.icons/fontawesome/solid/journal-whills.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/kaaba.svg b/bes_theme/.icons/fontawesome/solid/kaaba.svg deleted file mode 100644 index c7927561..00000000 --- a/bes_theme/.icons/fontawesome/solid/kaaba.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/key.svg b/bes_theme/.icons/fontawesome/solid/key.svg deleted file mode 100644 index e0bd4948..00000000 --- a/bes_theme/.icons/fontawesome/solid/key.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/keyboard.svg b/bes_theme/.icons/fontawesome/solid/keyboard.svg deleted file mode 100644 index 12686637..00000000 --- a/bes_theme/.icons/fontawesome/solid/keyboard.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/khanda.svg b/bes_theme/.icons/fontawesome/solid/khanda.svg deleted file mode 100644 index 625641bc..00000000 --- a/bes_theme/.icons/fontawesome/solid/khanda.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/kiss-beam.svg b/bes_theme/.icons/fontawesome/solid/kiss-beam.svg deleted file mode 100644 index f03f6c83..00000000 --- a/bes_theme/.icons/fontawesome/solid/kiss-beam.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/kiss-wink-heart.svg b/bes_theme/.icons/fontawesome/solid/kiss-wink-heart.svg deleted file mode 100644 index de6ecee3..00000000 --- a/bes_theme/.icons/fontawesome/solid/kiss-wink-heart.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/kiss.svg b/bes_theme/.icons/fontawesome/solid/kiss.svg deleted file mode 100644 index 0f685244..00000000 --- a/bes_theme/.icons/fontawesome/solid/kiss.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/kiwi-bird.svg b/bes_theme/.icons/fontawesome/solid/kiwi-bird.svg deleted file mode 100644 index 1ef06418..00000000 --- a/bes_theme/.icons/fontawesome/solid/kiwi-bird.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/landmark.svg b/bes_theme/.icons/fontawesome/solid/landmark.svg deleted file mode 100644 index 8361f558..00000000 --- a/bes_theme/.icons/fontawesome/solid/landmark.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/language.svg b/bes_theme/.icons/fontawesome/solid/language.svg deleted file mode 100644 index e45129e4..00000000 --- a/bes_theme/.icons/fontawesome/solid/language.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/laptop-code.svg b/bes_theme/.icons/fontawesome/solid/laptop-code.svg deleted file mode 100644 index 3a753b1c..00000000 --- a/bes_theme/.icons/fontawesome/solid/laptop-code.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/laptop-house.svg b/bes_theme/.icons/fontawesome/solid/laptop-house.svg deleted file mode 100644 index aa5c4e45..00000000 --- a/bes_theme/.icons/fontawesome/solid/laptop-house.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/laptop-medical.svg b/bes_theme/.icons/fontawesome/solid/laptop-medical.svg deleted file mode 100644 index a5f6b7db..00000000 --- a/bes_theme/.icons/fontawesome/solid/laptop-medical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/laptop.svg b/bes_theme/.icons/fontawesome/solid/laptop.svg deleted file mode 100644 index b68aab38..00000000 --- a/bes_theme/.icons/fontawesome/solid/laptop.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/laugh-beam.svg b/bes_theme/.icons/fontawesome/solid/laugh-beam.svg deleted file mode 100644 index 9baa5495..00000000 --- a/bes_theme/.icons/fontawesome/solid/laugh-beam.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/laugh-squint.svg b/bes_theme/.icons/fontawesome/solid/laugh-squint.svg deleted file mode 100644 index 2b08804e..00000000 --- a/bes_theme/.icons/fontawesome/solid/laugh-squint.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/laugh-wink.svg b/bes_theme/.icons/fontawesome/solid/laugh-wink.svg deleted file mode 100644 index 1dffaa60..00000000 --- a/bes_theme/.icons/fontawesome/solid/laugh-wink.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/laugh.svg b/bes_theme/.icons/fontawesome/solid/laugh.svg deleted file mode 100644 index 07d3111e..00000000 --- a/bes_theme/.icons/fontawesome/solid/laugh.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/layer-group.svg b/bes_theme/.icons/fontawesome/solid/layer-group.svg deleted file mode 100644 index 47f45525..00000000 --- a/bes_theme/.icons/fontawesome/solid/layer-group.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/leaf.svg b/bes_theme/.icons/fontawesome/solid/leaf.svg deleted file mode 100644 index f31abe1b..00000000 --- a/bes_theme/.icons/fontawesome/solid/leaf.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/lemon.svg b/bes_theme/.icons/fontawesome/solid/lemon.svg deleted file mode 100644 index e8f98bd6..00000000 --- a/bes_theme/.icons/fontawesome/solid/lemon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/less-than-equal.svg b/bes_theme/.icons/fontawesome/solid/less-than-equal.svg deleted file mode 100644 index a33fef74..00000000 --- a/bes_theme/.icons/fontawesome/solid/less-than-equal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/less-than.svg b/bes_theme/.icons/fontawesome/solid/less-than.svg deleted file mode 100644 index 76790d91..00000000 --- a/bes_theme/.icons/fontawesome/solid/less-than.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/level-down-alt.svg b/bes_theme/.icons/fontawesome/solid/level-down-alt.svg deleted file mode 100644 index 2c6cd625..00000000 --- a/bes_theme/.icons/fontawesome/solid/level-down-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/level-up-alt.svg b/bes_theme/.icons/fontawesome/solid/level-up-alt.svg deleted file mode 100644 index 26b468d8..00000000 --- a/bes_theme/.icons/fontawesome/solid/level-up-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/life-ring.svg b/bes_theme/.icons/fontawesome/solid/life-ring.svg deleted file mode 100644 index cc3f524a..00000000 --- a/bes_theme/.icons/fontawesome/solid/life-ring.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/lightbulb.svg b/bes_theme/.icons/fontawesome/solid/lightbulb.svg deleted file mode 100644 index b5d654ba..00000000 --- a/bes_theme/.icons/fontawesome/solid/lightbulb.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/link.svg b/bes_theme/.icons/fontawesome/solid/link.svg deleted file mode 100644 index 57caa9ff..00000000 --- a/bes_theme/.icons/fontawesome/solid/link.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/lira-sign.svg b/bes_theme/.icons/fontawesome/solid/lira-sign.svg deleted file mode 100644 index 802a0f51..00000000 --- a/bes_theme/.icons/fontawesome/solid/lira-sign.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/list-alt.svg b/bes_theme/.icons/fontawesome/solid/list-alt.svg deleted file mode 100644 index 5e32557c..00000000 --- a/bes_theme/.icons/fontawesome/solid/list-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/list-ol.svg b/bes_theme/.icons/fontawesome/solid/list-ol.svg deleted file mode 100644 index 194bd865..00000000 --- a/bes_theme/.icons/fontawesome/solid/list-ol.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/list-ul.svg b/bes_theme/.icons/fontawesome/solid/list-ul.svg deleted file mode 100644 index ae3ea22a..00000000 --- a/bes_theme/.icons/fontawesome/solid/list-ul.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/list.svg b/bes_theme/.icons/fontawesome/solid/list.svg deleted file mode 100644 index 68418639..00000000 --- a/bes_theme/.icons/fontawesome/solid/list.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/location-arrow.svg b/bes_theme/.icons/fontawesome/solid/location-arrow.svg deleted file mode 100644 index ed85af52..00000000 --- a/bes_theme/.icons/fontawesome/solid/location-arrow.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/lock-open.svg b/bes_theme/.icons/fontawesome/solid/lock-open.svg deleted file mode 100644 index 7f949963..00000000 --- a/bes_theme/.icons/fontawesome/solid/lock-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/lock.svg b/bes_theme/.icons/fontawesome/solid/lock.svg deleted file mode 100644 index 7d0e70bd..00000000 --- a/bes_theme/.icons/fontawesome/solid/lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/long-arrow-alt-down.svg b/bes_theme/.icons/fontawesome/solid/long-arrow-alt-down.svg deleted file mode 100644 index 75e69e79..00000000 --- a/bes_theme/.icons/fontawesome/solid/long-arrow-alt-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/long-arrow-alt-left.svg b/bes_theme/.icons/fontawesome/solid/long-arrow-alt-left.svg deleted file mode 100644 index b9e103b3..00000000 --- a/bes_theme/.icons/fontawesome/solid/long-arrow-alt-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/long-arrow-alt-right.svg b/bes_theme/.icons/fontawesome/solid/long-arrow-alt-right.svg deleted file mode 100644 index 2f388d53..00000000 --- a/bes_theme/.icons/fontawesome/solid/long-arrow-alt-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/long-arrow-alt-up.svg b/bes_theme/.icons/fontawesome/solid/long-arrow-alt-up.svg deleted file mode 100644 index cdd5dcf7..00000000 --- a/bes_theme/.icons/fontawesome/solid/long-arrow-alt-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/low-vision.svg b/bes_theme/.icons/fontawesome/solid/low-vision.svg deleted file mode 100644 index 5b82a1bd..00000000 --- a/bes_theme/.icons/fontawesome/solid/low-vision.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/luggage-cart.svg b/bes_theme/.icons/fontawesome/solid/luggage-cart.svg deleted file mode 100644 index c8514212..00000000 --- a/bes_theme/.icons/fontawesome/solid/luggage-cart.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/lungs-virus.svg b/bes_theme/.icons/fontawesome/solid/lungs-virus.svg deleted file mode 100644 index 50093a47..00000000 --- a/bes_theme/.icons/fontawesome/solid/lungs-virus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/lungs.svg b/bes_theme/.icons/fontawesome/solid/lungs.svg deleted file mode 100644 index 9f283915..00000000 --- a/bes_theme/.icons/fontawesome/solid/lungs.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/magic.svg b/bes_theme/.icons/fontawesome/solid/magic.svg deleted file mode 100644 index cefe2740..00000000 --- a/bes_theme/.icons/fontawesome/solid/magic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/magnet.svg b/bes_theme/.icons/fontawesome/solid/magnet.svg deleted file mode 100644 index 4b68066c..00000000 --- a/bes_theme/.icons/fontawesome/solid/magnet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/mail-bulk.svg b/bes_theme/.icons/fontawesome/solid/mail-bulk.svg deleted file mode 100644 index 38e5f5ae..00000000 --- a/bes_theme/.icons/fontawesome/solid/mail-bulk.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/male.svg b/bes_theme/.icons/fontawesome/solid/male.svg deleted file mode 100644 index b41d026f..00000000 --- a/bes_theme/.icons/fontawesome/solid/male.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/map-marked-alt.svg b/bes_theme/.icons/fontawesome/solid/map-marked-alt.svg deleted file mode 100644 index a45ef9ff..00000000 --- a/bes_theme/.icons/fontawesome/solid/map-marked-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/map-marked.svg b/bes_theme/.icons/fontawesome/solid/map-marked.svg deleted file mode 100644 index 54b59531..00000000 --- a/bes_theme/.icons/fontawesome/solid/map-marked.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/map-marker-alt.svg b/bes_theme/.icons/fontawesome/solid/map-marker-alt.svg deleted file mode 100644 index d3d94f03..00000000 --- a/bes_theme/.icons/fontawesome/solid/map-marker-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/map-marker.svg b/bes_theme/.icons/fontawesome/solid/map-marker.svg deleted file mode 100644 index c2047c7b..00000000 --- a/bes_theme/.icons/fontawesome/solid/map-marker.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/map-pin.svg b/bes_theme/.icons/fontawesome/solid/map-pin.svg deleted file mode 100644 index 3d710733..00000000 --- a/bes_theme/.icons/fontawesome/solid/map-pin.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/map-signs.svg b/bes_theme/.icons/fontawesome/solid/map-signs.svg deleted file mode 100644 index 6580acd4..00000000 --- a/bes_theme/.icons/fontawesome/solid/map-signs.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/map.svg b/bes_theme/.icons/fontawesome/solid/map.svg deleted file mode 100644 index 0f205cda..00000000 --- a/bes_theme/.icons/fontawesome/solid/map.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/marker.svg b/bes_theme/.icons/fontawesome/solid/marker.svg deleted file mode 100644 index 6ee7cec2..00000000 --- a/bes_theme/.icons/fontawesome/solid/marker.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/mars-double.svg b/bes_theme/.icons/fontawesome/solid/mars-double.svg deleted file mode 100644 index 49a76e07..00000000 --- a/bes_theme/.icons/fontawesome/solid/mars-double.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/mars-stroke-h.svg b/bes_theme/.icons/fontawesome/solid/mars-stroke-h.svg deleted file mode 100644 index 60fb14bb..00000000 --- a/bes_theme/.icons/fontawesome/solid/mars-stroke-h.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/mars-stroke-v.svg b/bes_theme/.icons/fontawesome/solid/mars-stroke-v.svg deleted file mode 100644 index e3c03aac..00000000 --- a/bes_theme/.icons/fontawesome/solid/mars-stroke-v.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/mars-stroke.svg b/bes_theme/.icons/fontawesome/solid/mars-stroke.svg deleted file mode 100644 index 076d1e6d..00000000 --- a/bes_theme/.icons/fontawesome/solid/mars-stroke.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/mars.svg b/bes_theme/.icons/fontawesome/solid/mars.svg deleted file mode 100644 index 022f88d0..00000000 --- a/bes_theme/.icons/fontawesome/solid/mars.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/mask.svg b/bes_theme/.icons/fontawesome/solid/mask.svg deleted file mode 100644 index d4067931..00000000 --- a/bes_theme/.icons/fontawesome/solid/mask.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/medal.svg b/bes_theme/.icons/fontawesome/solid/medal.svg deleted file mode 100644 index 61c87eae..00000000 --- a/bes_theme/.icons/fontawesome/solid/medal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/medkit.svg b/bes_theme/.icons/fontawesome/solid/medkit.svg deleted file mode 100644 index 637d38e9..00000000 --- a/bes_theme/.icons/fontawesome/solid/medkit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/meh-blank.svg b/bes_theme/.icons/fontawesome/solid/meh-blank.svg deleted file mode 100644 index e98e39bb..00000000 --- a/bes_theme/.icons/fontawesome/solid/meh-blank.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/meh-rolling-eyes.svg b/bes_theme/.icons/fontawesome/solid/meh-rolling-eyes.svg deleted file mode 100644 index 06899405..00000000 --- a/bes_theme/.icons/fontawesome/solid/meh-rolling-eyes.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/meh.svg b/bes_theme/.icons/fontawesome/solid/meh.svg deleted file mode 100644 index 198bebde..00000000 --- a/bes_theme/.icons/fontawesome/solid/meh.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/memory.svg b/bes_theme/.icons/fontawesome/solid/memory.svg deleted file mode 100644 index 1ae9bcd2..00000000 --- a/bes_theme/.icons/fontawesome/solid/memory.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/menorah.svg b/bes_theme/.icons/fontawesome/solid/menorah.svg deleted file mode 100644 index a6f11b97..00000000 --- a/bes_theme/.icons/fontawesome/solid/menorah.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/mercury.svg b/bes_theme/.icons/fontawesome/solid/mercury.svg deleted file mode 100644 index a9304158..00000000 --- a/bes_theme/.icons/fontawesome/solid/mercury.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/meteor.svg b/bes_theme/.icons/fontawesome/solid/meteor.svg deleted file mode 100644 index 593e63a0..00000000 --- a/bes_theme/.icons/fontawesome/solid/meteor.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/microchip.svg b/bes_theme/.icons/fontawesome/solid/microchip.svg deleted file mode 100644 index 4eb7e2d5..00000000 --- a/bes_theme/.icons/fontawesome/solid/microchip.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/microphone-alt-slash.svg b/bes_theme/.icons/fontawesome/solid/microphone-alt-slash.svg deleted file mode 100644 index 5c2ecdf4..00000000 --- a/bes_theme/.icons/fontawesome/solid/microphone-alt-slash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/microphone-alt.svg b/bes_theme/.icons/fontawesome/solid/microphone-alt.svg deleted file mode 100644 index dd8f50f0..00000000 --- a/bes_theme/.icons/fontawesome/solid/microphone-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/microphone-slash.svg b/bes_theme/.icons/fontawesome/solid/microphone-slash.svg deleted file mode 100644 index a40da9d3..00000000 --- a/bes_theme/.icons/fontawesome/solid/microphone-slash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/microphone.svg b/bes_theme/.icons/fontawesome/solid/microphone.svg deleted file mode 100644 index 194b4d31..00000000 --- a/bes_theme/.icons/fontawesome/solid/microphone.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/microscope.svg b/bes_theme/.icons/fontawesome/solid/microscope.svg deleted file mode 100644 index ef714036..00000000 --- a/bes_theme/.icons/fontawesome/solid/microscope.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/minus-circle.svg b/bes_theme/.icons/fontawesome/solid/minus-circle.svg deleted file mode 100644 index efe6e46a..00000000 --- a/bes_theme/.icons/fontawesome/solid/minus-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/minus-square.svg b/bes_theme/.icons/fontawesome/solid/minus-square.svg deleted file mode 100644 index 27ebb01c..00000000 --- a/bes_theme/.icons/fontawesome/solid/minus-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/minus.svg b/bes_theme/.icons/fontawesome/solid/minus.svg deleted file mode 100644 index ac83426d..00000000 --- a/bes_theme/.icons/fontawesome/solid/minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/mitten.svg b/bes_theme/.icons/fontawesome/solid/mitten.svg deleted file mode 100644 index a4dca754..00000000 --- a/bes_theme/.icons/fontawesome/solid/mitten.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/mobile-alt.svg b/bes_theme/.icons/fontawesome/solid/mobile-alt.svg deleted file mode 100644 index e8084596..00000000 --- a/bes_theme/.icons/fontawesome/solid/mobile-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/mobile.svg b/bes_theme/.icons/fontawesome/solid/mobile.svg deleted file mode 100644 index 2783241d..00000000 --- a/bes_theme/.icons/fontawesome/solid/mobile.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/money-bill-alt.svg b/bes_theme/.icons/fontawesome/solid/money-bill-alt.svg deleted file mode 100644 index 50251552..00000000 --- a/bes_theme/.icons/fontawesome/solid/money-bill-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/money-bill-wave-alt.svg b/bes_theme/.icons/fontawesome/solid/money-bill-wave-alt.svg deleted file mode 100644 index f32fcfe8..00000000 --- a/bes_theme/.icons/fontawesome/solid/money-bill-wave-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/money-bill-wave.svg b/bes_theme/.icons/fontawesome/solid/money-bill-wave.svg deleted file mode 100644 index fc782394..00000000 --- a/bes_theme/.icons/fontawesome/solid/money-bill-wave.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/money-bill.svg b/bes_theme/.icons/fontawesome/solid/money-bill.svg deleted file mode 100644 index e1ae0f29..00000000 --- a/bes_theme/.icons/fontawesome/solid/money-bill.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/money-check-alt.svg b/bes_theme/.icons/fontawesome/solid/money-check-alt.svg deleted file mode 100644 index 08816382..00000000 --- a/bes_theme/.icons/fontawesome/solid/money-check-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/money-check.svg b/bes_theme/.icons/fontawesome/solid/money-check.svg deleted file mode 100644 index 84bbeac2..00000000 --- a/bes_theme/.icons/fontawesome/solid/money-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/monument.svg b/bes_theme/.icons/fontawesome/solid/monument.svg deleted file mode 100644 index efb4af36..00000000 --- a/bes_theme/.icons/fontawesome/solid/monument.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/moon.svg b/bes_theme/.icons/fontawesome/solid/moon.svg deleted file mode 100644 index b153f344..00000000 --- a/bes_theme/.icons/fontawesome/solid/moon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/mortar-pestle.svg b/bes_theme/.icons/fontawesome/solid/mortar-pestle.svg deleted file mode 100644 index b6fb12c4..00000000 --- a/bes_theme/.icons/fontawesome/solid/mortar-pestle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/mosque.svg b/bes_theme/.icons/fontawesome/solid/mosque.svg deleted file mode 100644 index 396eb4ee..00000000 --- a/bes_theme/.icons/fontawesome/solid/mosque.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/motorcycle.svg b/bes_theme/.icons/fontawesome/solid/motorcycle.svg deleted file mode 100644 index 14889799..00000000 --- a/bes_theme/.icons/fontawesome/solid/motorcycle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/mountain.svg b/bes_theme/.icons/fontawesome/solid/mountain.svg deleted file mode 100644 index a348c90f..00000000 --- a/bes_theme/.icons/fontawesome/solid/mountain.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/mouse-pointer.svg b/bes_theme/.icons/fontawesome/solid/mouse-pointer.svg deleted file mode 100644 index c5f252d0..00000000 --- a/bes_theme/.icons/fontawesome/solid/mouse-pointer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/mouse.svg b/bes_theme/.icons/fontawesome/solid/mouse.svg deleted file mode 100644 index 092d515b..00000000 --- a/bes_theme/.icons/fontawesome/solid/mouse.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/mug-hot.svg b/bes_theme/.icons/fontawesome/solid/mug-hot.svg deleted file mode 100644 index 750e0861..00000000 --- a/bes_theme/.icons/fontawesome/solid/mug-hot.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/music.svg b/bes_theme/.icons/fontawesome/solid/music.svg deleted file mode 100644 index 3213bf25..00000000 --- a/bes_theme/.icons/fontawesome/solid/music.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/network-wired.svg b/bes_theme/.icons/fontawesome/solid/network-wired.svg deleted file mode 100644 index 1be547c0..00000000 --- a/bes_theme/.icons/fontawesome/solid/network-wired.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/neuter.svg b/bes_theme/.icons/fontawesome/solid/neuter.svg deleted file mode 100644 index cb7635d0..00000000 --- a/bes_theme/.icons/fontawesome/solid/neuter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/newspaper.svg b/bes_theme/.icons/fontawesome/solid/newspaper.svg deleted file mode 100644 index 47729426..00000000 --- a/bes_theme/.icons/fontawesome/solid/newspaper.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/not-equal.svg b/bes_theme/.icons/fontawesome/solid/not-equal.svg deleted file mode 100644 index d11d1391..00000000 --- a/bes_theme/.icons/fontawesome/solid/not-equal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/notes-medical.svg b/bes_theme/.icons/fontawesome/solid/notes-medical.svg deleted file mode 100644 index fc5d5962..00000000 --- a/bes_theme/.icons/fontawesome/solid/notes-medical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/object-group.svg b/bes_theme/.icons/fontawesome/solid/object-group.svg deleted file mode 100644 index b07fcecf..00000000 --- a/bes_theme/.icons/fontawesome/solid/object-group.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/object-ungroup.svg b/bes_theme/.icons/fontawesome/solid/object-ungroup.svg deleted file mode 100644 index 4c29c1e2..00000000 --- a/bes_theme/.icons/fontawesome/solid/object-ungroup.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/oil-can.svg b/bes_theme/.icons/fontawesome/solid/oil-can.svg deleted file mode 100644 index d7555b03..00000000 --- a/bes_theme/.icons/fontawesome/solid/oil-can.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/om.svg b/bes_theme/.icons/fontawesome/solid/om.svg deleted file mode 100644 index acabc1da..00000000 --- a/bes_theme/.icons/fontawesome/solid/om.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/otter.svg b/bes_theme/.icons/fontawesome/solid/otter.svg deleted file mode 100644 index e546e1c3..00000000 --- a/bes_theme/.icons/fontawesome/solid/otter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/outdent.svg b/bes_theme/.icons/fontawesome/solid/outdent.svg deleted file mode 100644 index 586b77d0..00000000 --- a/bes_theme/.icons/fontawesome/solid/outdent.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/pager.svg b/bes_theme/.icons/fontawesome/solid/pager.svg deleted file mode 100644 index db9409ba..00000000 --- a/bes_theme/.icons/fontawesome/solid/pager.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/paint-brush.svg b/bes_theme/.icons/fontawesome/solid/paint-brush.svg deleted file mode 100644 index 01d1c927..00000000 --- a/bes_theme/.icons/fontawesome/solid/paint-brush.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/paint-roller.svg b/bes_theme/.icons/fontawesome/solid/paint-roller.svg deleted file mode 100644 index 14d3b6ac..00000000 --- a/bes_theme/.icons/fontawesome/solid/paint-roller.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/palette.svg b/bes_theme/.icons/fontawesome/solid/palette.svg deleted file mode 100644 index a75b257e..00000000 --- a/bes_theme/.icons/fontawesome/solid/palette.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/pallet.svg b/bes_theme/.icons/fontawesome/solid/pallet.svg deleted file mode 100644 index 564f45be..00000000 --- a/bes_theme/.icons/fontawesome/solid/pallet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/paper-plane.svg b/bes_theme/.icons/fontawesome/solid/paper-plane.svg deleted file mode 100644 index 588cfcb8..00000000 --- a/bes_theme/.icons/fontawesome/solid/paper-plane.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/paperclip.svg b/bes_theme/.icons/fontawesome/solid/paperclip.svg deleted file mode 100644 index 162db7e5..00000000 --- a/bes_theme/.icons/fontawesome/solid/paperclip.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/parachute-box.svg b/bes_theme/.icons/fontawesome/solid/parachute-box.svg deleted file mode 100644 index 80abd2ea..00000000 --- a/bes_theme/.icons/fontawesome/solid/parachute-box.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/paragraph.svg b/bes_theme/.icons/fontawesome/solid/paragraph.svg deleted file mode 100644 index 1087303c..00000000 --- a/bes_theme/.icons/fontawesome/solid/paragraph.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/parking.svg b/bes_theme/.icons/fontawesome/solid/parking.svg deleted file mode 100644 index 04a13736..00000000 --- a/bes_theme/.icons/fontawesome/solid/parking.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/passport.svg b/bes_theme/.icons/fontawesome/solid/passport.svg deleted file mode 100644 index 1a7aa6f1..00000000 --- a/bes_theme/.icons/fontawesome/solid/passport.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/pastafarianism.svg b/bes_theme/.icons/fontawesome/solid/pastafarianism.svg deleted file mode 100644 index 402622aa..00000000 --- a/bes_theme/.icons/fontawesome/solid/pastafarianism.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/paste.svg b/bes_theme/.icons/fontawesome/solid/paste.svg deleted file mode 100644 index 1d49e250..00000000 --- a/bes_theme/.icons/fontawesome/solid/paste.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/pause-circle.svg b/bes_theme/.icons/fontawesome/solid/pause-circle.svg deleted file mode 100644 index 72a8e48c..00000000 --- a/bes_theme/.icons/fontawesome/solid/pause-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/pause.svg b/bes_theme/.icons/fontawesome/solid/pause.svg deleted file mode 100644 index 63a15b6e..00000000 --- a/bes_theme/.icons/fontawesome/solid/pause.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/paw.svg b/bes_theme/.icons/fontawesome/solid/paw.svg deleted file mode 100644 index 5cb50f82..00000000 --- a/bes_theme/.icons/fontawesome/solid/paw.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/peace.svg b/bes_theme/.icons/fontawesome/solid/peace.svg deleted file mode 100644 index 7c5ce22f..00000000 --- a/bes_theme/.icons/fontawesome/solid/peace.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/pen-alt.svg b/bes_theme/.icons/fontawesome/solid/pen-alt.svg deleted file mode 100644 index 19bc10fd..00000000 --- a/bes_theme/.icons/fontawesome/solid/pen-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/pen-fancy.svg b/bes_theme/.icons/fontawesome/solid/pen-fancy.svg deleted file mode 100644 index d0095428..00000000 --- a/bes_theme/.icons/fontawesome/solid/pen-fancy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/pen-nib.svg b/bes_theme/.icons/fontawesome/solid/pen-nib.svg deleted file mode 100644 index d428e52b..00000000 --- a/bes_theme/.icons/fontawesome/solid/pen-nib.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/pen-square.svg b/bes_theme/.icons/fontawesome/solid/pen-square.svg deleted file mode 100644 index 30f9f7f7..00000000 --- a/bes_theme/.icons/fontawesome/solid/pen-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/pen.svg b/bes_theme/.icons/fontawesome/solid/pen.svg deleted file mode 100644 index 29c4e120..00000000 --- a/bes_theme/.icons/fontawesome/solid/pen.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/pencil-alt.svg b/bes_theme/.icons/fontawesome/solid/pencil-alt.svg deleted file mode 100644 index b9b5273c..00000000 --- a/bes_theme/.icons/fontawesome/solid/pencil-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/pencil-ruler.svg b/bes_theme/.icons/fontawesome/solid/pencil-ruler.svg deleted file mode 100644 index 2c798d0a..00000000 --- a/bes_theme/.icons/fontawesome/solid/pencil-ruler.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/people-arrows.svg b/bes_theme/.icons/fontawesome/solid/people-arrows.svg deleted file mode 100644 index 5b78df37..00000000 --- a/bes_theme/.icons/fontawesome/solid/people-arrows.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/people-carry.svg b/bes_theme/.icons/fontawesome/solid/people-carry.svg deleted file mode 100644 index 17cc34c1..00000000 --- a/bes_theme/.icons/fontawesome/solid/people-carry.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/pepper-hot.svg b/bes_theme/.icons/fontawesome/solid/pepper-hot.svg deleted file mode 100644 index 76c1a928..00000000 --- a/bes_theme/.icons/fontawesome/solid/pepper-hot.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/percent.svg b/bes_theme/.icons/fontawesome/solid/percent.svg deleted file mode 100644 index 4b1a8ff6..00000000 --- a/bes_theme/.icons/fontawesome/solid/percent.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/percentage.svg b/bes_theme/.icons/fontawesome/solid/percentage.svg deleted file mode 100644 index 6e8d3aaa..00000000 --- a/bes_theme/.icons/fontawesome/solid/percentage.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/person-booth.svg b/bes_theme/.icons/fontawesome/solid/person-booth.svg deleted file mode 100644 index eb09dde3..00000000 --- a/bes_theme/.icons/fontawesome/solid/person-booth.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/phone-alt.svg b/bes_theme/.icons/fontawesome/solid/phone-alt.svg deleted file mode 100644 index f738bf2c..00000000 --- a/bes_theme/.icons/fontawesome/solid/phone-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/phone-slash.svg b/bes_theme/.icons/fontawesome/solid/phone-slash.svg deleted file mode 100644 index 76915e4e..00000000 --- a/bes_theme/.icons/fontawesome/solid/phone-slash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/phone-square-alt.svg b/bes_theme/.icons/fontawesome/solid/phone-square-alt.svg deleted file mode 100644 index 05e8b97c..00000000 --- a/bes_theme/.icons/fontawesome/solid/phone-square-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/phone-square.svg b/bes_theme/.icons/fontawesome/solid/phone-square.svg deleted file mode 100644 index 39ed9693..00000000 --- a/bes_theme/.icons/fontawesome/solid/phone-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/phone-volume.svg b/bes_theme/.icons/fontawesome/solid/phone-volume.svg deleted file mode 100644 index 872d95d1..00000000 --- a/bes_theme/.icons/fontawesome/solid/phone-volume.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/phone.svg b/bes_theme/.icons/fontawesome/solid/phone.svg deleted file mode 100644 index 9e2229f9..00000000 --- a/bes_theme/.icons/fontawesome/solid/phone.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/photo-video.svg b/bes_theme/.icons/fontawesome/solid/photo-video.svg deleted file mode 100644 index e67e558a..00000000 --- a/bes_theme/.icons/fontawesome/solid/photo-video.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/piggy-bank.svg b/bes_theme/.icons/fontawesome/solid/piggy-bank.svg deleted file mode 100644 index 65fb510e..00000000 --- a/bes_theme/.icons/fontawesome/solid/piggy-bank.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/pills.svg b/bes_theme/.icons/fontawesome/solid/pills.svg deleted file mode 100644 index eadd5aa1..00000000 --- a/bes_theme/.icons/fontawesome/solid/pills.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/pizza-slice.svg b/bes_theme/.icons/fontawesome/solid/pizza-slice.svg deleted file mode 100644 index fcd660fc..00000000 --- a/bes_theme/.icons/fontawesome/solid/pizza-slice.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/place-of-worship.svg b/bes_theme/.icons/fontawesome/solid/place-of-worship.svg deleted file mode 100644 index c2b0bd3e..00000000 --- a/bes_theme/.icons/fontawesome/solid/place-of-worship.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/plane-arrival.svg b/bes_theme/.icons/fontawesome/solid/plane-arrival.svg deleted file mode 100644 index 32bcc181..00000000 --- a/bes_theme/.icons/fontawesome/solid/plane-arrival.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/plane-departure.svg b/bes_theme/.icons/fontawesome/solid/plane-departure.svg deleted file mode 100644 index ce73a432..00000000 --- a/bes_theme/.icons/fontawesome/solid/plane-departure.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/plane-slash.svg b/bes_theme/.icons/fontawesome/solid/plane-slash.svg deleted file mode 100644 index 68ad6045..00000000 --- a/bes_theme/.icons/fontawesome/solid/plane-slash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/plane.svg b/bes_theme/.icons/fontawesome/solid/plane.svg deleted file mode 100644 index 6a75a9f7..00000000 --- a/bes_theme/.icons/fontawesome/solid/plane.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/play-circle.svg b/bes_theme/.icons/fontawesome/solid/play-circle.svg deleted file mode 100644 index 351ebba4..00000000 --- a/bes_theme/.icons/fontawesome/solid/play-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/play.svg b/bes_theme/.icons/fontawesome/solid/play.svg deleted file mode 100644 index b82cde9f..00000000 --- a/bes_theme/.icons/fontawesome/solid/play.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/plug.svg b/bes_theme/.icons/fontawesome/solid/plug.svg deleted file mode 100644 index fb6d32fb..00000000 --- a/bes_theme/.icons/fontawesome/solid/plug.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/plus-circle.svg b/bes_theme/.icons/fontawesome/solid/plus-circle.svg deleted file mode 100644 index f7a138c6..00000000 --- a/bes_theme/.icons/fontawesome/solid/plus-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/plus-square.svg b/bes_theme/.icons/fontawesome/solid/plus-square.svg deleted file mode 100644 index ff058b57..00000000 --- a/bes_theme/.icons/fontawesome/solid/plus-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/plus.svg b/bes_theme/.icons/fontawesome/solid/plus.svg deleted file mode 100644 index 95992e1f..00000000 --- a/bes_theme/.icons/fontawesome/solid/plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/podcast.svg b/bes_theme/.icons/fontawesome/solid/podcast.svg deleted file mode 100644 index 9ee3b6fa..00000000 --- a/bes_theme/.icons/fontawesome/solid/podcast.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/poll-h.svg b/bes_theme/.icons/fontawesome/solid/poll-h.svg deleted file mode 100644 index c3993a99..00000000 --- a/bes_theme/.icons/fontawesome/solid/poll-h.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/poll.svg b/bes_theme/.icons/fontawesome/solid/poll.svg deleted file mode 100644 index 96d2fb67..00000000 --- a/bes_theme/.icons/fontawesome/solid/poll.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/poo-storm.svg b/bes_theme/.icons/fontawesome/solid/poo-storm.svg deleted file mode 100644 index cf79910f..00000000 --- a/bes_theme/.icons/fontawesome/solid/poo-storm.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/poo.svg b/bes_theme/.icons/fontawesome/solid/poo.svg deleted file mode 100644 index 997725b5..00000000 --- a/bes_theme/.icons/fontawesome/solid/poo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/poop.svg b/bes_theme/.icons/fontawesome/solid/poop.svg deleted file mode 100644 index 8adbdb89..00000000 --- a/bes_theme/.icons/fontawesome/solid/poop.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/portrait.svg b/bes_theme/.icons/fontawesome/solid/portrait.svg deleted file mode 100644 index a62ed180..00000000 --- a/bes_theme/.icons/fontawesome/solid/portrait.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/pound-sign.svg b/bes_theme/.icons/fontawesome/solid/pound-sign.svg deleted file mode 100644 index 8705075f..00000000 --- a/bes_theme/.icons/fontawesome/solid/pound-sign.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/power-off.svg b/bes_theme/.icons/fontawesome/solid/power-off.svg deleted file mode 100644 index 37113180..00000000 --- a/bes_theme/.icons/fontawesome/solid/power-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/pray.svg b/bes_theme/.icons/fontawesome/solid/pray.svg deleted file mode 100644 index dc87ee56..00000000 --- a/bes_theme/.icons/fontawesome/solid/pray.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/praying-hands.svg b/bes_theme/.icons/fontawesome/solid/praying-hands.svg deleted file mode 100644 index 86a68f0c..00000000 --- a/bes_theme/.icons/fontawesome/solid/praying-hands.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/prescription-bottle-alt.svg b/bes_theme/.icons/fontawesome/solid/prescription-bottle-alt.svg deleted file mode 100644 index 5757bf87..00000000 --- a/bes_theme/.icons/fontawesome/solid/prescription-bottle-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/prescription-bottle.svg b/bes_theme/.icons/fontawesome/solid/prescription-bottle.svg deleted file mode 100644 index 6f2d6c36..00000000 --- a/bes_theme/.icons/fontawesome/solid/prescription-bottle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/prescription.svg b/bes_theme/.icons/fontawesome/solid/prescription.svg deleted file mode 100644 index a349cbb3..00000000 --- a/bes_theme/.icons/fontawesome/solid/prescription.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/print.svg b/bes_theme/.icons/fontawesome/solid/print.svg deleted file mode 100644 index 2c11c293..00000000 --- a/bes_theme/.icons/fontawesome/solid/print.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/procedures.svg b/bes_theme/.icons/fontawesome/solid/procedures.svg deleted file mode 100644 index 5ccfafbe..00000000 --- a/bes_theme/.icons/fontawesome/solid/procedures.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/project-diagram.svg b/bes_theme/.icons/fontawesome/solid/project-diagram.svg deleted file mode 100644 index cb21c6f8..00000000 --- a/bes_theme/.icons/fontawesome/solid/project-diagram.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/pump-medical.svg b/bes_theme/.icons/fontawesome/solid/pump-medical.svg deleted file mode 100644 index 79f8413b..00000000 --- a/bes_theme/.icons/fontawesome/solid/pump-medical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/pump-soap.svg b/bes_theme/.icons/fontawesome/solid/pump-soap.svg deleted file mode 100644 index 72e88fa9..00000000 --- a/bes_theme/.icons/fontawesome/solid/pump-soap.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/puzzle-piece.svg b/bes_theme/.icons/fontawesome/solid/puzzle-piece.svg deleted file mode 100644 index a632d8a9..00000000 --- a/bes_theme/.icons/fontawesome/solid/puzzle-piece.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/qrcode.svg b/bes_theme/.icons/fontawesome/solid/qrcode.svg deleted file mode 100644 index c92fa7ca..00000000 --- a/bes_theme/.icons/fontawesome/solid/qrcode.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/question-circle.svg b/bes_theme/.icons/fontawesome/solid/question-circle.svg deleted file mode 100644 index a8f42436..00000000 --- a/bes_theme/.icons/fontawesome/solid/question-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/question.svg b/bes_theme/.icons/fontawesome/solid/question.svg deleted file mode 100644 index 065e9fe7..00000000 --- a/bes_theme/.icons/fontawesome/solid/question.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/quidditch.svg b/bes_theme/.icons/fontawesome/solid/quidditch.svg deleted file mode 100644 index c7927e24..00000000 --- a/bes_theme/.icons/fontawesome/solid/quidditch.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/quote-left.svg b/bes_theme/.icons/fontawesome/solid/quote-left.svg deleted file mode 100644 index d73aa5e4..00000000 --- a/bes_theme/.icons/fontawesome/solid/quote-left.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/quote-right.svg b/bes_theme/.icons/fontawesome/solid/quote-right.svg deleted file mode 100644 index 18537bfe..00000000 --- a/bes_theme/.icons/fontawesome/solid/quote-right.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/quran.svg b/bes_theme/.icons/fontawesome/solid/quran.svg deleted file mode 100644 index 8cf9e47e..00000000 --- a/bes_theme/.icons/fontawesome/solid/quran.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/radiation-alt.svg b/bes_theme/.icons/fontawesome/solid/radiation-alt.svg deleted file mode 100644 index a44836cf..00000000 --- a/bes_theme/.icons/fontawesome/solid/radiation-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/radiation.svg b/bes_theme/.icons/fontawesome/solid/radiation.svg deleted file mode 100644 index c6c5b9c4..00000000 --- a/bes_theme/.icons/fontawesome/solid/radiation.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/rainbow.svg b/bes_theme/.icons/fontawesome/solid/rainbow.svg deleted file mode 100644 index ef50bef2..00000000 --- a/bes_theme/.icons/fontawesome/solid/rainbow.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/random.svg b/bes_theme/.icons/fontawesome/solid/random.svg deleted file mode 100644 index 3c23b13c..00000000 --- a/bes_theme/.icons/fontawesome/solid/random.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/receipt.svg b/bes_theme/.icons/fontawesome/solid/receipt.svg deleted file mode 100644 index 9d8a42c9..00000000 --- a/bes_theme/.icons/fontawesome/solid/receipt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/record-vinyl.svg b/bes_theme/.icons/fontawesome/solid/record-vinyl.svg deleted file mode 100644 index b63b60c1..00000000 --- a/bes_theme/.icons/fontawesome/solid/record-vinyl.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/recycle.svg b/bes_theme/.icons/fontawesome/solid/recycle.svg deleted file mode 100644 index 210fd404..00000000 --- a/bes_theme/.icons/fontawesome/solid/recycle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/redo-alt.svg b/bes_theme/.icons/fontawesome/solid/redo-alt.svg deleted file mode 100644 index f014834d..00000000 --- a/bes_theme/.icons/fontawesome/solid/redo-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/redo.svg b/bes_theme/.icons/fontawesome/solid/redo.svg deleted file mode 100644 index da6c6c14..00000000 --- a/bes_theme/.icons/fontawesome/solid/redo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/registered.svg b/bes_theme/.icons/fontawesome/solid/registered.svg deleted file mode 100644 index 115cc704..00000000 --- a/bes_theme/.icons/fontawesome/solid/registered.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/remove-format.svg b/bes_theme/.icons/fontawesome/solid/remove-format.svg deleted file mode 100644 index 6c54fdde..00000000 --- a/bes_theme/.icons/fontawesome/solid/remove-format.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/reply-all.svg b/bes_theme/.icons/fontawesome/solid/reply-all.svg deleted file mode 100644 index c765f61b..00000000 --- a/bes_theme/.icons/fontawesome/solid/reply-all.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/reply.svg b/bes_theme/.icons/fontawesome/solid/reply.svg deleted file mode 100644 index 9f59f4d3..00000000 --- a/bes_theme/.icons/fontawesome/solid/reply.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/republican.svg b/bes_theme/.icons/fontawesome/solid/republican.svg deleted file mode 100644 index f65eff08..00000000 --- a/bes_theme/.icons/fontawesome/solid/republican.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/restroom.svg b/bes_theme/.icons/fontawesome/solid/restroom.svg deleted file mode 100644 index 16239b41..00000000 --- a/bes_theme/.icons/fontawesome/solid/restroom.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/retweet.svg b/bes_theme/.icons/fontawesome/solid/retweet.svg deleted file mode 100644 index ae588597..00000000 --- a/bes_theme/.icons/fontawesome/solid/retweet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/ribbon.svg b/bes_theme/.icons/fontawesome/solid/ribbon.svg deleted file mode 100644 index c87df5ff..00000000 --- a/bes_theme/.icons/fontawesome/solid/ribbon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/ring.svg b/bes_theme/.icons/fontawesome/solid/ring.svg deleted file mode 100644 index cba4ca69..00000000 --- a/bes_theme/.icons/fontawesome/solid/ring.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/road.svg b/bes_theme/.icons/fontawesome/solid/road.svg deleted file mode 100644 index 1060c271..00000000 --- a/bes_theme/.icons/fontawesome/solid/road.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/robot.svg b/bes_theme/.icons/fontawesome/solid/robot.svg deleted file mode 100644 index 568a9b7c..00000000 --- a/bes_theme/.icons/fontawesome/solid/robot.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/rocket.svg b/bes_theme/.icons/fontawesome/solid/rocket.svg deleted file mode 100644 index 6a3c3d08..00000000 --- a/bes_theme/.icons/fontawesome/solid/rocket.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/route.svg b/bes_theme/.icons/fontawesome/solid/route.svg deleted file mode 100644 index 2d050c40..00000000 --- a/bes_theme/.icons/fontawesome/solid/route.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/rss-square.svg b/bes_theme/.icons/fontawesome/solid/rss-square.svg deleted file mode 100644 index ff9a15a6..00000000 --- a/bes_theme/.icons/fontawesome/solid/rss-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/rss.svg b/bes_theme/.icons/fontawesome/solid/rss.svg deleted file mode 100644 index e6fa54c3..00000000 --- a/bes_theme/.icons/fontawesome/solid/rss.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/ruble-sign.svg b/bes_theme/.icons/fontawesome/solid/ruble-sign.svg deleted file mode 100644 index 50ec2f50..00000000 --- a/bes_theme/.icons/fontawesome/solid/ruble-sign.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/ruler-combined.svg b/bes_theme/.icons/fontawesome/solid/ruler-combined.svg deleted file mode 100644 index c4ceb4a6..00000000 --- a/bes_theme/.icons/fontawesome/solid/ruler-combined.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/ruler-horizontal.svg b/bes_theme/.icons/fontawesome/solid/ruler-horizontal.svg deleted file mode 100644 index 12c5426e..00000000 --- a/bes_theme/.icons/fontawesome/solid/ruler-horizontal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/ruler-vertical.svg b/bes_theme/.icons/fontawesome/solid/ruler-vertical.svg deleted file mode 100644 index 364cb31c..00000000 --- a/bes_theme/.icons/fontawesome/solid/ruler-vertical.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/ruler.svg b/bes_theme/.icons/fontawesome/solid/ruler.svg deleted file mode 100644 index fe65c4b4..00000000 --- a/bes_theme/.icons/fontawesome/solid/ruler.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/running.svg b/bes_theme/.icons/fontawesome/solid/running.svg deleted file mode 100644 index 0e4a5a19..00000000 --- a/bes_theme/.icons/fontawesome/solid/running.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/rupee-sign.svg b/bes_theme/.icons/fontawesome/solid/rupee-sign.svg deleted file mode 100644 index 52e319ca..00000000 --- a/bes_theme/.icons/fontawesome/solid/rupee-sign.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/sad-cry.svg b/bes_theme/.icons/fontawesome/solid/sad-cry.svg deleted file mode 100644 index 448b6df8..00000000 --- a/bes_theme/.icons/fontawesome/solid/sad-cry.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/sad-tear.svg b/bes_theme/.icons/fontawesome/solid/sad-tear.svg deleted file mode 100644 index 4071d102..00000000 --- a/bes_theme/.icons/fontawesome/solid/sad-tear.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/satellite-dish.svg b/bes_theme/.icons/fontawesome/solid/satellite-dish.svg deleted file mode 100644 index a7585521..00000000 --- a/bes_theme/.icons/fontawesome/solid/satellite-dish.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/satellite.svg b/bes_theme/.icons/fontawesome/solid/satellite.svg deleted file mode 100644 index d3e6f701..00000000 --- a/bes_theme/.icons/fontawesome/solid/satellite.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/save.svg b/bes_theme/.icons/fontawesome/solid/save.svg deleted file mode 100644 index 7866c520..00000000 --- a/bes_theme/.icons/fontawesome/solid/save.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/school.svg b/bes_theme/.icons/fontawesome/solid/school.svg deleted file mode 100644 index bbfc6148..00000000 --- a/bes_theme/.icons/fontawesome/solid/school.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/screwdriver.svg b/bes_theme/.icons/fontawesome/solid/screwdriver.svg deleted file mode 100644 index 2bc67d98..00000000 --- a/bes_theme/.icons/fontawesome/solid/screwdriver.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/scroll.svg b/bes_theme/.icons/fontawesome/solid/scroll.svg deleted file mode 100644 index 0ba80124..00000000 --- a/bes_theme/.icons/fontawesome/solid/scroll.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/sd-card.svg b/bes_theme/.icons/fontawesome/solid/sd-card.svg deleted file mode 100644 index be6da436..00000000 --- a/bes_theme/.icons/fontawesome/solid/sd-card.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/search-dollar.svg b/bes_theme/.icons/fontawesome/solid/search-dollar.svg deleted file mode 100644 index 23d0a00d..00000000 --- a/bes_theme/.icons/fontawesome/solid/search-dollar.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/search-location.svg b/bes_theme/.icons/fontawesome/solid/search-location.svg deleted file mode 100644 index 70d43106..00000000 --- a/bes_theme/.icons/fontawesome/solid/search-location.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/search-minus.svg b/bes_theme/.icons/fontawesome/solid/search-minus.svg deleted file mode 100644 index 7befe08b..00000000 --- a/bes_theme/.icons/fontawesome/solid/search-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/search-plus.svg b/bes_theme/.icons/fontawesome/solid/search-plus.svg deleted file mode 100644 index e4f5984b..00000000 --- a/bes_theme/.icons/fontawesome/solid/search-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/search.svg b/bes_theme/.icons/fontawesome/solid/search.svg deleted file mode 100644 index 27d14dba..00000000 --- a/bes_theme/.icons/fontawesome/solid/search.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/seedling.svg b/bes_theme/.icons/fontawesome/solid/seedling.svg deleted file mode 100644 index b5e2a26e..00000000 --- a/bes_theme/.icons/fontawesome/solid/seedling.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/server.svg b/bes_theme/.icons/fontawesome/solid/server.svg deleted file mode 100644 index 4e6c50fd..00000000 --- a/bes_theme/.icons/fontawesome/solid/server.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/shapes.svg b/bes_theme/.icons/fontawesome/solid/shapes.svg deleted file mode 100644 index c923e5a6..00000000 --- a/bes_theme/.icons/fontawesome/solid/shapes.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/share-alt-square.svg b/bes_theme/.icons/fontawesome/solid/share-alt-square.svg deleted file mode 100644 index 7d48e456..00000000 --- a/bes_theme/.icons/fontawesome/solid/share-alt-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/share-alt.svg b/bes_theme/.icons/fontawesome/solid/share-alt.svg deleted file mode 100644 index 2f3151df..00000000 --- a/bes_theme/.icons/fontawesome/solid/share-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/share-square.svg b/bes_theme/.icons/fontawesome/solid/share-square.svg deleted file mode 100644 index 6c380eff..00000000 --- a/bes_theme/.icons/fontawesome/solid/share-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/share.svg b/bes_theme/.icons/fontawesome/solid/share.svg deleted file mode 100644 index 753b7a33..00000000 --- a/bes_theme/.icons/fontawesome/solid/share.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/shekel-sign.svg b/bes_theme/.icons/fontawesome/solid/shekel-sign.svg deleted file mode 100644 index 079555e4..00000000 --- a/bes_theme/.icons/fontawesome/solid/shekel-sign.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/shield-alt.svg b/bes_theme/.icons/fontawesome/solid/shield-alt.svg deleted file mode 100644 index 2daffc5a..00000000 --- a/bes_theme/.icons/fontawesome/solid/shield-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/shield-virus.svg b/bes_theme/.icons/fontawesome/solid/shield-virus.svg deleted file mode 100644 index 46859603..00000000 --- a/bes_theme/.icons/fontawesome/solid/shield-virus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/ship.svg b/bes_theme/.icons/fontawesome/solid/ship.svg deleted file mode 100644 index db576e90..00000000 --- a/bes_theme/.icons/fontawesome/solid/ship.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/shipping-fast.svg b/bes_theme/.icons/fontawesome/solid/shipping-fast.svg deleted file mode 100644 index 342f4d40..00000000 --- a/bes_theme/.icons/fontawesome/solid/shipping-fast.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/shoe-prints.svg b/bes_theme/.icons/fontawesome/solid/shoe-prints.svg deleted file mode 100644 index 9f056d4a..00000000 --- a/bes_theme/.icons/fontawesome/solid/shoe-prints.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/shopping-bag.svg b/bes_theme/.icons/fontawesome/solid/shopping-bag.svg deleted file mode 100644 index 78f8a425..00000000 --- a/bes_theme/.icons/fontawesome/solid/shopping-bag.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/shopping-basket.svg b/bes_theme/.icons/fontawesome/solid/shopping-basket.svg deleted file mode 100644 index 6eef20e6..00000000 --- a/bes_theme/.icons/fontawesome/solid/shopping-basket.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/shopping-cart.svg b/bes_theme/.icons/fontawesome/solid/shopping-cart.svg deleted file mode 100644 index 1815fdfa..00000000 --- a/bes_theme/.icons/fontawesome/solid/shopping-cart.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/shower.svg b/bes_theme/.icons/fontawesome/solid/shower.svg deleted file mode 100644 index 5a5603ce..00000000 --- a/bes_theme/.icons/fontawesome/solid/shower.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/shuttle-van.svg b/bes_theme/.icons/fontawesome/solid/shuttle-van.svg deleted file mode 100644 index 3f4a3cbe..00000000 --- a/bes_theme/.icons/fontawesome/solid/shuttle-van.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/sign-in-alt.svg b/bes_theme/.icons/fontawesome/solid/sign-in-alt.svg deleted file mode 100644 index 5b235c0c..00000000 --- a/bes_theme/.icons/fontawesome/solid/sign-in-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/sign-language.svg b/bes_theme/.icons/fontawesome/solid/sign-language.svg deleted file mode 100644 index 9c62db86..00000000 --- a/bes_theme/.icons/fontawesome/solid/sign-language.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/sign-out-alt.svg b/bes_theme/.icons/fontawesome/solid/sign-out-alt.svg deleted file mode 100644 index 4685c7c4..00000000 --- a/bes_theme/.icons/fontawesome/solid/sign-out-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/sign.svg b/bes_theme/.icons/fontawesome/solid/sign.svg deleted file mode 100644 index 0b2a45bb..00000000 --- a/bes_theme/.icons/fontawesome/solid/sign.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/signal.svg b/bes_theme/.icons/fontawesome/solid/signal.svg deleted file mode 100644 index d929175e..00000000 --- a/bes_theme/.icons/fontawesome/solid/signal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/signature.svg b/bes_theme/.icons/fontawesome/solid/signature.svg deleted file mode 100644 index de2832b7..00000000 --- a/bes_theme/.icons/fontawesome/solid/signature.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/sim-card.svg b/bes_theme/.icons/fontawesome/solid/sim-card.svg deleted file mode 100644 index 12786193..00000000 --- a/bes_theme/.icons/fontawesome/solid/sim-card.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/sink.svg b/bes_theme/.icons/fontawesome/solid/sink.svg deleted file mode 100644 index 4f48214c..00000000 --- a/bes_theme/.icons/fontawesome/solid/sink.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/sitemap.svg b/bes_theme/.icons/fontawesome/solid/sitemap.svg deleted file mode 100644 index a7009eaf..00000000 --- a/bes_theme/.icons/fontawesome/solid/sitemap.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/skating.svg b/bes_theme/.icons/fontawesome/solid/skating.svg deleted file mode 100644 index ffb12076..00000000 --- a/bes_theme/.icons/fontawesome/solid/skating.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/skiing-nordic.svg b/bes_theme/.icons/fontawesome/solid/skiing-nordic.svg deleted file mode 100644 index 1c29fc38..00000000 --- a/bes_theme/.icons/fontawesome/solid/skiing-nordic.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/skiing.svg b/bes_theme/.icons/fontawesome/solid/skiing.svg deleted file mode 100644 index 3362f8f1..00000000 --- a/bes_theme/.icons/fontawesome/solid/skiing.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/skull-crossbones.svg b/bes_theme/.icons/fontawesome/solid/skull-crossbones.svg deleted file mode 100644 index 10a2f5b0..00000000 --- a/bes_theme/.icons/fontawesome/solid/skull-crossbones.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/skull.svg b/bes_theme/.icons/fontawesome/solid/skull.svg deleted file mode 100644 index 72429692..00000000 --- a/bes_theme/.icons/fontawesome/solid/skull.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/slash.svg b/bes_theme/.icons/fontawesome/solid/slash.svg deleted file mode 100644 index 687850b2..00000000 --- a/bes_theme/.icons/fontawesome/solid/slash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/sleigh.svg b/bes_theme/.icons/fontawesome/solid/sleigh.svg deleted file mode 100644 index 9021693d..00000000 --- a/bes_theme/.icons/fontawesome/solid/sleigh.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/sliders-h.svg b/bes_theme/.icons/fontawesome/solid/sliders-h.svg deleted file mode 100644 index e5d7fd78..00000000 --- a/bes_theme/.icons/fontawesome/solid/sliders-h.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/smile-beam.svg b/bes_theme/.icons/fontawesome/solid/smile-beam.svg deleted file mode 100644 index 9077f739..00000000 --- a/bes_theme/.icons/fontawesome/solid/smile-beam.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/smile-wink.svg b/bes_theme/.icons/fontawesome/solid/smile-wink.svg deleted file mode 100644 index b85ec119..00000000 --- a/bes_theme/.icons/fontawesome/solid/smile-wink.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/smile.svg b/bes_theme/.icons/fontawesome/solid/smile.svg deleted file mode 100644 index dc8784a7..00000000 --- a/bes_theme/.icons/fontawesome/solid/smile.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/smog.svg b/bes_theme/.icons/fontawesome/solid/smog.svg deleted file mode 100644 index d7f68973..00000000 --- a/bes_theme/.icons/fontawesome/solid/smog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/smoking-ban.svg b/bes_theme/.icons/fontawesome/solid/smoking-ban.svg deleted file mode 100644 index 4382b1f7..00000000 --- a/bes_theme/.icons/fontawesome/solid/smoking-ban.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/smoking.svg b/bes_theme/.icons/fontawesome/solid/smoking.svg deleted file mode 100644 index 6dd41578..00000000 --- a/bes_theme/.icons/fontawesome/solid/smoking.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/sms.svg b/bes_theme/.icons/fontawesome/solid/sms.svg deleted file mode 100644 index 6a6e950c..00000000 --- a/bes_theme/.icons/fontawesome/solid/sms.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/snowboarding.svg b/bes_theme/.icons/fontawesome/solid/snowboarding.svg deleted file mode 100644 index 7b00f771..00000000 --- a/bes_theme/.icons/fontawesome/solid/snowboarding.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/snowflake.svg b/bes_theme/.icons/fontawesome/solid/snowflake.svg deleted file mode 100644 index 0d86fb03..00000000 --- a/bes_theme/.icons/fontawesome/solid/snowflake.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/snowman.svg b/bes_theme/.icons/fontawesome/solid/snowman.svg deleted file mode 100644 index f8ffcdaf..00000000 --- a/bes_theme/.icons/fontawesome/solid/snowman.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/snowplow.svg b/bes_theme/.icons/fontawesome/solid/snowplow.svg deleted file mode 100644 index 19d31e98..00000000 --- a/bes_theme/.icons/fontawesome/solid/snowplow.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/soap.svg b/bes_theme/.icons/fontawesome/solid/soap.svg deleted file mode 100644 index aa622873..00000000 --- a/bes_theme/.icons/fontawesome/solid/soap.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/socks.svg b/bes_theme/.icons/fontawesome/solid/socks.svg deleted file mode 100644 index 3a73dffb..00000000 --- a/bes_theme/.icons/fontawesome/solid/socks.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/solar-panel.svg b/bes_theme/.icons/fontawesome/solid/solar-panel.svg deleted file mode 100644 index 408f96bf..00000000 --- a/bes_theme/.icons/fontawesome/solid/solar-panel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/sort-alpha-down-alt.svg b/bes_theme/.icons/fontawesome/solid/sort-alpha-down-alt.svg deleted file mode 100644 index 1f1e0947..00000000 --- a/bes_theme/.icons/fontawesome/solid/sort-alpha-down-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/sort-alpha-down.svg b/bes_theme/.icons/fontawesome/solid/sort-alpha-down.svg deleted file mode 100644 index c5ea72bc..00000000 --- a/bes_theme/.icons/fontawesome/solid/sort-alpha-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/sort-alpha-up-alt.svg b/bes_theme/.icons/fontawesome/solid/sort-alpha-up-alt.svg deleted file mode 100644 index 9a65f92a..00000000 --- a/bes_theme/.icons/fontawesome/solid/sort-alpha-up-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/sort-alpha-up.svg b/bes_theme/.icons/fontawesome/solid/sort-alpha-up.svg deleted file mode 100644 index e6e2f882..00000000 --- a/bes_theme/.icons/fontawesome/solid/sort-alpha-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/sort-amount-down-alt.svg b/bes_theme/.icons/fontawesome/solid/sort-amount-down-alt.svg deleted file mode 100644 index 1a817dd8..00000000 --- a/bes_theme/.icons/fontawesome/solid/sort-amount-down-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/sort-amount-down.svg b/bes_theme/.icons/fontawesome/solid/sort-amount-down.svg deleted file mode 100644 index 92e08a22..00000000 --- a/bes_theme/.icons/fontawesome/solid/sort-amount-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/sort-amount-up-alt.svg b/bes_theme/.icons/fontawesome/solid/sort-amount-up-alt.svg deleted file mode 100644 index 0fa39e1b..00000000 --- a/bes_theme/.icons/fontawesome/solid/sort-amount-up-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/sort-amount-up.svg b/bes_theme/.icons/fontawesome/solid/sort-amount-up.svg deleted file mode 100644 index aecbc0c6..00000000 --- a/bes_theme/.icons/fontawesome/solid/sort-amount-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/sort-down.svg b/bes_theme/.icons/fontawesome/solid/sort-down.svg deleted file mode 100644 index 2644ba2b..00000000 --- a/bes_theme/.icons/fontawesome/solid/sort-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/sort-numeric-down-alt.svg b/bes_theme/.icons/fontawesome/solid/sort-numeric-down-alt.svg deleted file mode 100644 index ba1de58e..00000000 --- a/bes_theme/.icons/fontawesome/solid/sort-numeric-down-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/sort-numeric-down.svg b/bes_theme/.icons/fontawesome/solid/sort-numeric-down.svg deleted file mode 100644 index c7c32822..00000000 --- a/bes_theme/.icons/fontawesome/solid/sort-numeric-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/sort-numeric-up-alt.svg b/bes_theme/.icons/fontawesome/solid/sort-numeric-up-alt.svg deleted file mode 100644 index 415c7488..00000000 --- a/bes_theme/.icons/fontawesome/solid/sort-numeric-up-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/sort-numeric-up.svg b/bes_theme/.icons/fontawesome/solid/sort-numeric-up.svg deleted file mode 100644 index 046f49c9..00000000 --- a/bes_theme/.icons/fontawesome/solid/sort-numeric-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/sort-up.svg b/bes_theme/.icons/fontawesome/solid/sort-up.svg deleted file mode 100644 index c6e1001d..00000000 --- a/bes_theme/.icons/fontawesome/solid/sort-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/sort.svg b/bes_theme/.icons/fontawesome/solid/sort.svg deleted file mode 100644 index 89c08354..00000000 --- a/bes_theme/.icons/fontawesome/solid/sort.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/spa.svg b/bes_theme/.icons/fontawesome/solid/spa.svg deleted file mode 100644 index d6909e85..00000000 --- a/bes_theme/.icons/fontawesome/solid/spa.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/space-shuttle.svg b/bes_theme/.icons/fontawesome/solid/space-shuttle.svg deleted file mode 100644 index 1cf024de..00000000 --- a/bes_theme/.icons/fontawesome/solid/space-shuttle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/spell-check.svg b/bes_theme/.icons/fontawesome/solid/spell-check.svg deleted file mode 100644 index 0866e46c..00000000 --- a/bes_theme/.icons/fontawesome/solid/spell-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/spider.svg b/bes_theme/.icons/fontawesome/solid/spider.svg deleted file mode 100644 index b702172c..00000000 --- a/bes_theme/.icons/fontawesome/solid/spider.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/spinner.svg b/bes_theme/.icons/fontawesome/solid/spinner.svg deleted file mode 100644 index 4397764e..00000000 --- a/bes_theme/.icons/fontawesome/solid/spinner.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/splotch.svg b/bes_theme/.icons/fontawesome/solid/splotch.svg deleted file mode 100644 index 9e3e2a28..00000000 --- a/bes_theme/.icons/fontawesome/solid/splotch.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/spray-can.svg b/bes_theme/.icons/fontawesome/solid/spray-can.svg deleted file mode 100644 index 05947c08..00000000 --- a/bes_theme/.icons/fontawesome/solid/spray-can.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/square-full.svg b/bes_theme/.icons/fontawesome/solid/square-full.svg deleted file mode 100644 index 7bb73943..00000000 --- a/bes_theme/.icons/fontawesome/solid/square-full.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/square-root-alt.svg b/bes_theme/.icons/fontawesome/solid/square-root-alt.svg deleted file mode 100644 index 70bd52a6..00000000 --- a/bes_theme/.icons/fontawesome/solid/square-root-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/square.svg b/bes_theme/.icons/fontawesome/solid/square.svg deleted file mode 100644 index 40338d44..00000000 --- a/bes_theme/.icons/fontawesome/solid/square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/stamp.svg b/bes_theme/.icons/fontawesome/solid/stamp.svg deleted file mode 100644 index 591a5bba..00000000 --- a/bes_theme/.icons/fontawesome/solid/stamp.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/star-and-crescent.svg b/bes_theme/.icons/fontawesome/solid/star-and-crescent.svg deleted file mode 100644 index 2303ef8c..00000000 --- a/bes_theme/.icons/fontawesome/solid/star-and-crescent.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/star-half-alt.svg b/bes_theme/.icons/fontawesome/solid/star-half-alt.svg deleted file mode 100644 index b3bbea85..00000000 --- a/bes_theme/.icons/fontawesome/solid/star-half-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/star-half.svg b/bes_theme/.icons/fontawesome/solid/star-half.svg deleted file mode 100644 index 6599dcbf..00000000 --- a/bes_theme/.icons/fontawesome/solid/star-half.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/star-of-david.svg b/bes_theme/.icons/fontawesome/solid/star-of-david.svg deleted file mode 100644 index c96e6e5a..00000000 --- a/bes_theme/.icons/fontawesome/solid/star-of-david.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/star-of-life.svg b/bes_theme/.icons/fontawesome/solid/star-of-life.svg deleted file mode 100644 index e4fd8740..00000000 --- a/bes_theme/.icons/fontawesome/solid/star-of-life.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/star.svg b/bes_theme/.icons/fontawesome/solid/star.svg deleted file mode 100644 index 74422269..00000000 --- a/bes_theme/.icons/fontawesome/solid/star.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/step-backward.svg b/bes_theme/.icons/fontawesome/solid/step-backward.svg deleted file mode 100644 index e6f0d100..00000000 --- a/bes_theme/.icons/fontawesome/solid/step-backward.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/step-forward.svg b/bes_theme/.icons/fontawesome/solid/step-forward.svg deleted file mode 100644 index 33eb8fb6..00000000 --- a/bes_theme/.icons/fontawesome/solid/step-forward.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/stethoscope.svg b/bes_theme/.icons/fontawesome/solid/stethoscope.svg deleted file mode 100644 index 10d30562..00000000 --- a/bes_theme/.icons/fontawesome/solid/stethoscope.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/sticky-note.svg b/bes_theme/.icons/fontawesome/solid/sticky-note.svg deleted file mode 100644 index 213fdcc9..00000000 --- a/bes_theme/.icons/fontawesome/solid/sticky-note.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/stop-circle.svg b/bes_theme/.icons/fontawesome/solid/stop-circle.svg deleted file mode 100644 index 15f56cdb..00000000 --- a/bes_theme/.icons/fontawesome/solid/stop-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/stop.svg b/bes_theme/.icons/fontawesome/solid/stop.svg deleted file mode 100644 index 40338d44..00000000 --- a/bes_theme/.icons/fontawesome/solid/stop.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/stopwatch-20.svg b/bes_theme/.icons/fontawesome/solid/stopwatch-20.svg deleted file mode 100644 index cef1619e..00000000 --- a/bes_theme/.icons/fontawesome/solid/stopwatch-20.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/stopwatch.svg b/bes_theme/.icons/fontawesome/solid/stopwatch.svg deleted file mode 100644 index 72c13459..00000000 --- a/bes_theme/.icons/fontawesome/solid/stopwatch.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/store-alt-slash.svg b/bes_theme/.icons/fontawesome/solid/store-alt-slash.svg deleted file mode 100644 index 31197e67..00000000 --- a/bes_theme/.icons/fontawesome/solid/store-alt-slash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/store-alt.svg b/bes_theme/.icons/fontawesome/solid/store-alt.svg deleted file mode 100644 index bc686353..00000000 --- a/bes_theme/.icons/fontawesome/solid/store-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/store-slash.svg b/bes_theme/.icons/fontawesome/solid/store-slash.svg deleted file mode 100644 index 9e1c7c46..00000000 --- a/bes_theme/.icons/fontawesome/solid/store-slash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/store.svg b/bes_theme/.icons/fontawesome/solid/store.svg deleted file mode 100644 index 0a9003a9..00000000 --- a/bes_theme/.icons/fontawesome/solid/store.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/stream.svg b/bes_theme/.icons/fontawesome/solid/stream.svg deleted file mode 100644 index 938cc188..00000000 --- a/bes_theme/.icons/fontawesome/solid/stream.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/street-view.svg b/bes_theme/.icons/fontawesome/solid/street-view.svg deleted file mode 100644 index 2ae0457e..00000000 --- a/bes_theme/.icons/fontawesome/solid/street-view.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/strikethrough.svg b/bes_theme/.icons/fontawesome/solid/strikethrough.svg deleted file mode 100644 index b7c31c76..00000000 --- a/bes_theme/.icons/fontawesome/solid/strikethrough.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/stroopwafel.svg b/bes_theme/.icons/fontawesome/solid/stroopwafel.svg deleted file mode 100644 index 4024e8d4..00000000 --- a/bes_theme/.icons/fontawesome/solid/stroopwafel.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/subscript.svg b/bes_theme/.icons/fontawesome/solid/subscript.svg deleted file mode 100644 index 3b326b98..00000000 --- a/bes_theme/.icons/fontawesome/solid/subscript.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/subway.svg b/bes_theme/.icons/fontawesome/solid/subway.svg deleted file mode 100644 index 19e5a379..00000000 --- a/bes_theme/.icons/fontawesome/solid/subway.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/suitcase-rolling.svg b/bes_theme/.icons/fontawesome/solid/suitcase-rolling.svg deleted file mode 100644 index d54be1e0..00000000 --- a/bes_theme/.icons/fontawesome/solid/suitcase-rolling.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/suitcase.svg b/bes_theme/.icons/fontawesome/solid/suitcase.svg deleted file mode 100644 index effa01c1..00000000 --- a/bes_theme/.icons/fontawesome/solid/suitcase.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/sun.svg b/bes_theme/.icons/fontawesome/solid/sun.svg deleted file mode 100644 index 26a1eabc..00000000 --- a/bes_theme/.icons/fontawesome/solid/sun.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/superscript.svg b/bes_theme/.icons/fontawesome/solid/superscript.svg deleted file mode 100644 index 2d7cf893..00000000 --- a/bes_theme/.icons/fontawesome/solid/superscript.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/surprise.svg b/bes_theme/.icons/fontawesome/solid/surprise.svg deleted file mode 100644 index 478b6b01..00000000 --- a/bes_theme/.icons/fontawesome/solid/surprise.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/swatchbook.svg b/bes_theme/.icons/fontawesome/solid/swatchbook.svg deleted file mode 100644 index d565f883..00000000 --- a/bes_theme/.icons/fontawesome/solid/swatchbook.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/swimmer.svg b/bes_theme/.icons/fontawesome/solid/swimmer.svg deleted file mode 100644 index 261e60b4..00000000 --- a/bes_theme/.icons/fontawesome/solid/swimmer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/swimming-pool.svg b/bes_theme/.icons/fontawesome/solid/swimming-pool.svg deleted file mode 100644 index 533688df..00000000 --- a/bes_theme/.icons/fontawesome/solid/swimming-pool.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/synagogue.svg b/bes_theme/.icons/fontawesome/solid/synagogue.svg deleted file mode 100644 index 736cb675..00000000 --- a/bes_theme/.icons/fontawesome/solid/synagogue.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/sync-alt.svg b/bes_theme/.icons/fontawesome/solid/sync-alt.svg deleted file mode 100644 index 3c3106d8..00000000 --- a/bes_theme/.icons/fontawesome/solid/sync-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/sync.svg b/bes_theme/.icons/fontawesome/solid/sync.svg deleted file mode 100644 index 67314aee..00000000 --- a/bes_theme/.icons/fontawesome/solid/sync.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/syringe.svg b/bes_theme/.icons/fontawesome/solid/syringe.svg deleted file mode 100644 index 121db621..00000000 --- a/bes_theme/.icons/fontawesome/solid/syringe.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/table-tennis.svg b/bes_theme/.icons/fontawesome/solid/table-tennis.svg deleted file mode 100644 index a7f5e9a5..00000000 --- a/bes_theme/.icons/fontawesome/solid/table-tennis.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/table.svg b/bes_theme/.icons/fontawesome/solid/table.svg deleted file mode 100644 index 5690c5cc..00000000 --- a/bes_theme/.icons/fontawesome/solid/table.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/tablet-alt.svg b/bes_theme/.icons/fontawesome/solid/tablet-alt.svg deleted file mode 100644 index 9e962f78..00000000 --- a/bes_theme/.icons/fontawesome/solid/tablet-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/tablet.svg b/bes_theme/.icons/fontawesome/solid/tablet.svg deleted file mode 100644 index da45e7d2..00000000 --- a/bes_theme/.icons/fontawesome/solid/tablet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/tablets.svg b/bes_theme/.icons/fontawesome/solid/tablets.svg deleted file mode 100644 index 74c8265e..00000000 --- a/bes_theme/.icons/fontawesome/solid/tablets.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/tachometer-alt.svg b/bes_theme/.icons/fontawesome/solid/tachometer-alt.svg deleted file mode 100644 index 3415f706..00000000 --- a/bes_theme/.icons/fontawesome/solid/tachometer-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/tag.svg b/bes_theme/.icons/fontawesome/solid/tag.svg deleted file mode 100644 index 6793a2e0..00000000 --- a/bes_theme/.icons/fontawesome/solid/tag.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/tags.svg b/bes_theme/.icons/fontawesome/solid/tags.svg deleted file mode 100644 index fe43e654..00000000 --- a/bes_theme/.icons/fontawesome/solid/tags.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/tape.svg b/bes_theme/.icons/fontawesome/solid/tape.svg deleted file mode 100644 index 1fbaa1da..00000000 --- a/bes_theme/.icons/fontawesome/solid/tape.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/tasks.svg b/bes_theme/.icons/fontawesome/solid/tasks.svg deleted file mode 100644 index 645dddd3..00000000 --- a/bes_theme/.icons/fontawesome/solid/tasks.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/taxi.svg b/bes_theme/.icons/fontawesome/solid/taxi.svg deleted file mode 100644 index 2c023f95..00000000 --- a/bes_theme/.icons/fontawesome/solid/taxi.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/teeth-open.svg b/bes_theme/.icons/fontawesome/solid/teeth-open.svg deleted file mode 100644 index f02650ab..00000000 --- a/bes_theme/.icons/fontawesome/solid/teeth-open.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/teeth.svg b/bes_theme/.icons/fontawesome/solid/teeth.svg deleted file mode 100644 index 17e4027e..00000000 --- a/bes_theme/.icons/fontawesome/solid/teeth.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/temperature-high.svg b/bes_theme/.icons/fontawesome/solid/temperature-high.svg deleted file mode 100644 index e61b22b3..00000000 --- a/bes_theme/.icons/fontawesome/solid/temperature-high.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/temperature-low.svg b/bes_theme/.icons/fontawesome/solid/temperature-low.svg deleted file mode 100644 index 07d2427c..00000000 --- a/bes_theme/.icons/fontawesome/solid/temperature-low.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/tenge.svg b/bes_theme/.icons/fontawesome/solid/tenge.svg deleted file mode 100644 index cc8be5c1..00000000 --- a/bes_theme/.icons/fontawesome/solid/tenge.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/terminal.svg b/bes_theme/.icons/fontawesome/solid/terminal.svg deleted file mode 100644 index 7c7b75b4..00000000 --- a/bes_theme/.icons/fontawesome/solid/terminal.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/text-height.svg b/bes_theme/.icons/fontawesome/solid/text-height.svg deleted file mode 100644 index 1dc01364..00000000 --- a/bes_theme/.icons/fontawesome/solid/text-height.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/text-width.svg b/bes_theme/.icons/fontawesome/solid/text-width.svg deleted file mode 100644 index 63739852..00000000 --- a/bes_theme/.icons/fontawesome/solid/text-width.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/th-large.svg b/bes_theme/.icons/fontawesome/solid/th-large.svg deleted file mode 100644 index 7894f58b..00000000 --- a/bes_theme/.icons/fontawesome/solid/th-large.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/th-list.svg b/bes_theme/.icons/fontawesome/solid/th-list.svg deleted file mode 100644 index 361af542..00000000 --- a/bes_theme/.icons/fontawesome/solid/th-list.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/th.svg b/bes_theme/.icons/fontawesome/solid/th.svg deleted file mode 100644 index 73b6c92c..00000000 --- a/bes_theme/.icons/fontawesome/solid/th.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/theater-masks.svg b/bes_theme/.icons/fontawesome/solid/theater-masks.svg deleted file mode 100644 index ad31d2ce..00000000 --- a/bes_theme/.icons/fontawesome/solid/theater-masks.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/thermometer-empty.svg b/bes_theme/.icons/fontawesome/solid/thermometer-empty.svg deleted file mode 100644 index 5a6a6b8e..00000000 --- a/bes_theme/.icons/fontawesome/solid/thermometer-empty.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/thermometer-full.svg b/bes_theme/.icons/fontawesome/solid/thermometer-full.svg deleted file mode 100644 index c4000c26..00000000 --- a/bes_theme/.icons/fontawesome/solid/thermometer-full.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/thermometer-half.svg b/bes_theme/.icons/fontawesome/solid/thermometer-half.svg deleted file mode 100644 index 8c355127..00000000 --- a/bes_theme/.icons/fontawesome/solid/thermometer-half.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/thermometer-quarter.svg b/bes_theme/.icons/fontawesome/solid/thermometer-quarter.svg deleted file mode 100644 index 0478872e..00000000 --- a/bes_theme/.icons/fontawesome/solid/thermometer-quarter.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/thermometer-three-quarters.svg b/bes_theme/.icons/fontawesome/solid/thermometer-three-quarters.svg deleted file mode 100644 index b5188d58..00000000 --- a/bes_theme/.icons/fontawesome/solid/thermometer-three-quarters.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/thermometer.svg b/bes_theme/.icons/fontawesome/solid/thermometer.svg deleted file mode 100644 index af0b9ef9..00000000 --- a/bes_theme/.icons/fontawesome/solid/thermometer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/thumbs-down.svg b/bes_theme/.icons/fontawesome/solid/thumbs-down.svg deleted file mode 100644 index 1cb6e676..00000000 --- a/bes_theme/.icons/fontawesome/solid/thumbs-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/thumbs-up.svg b/bes_theme/.icons/fontawesome/solid/thumbs-up.svg deleted file mode 100644 index 539949df..00000000 --- a/bes_theme/.icons/fontawesome/solid/thumbs-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/thumbtack.svg b/bes_theme/.icons/fontawesome/solid/thumbtack.svg deleted file mode 100644 index 2cf01f1f..00000000 --- a/bes_theme/.icons/fontawesome/solid/thumbtack.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/ticket-alt.svg b/bes_theme/.icons/fontawesome/solid/ticket-alt.svg deleted file mode 100644 index 70158467..00000000 --- a/bes_theme/.icons/fontawesome/solid/ticket-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/times-circle.svg b/bes_theme/.icons/fontawesome/solid/times-circle.svg deleted file mode 100644 index cdee9414..00000000 --- a/bes_theme/.icons/fontawesome/solid/times-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/times.svg b/bes_theme/.icons/fontawesome/solid/times.svg deleted file mode 100644 index e000e896..00000000 --- a/bes_theme/.icons/fontawesome/solid/times.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/tint-slash.svg b/bes_theme/.icons/fontawesome/solid/tint-slash.svg deleted file mode 100644 index afe9eada..00000000 --- a/bes_theme/.icons/fontawesome/solid/tint-slash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/tint.svg b/bes_theme/.icons/fontawesome/solid/tint.svg deleted file mode 100644 index 8dd8f93e..00000000 --- a/bes_theme/.icons/fontawesome/solid/tint.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/tired.svg b/bes_theme/.icons/fontawesome/solid/tired.svg deleted file mode 100644 index d29f5814..00000000 --- a/bes_theme/.icons/fontawesome/solid/tired.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/toggle-off.svg b/bes_theme/.icons/fontawesome/solid/toggle-off.svg deleted file mode 100644 index dce9c007..00000000 --- a/bes_theme/.icons/fontawesome/solid/toggle-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/toggle-on.svg b/bes_theme/.icons/fontawesome/solid/toggle-on.svg deleted file mode 100644 index 6c4c2dc1..00000000 --- a/bes_theme/.icons/fontawesome/solid/toggle-on.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/toilet-paper-slash.svg b/bes_theme/.icons/fontawesome/solid/toilet-paper-slash.svg deleted file mode 100644 index 45c0e49f..00000000 --- a/bes_theme/.icons/fontawesome/solid/toilet-paper-slash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/toilet-paper.svg b/bes_theme/.icons/fontawesome/solid/toilet-paper.svg deleted file mode 100644 index 6201721d..00000000 --- a/bes_theme/.icons/fontawesome/solid/toilet-paper.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/toilet.svg b/bes_theme/.icons/fontawesome/solid/toilet.svg deleted file mode 100644 index c5abd013..00000000 --- a/bes_theme/.icons/fontawesome/solid/toilet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/toolbox.svg b/bes_theme/.icons/fontawesome/solid/toolbox.svg deleted file mode 100644 index ddc9d260..00000000 --- a/bes_theme/.icons/fontawesome/solid/toolbox.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/tools.svg b/bes_theme/.icons/fontawesome/solid/tools.svg deleted file mode 100644 index 541c951d..00000000 --- a/bes_theme/.icons/fontawesome/solid/tools.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/tooth.svg b/bes_theme/.icons/fontawesome/solid/tooth.svg deleted file mode 100644 index 745734cb..00000000 --- a/bes_theme/.icons/fontawesome/solid/tooth.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/torah.svg b/bes_theme/.icons/fontawesome/solid/torah.svg deleted file mode 100644 index 9beddc60..00000000 --- a/bes_theme/.icons/fontawesome/solid/torah.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/torii-gate.svg b/bes_theme/.icons/fontawesome/solid/torii-gate.svg deleted file mode 100644 index e66bce7a..00000000 --- a/bes_theme/.icons/fontawesome/solid/torii-gate.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/tractor.svg b/bes_theme/.icons/fontawesome/solid/tractor.svg deleted file mode 100644 index 5390d1cd..00000000 --- a/bes_theme/.icons/fontawesome/solid/tractor.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/trademark.svg b/bes_theme/.icons/fontawesome/solid/trademark.svg deleted file mode 100644 index 4898eb52..00000000 --- a/bes_theme/.icons/fontawesome/solid/trademark.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/traffic-light.svg b/bes_theme/.icons/fontawesome/solid/traffic-light.svg deleted file mode 100644 index 0eb4de19..00000000 --- a/bes_theme/.icons/fontawesome/solid/traffic-light.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/trailer.svg b/bes_theme/.icons/fontawesome/solid/trailer.svg deleted file mode 100644 index 2d961761..00000000 --- a/bes_theme/.icons/fontawesome/solid/trailer.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/train.svg b/bes_theme/.icons/fontawesome/solid/train.svg deleted file mode 100644 index 79c0266f..00000000 --- a/bes_theme/.icons/fontawesome/solid/train.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/tram.svg b/bes_theme/.icons/fontawesome/solid/tram.svg deleted file mode 100644 index e3156976..00000000 --- a/bes_theme/.icons/fontawesome/solid/tram.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/transgender-alt.svg b/bes_theme/.icons/fontawesome/solid/transgender-alt.svg deleted file mode 100644 index 6c1d1679..00000000 --- a/bes_theme/.icons/fontawesome/solid/transgender-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/transgender.svg b/bes_theme/.icons/fontawesome/solid/transgender.svg deleted file mode 100644 index 10d73936..00000000 --- a/bes_theme/.icons/fontawesome/solid/transgender.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/trash-alt.svg b/bes_theme/.icons/fontawesome/solid/trash-alt.svg deleted file mode 100644 index 6305280a..00000000 --- a/bes_theme/.icons/fontawesome/solid/trash-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/trash-restore-alt.svg b/bes_theme/.icons/fontawesome/solid/trash-restore-alt.svg deleted file mode 100644 index d8885508..00000000 --- a/bes_theme/.icons/fontawesome/solid/trash-restore-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/trash-restore.svg b/bes_theme/.icons/fontawesome/solid/trash-restore.svg deleted file mode 100644 index f52487d3..00000000 --- a/bes_theme/.icons/fontawesome/solid/trash-restore.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/trash.svg b/bes_theme/.icons/fontawesome/solid/trash.svg deleted file mode 100644 index dec54fa3..00000000 --- a/bes_theme/.icons/fontawesome/solid/trash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/tree.svg b/bes_theme/.icons/fontawesome/solid/tree.svg deleted file mode 100644 index 3c9080ea..00000000 --- a/bes_theme/.icons/fontawesome/solid/tree.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/trophy.svg b/bes_theme/.icons/fontawesome/solid/trophy.svg deleted file mode 100644 index 6157afa0..00000000 --- a/bes_theme/.icons/fontawesome/solid/trophy.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/truck-loading.svg b/bes_theme/.icons/fontawesome/solid/truck-loading.svg deleted file mode 100644 index 7153afd0..00000000 --- a/bes_theme/.icons/fontawesome/solid/truck-loading.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/truck-monster.svg b/bes_theme/.icons/fontawesome/solid/truck-monster.svg deleted file mode 100644 index 8f31fd30..00000000 --- a/bes_theme/.icons/fontawesome/solid/truck-monster.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/truck-moving.svg b/bes_theme/.icons/fontawesome/solid/truck-moving.svg deleted file mode 100644 index 6664f300..00000000 --- a/bes_theme/.icons/fontawesome/solid/truck-moving.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/truck-pickup.svg b/bes_theme/.icons/fontawesome/solid/truck-pickup.svg deleted file mode 100644 index 337e8aec..00000000 --- a/bes_theme/.icons/fontawesome/solid/truck-pickup.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/truck.svg b/bes_theme/.icons/fontawesome/solid/truck.svg deleted file mode 100644 index 8b405fee..00000000 --- a/bes_theme/.icons/fontawesome/solid/truck.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/tshirt.svg b/bes_theme/.icons/fontawesome/solid/tshirt.svg deleted file mode 100644 index 547dee6a..00000000 --- a/bes_theme/.icons/fontawesome/solid/tshirt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/tty.svg b/bes_theme/.icons/fontawesome/solid/tty.svg deleted file mode 100644 index acc1e3d3..00000000 --- a/bes_theme/.icons/fontawesome/solid/tty.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/tv.svg b/bes_theme/.icons/fontawesome/solid/tv.svg deleted file mode 100644 index 4e33e619..00000000 --- a/bes_theme/.icons/fontawesome/solid/tv.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/umbrella-beach.svg b/bes_theme/.icons/fontawesome/solid/umbrella-beach.svg deleted file mode 100644 index 48b307c2..00000000 --- a/bes_theme/.icons/fontawesome/solid/umbrella-beach.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/umbrella.svg b/bes_theme/.icons/fontawesome/solid/umbrella.svg deleted file mode 100644 index 83de3d7b..00000000 --- a/bes_theme/.icons/fontawesome/solid/umbrella.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/underline.svg b/bes_theme/.icons/fontawesome/solid/underline.svg deleted file mode 100644 index 332619ab..00000000 --- a/bes_theme/.icons/fontawesome/solid/underline.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/undo-alt.svg b/bes_theme/.icons/fontawesome/solid/undo-alt.svg deleted file mode 100644 index bdc97cae..00000000 --- a/bes_theme/.icons/fontawesome/solid/undo-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/undo.svg b/bes_theme/.icons/fontawesome/solid/undo.svg deleted file mode 100644 index 44b39041..00000000 --- a/bes_theme/.icons/fontawesome/solid/undo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/universal-access.svg b/bes_theme/.icons/fontawesome/solid/universal-access.svg deleted file mode 100644 index 1079d879..00000000 --- a/bes_theme/.icons/fontawesome/solid/universal-access.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/university.svg b/bes_theme/.icons/fontawesome/solid/university.svg deleted file mode 100644 index cf4d7859..00000000 --- a/bes_theme/.icons/fontawesome/solid/university.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/unlink.svg b/bes_theme/.icons/fontawesome/solid/unlink.svg deleted file mode 100644 index 0479d935..00000000 --- a/bes_theme/.icons/fontawesome/solid/unlink.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/unlock-alt.svg b/bes_theme/.icons/fontawesome/solid/unlock-alt.svg deleted file mode 100644 index b38ffb6a..00000000 --- a/bes_theme/.icons/fontawesome/solid/unlock-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/unlock.svg b/bes_theme/.icons/fontawesome/solid/unlock.svg deleted file mode 100644 index 0b2258a8..00000000 --- a/bes_theme/.icons/fontawesome/solid/unlock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/upload.svg b/bes_theme/.icons/fontawesome/solid/upload.svg deleted file mode 100644 index 1c880b51..00000000 --- a/bes_theme/.icons/fontawesome/solid/upload.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/user-alt-slash.svg b/bes_theme/.icons/fontawesome/solid/user-alt-slash.svg deleted file mode 100644 index b53c7ea3..00000000 --- a/bes_theme/.icons/fontawesome/solid/user-alt-slash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/user-alt.svg b/bes_theme/.icons/fontawesome/solid/user-alt.svg deleted file mode 100644 index 024cb44b..00000000 --- a/bes_theme/.icons/fontawesome/solid/user-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/user-astronaut.svg b/bes_theme/.icons/fontawesome/solid/user-astronaut.svg deleted file mode 100644 index 08b9c49c..00000000 --- a/bes_theme/.icons/fontawesome/solid/user-astronaut.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/user-check.svg b/bes_theme/.icons/fontawesome/solid/user-check.svg deleted file mode 100644 index d16ef89b..00000000 --- a/bes_theme/.icons/fontawesome/solid/user-check.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/user-circle.svg b/bes_theme/.icons/fontawesome/solid/user-circle.svg deleted file mode 100644 index 6e03b1bd..00000000 --- a/bes_theme/.icons/fontawesome/solid/user-circle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/user-clock.svg b/bes_theme/.icons/fontawesome/solid/user-clock.svg deleted file mode 100644 index 1c45c705..00000000 --- a/bes_theme/.icons/fontawesome/solid/user-clock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/user-cog.svg b/bes_theme/.icons/fontawesome/solid/user-cog.svg deleted file mode 100644 index bae9930e..00000000 --- a/bes_theme/.icons/fontawesome/solid/user-cog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/user-edit.svg b/bes_theme/.icons/fontawesome/solid/user-edit.svg deleted file mode 100644 index 07329533..00000000 --- a/bes_theme/.icons/fontawesome/solid/user-edit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/user-friends.svg b/bes_theme/.icons/fontawesome/solid/user-friends.svg deleted file mode 100644 index 2e43c598..00000000 --- a/bes_theme/.icons/fontawesome/solid/user-friends.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/user-graduate.svg b/bes_theme/.icons/fontawesome/solid/user-graduate.svg deleted file mode 100644 index 1ef3fbce..00000000 --- a/bes_theme/.icons/fontawesome/solid/user-graduate.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/user-injured.svg b/bes_theme/.icons/fontawesome/solid/user-injured.svg deleted file mode 100644 index 57de4b9b..00000000 --- a/bes_theme/.icons/fontawesome/solid/user-injured.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/user-lock.svg b/bes_theme/.icons/fontawesome/solid/user-lock.svg deleted file mode 100644 index b3be5dcb..00000000 --- a/bes_theme/.icons/fontawesome/solid/user-lock.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/user-md.svg b/bes_theme/.icons/fontawesome/solid/user-md.svg deleted file mode 100644 index 583cdc39..00000000 --- a/bes_theme/.icons/fontawesome/solid/user-md.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/user-minus.svg b/bes_theme/.icons/fontawesome/solid/user-minus.svg deleted file mode 100644 index f019e706..00000000 --- a/bes_theme/.icons/fontawesome/solid/user-minus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/user-ninja.svg b/bes_theme/.icons/fontawesome/solid/user-ninja.svg deleted file mode 100644 index 1996c17b..00000000 --- a/bes_theme/.icons/fontawesome/solid/user-ninja.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/user-nurse.svg b/bes_theme/.icons/fontawesome/solid/user-nurse.svg deleted file mode 100644 index 0a8258f8..00000000 --- a/bes_theme/.icons/fontawesome/solid/user-nurse.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/user-plus.svg b/bes_theme/.icons/fontawesome/solid/user-plus.svg deleted file mode 100644 index 01c84c36..00000000 --- a/bes_theme/.icons/fontawesome/solid/user-plus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/user-secret.svg b/bes_theme/.icons/fontawesome/solid/user-secret.svg deleted file mode 100644 index 579fc877..00000000 --- a/bes_theme/.icons/fontawesome/solid/user-secret.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/user-shield.svg b/bes_theme/.icons/fontawesome/solid/user-shield.svg deleted file mode 100644 index 42392a2e..00000000 --- a/bes_theme/.icons/fontawesome/solid/user-shield.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/user-slash.svg b/bes_theme/.icons/fontawesome/solid/user-slash.svg deleted file mode 100644 index bcd3ab08..00000000 --- a/bes_theme/.icons/fontawesome/solid/user-slash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/user-tag.svg b/bes_theme/.icons/fontawesome/solid/user-tag.svg deleted file mode 100644 index 9dfb51a7..00000000 --- a/bes_theme/.icons/fontawesome/solid/user-tag.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/user-tie.svg b/bes_theme/.icons/fontawesome/solid/user-tie.svg deleted file mode 100644 index 9bd9f95a..00000000 --- a/bes_theme/.icons/fontawesome/solid/user-tie.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/user-times.svg b/bes_theme/.icons/fontawesome/solid/user-times.svg deleted file mode 100644 index 96135bb7..00000000 --- a/bes_theme/.icons/fontawesome/solid/user-times.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/user.svg b/bes_theme/.icons/fontawesome/solid/user.svg deleted file mode 100644 index 591873a5..00000000 --- a/bes_theme/.icons/fontawesome/solid/user.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/users-cog.svg b/bes_theme/.icons/fontawesome/solid/users-cog.svg deleted file mode 100644 index a90e8b03..00000000 --- a/bes_theme/.icons/fontawesome/solid/users-cog.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/users-slash.svg b/bes_theme/.icons/fontawesome/solid/users-slash.svg deleted file mode 100644 index 8b08ca39..00000000 --- a/bes_theme/.icons/fontawesome/solid/users-slash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/users.svg b/bes_theme/.icons/fontawesome/solid/users.svg deleted file mode 100644 index 3f07aab0..00000000 --- a/bes_theme/.icons/fontawesome/solid/users.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/utensil-spoon.svg b/bes_theme/.icons/fontawesome/solid/utensil-spoon.svg deleted file mode 100644 index ec19dac5..00000000 --- a/bes_theme/.icons/fontawesome/solid/utensil-spoon.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/utensils.svg b/bes_theme/.icons/fontawesome/solid/utensils.svg deleted file mode 100644 index 2ac1092e..00000000 --- a/bes_theme/.icons/fontawesome/solid/utensils.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/vector-square.svg b/bes_theme/.icons/fontawesome/solid/vector-square.svg deleted file mode 100644 index 848b9fb4..00000000 --- a/bes_theme/.icons/fontawesome/solid/vector-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/venus-double.svg b/bes_theme/.icons/fontawesome/solid/venus-double.svg deleted file mode 100644 index 8fa1ba94..00000000 --- a/bes_theme/.icons/fontawesome/solid/venus-double.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/venus-mars.svg b/bes_theme/.icons/fontawesome/solid/venus-mars.svg deleted file mode 100644 index 78089d80..00000000 --- a/bes_theme/.icons/fontawesome/solid/venus-mars.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/venus.svg b/bes_theme/.icons/fontawesome/solid/venus.svg deleted file mode 100644 index 637ef0cc..00000000 --- a/bes_theme/.icons/fontawesome/solid/venus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/vest-patches.svg b/bes_theme/.icons/fontawesome/solid/vest-patches.svg deleted file mode 100644 index 295f2dba..00000000 --- a/bes_theme/.icons/fontawesome/solid/vest-patches.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/vest.svg b/bes_theme/.icons/fontawesome/solid/vest.svg deleted file mode 100644 index 795e9f96..00000000 --- a/bes_theme/.icons/fontawesome/solid/vest.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/vial.svg b/bes_theme/.icons/fontawesome/solid/vial.svg deleted file mode 100644 index 73382614..00000000 --- a/bes_theme/.icons/fontawesome/solid/vial.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/vials.svg b/bes_theme/.icons/fontawesome/solid/vials.svg deleted file mode 100644 index 13e7c5ac..00000000 --- a/bes_theme/.icons/fontawesome/solid/vials.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/video-slash.svg b/bes_theme/.icons/fontawesome/solid/video-slash.svg deleted file mode 100644 index a8698181..00000000 --- a/bes_theme/.icons/fontawesome/solid/video-slash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/video.svg b/bes_theme/.icons/fontawesome/solid/video.svg deleted file mode 100644 index e14b3b93..00000000 --- a/bes_theme/.icons/fontawesome/solid/video.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/vihara.svg b/bes_theme/.icons/fontawesome/solid/vihara.svg deleted file mode 100644 index 7e0cd1f5..00000000 --- a/bes_theme/.icons/fontawesome/solid/vihara.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/virus-slash.svg b/bes_theme/.icons/fontawesome/solid/virus-slash.svg deleted file mode 100644 index 47346e9b..00000000 --- a/bes_theme/.icons/fontawesome/solid/virus-slash.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/virus.svg b/bes_theme/.icons/fontawesome/solid/virus.svg deleted file mode 100644 index 3b91d76f..00000000 --- a/bes_theme/.icons/fontawesome/solid/virus.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/viruses.svg b/bes_theme/.icons/fontawesome/solid/viruses.svg deleted file mode 100644 index 63936e46..00000000 --- a/bes_theme/.icons/fontawesome/solid/viruses.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/voicemail.svg b/bes_theme/.icons/fontawesome/solid/voicemail.svg deleted file mode 100644 index 0eeddca3..00000000 --- a/bes_theme/.icons/fontawesome/solid/voicemail.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/volleyball-ball.svg b/bes_theme/.icons/fontawesome/solid/volleyball-ball.svg deleted file mode 100644 index cd179f28..00000000 --- a/bes_theme/.icons/fontawesome/solid/volleyball-ball.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/volume-down.svg b/bes_theme/.icons/fontawesome/solid/volume-down.svg deleted file mode 100644 index b42bdec7..00000000 --- a/bes_theme/.icons/fontawesome/solid/volume-down.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/volume-mute.svg b/bes_theme/.icons/fontawesome/solid/volume-mute.svg deleted file mode 100644 index 1c364f7c..00000000 --- a/bes_theme/.icons/fontawesome/solid/volume-mute.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/volume-off.svg b/bes_theme/.icons/fontawesome/solid/volume-off.svg deleted file mode 100644 index 014edd42..00000000 --- a/bes_theme/.icons/fontawesome/solid/volume-off.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/volume-up.svg b/bes_theme/.icons/fontawesome/solid/volume-up.svg deleted file mode 100644 index 4a3a38fe..00000000 --- a/bes_theme/.icons/fontawesome/solid/volume-up.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/vote-yea.svg b/bes_theme/.icons/fontawesome/solid/vote-yea.svg deleted file mode 100644 index 496a5762..00000000 --- a/bes_theme/.icons/fontawesome/solid/vote-yea.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/vr-cardboard.svg b/bes_theme/.icons/fontawesome/solid/vr-cardboard.svg deleted file mode 100644 index dd9eff58..00000000 --- a/bes_theme/.icons/fontawesome/solid/vr-cardboard.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/walking.svg b/bes_theme/.icons/fontawesome/solid/walking.svg deleted file mode 100644 index 7024696f..00000000 --- a/bes_theme/.icons/fontawesome/solid/walking.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/wallet.svg b/bes_theme/.icons/fontawesome/solid/wallet.svg deleted file mode 100644 index f5842294..00000000 --- a/bes_theme/.icons/fontawesome/solid/wallet.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/warehouse.svg b/bes_theme/.icons/fontawesome/solid/warehouse.svg deleted file mode 100644 index 2e827c02..00000000 --- a/bes_theme/.icons/fontawesome/solid/warehouse.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/water.svg b/bes_theme/.icons/fontawesome/solid/water.svg deleted file mode 100644 index cc7a7d3c..00000000 --- a/bes_theme/.icons/fontawesome/solid/water.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/wave-square.svg b/bes_theme/.icons/fontawesome/solid/wave-square.svg deleted file mode 100644 index dba15b96..00000000 --- a/bes_theme/.icons/fontawesome/solid/wave-square.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/weight-hanging.svg b/bes_theme/.icons/fontawesome/solid/weight-hanging.svg deleted file mode 100644 index 9ab369be..00000000 --- a/bes_theme/.icons/fontawesome/solid/weight-hanging.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/weight.svg b/bes_theme/.icons/fontawesome/solid/weight.svg deleted file mode 100644 index c608ac0a..00000000 --- a/bes_theme/.icons/fontawesome/solid/weight.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/wheelchair.svg b/bes_theme/.icons/fontawesome/solid/wheelchair.svg deleted file mode 100644 index 5d01869b..00000000 --- a/bes_theme/.icons/fontawesome/solid/wheelchair.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/wifi.svg b/bes_theme/.icons/fontawesome/solid/wifi.svg deleted file mode 100644 index 5ac43b3e..00000000 --- a/bes_theme/.icons/fontawesome/solid/wifi.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/wind.svg b/bes_theme/.icons/fontawesome/solid/wind.svg deleted file mode 100644 index 705d74b8..00000000 --- a/bes_theme/.icons/fontawesome/solid/wind.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/window-close.svg b/bes_theme/.icons/fontawesome/solid/window-close.svg deleted file mode 100644 index da63df91..00000000 --- a/bes_theme/.icons/fontawesome/solid/window-close.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/window-maximize.svg b/bes_theme/.icons/fontawesome/solid/window-maximize.svg deleted file mode 100644 index d305d0ad..00000000 --- a/bes_theme/.icons/fontawesome/solid/window-maximize.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/window-minimize.svg b/bes_theme/.icons/fontawesome/solid/window-minimize.svg deleted file mode 100644 index c0e48b3f..00000000 --- a/bes_theme/.icons/fontawesome/solid/window-minimize.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/window-restore.svg b/bes_theme/.icons/fontawesome/solid/window-restore.svg deleted file mode 100644 index 355ce8f0..00000000 --- a/bes_theme/.icons/fontawesome/solid/window-restore.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/wine-bottle.svg b/bes_theme/.icons/fontawesome/solid/wine-bottle.svg deleted file mode 100644 index aa053905..00000000 --- a/bes_theme/.icons/fontawesome/solid/wine-bottle.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/wine-glass-alt.svg b/bes_theme/.icons/fontawesome/solid/wine-glass-alt.svg deleted file mode 100644 index 2822897a..00000000 --- a/bes_theme/.icons/fontawesome/solid/wine-glass-alt.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/wine-glass.svg b/bes_theme/.icons/fontawesome/solid/wine-glass.svg deleted file mode 100644 index a27377d0..00000000 --- a/bes_theme/.icons/fontawesome/solid/wine-glass.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/won-sign.svg b/bes_theme/.icons/fontawesome/solid/won-sign.svg deleted file mode 100644 index 05935c1f..00000000 --- a/bes_theme/.icons/fontawesome/solid/won-sign.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/wrench.svg b/bes_theme/.icons/fontawesome/solid/wrench.svg deleted file mode 100644 index 378cf6c6..00000000 --- a/bes_theme/.icons/fontawesome/solid/wrench.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/x-ray.svg b/bes_theme/.icons/fontawesome/solid/x-ray.svg deleted file mode 100644 index fe20d416..00000000 --- a/bes_theme/.icons/fontawesome/solid/x-ray.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/yen-sign.svg b/bes_theme/.icons/fontawesome/solid/yen-sign.svg deleted file mode 100644 index 3cdb4ec5..00000000 --- a/bes_theme/.icons/fontawesome/solid/yen-sign.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/fontawesome/solid/yin-yang.svg b/bes_theme/.icons/fontawesome/solid/yin-yang.svg deleted file mode 100644 index 7aa88f98..00000000 --- a/bes_theme/.icons/fontawesome/solid/yin-yang.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/logo.svg b/bes_theme/.icons/logo.svg deleted file mode 100644 index a3cd0e11..00000000 --- a/bes_theme/.icons/logo.svg +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/bes_theme/.icons/octicons/LICENSE b/bes_theme/.icons/octicons/LICENSE deleted file mode 100644 index af732f02..00000000 --- a/bes_theme/.icons/octicons/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2021 GitHub Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/bes_theme/.icons/octicons/alert-16.svg b/bes_theme/.icons/octicons/alert-16.svg deleted file mode 100644 index b833e9be..00000000 --- a/bes_theme/.icons/octicons/alert-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/alert-24.svg b/bes_theme/.icons/octicons/alert-24.svg deleted file mode 100644 index 4bb55eae..00000000 --- a/bes_theme/.icons/octicons/alert-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/archive-16.svg b/bes_theme/.icons/octicons/archive-16.svg deleted file mode 100644 index b05113dd..00000000 --- a/bes_theme/.icons/octicons/archive-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/archive-24.svg b/bes_theme/.icons/octicons/archive-24.svg deleted file mode 100644 index f615dadc..00000000 --- a/bes_theme/.icons/octicons/archive-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/arrow-both-16.svg b/bes_theme/.icons/octicons/arrow-both-16.svg deleted file mode 100644 index 1228c790..00000000 --- a/bes_theme/.icons/octicons/arrow-both-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/arrow-both-24.svg b/bes_theme/.icons/octicons/arrow-both-24.svg deleted file mode 100644 index 724aa131..00000000 --- a/bes_theme/.icons/octicons/arrow-both-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/arrow-down-16.svg b/bes_theme/.icons/octicons/arrow-down-16.svg deleted file mode 100644 index 34f27f29..00000000 --- a/bes_theme/.icons/octicons/arrow-down-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/arrow-down-24.svg b/bes_theme/.icons/octicons/arrow-down-24.svg deleted file mode 100644 index 17979ab2..00000000 --- a/bes_theme/.icons/octicons/arrow-down-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/arrow-down-left-24.svg b/bes_theme/.icons/octicons/arrow-down-left-24.svg deleted file mode 100644 index 68087d24..00000000 --- a/bes_theme/.icons/octicons/arrow-down-left-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/arrow-down-right-24.svg b/bes_theme/.icons/octicons/arrow-down-right-24.svg deleted file mode 100644 index 99cfba3e..00000000 --- a/bes_theme/.icons/octicons/arrow-down-right-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/arrow-left-16.svg b/bes_theme/.icons/octicons/arrow-left-16.svg deleted file mode 100644 index b2ab9b20..00000000 --- a/bes_theme/.icons/octicons/arrow-left-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/arrow-left-24.svg b/bes_theme/.icons/octicons/arrow-left-24.svg deleted file mode 100644 index ebb7bd7b..00000000 --- a/bes_theme/.icons/octicons/arrow-left-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/arrow-right-16.svg b/bes_theme/.icons/octicons/arrow-right-16.svg deleted file mode 100644 index cfab85ec..00000000 --- a/bes_theme/.icons/octicons/arrow-right-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/arrow-right-24.svg b/bes_theme/.icons/octicons/arrow-right-24.svg deleted file mode 100644 index cfeab3c7..00000000 --- a/bes_theme/.icons/octicons/arrow-right-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/arrow-switch-16.svg b/bes_theme/.icons/octicons/arrow-switch-16.svg deleted file mode 100644 index 949415a1..00000000 --- a/bes_theme/.icons/octicons/arrow-switch-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/arrow-switch-24.svg b/bes_theme/.icons/octicons/arrow-switch-24.svg deleted file mode 100644 index 976874fa..00000000 --- a/bes_theme/.icons/octicons/arrow-switch-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/arrow-up-16.svg b/bes_theme/.icons/octicons/arrow-up-16.svg deleted file mode 100644 index 52ea8282..00000000 --- a/bes_theme/.icons/octicons/arrow-up-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/arrow-up-24.svg b/bes_theme/.icons/octicons/arrow-up-24.svg deleted file mode 100644 index afd0ea9d..00000000 --- a/bes_theme/.icons/octicons/arrow-up-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/arrow-up-left-24.svg b/bes_theme/.icons/octicons/arrow-up-left-24.svg deleted file mode 100644 index ef3ac5ad..00000000 --- a/bes_theme/.icons/octicons/arrow-up-left-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/arrow-up-right-24.svg b/bes_theme/.icons/octicons/arrow-up-right-24.svg deleted file mode 100644 index a82685ac..00000000 --- a/bes_theme/.icons/octicons/arrow-up-right-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/beaker-16.svg b/bes_theme/.icons/octicons/beaker-16.svg deleted file mode 100644 index 3e2894b2..00000000 --- a/bes_theme/.icons/octicons/beaker-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/beaker-24.svg b/bes_theme/.icons/octicons/beaker-24.svg deleted file mode 100644 index 94b21098..00000000 --- a/bes_theme/.icons/octicons/beaker-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/bell-16.svg b/bes_theme/.icons/octicons/bell-16.svg deleted file mode 100644 index f4992d9d..00000000 --- a/bes_theme/.icons/octicons/bell-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/bell-24.svg b/bes_theme/.icons/octicons/bell-24.svg deleted file mode 100644 index 934a2506..00000000 --- a/bes_theme/.icons/octicons/bell-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/bell-fill-24.svg b/bes_theme/.icons/octicons/bell-fill-24.svg deleted file mode 100644 index 8f80b490..00000000 --- a/bes_theme/.icons/octicons/bell-fill-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/bell-slash-16.svg b/bes_theme/.icons/octicons/bell-slash-16.svg deleted file mode 100644 index 7117222c..00000000 --- a/bes_theme/.icons/octicons/bell-slash-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/bell-slash-24.svg b/bes_theme/.icons/octicons/bell-slash-24.svg deleted file mode 100644 index 99806011..00000000 --- a/bes_theme/.icons/octicons/bell-slash-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/blocked-16.svg b/bes_theme/.icons/octicons/blocked-16.svg deleted file mode 100644 index 8049d33d..00000000 --- a/bes_theme/.icons/octicons/blocked-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/blocked-24.svg b/bes_theme/.icons/octicons/blocked-24.svg deleted file mode 100644 index d562090a..00000000 --- a/bes_theme/.icons/octicons/blocked-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/bold-16.svg b/bes_theme/.icons/octicons/bold-16.svg deleted file mode 100644 index 27e2c153..00000000 --- a/bes_theme/.icons/octicons/bold-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/bold-24.svg b/bes_theme/.icons/octicons/bold-24.svg deleted file mode 100644 index 4eb873ee..00000000 --- a/bes_theme/.icons/octicons/bold-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/book-16.svg b/bes_theme/.icons/octicons/book-16.svg deleted file mode 100644 index a839da1c..00000000 --- a/bes_theme/.icons/octicons/book-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/book-24.svg b/bes_theme/.icons/octicons/book-24.svg deleted file mode 100644 index 8d25de62..00000000 --- a/bes_theme/.icons/octicons/book-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/bookmark-16.svg b/bes_theme/.icons/octicons/bookmark-16.svg deleted file mode 100644 index 511b3d8a..00000000 --- a/bes_theme/.icons/octicons/bookmark-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/bookmark-24.svg b/bes_theme/.icons/octicons/bookmark-24.svg deleted file mode 100644 index 8833a486..00000000 --- a/bes_theme/.icons/octicons/bookmark-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/bookmark-fill-24.svg b/bes_theme/.icons/octicons/bookmark-fill-24.svg deleted file mode 100644 index d1e6f534..00000000 --- a/bes_theme/.icons/octicons/bookmark-fill-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/bookmark-slash-16.svg b/bes_theme/.icons/octicons/bookmark-slash-16.svg deleted file mode 100644 index e1e96e27..00000000 --- a/bes_theme/.icons/octicons/bookmark-slash-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/bookmark-slash-24.svg b/bes_theme/.icons/octicons/bookmark-slash-24.svg deleted file mode 100644 index 22aa6551..00000000 --- a/bes_theme/.icons/octicons/bookmark-slash-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/bookmark-slash-fill-24.svg b/bes_theme/.icons/octicons/bookmark-slash-fill-24.svg deleted file mode 100644 index edd6d13a..00000000 --- a/bes_theme/.icons/octicons/bookmark-slash-fill-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/briefcase-16.svg b/bes_theme/.icons/octicons/briefcase-16.svg deleted file mode 100644 index 120afb33..00000000 --- a/bes_theme/.icons/octicons/briefcase-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/briefcase-24.svg b/bes_theme/.icons/octicons/briefcase-24.svg deleted file mode 100644 index a9176e78..00000000 --- a/bes_theme/.icons/octicons/briefcase-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/broadcast-16.svg b/bes_theme/.icons/octicons/broadcast-16.svg deleted file mode 100644 index efc281df..00000000 --- a/bes_theme/.icons/octicons/broadcast-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/broadcast-24.svg b/bes_theme/.icons/octicons/broadcast-24.svg deleted file mode 100644 index e2e81af2..00000000 --- a/bes_theme/.icons/octicons/broadcast-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/browser-16.svg b/bes_theme/.icons/octicons/browser-16.svg deleted file mode 100644 index e21165fb..00000000 --- a/bes_theme/.icons/octicons/browser-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/browser-24.svg b/bes_theme/.icons/octicons/browser-24.svg deleted file mode 100644 index 9b8e3777..00000000 --- a/bes_theme/.icons/octicons/browser-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/bug-16.svg b/bes_theme/.icons/octicons/bug-16.svg deleted file mode 100644 index 9b372cbb..00000000 --- a/bes_theme/.icons/octicons/bug-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/bug-24.svg b/bes_theme/.icons/octicons/bug-24.svg deleted file mode 100644 index 06fbdabb..00000000 --- a/bes_theme/.icons/octicons/bug-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/calendar-16.svg b/bes_theme/.icons/octicons/calendar-16.svg deleted file mode 100644 index 486cee92..00000000 --- a/bes_theme/.icons/octicons/calendar-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/calendar-24.svg b/bes_theme/.icons/octicons/calendar-24.svg deleted file mode 100644 index a82440ff..00000000 --- a/bes_theme/.icons/octicons/calendar-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/check-16.svg b/bes_theme/.icons/octicons/check-16.svg deleted file mode 100644 index ff32fccc..00000000 --- a/bes_theme/.icons/octicons/check-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/check-24.svg b/bes_theme/.icons/octicons/check-24.svg deleted file mode 100644 index e0ce5adc..00000000 --- a/bes_theme/.icons/octicons/check-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/check-circle-16.svg b/bes_theme/.icons/octicons/check-circle-16.svg deleted file mode 100644 index a77656a9..00000000 --- a/bes_theme/.icons/octicons/check-circle-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/check-circle-24.svg b/bes_theme/.icons/octicons/check-circle-24.svg deleted file mode 100644 index d8532834..00000000 --- a/bes_theme/.icons/octicons/check-circle-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/check-circle-fill-16.svg b/bes_theme/.icons/octicons/check-circle-fill-16.svg deleted file mode 100644 index 5741cfd6..00000000 --- a/bes_theme/.icons/octicons/check-circle-fill-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/check-circle-fill-24.svg b/bes_theme/.icons/octicons/check-circle-fill-24.svg deleted file mode 100644 index 5ee33acc..00000000 --- a/bes_theme/.icons/octicons/check-circle-fill-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/checklist-16.svg b/bes_theme/.icons/octicons/checklist-16.svg deleted file mode 100644 index 81f9a3ec..00000000 --- a/bes_theme/.icons/octicons/checklist-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/checklist-24.svg b/bes_theme/.icons/octicons/checklist-24.svg deleted file mode 100644 index 959bc6d6..00000000 --- a/bes_theme/.icons/octicons/checklist-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/chevron-down-16.svg b/bes_theme/.icons/octicons/chevron-down-16.svg deleted file mode 100644 index dd89cd07..00000000 --- a/bes_theme/.icons/octicons/chevron-down-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/chevron-down-24.svg b/bes_theme/.icons/octicons/chevron-down-24.svg deleted file mode 100644 index 691c33bb..00000000 --- a/bes_theme/.icons/octicons/chevron-down-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/chevron-left-16.svg b/bes_theme/.icons/octicons/chevron-left-16.svg deleted file mode 100644 index 0e94bf70..00000000 --- a/bes_theme/.icons/octicons/chevron-left-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/chevron-left-24.svg b/bes_theme/.icons/octicons/chevron-left-24.svg deleted file mode 100644 index 3ffdd2bc..00000000 --- a/bes_theme/.icons/octicons/chevron-left-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/chevron-right-16.svg b/bes_theme/.icons/octicons/chevron-right-16.svg deleted file mode 100644 index f47fd8a9..00000000 --- a/bes_theme/.icons/octicons/chevron-right-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/chevron-right-24.svg b/bes_theme/.icons/octicons/chevron-right-24.svg deleted file mode 100644 index 02ca07ac..00000000 --- a/bes_theme/.icons/octicons/chevron-right-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/chevron-up-16.svg b/bes_theme/.icons/octicons/chevron-up-16.svg deleted file mode 100644 index 231a8d56..00000000 --- a/bes_theme/.icons/octicons/chevron-up-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/chevron-up-24.svg b/bes_theme/.icons/octicons/chevron-up-24.svg deleted file mode 100644 index 50b55d92..00000000 --- a/bes_theme/.icons/octicons/chevron-up-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/circle-16.svg b/bes_theme/.icons/octicons/circle-16.svg deleted file mode 100644 index add1eb33..00000000 --- a/bes_theme/.icons/octicons/circle-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/circle-24.svg b/bes_theme/.icons/octicons/circle-24.svg deleted file mode 100644 index 40c08bff..00000000 --- a/bes_theme/.icons/octicons/circle-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/circle-slash-16.svg b/bes_theme/.icons/octicons/circle-slash-16.svg deleted file mode 100644 index 4e70899b..00000000 --- a/bes_theme/.icons/octicons/circle-slash-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/circle-slash-24.svg b/bes_theme/.icons/octicons/circle-slash-24.svg deleted file mode 100644 index a34e303d..00000000 --- a/bes_theme/.icons/octicons/circle-slash-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/clippy-16.svg b/bes_theme/.icons/octicons/clippy-16.svg deleted file mode 100644 index 18e13447..00000000 --- a/bes_theme/.icons/octicons/clippy-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/clippy-24.svg b/bes_theme/.icons/octicons/clippy-24.svg deleted file mode 100644 index e3dbe9e8..00000000 --- a/bes_theme/.icons/octicons/clippy-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/clock-16.svg b/bes_theme/.icons/octicons/clock-16.svg deleted file mode 100644 index 4da36fd6..00000000 --- a/bes_theme/.icons/octicons/clock-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/clock-24.svg b/bes_theme/.icons/octicons/clock-24.svg deleted file mode 100644 index 4a318434..00000000 --- a/bes_theme/.icons/octicons/clock-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/code-16.svg b/bes_theme/.icons/octicons/code-16.svg deleted file mode 100644 index 46346dd2..00000000 --- a/bes_theme/.icons/octicons/code-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/code-24.svg b/bes_theme/.icons/octicons/code-24.svg deleted file mode 100644 index 0a42a054..00000000 --- a/bes_theme/.icons/octicons/code-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/code-review-16.svg b/bes_theme/.icons/octicons/code-review-16.svg deleted file mode 100644 index 70d699cb..00000000 --- a/bes_theme/.icons/octicons/code-review-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/code-review-24.svg b/bes_theme/.icons/octicons/code-review-24.svg deleted file mode 100644 index 937472b8..00000000 --- a/bes_theme/.icons/octicons/code-review-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/code-square-16.svg b/bes_theme/.icons/octicons/code-square-16.svg deleted file mode 100644 index 6fe7617c..00000000 --- a/bes_theme/.icons/octicons/code-square-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/code-square-24.svg b/bes_theme/.icons/octicons/code-square-24.svg deleted file mode 100644 index 854eb63f..00000000 --- a/bes_theme/.icons/octicons/code-square-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/codescan-16.svg b/bes_theme/.icons/octicons/codescan-16.svg deleted file mode 100644 index 54796fb5..00000000 --- a/bes_theme/.icons/octicons/codescan-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/codescan-24.svg b/bes_theme/.icons/octicons/codescan-24.svg deleted file mode 100644 index 9dfee911..00000000 --- a/bes_theme/.icons/octicons/codescan-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/codescan-checkmark-16.svg b/bes_theme/.icons/octicons/codescan-checkmark-16.svg deleted file mode 100644 index ff91bd42..00000000 --- a/bes_theme/.icons/octicons/codescan-checkmark-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/codescan-checkmark-24.svg b/bes_theme/.icons/octicons/codescan-checkmark-24.svg deleted file mode 100644 index ca8ad80c..00000000 --- a/bes_theme/.icons/octicons/codescan-checkmark-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/codespaces-16.svg b/bes_theme/.icons/octicons/codespaces-16.svg deleted file mode 100644 index f56b6d98..00000000 --- a/bes_theme/.icons/octicons/codespaces-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/codespaces-24.svg b/bes_theme/.icons/octicons/codespaces-24.svg deleted file mode 100644 index 965e8d63..00000000 --- a/bes_theme/.icons/octicons/codespaces-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/columns-16.svg b/bes_theme/.icons/octicons/columns-16.svg deleted file mode 100644 index 60759e2f..00000000 --- a/bes_theme/.icons/octicons/columns-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/columns-24.svg b/bes_theme/.icons/octicons/columns-24.svg deleted file mode 100644 index cf9f69d9..00000000 --- a/bes_theme/.icons/octicons/columns-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/comment-16.svg b/bes_theme/.icons/octicons/comment-16.svg deleted file mode 100644 index 25173c03..00000000 --- a/bes_theme/.icons/octicons/comment-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/comment-24.svg b/bes_theme/.icons/octicons/comment-24.svg deleted file mode 100644 index b4caaa05..00000000 --- a/bes_theme/.icons/octicons/comment-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/comment-discussion-16.svg b/bes_theme/.icons/octicons/comment-discussion-16.svg deleted file mode 100644 index c7342e3f..00000000 --- a/bes_theme/.icons/octicons/comment-discussion-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/comment-discussion-24.svg b/bes_theme/.icons/octicons/comment-discussion-24.svg deleted file mode 100644 index 61ed8b31..00000000 --- a/bes_theme/.icons/octicons/comment-discussion-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/commit-24.svg b/bes_theme/.icons/octicons/commit-24.svg deleted file mode 100644 index 2e240b38..00000000 --- a/bes_theme/.icons/octicons/commit-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/container-16.svg b/bes_theme/.icons/octicons/container-16.svg deleted file mode 100644 index 2580f397..00000000 --- a/bes_theme/.icons/octicons/container-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/container-24.svg b/bes_theme/.icons/octicons/container-24.svg deleted file mode 100644 index acfc6007..00000000 --- a/bes_theme/.icons/octicons/container-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/cpu-16.svg b/bes_theme/.icons/octicons/cpu-16.svg deleted file mode 100644 index e809359c..00000000 --- a/bes_theme/.icons/octicons/cpu-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/cpu-24.svg b/bes_theme/.icons/octicons/cpu-24.svg deleted file mode 100644 index 1e10dc66..00000000 --- a/bes_theme/.icons/octicons/cpu-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/credit-card-16.svg b/bes_theme/.icons/octicons/credit-card-16.svg deleted file mode 100644 index 087d2119..00000000 --- a/bes_theme/.icons/octicons/credit-card-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/credit-card-24.svg b/bes_theme/.icons/octicons/credit-card-24.svg deleted file mode 100644 index 759962a9..00000000 --- a/bes_theme/.icons/octicons/credit-card-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/cross-reference-16.svg b/bes_theme/.icons/octicons/cross-reference-16.svg deleted file mode 100644 index cee6f7c0..00000000 --- a/bes_theme/.icons/octicons/cross-reference-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/cross-reference-24.svg b/bes_theme/.icons/octicons/cross-reference-24.svg deleted file mode 100644 index eabb5f2e..00000000 --- a/bes_theme/.icons/octicons/cross-reference-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/dash-16.svg b/bes_theme/.icons/octicons/dash-16.svg deleted file mode 100644 index 40bd13d7..00000000 --- a/bes_theme/.icons/octicons/dash-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/dash-24.svg b/bes_theme/.icons/octicons/dash-24.svg deleted file mode 100644 index f69dde6c..00000000 --- a/bes_theme/.icons/octicons/dash-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/database-16.svg b/bes_theme/.icons/octicons/database-16.svg deleted file mode 100644 index 5a12c6b6..00000000 --- a/bes_theme/.icons/octicons/database-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/database-24.svg b/bes_theme/.icons/octicons/database-24.svg deleted file mode 100644 index 256c5fb7..00000000 --- a/bes_theme/.icons/octicons/database-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/dependabot-16.svg b/bes_theme/.icons/octicons/dependabot-16.svg deleted file mode 100644 index fa4712f7..00000000 --- a/bes_theme/.icons/octicons/dependabot-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/dependabot-24.svg b/bes_theme/.icons/octicons/dependabot-24.svg deleted file mode 100644 index bbcc5584..00000000 --- a/bes_theme/.icons/octicons/dependabot-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/desktop-download-16.svg b/bes_theme/.icons/octicons/desktop-download-16.svg deleted file mode 100644 index 0544d60a..00000000 --- a/bes_theme/.icons/octicons/desktop-download-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/desktop-download-24.svg b/bes_theme/.icons/octicons/desktop-download-24.svg deleted file mode 100644 index 74acc42f..00000000 --- a/bes_theme/.icons/octicons/desktop-download-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/device-camera-16.svg b/bes_theme/.icons/octicons/device-camera-16.svg deleted file mode 100644 index f19a9091..00000000 --- a/bes_theme/.icons/octicons/device-camera-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/device-camera-video-16.svg b/bes_theme/.icons/octicons/device-camera-video-16.svg deleted file mode 100644 index 1135e738..00000000 --- a/bes_theme/.icons/octicons/device-camera-video-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/device-camera-video-24.svg b/bes_theme/.icons/octicons/device-camera-video-24.svg deleted file mode 100644 index 6239b6ce..00000000 --- a/bes_theme/.icons/octicons/device-camera-video-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/device-desktop-16.svg b/bes_theme/.icons/octicons/device-desktop-16.svg deleted file mode 100644 index 75553861..00000000 --- a/bes_theme/.icons/octicons/device-desktop-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/device-desktop-24.svg b/bes_theme/.icons/octicons/device-desktop-24.svg deleted file mode 100644 index 78184411..00000000 --- a/bes_theme/.icons/octicons/device-desktop-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/device-mobile-16.svg b/bes_theme/.icons/octicons/device-mobile-16.svg deleted file mode 100644 index a79d1e5c..00000000 --- a/bes_theme/.icons/octicons/device-mobile-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/device-mobile-24.svg b/bes_theme/.icons/octicons/device-mobile-24.svg deleted file mode 100644 index 9a280f9f..00000000 --- a/bes_theme/.icons/octicons/device-mobile-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/diamond-16.svg b/bes_theme/.icons/octicons/diamond-16.svg deleted file mode 100644 index 53ae5113..00000000 --- a/bes_theme/.icons/octicons/diamond-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/diamond-24.svg b/bes_theme/.icons/octicons/diamond-24.svg deleted file mode 100644 index 20266bcd..00000000 --- a/bes_theme/.icons/octicons/diamond-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/diff-16.svg b/bes_theme/.icons/octicons/diff-16.svg deleted file mode 100644 index 0490c2b2..00000000 --- a/bes_theme/.icons/octicons/diff-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/diff-24.svg b/bes_theme/.icons/octicons/diff-24.svg deleted file mode 100644 index 6499e578..00000000 --- a/bes_theme/.icons/octicons/diff-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/diff-added-16.svg b/bes_theme/.icons/octicons/diff-added-16.svg deleted file mode 100644 index 9e4db5b0..00000000 --- a/bes_theme/.icons/octicons/diff-added-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/diff-ignored-16.svg b/bes_theme/.icons/octicons/diff-ignored-16.svg deleted file mode 100644 index 93030401..00000000 --- a/bes_theme/.icons/octicons/diff-ignored-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/diff-modified-16.svg b/bes_theme/.icons/octicons/diff-modified-16.svg deleted file mode 100644 index 1da70962..00000000 --- a/bes_theme/.icons/octicons/diff-modified-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/diff-removed-16.svg b/bes_theme/.icons/octicons/diff-removed-16.svg deleted file mode 100644 index fcafe6d6..00000000 --- a/bes_theme/.icons/octicons/diff-removed-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/diff-renamed-16.svg b/bes_theme/.icons/octicons/diff-renamed-16.svg deleted file mode 100644 index 2663eead..00000000 --- a/bes_theme/.icons/octicons/diff-renamed-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/dot-16.svg b/bes_theme/.icons/octicons/dot-16.svg deleted file mode 100644 index 1617e629..00000000 --- a/bes_theme/.icons/octicons/dot-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/dot-24.svg b/bes_theme/.icons/octicons/dot-24.svg deleted file mode 100644 index 0062f01b..00000000 --- a/bes_theme/.icons/octicons/dot-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/dot-fill-16.svg b/bes_theme/.icons/octicons/dot-fill-16.svg deleted file mode 100644 index 20594fe1..00000000 --- a/bes_theme/.icons/octicons/dot-fill-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/dot-fill-24.svg b/bes_theme/.icons/octicons/dot-fill-24.svg deleted file mode 100644 index b9641a35..00000000 --- a/bes_theme/.icons/octicons/dot-fill-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/download-16.svg b/bes_theme/.icons/octicons/download-16.svg deleted file mode 100644 index 0ffde5f9..00000000 --- a/bes_theme/.icons/octicons/download-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/download-24.svg b/bes_theme/.icons/octicons/download-24.svg deleted file mode 100644 index 81d204b6..00000000 --- a/bes_theme/.icons/octicons/download-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/duplicate-16.svg b/bes_theme/.icons/octicons/duplicate-16.svg deleted file mode 100644 index 1584d336..00000000 --- a/bes_theme/.icons/octicons/duplicate-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/duplicate-24.svg b/bes_theme/.icons/octicons/duplicate-24.svg deleted file mode 100644 index dd7d7fe0..00000000 --- a/bes_theme/.icons/octicons/duplicate-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/ellipsis-16.svg b/bes_theme/.icons/octicons/ellipsis-16.svg deleted file mode 100644 index 53ef30fe..00000000 --- a/bes_theme/.icons/octicons/ellipsis-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/eye-16.svg b/bes_theme/.icons/octicons/eye-16.svg deleted file mode 100644 index df00c9af..00000000 --- a/bes_theme/.icons/octicons/eye-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/eye-24.svg b/bes_theme/.icons/octicons/eye-24.svg deleted file mode 100644 index f210b00b..00000000 --- a/bes_theme/.icons/octicons/eye-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/eye-closed-16.svg b/bes_theme/.icons/octicons/eye-closed-16.svg deleted file mode 100644 index bc73aa72..00000000 --- a/bes_theme/.icons/octicons/eye-closed-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/eye-closed-24.svg b/bes_theme/.icons/octicons/eye-closed-24.svg deleted file mode 100644 index afded9db..00000000 --- a/bes_theme/.icons/octicons/eye-closed-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/file-16.svg b/bes_theme/.icons/octicons/file-16.svg deleted file mode 100644 index 8daa008c..00000000 --- a/bes_theme/.icons/octicons/file-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/file-24.svg b/bes_theme/.icons/octicons/file-24.svg deleted file mode 100644 index 8d68750b..00000000 --- a/bes_theme/.icons/octicons/file-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/file-badge-16.svg b/bes_theme/.icons/octicons/file-badge-16.svg deleted file mode 100644 index 01d9aa86..00000000 --- a/bes_theme/.icons/octicons/file-badge-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/file-binary-16.svg b/bes_theme/.icons/octicons/file-binary-16.svg deleted file mode 100644 index a5484b6d..00000000 --- a/bes_theme/.icons/octicons/file-binary-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/file-binary-24.svg b/bes_theme/.icons/octicons/file-binary-24.svg deleted file mode 100644 index b7dab60b..00000000 --- a/bes_theme/.icons/octicons/file-binary-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/file-code-16.svg b/bes_theme/.icons/octicons/file-code-16.svg deleted file mode 100644 index 2174514c..00000000 --- a/bes_theme/.icons/octicons/file-code-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/file-code-24.svg b/bes_theme/.icons/octicons/file-code-24.svg deleted file mode 100644 index 1d5af0ce..00000000 --- a/bes_theme/.icons/octicons/file-code-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/file-diff-16.svg b/bes_theme/.icons/octicons/file-diff-16.svg deleted file mode 100644 index 9433f742..00000000 --- a/bes_theme/.icons/octicons/file-diff-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/file-diff-24.svg b/bes_theme/.icons/octicons/file-diff-24.svg deleted file mode 100644 index cfbb1ffa..00000000 --- a/bes_theme/.icons/octicons/file-diff-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/file-directory-16.svg b/bes_theme/.icons/octicons/file-directory-16.svg deleted file mode 100644 index fe2b0f76..00000000 --- a/bes_theme/.icons/octicons/file-directory-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/file-directory-24.svg b/bes_theme/.icons/octicons/file-directory-24.svg deleted file mode 100644 index cd42adbb..00000000 --- a/bes_theme/.icons/octicons/file-directory-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/file-directory-fill-24.svg b/bes_theme/.icons/octicons/file-directory-fill-24.svg deleted file mode 100644 index 7c11a6a4..00000000 --- a/bes_theme/.icons/octicons/file-directory-fill-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/file-media-24.svg b/bes_theme/.icons/octicons/file-media-24.svg deleted file mode 100644 index 9e82b1e1..00000000 --- a/bes_theme/.icons/octicons/file-media-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/file-submodule-16.svg b/bes_theme/.icons/octicons/file-submodule-16.svg deleted file mode 100644 index 58204132..00000000 --- a/bes_theme/.icons/octicons/file-submodule-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/file-submodule-24.svg b/bes_theme/.icons/octicons/file-submodule-24.svg deleted file mode 100644 index 6af49d44..00000000 --- a/bes_theme/.icons/octicons/file-submodule-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/file-symlink-file-16.svg b/bes_theme/.icons/octicons/file-symlink-file-16.svg deleted file mode 100644 index 073930d5..00000000 --- a/bes_theme/.icons/octicons/file-symlink-file-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/file-symlink-file-24.svg b/bes_theme/.icons/octicons/file-symlink-file-24.svg deleted file mode 100644 index 036c27de..00000000 --- a/bes_theme/.icons/octicons/file-symlink-file-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/file-zip-16.svg b/bes_theme/.icons/octicons/file-zip-16.svg deleted file mode 100644 index a85421b2..00000000 --- a/bes_theme/.icons/octicons/file-zip-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/file-zip-24.svg b/bes_theme/.icons/octicons/file-zip-24.svg deleted file mode 100644 index 4a11a4e8..00000000 --- a/bes_theme/.icons/octicons/file-zip-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/filter-16.svg b/bes_theme/.icons/octicons/filter-16.svg deleted file mode 100644 index 1fcac29b..00000000 --- a/bes_theme/.icons/octicons/filter-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/filter-24.svg b/bes_theme/.icons/octicons/filter-24.svg deleted file mode 100644 index 1c52a200..00000000 --- a/bes_theme/.icons/octicons/filter-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/flame-16.svg b/bes_theme/.icons/octicons/flame-16.svg deleted file mode 100644 index 1e379980..00000000 --- a/bes_theme/.icons/octicons/flame-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/flame-24.svg b/bes_theme/.icons/octicons/flame-24.svg deleted file mode 100644 index 8f1e3ea5..00000000 --- a/bes_theme/.icons/octicons/flame-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/fold-16.svg b/bes_theme/.icons/octicons/fold-16.svg deleted file mode 100644 index fb4ed736..00000000 --- a/bes_theme/.icons/octicons/fold-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/fold-24.svg b/bes_theme/.icons/octicons/fold-24.svg deleted file mode 100644 index d0240d7a..00000000 --- a/bes_theme/.icons/octicons/fold-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/fold-down-16.svg b/bes_theme/.icons/octicons/fold-down-16.svg deleted file mode 100644 index 185c8856..00000000 --- a/bes_theme/.icons/octicons/fold-down-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/fold-down-24.svg b/bes_theme/.icons/octicons/fold-down-24.svg deleted file mode 100644 index 64a6fa80..00000000 --- a/bes_theme/.icons/octicons/fold-down-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/fold-up-16.svg b/bes_theme/.icons/octicons/fold-up-16.svg deleted file mode 100644 index 26f484af..00000000 --- a/bes_theme/.icons/octicons/fold-up-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/fold-up-24.svg b/bes_theme/.icons/octicons/fold-up-24.svg deleted file mode 100644 index 362438d4..00000000 --- a/bes_theme/.icons/octicons/fold-up-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/gear-16.svg b/bes_theme/.icons/octicons/gear-16.svg deleted file mode 100644 index 84587268..00000000 --- a/bes_theme/.icons/octicons/gear-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/gear-24.svg b/bes_theme/.icons/octicons/gear-24.svg deleted file mode 100644 index 647b0c5a..00000000 --- a/bes_theme/.icons/octicons/gear-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/gift-16.svg b/bes_theme/.icons/octicons/gift-16.svg deleted file mode 100644 index 6c303c5e..00000000 --- a/bes_theme/.icons/octicons/gift-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/gift-24.svg b/bes_theme/.icons/octicons/gift-24.svg deleted file mode 100644 index c1cc2931..00000000 --- a/bes_theme/.icons/octicons/gift-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/git-branch-16.svg b/bes_theme/.icons/octicons/git-branch-16.svg deleted file mode 100644 index 792aac2d..00000000 --- a/bes_theme/.icons/octicons/git-branch-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/git-branch-24.svg b/bes_theme/.icons/octicons/git-branch-24.svg deleted file mode 100644 index 5788a6e0..00000000 --- a/bes_theme/.icons/octicons/git-branch-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/git-commit-16.svg b/bes_theme/.icons/octicons/git-commit-16.svg deleted file mode 100644 index 6b954e98..00000000 --- a/bes_theme/.icons/octicons/git-commit-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/git-commit-24.svg b/bes_theme/.icons/octicons/git-commit-24.svg deleted file mode 100644 index c3c3792c..00000000 --- a/bes_theme/.icons/octicons/git-commit-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/git-compare-16.svg b/bes_theme/.icons/octicons/git-compare-16.svg deleted file mode 100644 index 06b27e19..00000000 --- a/bes_theme/.icons/octicons/git-compare-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/git-compare-24.svg b/bes_theme/.icons/octicons/git-compare-24.svg deleted file mode 100644 index 20e20259..00000000 --- a/bes_theme/.icons/octicons/git-compare-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/git-merge-16.svg b/bes_theme/.icons/octicons/git-merge-16.svg deleted file mode 100644 index 42f88d91..00000000 --- a/bes_theme/.icons/octicons/git-merge-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/git-merge-24.svg b/bes_theme/.icons/octicons/git-merge-24.svg deleted file mode 100644 index 4a03e0e8..00000000 --- a/bes_theme/.icons/octicons/git-merge-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/git-pull-request-16.svg b/bes_theme/.icons/octicons/git-pull-request-16.svg deleted file mode 100644 index 353c11a9..00000000 --- a/bes_theme/.icons/octicons/git-pull-request-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/git-pull-request-24.svg b/bes_theme/.icons/octicons/git-pull-request-24.svg deleted file mode 100644 index 66174cc6..00000000 --- a/bes_theme/.icons/octicons/git-pull-request-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/git-pull-request-closed-16.svg b/bes_theme/.icons/octicons/git-pull-request-closed-16.svg deleted file mode 100644 index f248d71d..00000000 --- a/bes_theme/.icons/octicons/git-pull-request-closed-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/git-pull-request-closed-24.svg b/bes_theme/.icons/octicons/git-pull-request-closed-24.svg deleted file mode 100644 index c31ac4d7..00000000 --- a/bes_theme/.icons/octicons/git-pull-request-closed-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/git-pull-request-draft-16.svg b/bes_theme/.icons/octicons/git-pull-request-draft-16.svg deleted file mode 100644 index 59a161a8..00000000 --- a/bes_theme/.icons/octicons/git-pull-request-draft-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/git-pull-request-draft-24.svg b/bes_theme/.icons/octicons/git-pull-request-draft-24.svg deleted file mode 100644 index 148795a4..00000000 --- a/bes_theme/.icons/octicons/git-pull-request-draft-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/globe-16.svg b/bes_theme/.icons/octicons/globe-16.svg deleted file mode 100644 index 8b4eeba2..00000000 --- a/bes_theme/.icons/octicons/globe-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/globe-24.svg b/bes_theme/.icons/octicons/globe-24.svg deleted file mode 100644 index b319e1ad..00000000 --- a/bes_theme/.icons/octicons/globe-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/grabber-16.svg b/bes_theme/.icons/octicons/grabber-16.svg deleted file mode 100644 index 63b131f5..00000000 --- a/bes_theme/.icons/octicons/grabber-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/grabber-24.svg b/bes_theme/.icons/octicons/grabber-24.svg deleted file mode 100644 index 7a8bec01..00000000 --- a/bes_theme/.icons/octicons/grabber-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/graph-16.svg b/bes_theme/.icons/octicons/graph-16.svg deleted file mode 100644 index 9389321a..00000000 --- a/bes_theme/.icons/octicons/graph-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/graph-24.svg b/bes_theme/.icons/octicons/graph-24.svg deleted file mode 100644 index eb60378a..00000000 --- a/bes_theme/.icons/octicons/graph-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/hash-16.svg b/bes_theme/.icons/octicons/hash-16.svg deleted file mode 100644 index 9dacd700..00000000 --- a/bes_theme/.icons/octicons/hash-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/hash-24.svg b/bes_theme/.icons/octicons/hash-24.svg deleted file mode 100644 index 20c34fda..00000000 --- a/bes_theme/.icons/octicons/hash-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/heading-16.svg b/bes_theme/.icons/octicons/heading-16.svg deleted file mode 100644 index 4dc6345e..00000000 --- a/bes_theme/.icons/octicons/heading-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/heading-24.svg b/bes_theme/.icons/octicons/heading-24.svg deleted file mode 100644 index 5f3d5aba..00000000 --- a/bes_theme/.icons/octicons/heading-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/heart-16.svg b/bes_theme/.icons/octicons/heart-16.svg deleted file mode 100644 index 09ffc4af..00000000 --- a/bes_theme/.icons/octicons/heart-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/heart-24.svg b/bes_theme/.icons/octicons/heart-24.svg deleted file mode 100644 index a3dd9423..00000000 --- a/bes_theme/.icons/octicons/heart-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/heart-fill-16.svg b/bes_theme/.icons/octicons/heart-fill-16.svg deleted file mode 100644 index 90cce588..00000000 --- a/bes_theme/.icons/octicons/heart-fill-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/heart-fill-24.svg b/bes_theme/.icons/octicons/heart-fill-24.svg deleted file mode 100644 index 31e6dc5c..00000000 --- a/bes_theme/.icons/octicons/heart-fill-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/history-16.svg b/bes_theme/.icons/octicons/history-16.svg deleted file mode 100644 index 1a234bc7..00000000 --- a/bes_theme/.icons/octicons/history-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/history-24.svg b/bes_theme/.icons/octicons/history-24.svg deleted file mode 100644 index a2bb73d0..00000000 --- a/bes_theme/.icons/octicons/history-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/home-16.svg b/bes_theme/.icons/octicons/home-16.svg deleted file mode 100644 index 0a130913..00000000 --- a/bes_theme/.icons/octicons/home-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/home-24.svg b/bes_theme/.icons/octicons/home-24.svg deleted file mode 100644 index 662272a5..00000000 --- a/bes_theme/.icons/octicons/home-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/home-fill-24.svg b/bes_theme/.icons/octicons/home-fill-24.svg deleted file mode 100644 index 77ccf91e..00000000 --- a/bes_theme/.icons/octicons/home-fill-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/horizontal-rule-16.svg b/bes_theme/.icons/octicons/horizontal-rule-16.svg deleted file mode 100644 index 65a74b00..00000000 --- a/bes_theme/.icons/octicons/horizontal-rule-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/horizontal-rule-24.svg b/bes_theme/.icons/octicons/horizontal-rule-24.svg deleted file mode 100644 index de6467d6..00000000 --- a/bes_theme/.icons/octicons/horizontal-rule-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/hourglass-16.svg b/bes_theme/.icons/octicons/hourglass-16.svg deleted file mode 100644 index 4e95c109..00000000 --- a/bes_theme/.icons/octicons/hourglass-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/hourglass-24.svg b/bes_theme/.icons/octicons/hourglass-24.svg deleted file mode 100644 index cc789f72..00000000 --- a/bes_theme/.icons/octicons/hourglass-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/hubot-16.svg b/bes_theme/.icons/octicons/hubot-16.svg deleted file mode 100644 index 5a07fc76..00000000 --- a/bes_theme/.icons/octicons/hubot-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/hubot-24.svg b/bes_theme/.icons/octicons/hubot-24.svg deleted file mode 100644 index 09cb1161..00000000 --- a/bes_theme/.icons/octicons/hubot-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/image-16.svg b/bes_theme/.icons/octicons/image-16.svg deleted file mode 100644 index 3b7a2d26..00000000 --- a/bes_theme/.icons/octicons/image-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/image-24.svg b/bes_theme/.icons/octicons/image-24.svg deleted file mode 100644 index 3da83da8..00000000 --- a/bes_theme/.icons/octicons/image-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/inbox-16.svg b/bes_theme/.icons/octicons/inbox-16.svg deleted file mode 100644 index 8655dc82..00000000 --- a/bes_theme/.icons/octicons/inbox-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/inbox-24.svg b/bes_theme/.icons/octicons/inbox-24.svg deleted file mode 100644 index be82e1b2..00000000 --- a/bes_theme/.icons/octicons/inbox-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/infinity-16.svg b/bes_theme/.icons/octicons/infinity-16.svg deleted file mode 100644 index e48ebf1a..00000000 --- a/bes_theme/.icons/octicons/infinity-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/infinity-24.svg b/bes_theme/.icons/octicons/infinity-24.svg deleted file mode 100644 index 0a6ad2a3..00000000 --- a/bes_theme/.icons/octicons/infinity-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/info-16.svg b/bes_theme/.icons/octicons/info-16.svg deleted file mode 100644 index efffa1a0..00000000 --- a/bes_theme/.icons/octicons/info-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/info-24.svg b/bes_theme/.icons/octicons/info-24.svg deleted file mode 100644 index e683bbd7..00000000 --- a/bes_theme/.icons/octicons/info-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/issue-closed-16.svg b/bes_theme/.icons/octicons/issue-closed-16.svg deleted file mode 100644 index a78ec391..00000000 --- a/bes_theme/.icons/octicons/issue-closed-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/issue-closed-24.svg b/bes_theme/.icons/octicons/issue-closed-24.svg deleted file mode 100644 index d8532834..00000000 --- a/bes_theme/.icons/octicons/issue-closed-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/issue-draft-16.svg b/bes_theme/.icons/octicons/issue-draft-16.svg deleted file mode 100644 index 75ff8915..00000000 --- a/bes_theme/.icons/octicons/issue-draft-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/issue-draft-24.svg b/bes_theme/.icons/octicons/issue-draft-24.svg deleted file mode 100644 index c99ab361..00000000 --- a/bes_theme/.icons/octicons/issue-draft-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/issue-opened-16.svg b/bes_theme/.icons/octicons/issue-opened-16.svg deleted file mode 100644 index f4c2ef6f..00000000 --- a/bes_theme/.icons/octicons/issue-opened-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/issue-opened-24.svg b/bes_theme/.icons/octicons/issue-opened-24.svg deleted file mode 100644 index cc06e424..00000000 --- a/bes_theme/.icons/octicons/issue-opened-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/issue-reopened-16.svg b/bes_theme/.icons/octicons/issue-reopened-16.svg deleted file mode 100644 index 38efcb9f..00000000 --- a/bes_theme/.icons/octicons/issue-reopened-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/issue-reopened-24.svg b/bes_theme/.icons/octicons/issue-reopened-24.svg deleted file mode 100644 index 4026b0d7..00000000 --- a/bes_theme/.icons/octicons/issue-reopened-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/italic-16.svg b/bes_theme/.icons/octicons/italic-16.svg deleted file mode 100644 index 5e85d706..00000000 --- a/bes_theme/.icons/octicons/italic-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/italic-24.svg b/bes_theme/.icons/octicons/italic-24.svg deleted file mode 100644 index f5c64b29..00000000 --- a/bes_theme/.icons/octicons/italic-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/kebab-horizontal-16.svg b/bes_theme/.icons/octicons/kebab-horizontal-16.svg deleted file mode 100644 index 8398f024..00000000 --- a/bes_theme/.icons/octicons/kebab-horizontal-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/kebab-horizontal-24.svg b/bes_theme/.icons/octicons/kebab-horizontal-24.svg deleted file mode 100644 index 65d2649e..00000000 --- a/bes_theme/.icons/octicons/kebab-horizontal-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/key-16.svg b/bes_theme/.icons/octicons/key-16.svg deleted file mode 100644 index d5ead8f9..00000000 --- a/bes_theme/.icons/octicons/key-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/key-24.svg b/bes_theme/.icons/octicons/key-24.svg deleted file mode 100644 index c6500b44..00000000 --- a/bes_theme/.icons/octicons/key-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/key-asterisk-16.svg b/bes_theme/.icons/octicons/key-asterisk-16.svg deleted file mode 100644 index f3f75c61..00000000 --- a/bes_theme/.icons/octicons/key-asterisk-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/law-16.svg b/bes_theme/.icons/octicons/law-16.svg deleted file mode 100644 index 7900ae14..00000000 --- a/bes_theme/.icons/octicons/law-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/law-24.svg b/bes_theme/.icons/octicons/law-24.svg deleted file mode 100644 index 151f1fe2..00000000 --- a/bes_theme/.icons/octicons/law-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/light-bulb-16.svg b/bes_theme/.icons/octicons/light-bulb-16.svg deleted file mode 100644 index c6a07bbd..00000000 --- a/bes_theme/.icons/octicons/light-bulb-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/light-bulb-24.svg b/bes_theme/.icons/octicons/light-bulb-24.svg deleted file mode 100644 index 5b3c25df..00000000 --- a/bes_theme/.icons/octicons/light-bulb-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/link-16.svg b/bes_theme/.icons/octicons/link-16.svg deleted file mode 100644 index 5a5e4778..00000000 --- a/bes_theme/.icons/octicons/link-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/link-24.svg b/bes_theme/.icons/octicons/link-24.svg deleted file mode 100644 index 3e9c11e6..00000000 --- a/bes_theme/.icons/octicons/link-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/link-external-16.svg b/bes_theme/.icons/octicons/link-external-16.svg deleted file mode 100644 index 8d2369bc..00000000 --- a/bes_theme/.icons/octicons/link-external-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/link-external-24.svg b/bes_theme/.icons/octicons/link-external-24.svg deleted file mode 100644 index 81d39fed..00000000 --- a/bes_theme/.icons/octicons/link-external-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/list-ordered-16.svg b/bes_theme/.icons/octicons/list-ordered-16.svg deleted file mode 100644 index 33e72568..00000000 --- a/bes_theme/.icons/octicons/list-ordered-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/list-ordered-24.svg b/bes_theme/.icons/octicons/list-ordered-24.svg deleted file mode 100644 index eba58609..00000000 --- a/bes_theme/.icons/octicons/list-ordered-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/list-unordered-16.svg b/bes_theme/.icons/octicons/list-unordered-16.svg deleted file mode 100644 index 9d5c442a..00000000 --- a/bes_theme/.icons/octicons/list-unordered-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/list-unordered-24.svg b/bes_theme/.icons/octicons/list-unordered-24.svg deleted file mode 100644 index dd8dc20c..00000000 --- a/bes_theme/.icons/octicons/list-unordered-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/location-16.svg b/bes_theme/.icons/octicons/location-16.svg deleted file mode 100644 index 38fab28d..00000000 --- a/bes_theme/.icons/octicons/location-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/location-24.svg b/bes_theme/.icons/octicons/location-24.svg deleted file mode 100644 index 3f77b6e5..00000000 --- a/bes_theme/.icons/octicons/location-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/lock-16.svg b/bes_theme/.icons/octicons/lock-16.svg deleted file mode 100644 index c9667456..00000000 --- a/bes_theme/.icons/octicons/lock-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/lock-24.svg b/bes_theme/.icons/octicons/lock-24.svg deleted file mode 100644 index 1fa85108..00000000 --- a/bes_theme/.icons/octicons/lock-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/logo-gist-16.svg b/bes_theme/.icons/octicons/logo-gist-16.svg deleted file mode 100644 index 4aeea9bd..00000000 --- a/bes_theme/.icons/octicons/logo-gist-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/logo-github-16.svg b/bes_theme/.icons/octicons/logo-github-16.svg deleted file mode 100644 index ce5e5038..00000000 --- a/bes_theme/.icons/octicons/logo-github-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/mail-16.svg b/bes_theme/.icons/octicons/mail-16.svg deleted file mode 100644 index 621ded02..00000000 --- a/bes_theme/.icons/octicons/mail-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/mail-24.svg b/bes_theme/.icons/octicons/mail-24.svg deleted file mode 100644 index 861dd00c..00000000 --- a/bes_theme/.icons/octicons/mail-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/mark-github-16.svg b/bes_theme/.icons/octicons/mark-github-16.svg deleted file mode 100644 index b7eb9c71..00000000 --- a/bes_theme/.icons/octicons/mark-github-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/markdown-16.svg b/bes_theme/.icons/octicons/markdown-16.svg deleted file mode 100644 index 5955d758..00000000 --- a/bes_theme/.icons/octicons/markdown-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/megaphone-16.svg b/bes_theme/.icons/octicons/megaphone-16.svg deleted file mode 100644 index a960511e..00000000 --- a/bes_theme/.icons/octicons/megaphone-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/megaphone-24.svg b/bes_theme/.icons/octicons/megaphone-24.svg deleted file mode 100644 index 7758e570..00000000 --- a/bes_theme/.icons/octicons/megaphone-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/mention-16.svg b/bes_theme/.icons/octicons/mention-16.svg deleted file mode 100644 index e407edc4..00000000 --- a/bes_theme/.icons/octicons/mention-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/mention-24.svg b/bes_theme/.icons/octicons/mention-24.svg deleted file mode 100644 index 4e76fe37..00000000 --- a/bes_theme/.icons/octicons/mention-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/meter-16.svg b/bes_theme/.icons/octicons/meter-16.svg deleted file mode 100644 index 75cc531a..00000000 --- a/bes_theme/.icons/octicons/meter-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/milestone-16.svg b/bes_theme/.icons/octicons/milestone-16.svg deleted file mode 100644 index 03872b19..00000000 --- a/bes_theme/.icons/octicons/milestone-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/milestone-24.svg b/bes_theme/.icons/octicons/milestone-24.svg deleted file mode 100644 index e8e6db1e..00000000 --- a/bes_theme/.icons/octicons/milestone-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/mirror-16.svg b/bes_theme/.icons/octicons/mirror-16.svg deleted file mode 100644 index 1820a7ca..00000000 --- a/bes_theme/.icons/octicons/mirror-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/mirror-24.svg b/bes_theme/.icons/octicons/mirror-24.svg deleted file mode 100644 index eaf1832f..00000000 --- a/bes_theme/.icons/octicons/mirror-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/moon-16.svg b/bes_theme/.icons/octicons/moon-16.svg deleted file mode 100644 index ba3bf677..00000000 --- a/bes_theme/.icons/octicons/moon-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/moon-24.svg b/bes_theme/.icons/octicons/moon-24.svg deleted file mode 100644 index ce89c992..00000000 --- a/bes_theme/.icons/octicons/moon-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/mortar-board-16.svg b/bes_theme/.icons/octicons/mortar-board-16.svg deleted file mode 100644 index 5758d9ad..00000000 --- a/bes_theme/.icons/octicons/mortar-board-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/mortar-board-24.svg b/bes_theme/.icons/octicons/mortar-board-24.svg deleted file mode 100644 index bb108dd2..00000000 --- a/bes_theme/.icons/octicons/mortar-board-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/multi-select-16.svg b/bes_theme/.icons/octicons/multi-select-16.svg deleted file mode 100644 index a246d404..00000000 --- a/bes_theme/.icons/octicons/multi-select-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/multi-select-24.svg b/bes_theme/.icons/octicons/multi-select-24.svg deleted file mode 100644 index aeaef81c..00000000 --- a/bes_theme/.icons/octicons/multi-select-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/mute-16.svg b/bes_theme/.icons/octicons/mute-16.svg deleted file mode 100644 index 5141269a..00000000 --- a/bes_theme/.icons/octicons/mute-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/mute-24.svg b/bes_theme/.icons/octicons/mute-24.svg deleted file mode 100644 index 5af7ecf4..00000000 --- a/bes_theme/.icons/octicons/mute-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/no-entry-16.svg b/bes_theme/.icons/octicons/no-entry-16.svg deleted file mode 100644 index 3e8b29ee..00000000 --- a/bes_theme/.icons/octicons/no-entry-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/no-entry-24.svg b/bes_theme/.icons/octicons/no-entry-24.svg deleted file mode 100644 index eefaae5c..00000000 --- a/bes_theme/.icons/octicons/no-entry-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/north-star-16.svg b/bes_theme/.icons/octicons/north-star-16.svg deleted file mode 100644 index e07b6994..00000000 --- a/bes_theme/.icons/octicons/north-star-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/north-star-24.svg b/bes_theme/.icons/octicons/north-star-24.svg deleted file mode 100644 index 72aa812f..00000000 --- a/bes_theme/.icons/octicons/north-star-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/note-16.svg b/bes_theme/.icons/octicons/note-16.svg deleted file mode 100644 index fb760000..00000000 --- a/bes_theme/.icons/octicons/note-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/note-24.svg b/bes_theme/.icons/octicons/note-24.svg deleted file mode 100644 index 5c7961b7..00000000 --- a/bes_theme/.icons/octicons/note-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/number-16.svg b/bes_theme/.icons/octicons/number-16.svg deleted file mode 100644 index 0b45394c..00000000 --- a/bes_theme/.icons/octicons/number-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/number-24.svg b/bes_theme/.icons/octicons/number-24.svg deleted file mode 100644 index 4e53ef3b..00000000 --- a/bes_theme/.icons/octicons/number-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/organization-16.svg b/bes_theme/.icons/octicons/organization-16.svg deleted file mode 100644 index 9d7ed664..00000000 --- a/bes_theme/.icons/octicons/organization-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/organization-24.svg b/bes_theme/.icons/octicons/organization-24.svg deleted file mode 100644 index 4262e097..00000000 --- a/bes_theme/.icons/octicons/organization-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/package-16.svg b/bes_theme/.icons/octicons/package-16.svg deleted file mode 100644 index 034758db..00000000 --- a/bes_theme/.icons/octicons/package-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/package-24.svg b/bes_theme/.icons/octicons/package-24.svg deleted file mode 100644 index e1d7dfb8..00000000 --- a/bes_theme/.icons/octicons/package-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/package-dependencies-16.svg b/bes_theme/.icons/octicons/package-dependencies-16.svg deleted file mode 100644 index 4aca0d26..00000000 --- a/bes_theme/.icons/octicons/package-dependencies-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/package-dependencies-24.svg b/bes_theme/.icons/octicons/package-dependencies-24.svg deleted file mode 100644 index 45901eb9..00000000 --- a/bes_theme/.icons/octicons/package-dependencies-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/package-dependents-16.svg b/bes_theme/.icons/octicons/package-dependents-16.svg deleted file mode 100644 index 429eab24..00000000 --- a/bes_theme/.icons/octicons/package-dependents-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/package-dependents-24.svg b/bes_theme/.icons/octicons/package-dependents-24.svg deleted file mode 100644 index 211eda5d..00000000 --- a/bes_theme/.icons/octicons/package-dependents-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/paintbrush-16.svg b/bes_theme/.icons/octicons/paintbrush-16.svg deleted file mode 100644 index c13ccb0c..00000000 --- a/bes_theme/.icons/octicons/paintbrush-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/paper-airplane-16.svg b/bes_theme/.icons/octicons/paper-airplane-16.svg deleted file mode 100644 index a04f68c9..00000000 --- a/bes_theme/.icons/octicons/paper-airplane-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/paper-airplane-24.svg b/bes_theme/.icons/octicons/paper-airplane-24.svg deleted file mode 100644 index 17a63dd2..00000000 --- a/bes_theme/.icons/octicons/paper-airplane-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/pencil-16.svg b/bes_theme/.icons/octicons/pencil-16.svg deleted file mode 100644 index e3f2e44a..00000000 --- a/bes_theme/.icons/octicons/pencil-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/pencil-24.svg b/bes_theme/.icons/octicons/pencil-24.svg deleted file mode 100644 index b5997320..00000000 --- a/bes_theme/.icons/octicons/pencil-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/people-16.svg b/bes_theme/.icons/octicons/people-16.svg deleted file mode 100644 index b0e5d0bd..00000000 --- a/bes_theme/.icons/octicons/people-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/people-24.svg b/bes_theme/.icons/octicons/people-24.svg deleted file mode 100644 index 4b456a33..00000000 --- a/bes_theme/.icons/octicons/people-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/person-16.svg b/bes_theme/.icons/octicons/person-16.svg deleted file mode 100644 index 0d16e62c..00000000 --- a/bes_theme/.icons/octicons/person-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/person-24.svg b/bes_theme/.icons/octicons/person-24.svg deleted file mode 100644 index d45ee1fb..00000000 --- a/bes_theme/.icons/octicons/person-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/person-add-16.svg b/bes_theme/.icons/octicons/person-add-16.svg deleted file mode 100644 index 5f0c3874..00000000 --- a/bes_theme/.icons/octicons/person-add-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/person-add-24.svg b/bes_theme/.icons/octicons/person-add-24.svg deleted file mode 100644 index 90c2f1f3..00000000 --- a/bes_theme/.icons/octicons/person-add-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/pin-16.svg b/bes_theme/.icons/octicons/pin-16.svg deleted file mode 100644 index df3baaed..00000000 --- a/bes_theme/.icons/octicons/pin-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/pin-24.svg b/bes_theme/.icons/octicons/pin-24.svg deleted file mode 100644 index efee91e7..00000000 --- a/bes_theme/.icons/octicons/pin-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/play-16.svg b/bes_theme/.icons/octicons/play-16.svg deleted file mode 100644 index 3f77e86e..00000000 --- a/bes_theme/.icons/octicons/play-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/play-24.svg b/bes_theme/.icons/octicons/play-24.svg deleted file mode 100644 index b42ec159..00000000 --- a/bes_theme/.icons/octicons/play-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/plug-16.svg b/bes_theme/.icons/octicons/plug-16.svg deleted file mode 100644 index 40c9b6ce..00000000 --- a/bes_theme/.icons/octicons/plug-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/plug-24.svg b/bes_theme/.icons/octicons/plug-24.svg deleted file mode 100644 index 03b76753..00000000 --- a/bes_theme/.icons/octicons/plug-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/plus-16.svg b/bes_theme/.icons/octicons/plus-16.svg deleted file mode 100644 index 80ece1a4..00000000 --- a/bes_theme/.icons/octicons/plus-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/plus-24.svg b/bes_theme/.icons/octicons/plus-24.svg deleted file mode 100644 index 1916174f..00000000 --- a/bes_theme/.icons/octicons/plus-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/plus-circle-16.svg b/bes_theme/.icons/octicons/plus-circle-16.svg deleted file mode 100644 index 42ff86dd..00000000 --- a/bes_theme/.icons/octicons/plus-circle-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/plus-circle-24.svg b/bes_theme/.icons/octicons/plus-circle-24.svg deleted file mode 100644 index f1d30715..00000000 --- a/bes_theme/.icons/octicons/plus-circle-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/project-16.svg b/bes_theme/.icons/octicons/project-16.svg deleted file mode 100644 index 0bef048f..00000000 --- a/bes_theme/.icons/octicons/project-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/project-24.svg b/bes_theme/.icons/octicons/project-24.svg deleted file mode 100644 index b1f364c7..00000000 --- a/bes_theme/.icons/octicons/project-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/pulse-16.svg b/bes_theme/.icons/octicons/pulse-16.svg deleted file mode 100644 index cb10d198..00000000 --- a/bes_theme/.icons/octicons/pulse-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/pulse-24.svg b/bes_theme/.icons/octicons/pulse-24.svg deleted file mode 100644 index f5d39f1b..00000000 --- a/bes_theme/.icons/octicons/pulse-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/question-16.svg b/bes_theme/.icons/octicons/question-16.svg deleted file mode 100644 index b6ed614d..00000000 --- a/bes_theme/.icons/octicons/question-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/question-24.svg b/bes_theme/.icons/octicons/question-24.svg deleted file mode 100644 index 9a20fa65..00000000 --- a/bes_theme/.icons/octicons/question-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/quote-16.svg b/bes_theme/.icons/octicons/quote-16.svg deleted file mode 100644 index a2c27344..00000000 --- a/bes_theme/.icons/octicons/quote-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/quote-24.svg b/bes_theme/.icons/octicons/quote-24.svg deleted file mode 100644 index 82ba41c2..00000000 --- a/bes_theme/.icons/octicons/quote-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/reply-16.svg b/bes_theme/.icons/octicons/reply-16.svg deleted file mode 100644 index 48bed4ce..00000000 --- a/bes_theme/.icons/octicons/reply-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/reply-24.svg b/bes_theme/.icons/octicons/reply-24.svg deleted file mode 100644 index 7bfb48bf..00000000 --- a/bes_theme/.icons/octicons/reply-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/repo-16.svg b/bes_theme/.icons/octicons/repo-16.svg deleted file mode 100644 index df6c3471..00000000 --- a/bes_theme/.icons/octicons/repo-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/repo-24.svg b/bes_theme/.icons/octicons/repo-24.svg deleted file mode 100644 index b0563d51..00000000 --- a/bes_theme/.icons/octicons/repo-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/repo-clone-16.svg b/bes_theme/.icons/octicons/repo-clone-16.svg deleted file mode 100644 index ff4fc558..00000000 --- a/bes_theme/.icons/octicons/repo-clone-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/repo-forked-16.svg b/bes_theme/.icons/octicons/repo-forked-16.svg deleted file mode 100644 index 89de03c0..00000000 --- a/bes_theme/.icons/octicons/repo-forked-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/repo-forked-24.svg b/bes_theme/.icons/octicons/repo-forked-24.svg deleted file mode 100644 index 00d73e0d..00000000 --- a/bes_theme/.icons/octicons/repo-forked-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/repo-pull-16.svg b/bes_theme/.icons/octicons/repo-pull-16.svg deleted file mode 100644 index 7b01be27..00000000 --- a/bes_theme/.icons/octicons/repo-pull-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/repo-push-16.svg b/bes_theme/.icons/octicons/repo-push-16.svg deleted file mode 100644 index dc67a1c8..00000000 --- a/bes_theme/.icons/octicons/repo-push-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/repo-push-24.svg b/bes_theme/.icons/octicons/repo-push-24.svg deleted file mode 100644 index 2add1178..00000000 --- a/bes_theme/.icons/octicons/repo-push-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/repo-template-16.svg b/bes_theme/.icons/octicons/repo-template-16.svg deleted file mode 100644 index ea3462f8..00000000 --- a/bes_theme/.icons/octicons/repo-template-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/repo-template-24.svg b/bes_theme/.icons/octicons/repo-template-24.svg deleted file mode 100644 index 705e3bf0..00000000 --- a/bes_theme/.icons/octicons/repo-template-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/report-16.svg b/bes_theme/.icons/octicons/report-16.svg deleted file mode 100644 index 42b6c2f6..00000000 --- a/bes_theme/.icons/octicons/report-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/report-24.svg b/bes_theme/.icons/octicons/report-24.svg deleted file mode 100644 index 28f478a6..00000000 --- a/bes_theme/.icons/octicons/report-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/rocket-16.svg b/bes_theme/.icons/octicons/rocket-16.svg deleted file mode 100644 index ed1a6c10..00000000 --- a/bes_theme/.icons/octicons/rocket-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/rocket-24.svg b/bes_theme/.icons/octicons/rocket-24.svg deleted file mode 100644 index 274db4c6..00000000 --- a/bes_theme/.icons/octicons/rocket-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/rows-16.svg b/bes_theme/.icons/octicons/rows-16.svg deleted file mode 100644 index e5426138..00000000 --- a/bes_theme/.icons/octicons/rows-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/rows-24.svg b/bes_theme/.icons/octicons/rows-24.svg deleted file mode 100644 index 7e3cad80..00000000 --- a/bes_theme/.icons/octicons/rows-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/rss-16.svg b/bes_theme/.icons/octicons/rss-16.svg deleted file mode 100644 index 1d22be9b..00000000 --- a/bes_theme/.icons/octicons/rss-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/rss-24.svg b/bes_theme/.icons/octicons/rss-24.svg deleted file mode 100644 index b88ce92b..00000000 --- a/bes_theme/.icons/octicons/rss-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/ruby-16.svg b/bes_theme/.icons/octicons/ruby-16.svg deleted file mode 100644 index 46e5fa8f..00000000 --- a/bes_theme/.icons/octicons/ruby-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/ruby-24.svg b/bes_theme/.icons/octicons/ruby-24.svg deleted file mode 100644 index eaa55cbf..00000000 --- a/bes_theme/.icons/octicons/ruby-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/screen-full-16.svg b/bes_theme/.icons/octicons/screen-full-16.svg deleted file mode 100644 index f04b78fd..00000000 --- a/bes_theme/.icons/octicons/screen-full-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/screen-full-24.svg b/bes_theme/.icons/octicons/screen-full-24.svg deleted file mode 100644 index 6ef8d0b6..00000000 --- a/bes_theme/.icons/octicons/screen-full-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/screen-normal-16.svg b/bes_theme/.icons/octicons/screen-normal-16.svg deleted file mode 100644 index 81691c3a..00000000 --- a/bes_theme/.icons/octicons/screen-normal-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/screen-normal-24.svg b/bes_theme/.icons/octicons/screen-normal-24.svg deleted file mode 100644 index 9c385466..00000000 --- a/bes_theme/.icons/octicons/screen-normal-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/search-16.svg b/bes_theme/.icons/octicons/search-16.svg deleted file mode 100644 index 2fd09d06..00000000 --- a/bes_theme/.icons/octicons/search-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/search-24.svg b/bes_theme/.icons/octicons/search-24.svg deleted file mode 100644 index 6f57ba0d..00000000 --- a/bes_theme/.icons/octicons/search-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/select-single-16.svg b/bes_theme/.icons/octicons/select-single-16.svg deleted file mode 100644 index 8e60af37..00000000 --- a/bes_theme/.icons/octicons/select-single-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/server-16.svg b/bes_theme/.icons/octicons/server-16.svg deleted file mode 100644 index 85acc761..00000000 --- a/bes_theme/.icons/octicons/server-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/server-24.svg b/bes_theme/.icons/octicons/server-24.svg deleted file mode 100644 index fcff2bf8..00000000 --- a/bes_theme/.icons/octicons/server-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/share-16.svg b/bes_theme/.icons/octicons/share-16.svg deleted file mode 100644 index 3311174f..00000000 --- a/bes_theme/.icons/octicons/share-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/share-24.svg b/bes_theme/.icons/octicons/share-24.svg deleted file mode 100644 index e2af5a47..00000000 --- a/bes_theme/.icons/octicons/share-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/share-android-16.svg b/bes_theme/.icons/octicons/share-android-16.svg deleted file mode 100644 index 291a3526..00000000 --- a/bes_theme/.icons/octicons/share-android-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/share-android-24.svg b/bes_theme/.icons/octicons/share-android-24.svg deleted file mode 100644 index 85fc2359..00000000 --- a/bes_theme/.icons/octicons/share-android-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/shield-16.svg b/bes_theme/.icons/octicons/shield-16.svg deleted file mode 100644 index a4609b75..00000000 --- a/bes_theme/.icons/octicons/shield-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/shield-24.svg b/bes_theme/.icons/octicons/shield-24.svg deleted file mode 100644 index df88bf89..00000000 --- a/bes_theme/.icons/octicons/shield-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/shield-check-16.svg b/bes_theme/.icons/octicons/shield-check-16.svg deleted file mode 100644 index 37e40847..00000000 --- a/bes_theme/.icons/octicons/shield-check-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/shield-check-24.svg b/bes_theme/.icons/octicons/shield-check-24.svg deleted file mode 100644 index a5fe2c16..00000000 --- a/bes_theme/.icons/octicons/shield-check-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/shield-lock-16.svg b/bes_theme/.icons/octicons/shield-lock-16.svg deleted file mode 100644 index a685c6fa..00000000 --- a/bes_theme/.icons/octicons/shield-lock-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/shield-lock-24.svg b/bes_theme/.icons/octicons/shield-lock-24.svg deleted file mode 100644 index 5ee8f4a0..00000000 --- a/bes_theme/.icons/octicons/shield-lock-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/shield-x-16.svg b/bes_theme/.icons/octicons/shield-x-16.svg deleted file mode 100644 index 28626d62..00000000 --- a/bes_theme/.icons/octicons/shield-x-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/shield-x-24.svg b/bes_theme/.icons/octicons/shield-x-24.svg deleted file mode 100644 index e14c4593..00000000 --- a/bes_theme/.icons/octicons/shield-x-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/sidebar-collapse-16.svg b/bes_theme/.icons/octicons/sidebar-collapse-16.svg deleted file mode 100644 index 37c1139a..00000000 --- a/bes_theme/.icons/octicons/sidebar-collapse-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/sidebar-collapse-24.svg b/bes_theme/.icons/octicons/sidebar-collapse-24.svg deleted file mode 100644 index a850e2a4..00000000 --- a/bes_theme/.icons/octicons/sidebar-collapse-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/sidebar-expand-16.svg b/bes_theme/.icons/octicons/sidebar-expand-16.svg deleted file mode 100644 index 4526c02d..00000000 --- a/bes_theme/.icons/octicons/sidebar-expand-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/sidebar-expand-24.svg b/bes_theme/.icons/octicons/sidebar-expand-24.svg deleted file mode 100644 index 7e3c46ac..00000000 --- a/bes_theme/.icons/octicons/sidebar-expand-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/sign-in-16.svg b/bes_theme/.icons/octicons/sign-in-16.svg deleted file mode 100644 index d5c0b909..00000000 --- a/bes_theme/.icons/octicons/sign-in-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/sign-in-24.svg b/bes_theme/.icons/octicons/sign-in-24.svg deleted file mode 100644 index 0eac3d37..00000000 --- a/bes_theme/.icons/octicons/sign-in-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/sign-out-16.svg b/bes_theme/.icons/octicons/sign-out-16.svg deleted file mode 100644 index 7293ff5f..00000000 --- a/bes_theme/.icons/octicons/sign-out-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/sign-out-24.svg b/bes_theme/.icons/octicons/sign-out-24.svg deleted file mode 100644 index 473588e5..00000000 --- a/bes_theme/.icons/octicons/sign-out-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/single-select-24.svg b/bes_theme/.icons/octicons/single-select-24.svg deleted file mode 100644 index a7473706..00000000 --- a/bes_theme/.icons/octicons/single-select-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/skip-16.svg b/bes_theme/.icons/octicons/skip-16.svg deleted file mode 100644 index df012573..00000000 --- a/bes_theme/.icons/octicons/skip-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/skip-24.svg b/bes_theme/.icons/octicons/skip-24.svg deleted file mode 100644 index dfe13fc5..00000000 --- a/bes_theme/.icons/octicons/skip-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/smiley-16.svg b/bes_theme/.icons/octicons/smiley-16.svg deleted file mode 100644 index db0f9b89..00000000 --- a/bes_theme/.icons/octicons/smiley-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/smiley-24.svg b/bes_theme/.icons/octicons/smiley-24.svg deleted file mode 100644 index 024ec950..00000000 --- a/bes_theme/.icons/octicons/smiley-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/sort-asc-16.svg b/bes_theme/.icons/octicons/sort-asc-16.svg deleted file mode 100644 index 4bc2aa9b..00000000 --- a/bes_theme/.icons/octicons/sort-asc-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/sort-asc-24.svg b/bes_theme/.icons/octicons/sort-asc-24.svg deleted file mode 100644 index 427863ff..00000000 --- a/bes_theme/.icons/octicons/sort-asc-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/sort-desc-16.svg b/bes_theme/.icons/octicons/sort-desc-16.svg deleted file mode 100644 index d8c7caa2..00000000 --- a/bes_theme/.icons/octicons/sort-desc-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/sort-desc-24.svg b/bes_theme/.icons/octicons/sort-desc-24.svg deleted file mode 100644 index 8919b1aa..00000000 --- a/bes_theme/.icons/octicons/sort-desc-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/square-16.svg b/bes_theme/.icons/octicons/square-16.svg deleted file mode 100644 index 9947395e..00000000 --- a/bes_theme/.icons/octicons/square-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/square-24.svg b/bes_theme/.icons/octicons/square-24.svg deleted file mode 100644 index 30255cab..00000000 --- a/bes_theme/.icons/octicons/square-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/square-fill-16.svg b/bes_theme/.icons/octicons/square-fill-16.svg deleted file mode 100644 index cbec561b..00000000 --- a/bes_theme/.icons/octicons/square-fill-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/square-fill-24.svg b/bes_theme/.icons/octicons/square-fill-24.svg deleted file mode 100644 index 5863c2aa..00000000 --- a/bes_theme/.icons/octicons/square-fill-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/squirrel-16.svg b/bes_theme/.icons/octicons/squirrel-16.svg deleted file mode 100644 index 564b3e95..00000000 --- a/bes_theme/.icons/octicons/squirrel-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/squirrel-24.svg b/bes_theme/.icons/octicons/squirrel-24.svg deleted file mode 100644 index fb0fbf95..00000000 --- a/bes_theme/.icons/octicons/squirrel-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/star-16.svg b/bes_theme/.icons/octicons/star-16.svg deleted file mode 100644 index 8a44c332..00000000 --- a/bes_theme/.icons/octicons/star-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/star-24.svg b/bes_theme/.icons/octicons/star-24.svg deleted file mode 100644 index cf4696ae..00000000 --- a/bes_theme/.icons/octicons/star-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/star-fill-16.svg b/bes_theme/.icons/octicons/star-fill-16.svg deleted file mode 100644 index 1f7ce80f..00000000 --- a/bes_theme/.icons/octicons/star-fill-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/star-fill-24.svg b/bes_theme/.icons/octicons/star-fill-24.svg deleted file mode 100644 index 21bcf763..00000000 --- a/bes_theme/.icons/octicons/star-fill-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/stop-16.svg b/bes_theme/.icons/octicons/stop-16.svg deleted file mode 100644 index b2ee0e3b..00000000 --- a/bes_theme/.icons/octicons/stop-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/stop-24.svg b/bes_theme/.icons/octicons/stop-24.svg deleted file mode 100644 index 27e36759..00000000 --- a/bes_theme/.icons/octicons/stop-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/stopwatch-16.svg b/bes_theme/.icons/octicons/stopwatch-16.svg deleted file mode 100644 index 27b8c99a..00000000 --- a/bes_theme/.icons/octicons/stopwatch-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/stopwatch-24.svg b/bes_theme/.icons/octicons/stopwatch-24.svg deleted file mode 100644 index ec110ae5..00000000 --- a/bes_theme/.icons/octicons/stopwatch-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/strikethrough-16.svg b/bes_theme/.icons/octicons/strikethrough-16.svg deleted file mode 100644 index 91cc8a8b..00000000 --- a/bes_theme/.icons/octicons/strikethrough-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/strikethrough-24.svg b/bes_theme/.icons/octicons/strikethrough-24.svg deleted file mode 100644 index c73f1f2a..00000000 --- a/bes_theme/.icons/octicons/strikethrough-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/sun-16.svg b/bes_theme/.icons/octicons/sun-16.svg deleted file mode 100644 index f4a13302..00000000 --- a/bes_theme/.icons/octicons/sun-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/sun-24.svg b/bes_theme/.icons/octicons/sun-24.svg deleted file mode 100644 index 78001822..00000000 --- a/bes_theme/.icons/octicons/sun-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/sync-16.svg b/bes_theme/.icons/octicons/sync-16.svg deleted file mode 100644 index 866cae91..00000000 --- a/bes_theme/.icons/octicons/sync-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/sync-24.svg b/bes_theme/.icons/octicons/sync-24.svg deleted file mode 100644 index aeeebea0..00000000 --- a/bes_theme/.icons/octicons/sync-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/tab-24.svg b/bes_theme/.icons/octicons/tab-24.svg deleted file mode 100644 index c6cdf8b3..00000000 --- a/bes_theme/.icons/octicons/tab-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/table-16.svg b/bes_theme/.icons/octicons/table-16.svg deleted file mode 100644 index 795d62a2..00000000 --- a/bes_theme/.icons/octicons/table-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/table-24.svg b/bes_theme/.icons/octicons/table-24.svg deleted file mode 100644 index c19863ef..00000000 --- a/bes_theme/.icons/octicons/table-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/tag-16.svg b/bes_theme/.icons/octicons/tag-16.svg deleted file mode 100644 index 4e315a68..00000000 --- a/bes_theme/.icons/octicons/tag-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/tag-24.svg b/bes_theme/.icons/octicons/tag-24.svg deleted file mode 100644 index 791ad9e8..00000000 --- a/bes_theme/.icons/octicons/tag-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/tasklist-16.svg b/bes_theme/.icons/octicons/tasklist-16.svg deleted file mode 100644 index a0f5e348..00000000 --- a/bes_theme/.icons/octicons/tasklist-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/tasklist-24.svg b/bes_theme/.icons/octicons/tasklist-24.svg deleted file mode 100644 index 6251c4b2..00000000 --- a/bes_theme/.icons/octicons/tasklist-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/telescope-16.svg b/bes_theme/.icons/octicons/telescope-16.svg deleted file mode 100644 index 7a61ba62..00000000 --- a/bes_theme/.icons/octicons/telescope-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/telescope-24.svg b/bes_theme/.icons/octicons/telescope-24.svg deleted file mode 100644 index 654bcba7..00000000 --- a/bes_theme/.icons/octicons/telescope-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/terminal-16.svg b/bes_theme/.icons/octicons/terminal-16.svg deleted file mode 100644 index eb5f1b57..00000000 --- a/bes_theme/.icons/octicons/terminal-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/terminal-24.svg b/bes_theme/.icons/octicons/terminal-24.svg deleted file mode 100644 index 2326e1a6..00000000 --- a/bes_theme/.icons/octicons/terminal-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/three-bars-16.svg b/bes_theme/.icons/octicons/three-bars-16.svg deleted file mode 100644 index 28a7f681..00000000 --- a/bes_theme/.icons/octicons/three-bars-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/thumbsdown-16.svg b/bes_theme/.icons/octicons/thumbsdown-16.svg deleted file mode 100644 index aa54d504..00000000 --- a/bes_theme/.icons/octicons/thumbsdown-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/thumbsdown-24.svg b/bes_theme/.icons/octicons/thumbsdown-24.svg deleted file mode 100644 index dc184c23..00000000 --- a/bes_theme/.icons/octicons/thumbsdown-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/thumbsup-16.svg b/bes_theme/.icons/octicons/thumbsup-16.svg deleted file mode 100644 index 3c3266ce..00000000 --- a/bes_theme/.icons/octicons/thumbsup-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/thumbsup-24.svg b/bes_theme/.icons/octicons/thumbsup-24.svg deleted file mode 100644 index 1d09570d..00000000 --- a/bes_theme/.icons/octicons/thumbsup-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/tools-16.svg b/bes_theme/.icons/octicons/tools-16.svg deleted file mode 100644 index a7878d15..00000000 --- a/bes_theme/.icons/octicons/tools-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/tools-24.svg b/bes_theme/.icons/octicons/tools-24.svg deleted file mode 100644 index 36d42624..00000000 --- a/bes_theme/.icons/octicons/tools-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/trash-16.svg b/bes_theme/.icons/octicons/trash-16.svg deleted file mode 100644 index 7616967e..00000000 --- a/bes_theme/.icons/octicons/trash-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/trash-24.svg b/bes_theme/.icons/octicons/trash-24.svg deleted file mode 100644 index b75ad5db..00000000 --- a/bes_theme/.icons/octicons/trash-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/triangle-down-16.svg b/bes_theme/.icons/octicons/triangle-down-16.svg deleted file mode 100644 index 0820918f..00000000 --- a/bes_theme/.icons/octicons/triangle-down-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/triangle-down-24.svg b/bes_theme/.icons/octicons/triangle-down-24.svg deleted file mode 100644 index e190eb4e..00000000 --- a/bes_theme/.icons/octicons/triangle-down-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/triangle-left-16.svg b/bes_theme/.icons/octicons/triangle-left-16.svg deleted file mode 100644 index de60ab3f..00000000 --- a/bes_theme/.icons/octicons/triangle-left-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/triangle-left-24.svg b/bes_theme/.icons/octicons/triangle-left-24.svg deleted file mode 100644 index 6000fe9c..00000000 --- a/bes_theme/.icons/octicons/triangle-left-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/triangle-right-16.svg b/bes_theme/.icons/octicons/triangle-right-16.svg deleted file mode 100644 index 66db8c31..00000000 --- a/bes_theme/.icons/octicons/triangle-right-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/triangle-right-24.svg b/bes_theme/.icons/octicons/triangle-right-24.svg deleted file mode 100644 index 5c997e19..00000000 --- a/bes_theme/.icons/octicons/triangle-right-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/triangle-up-16.svg b/bes_theme/.icons/octicons/triangle-up-16.svg deleted file mode 100644 index 2eec9f67..00000000 --- a/bes_theme/.icons/octicons/triangle-up-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/triangle-up-24.svg b/bes_theme/.icons/octicons/triangle-up-24.svg deleted file mode 100644 index de8c4043..00000000 --- a/bes_theme/.icons/octicons/triangle-up-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/typography-16.svg b/bes_theme/.icons/octicons/typography-16.svg deleted file mode 100644 index a8aba111..00000000 --- a/bes_theme/.icons/octicons/typography-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/typography-24.svg b/bes_theme/.icons/octicons/typography-24.svg deleted file mode 100644 index 89d532ff..00000000 --- a/bes_theme/.icons/octicons/typography-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/unfold-16.svg b/bes_theme/.icons/octicons/unfold-16.svg deleted file mode 100644 index 4773f7d6..00000000 --- a/bes_theme/.icons/octicons/unfold-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/unfold-24.svg b/bes_theme/.icons/octicons/unfold-24.svg deleted file mode 100644 index 2c795c00..00000000 --- a/bes_theme/.icons/octicons/unfold-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/unlock-16.svg b/bes_theme/.icons/octicons/unlock-16.svg deleted file mode 100644 index 2a36f4ec..00000000 --- a/bes_theme/.icons/octicons/unlock-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/unlock-24.svg b/bes_theme/.icons/octicons/unlock-24.svg deleted file mode 100644 index 684cce1e..00000000 --- a/bes_theme/.icons/octicons/unlock-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/unmute-16.svg b/bes_theme/.icons/octicons/unmute-16.svg deleted file mode 100644 index c281c2d2..00000000 --- a/bes_theme/.icons/octicons/unmute-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/unmute-24.svg b/bes_theme/.icons/octicons/unmute-24.svg deleted file mode 100644 index 8bd3f49d..00000000 --- a/bes_theme/.icons/octicons/unmute-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/unverified-16.svg b/bes_theme/.icons/octicons/unverified-16.svg deleted file mode 100644 index 49242bf4..00000000 --- a/bes_theme/.icons/octicons/unverified-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/unverified-24.svg b/bes_theme/.icons/octicons/unverified-24.svg deleted file mode 100644 index 3e29ca51..00000000 --- a/bes_theme/.icons/octicons/unverified-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/upload-16.svg b/bes_theme/.icons/octicons/upload-16.svg deleted file mode 100644 index 5c215bd1..00000000 --- a/bes_theme/.icons/octicons/upload-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/upload-24.svg b/bes_theme/.icons/octicons/upload-24.svg deleted file mode 100644 index 46a52e80..00000000 --- a/bes_theme/.icons/octicons/upload-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/verified-16.svg b/bes_theme/.icons/octicons/verified-16.svg deleted file mode 100644 index d144f775..00000000 --- a/bes_theme/.icons/octicons/verified-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/verified-24.svg b/bes_theme/.icons/octicons/verified-24.svg deleted file mode 100644 index 3242e859..00000000 --- a/bes_theme/.icons/octicons/verified-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/versions-16.svg b/bes_theme/.icons/octicons/versions-16.svg deleted file mode 100644 index bff013b4..00000000 --- a/bes_theme/.icons/octicons/versions-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/versions-24.svg b/bes_theme/.icons/octicons/versions-24.svg deleted file mode 100644 index 4df1fad6..00000000 --- a/bes_theme/.icons/octicons/versions-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/video-16.svg b/bes_theme/.icons/octicons/video-16.svg deleted file mode 100644 index f9c09a95..00000000 --- a/bes_theme/.icons/octicons/video-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/video-24.svg b/bes_theme/.icons/octicons/video-24.svg deleted file mode 100644 index f6a797c1..00000000 --- a/bes_theme/.icons/octicons/video-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/workflow-16.svg b/bes_theme/.icons/octicons/workflow-16.svg deleted file mode 100644 index b72c253f..00000000 --- a/bes_theme/.icons/octicons/workflow-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/workflow-24.svg b/bes_theme/.icons/octicons/workflow-24.svg deleted file mode 100644 index d40421d9..00000000 --- a/bes_theme/.icons/octicons/workflow-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/x-16.svg b/bes_theme/.icons/octicons/x-16.svg deleted file mode 100644 index 6b906a96..00000000 --- a/bes_theme/.icons/octicons/x-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/x-24.svg b/bes_theme/.icons/octicons/x-24.svg deleted file mode 100644 index 29d11030..00000000 --- a/bes_theme/.icons/octicons/x-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/x-circle-16.svg b/bes_theme/.icons/octicons/x-circle-16.svg deleted file mode 100644 index d22cb322..00000000 --- a/bes_theme/.icons/octicons/x-circle-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/x-circle-24.svg b/bes_theme/.icons/octicons/x-circle-24.svg deleted file mode 100644 index 73c2d435..00000000 --- a/bes_theme/.icons/octicons/x-circle-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/x-circle-fill-16.svg b/bes_theme/.icons/octicons/x-circle-fill-16.svg deleted file mode 100644 index 4ecb14c4..00000000 --- a/bes_theme/.icons/octicons/x-circle-fill-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/x-circle-fill-24.svg b/bes_theme/.icons/octicons/x-circle-fill-24.svg deleted file mode 100644 index 1c0e9976..00000000 --- a/bes_theme/.icons/octicons/x-circle-fill-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/zap-16.svg b/bes_theme/.icons/octicons/zap-16.svg deleted file mode 100644 index d8698dab..00000000 --- a/bes_theme/.icons/octicons/zap-16.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/.icons/octicons/zap-24.svg b/bes_theme/.icons/octicons/zap-24.svg deleted file mode 100644 index 6148acd2..00000000 --- a/bes_theme/.icons/octicons/zap-24.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/bes_theme/404.html b/bes_theme/404.html deleted file mode 100644 index 4bb5a16c..00000000 --- a/bes_theme/404.html +++ /dev/null @@ -1,5 +0,0 @@ -{% extends "main.html" %} -{% block content %} -

404 - Not found

-{% endblock %} -{% block disqus %}{% endblock %} diff --git a/bes_theme/BesRepoViz.html b/bes_theme/BesRepoViz.html deleted file mode 100644 index f5768a40..00000000 --- a/bes_theme/BesRepoViz.html +++ /dev/null @@ -1,1274 +0,0 @@ - - - - - - BeS Lighthouse search visualization - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
- - -
-
- - -
-
- -
-
- -
-
- - Visual Search for BeSLighthouse... - -
- -
- -
- - Home - -
- - -
- -
-
- -
- -
- - -
-
- -
-
- -
-
-
Filter by:
-
- - - - - -
-
-
-
-
Color Sorting: -
-
-
-
Recent
-
Earlier
-
-
-
-
- - - -
-
-
-
-
- -
-
- Click polygon for more details. Use mouse wheel or pinch to zoom -
-
-
-
How to use the tool:
-
    -
  1. Search a keyword or phrase using search box
  2. -
  3. Apply desired filters to customise the results you need
  4. -
  5. The results would appear on the left as visualisation of polygons of different sizes
  6. -
  7. Click on the polygon for more details
  8. -
-
-
- -
-
- -
-
- - - - - - - - - - diff --git a/bes_theme/__init__.py b/bes_theme/__init__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/bes_theme/assets/data/OSSP-legend.js b/bes_theme/assets/data/OSSP-legend.js deleted file mode 100644 index 9f62609f..00000000 --- a/bes_theme/assets/data/OSSP-legend.js +++ /dev/null @@ -1,329 +0,0 @@ -[ - { - "TOSS-PM": { - - "bes_oss_tech_stack": { - "DO" : { - "id": 3333824398, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/DO" - }, - "L&F" : { - "id": 3333828221, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/L&F" - }, - "A" : { - "id": 3333830132, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/A" - }, - "DA" : { - "id": 3333833143, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/DA" - }, - "S" : { - "id": 3333834929, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/S" - } - }, - - "CST": { - - "CST-SC" : { - "id": 3377711536, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/CST-SC" - }, - "CST-CR" : { - "id": 3377713836, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/CST-CR" - }, - - "CST-DT" : { - "id": 3377714489, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/CST-DT" - }, - - "CST-ZT" : { - "id": 3377715109, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/CST-ZT" - }, - - - "CST-OTS" : { - "id": 3377715582, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/CST-OTS" - }, - - - "CST-TPR" : { - "id": 3377716180, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/CST-TPR" - } - }, - - "SD": { - "SD-SRM" : { - "id": 3333839231, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/SD-SRM" - }, - "SD-AS" : { - "id": 3333840610, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/SD-AS" - }, - - "SD-DS" : { - "id": 3333841612, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/SD-DS" - }, - - "SD-IS" : { - "id": 3333843234, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/SD-IS" - }, - - "SD-SOC" : { - "id": 3336903004, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/SD-SOC" - }, - - "SD-IAM" : { - "id": 3336904395, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/SD-IAM" - }, - - "SD-CS" : { - "id": 3336905508, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/SD-CS" - }, - - "SD-BS" : { - "id": 3336906144, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/SD-BS" - }, - - "SD-NS" : { - "id": 3336906561, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/SD-NS" - }, - - "SD-IoTS" : { - "id": 3336907274, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/SD-IoTS" - } - }, - - "TD-U" : { - "TD-U-W" : { - "id": 3340553126, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/TD-U-W" - }, - - "TD-U-AI/ML" : { - "id": 3340554215, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/TD-U-AI/ML" - }, - - "TD-U-Db" : { - "id": 3340555133, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/TD-U-Db" - }, - - "TD-U-Msg" : { - "id": 3340556273, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/TD-U-Msg" - }, - - "TD-U-ApD" : { - "id": 3340557820, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/TD-U-ApD" - }, - - "TD-U-MoA" : { - "id": 3340558690, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/TD-U-MoA" - }, - - "TD-U-DkA" : { - "id": 3340559579, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/TD-U-DkA" - }, - - "TD-U-DAA" : { - "id": 3340560533, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/TD-U-DAA" - }, - - "TD-U-IoT" : { - "id": 3340561263, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/TD-U-IoT" - } - }, - - "IND": { - - "BFSI" : { - "id": 3333851551, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/IND-BFSI" - }, - - "HLS" : { - "id": 3333852858, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/IND-HLS" - }, - - "CON" : { - "id": 3333853611, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/IND-CON" - }, - - "RT" : { - "id": 3333854504, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/IND-RT" - }, - - "AgT" : { - "id": 3333855496, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/IND-AgT" - }, - - "ED" : { - "id": 3333856360, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/IND-ED" - }, - - "NG" : { - "id": 3333857321, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/IND-NG" - }, - - "ENU" : { - "id": 3333858175, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/IND-ENU" - }, - - "ALL" : { - "id": 3333858979, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/IND-ALL" - }, - - "AM" : { - "id": 3333860047, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/IND-AM" - }, - - "TEL" : { - "id": 3333860710, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/IND-TEL" - }, - - "CyS" : { - "id": 3333861461, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/IND-CyS" - } - }, - - "TD-C": { - "TD-C-CA" : { - "id": 3374488303, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/TD-C-CA" - }, - - "TD-C-S" : { - "id": 3374495197, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/TD-C-S" - }, - - "TD-C-WA" : { - "id": 3374496193, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/TD-C-WA" - }, - - "TD-C-A" : { - "id": 3374497236, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/TD-C-A" - }, - "TD-C-D" : { - "id": 3374498169, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/TD-C-D" - }, - - "TD-C-DA" : { - "id": 3374499627, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/TD-C-DA" - }, - "TD-C-Ms" : { - "id": 3374500531, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/TD-C-Ms" - }, - - "TD-C-C" : { - "id": 3374501108, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/TD-C-C" - }, - - "TD-C-CA" : { - "id": 3374488303, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/TD-C-CA" - }, - - "TD-C-Wlt" : { - "id": 3374502074, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/TD-C-Wlt" - } - }, - - "COM": { - "COM - C" : { - "id": 3333867901, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/COM%20-%20C" - }, - - "COM - F" : { - "id": 3333866951, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/COM%20-%20F", - "foundations": { - "COM-F-OCA" : { - "id": 3381463150, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/COM-F-OCA" - - }, - "COM-F-OpenSSF" : { - "id": 3381467187, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/COM-F-OpenSSF" - - }, - "COM-F-CNCF" : { - "id": 3381469108, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/COM-F-CNCF" - - }, - "COM-F-FINOS": { - "id": 3381472077, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/COM-F-FINOS" - - }, - "COM-F-Hyperledger": { - "id": 3381474440, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/COM-F-Hyperledger" - - }, - "COM-F-ONF": { - "id": 3381476508, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/COM-F-ONF" - - }, - "COM-F-ToIP":{ - "id": 3381480202, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/COM-F-ToIP" - - }, - "COM-F-OMF": { - "id": 3381497304, - "url": "https://api.github.com/repos/Be-Secure/BeSLighthouse/labels/COM-F-OMF" - - } - } - } - } - } - } - -] \ No newline at end of file diff --git a/bes_theme/assets/data/OSSP-master.js b/bes_theme/assets/data/OSSP-master.js deleted file mode 100644 index 21fb317a..00000000 --- a/bes_theme/assets/data/OSSP-master.js +++ /dev/null @@ -1,3548 +0,0 @@ -const projectOfInterestObject = { - total_count: 15, - incomplete_results: false, - items: [ - { - id: 290, - bes_tracking_id: 290, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/290", - name: "oneTBB", - full_name: "Be-Secure/oneTBB", - description: "oneAPI Threading Building Blocks (oneTBB)", - bes_technology_stack: "L&F", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 49023, - open_issues: 0, - created_at: "2023-02-25T19:16:09Z", - updated_at: "2023-02-25T20:33:20Z", - pushed_at: "2023-02-25T20:33:37Z", - git_url: "git://github.com/Be-Secure/oneTBB.git", - clone_url: "https://github.com/Be-Secure/oneTBB.git", - html_url: "https://github.com/Be-Secure/oneTBB", - homepage: "https://oneapi-src.github.io/oneTBB/", - owner: { - login: "Be-Secure", - id: 44028837, - node_id: "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - gravatar_id: "", - url: "https://api.github.com/users/Be-Secure", - html_url: "https://github.com/Be-Secure", - followers_url: "https://api.github.com/users/Be-Secure/followers", - following_url: - "https://api.github.com/users/Be-Secure/following{/other_user}", - gists_url: "https://api.github.com/users/Be-Secure/gists{/gist_id}", - starred_url: - "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - subscriptions_url: - "https://api.github.com/users/Be-Secure/subscriptions", - organizations_url: "https://api.github.com/users/Be-Secure/orgs", - repos_url: "https://api.github.com/users/Be-Secure/repos", - events_url: "https://api.github.com/users/Be-Secure/events{/privacy}", - received_events_url: - "https://api.github.com/users/Be-Secure/received_events", - type: "Organization", - site_admin: false, - }, - project_repos: { - main_github_url: "https://github.com/oneapi-src/oneTBB", - main_bes_url: "https://github.com/Be-Secure/oneTBB", - all_projects: [ - { - id: 67641996, - name: "oneapi-src/oneTBB", - url: "https://github.com/oneapi-src/oneTBB", - }, - ], - all_bes_repos: [ - { - id: 606531757, - name: "Be-Secure/oneTBB", - url: "https://github.com/Be-Secure/oneTBB", - }, - ], - }, - license: { - key: "apache-2.0", - name: "Apache License 2.0", - spdx_id: "Apache-2.0", - url: "https://api.github.com/licenses/apache-2.0", - node_id: "MDc6TGljZW5zZTI=", - }, - language: { - "C++": 5206409, - C: 410496, - CMake: 117973, - Python: 51259, - SWIG: 5111, - Starlark: 3960, - Shell: 717, - Batchfile: 645, - }, - tags: ["L&F", "IND-ALL", "COM - C", "Tracked"], - }, - { - id: 225, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/225", - bes_tracking_id: 225, - name: "rdkcryptoapi", - full_name: "Be-Secure/rdkcryptoapi", - description: - "RDKCryptoAPI contains cryptographic APIs used in the RDK Software Stack and an OpenSSL reference implementation.", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 379, - open_issues: 0, - created_at: "2021-08-18T03:39:46Z", - updated_at: "2021-08-18T03:39:47Z", - pushed_at: "2020-08-28T21:30:38Z", - git_url: "git://github.com/Be-Secure/rdkcryptoapi.git", - clone_url: "https://github.com/Be-Secure/rdkcryptoapi.git", - html_url: "https://github.com/Be-Secure/rdkcryptoapi", - homepage: "", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "A", - project_repos: { - main_github_url: "https://github.com/rdkcentral/rdkcryptoapi", - main_bes_url: "https://github.com/Be-Secure/rdkcryptoapi", - all_projects: { - rdkcryptoapi: "https://github.com/rdkcentral/rdkcryptoapi", - }, - all_bes_repos: [ - { - id: 397463052, - name: "rdkcryptoapi", - url: "https://github.com/Be-Secure/rdkcryptoapi", - }, - ], - }, - license: { - key: "apache-2.0", - name: "Apache License 2.0", - spdx_id: "Apache-2.0", - url: "https://api.github.com/licenses/apache-2.0", - node_id: "MDc6TGljZW5zZTI=", - }, - language: ["C"], - tags: ["A", "IND-AM", "COM-C", "TD-U-IoT"], - }, - - { - id: 266, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/266", - bes_tracking_id: 266, - name: "lightning", - full_name: "Be-Secure/lightning", - description: - "Lightning is a (TV) app development framework that offers great portability and performance.", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 15597, - open_issues: 0, - created_at: "2021-08-18T03:54:24Z", - updated_at: "2021-08-18T03:54:25Z", - pushed_at: "2021-08-16T09:25:21Z", - git_url: "git://github.com/Be-Secure/lightning.git", - clone_url: "https://github.com/Be-Secure/lightning.git", - html_url: "https://github.com/Be-Secure/lightning", - homepage: "", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "A", - project_repos: { - main_github_url: "https://github.com/rdkcentral/lightning", - main_bes_url: "https://github.com/Be-Secure/lightning", - all_projects: { - lightning: "https://github.com/rdkcentral/lightning", - }, - all_bes_repos: [ - { - id: 397465824, - name: "lightning", - url: "https://github.com/Be-Secure/lightning", - }, - ], - }, - license: { - key: "apache-2.0", - name: "Apache License 2.0", - spdx_id: "Apache-2.0", - url: "https://api.github.com/licenses/apache-2.0", - node_id: "MDc6TGljZW5zZTI=", - }, - language: ["Javascript", "HTML"], - tags: ["A", "IND-AM", "COM-C", "TD-U-IoT"], - }, - { - id: 278, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/278", - bes_tracking_id: 278, - name: "rdkservices", - full_name: "Be-Secure/rdkservices", - description: - "RDK services are a set of JSON-RPC based RESTful services for accessing various set-top box components.", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 5112, - open_issues: 0, - created_at: "2021-08-18T03:57:44Z", - updated_at: "2021-08-18T03:57:44Z", - pushed_at: "2021-08-17T22:13:18Z", - git_url: "git://github.com/Be-Secure/rdkservices.git", - clone_url: "https://github.com/Be-Secure/rdkservices.git", - html_url: "https://github.com/Be-Secure/rdkservices", - homepage: "", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "A", - project_repos: { - main_github_url: "https://github.com/rdkcentral/rdkservices", - main_bes_url: "https://github.com/Be-Secure/rdkservices", - all_projects: { - rdkservices: "https://github.com/rdkcentral/rdkservices", - }, - all_bes_repos: [ - { - id: 397466429, - name: "rdkservices", - url: "https://github.com/Be-Secure/rdkservices", - }, - ], - }, - license: { - key: "apache-2.0", - name: "Apache License 2.0", - spdx_id: "Apache-2.0", - url: "https://api.github.com/licenses/apache-2.0", - node_id: "MDc6TGljZW5zZTI=", - }, - language: ["Javascript", "HTML", "C", "C++", "Cmake", "python", "Shell"], - tags: ["A", "IND-AM", "COM-C", "TD-U-IoT"], - }, - { - id: 281, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/281", - bes_tracking_id: 281, - name: "ros_comm", - full_name: "Be-Secure/ros_comm", - description: - "ROS communications-related packages, including core client libraries (roscpp, rospy, roslisp) and graph introspection tools (rostopic, rosnode, rosservice, rosparam).", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 14721, - open_issues: 0, - created_at: "2021-08-18T04:13:56Z", - updated_at: "2021-08-18T04:13:57Z", - pushed_at: "2021-07-17T08:48:38Z", - git_url: "git://github.com/Be-Secure/ros_comm.git", - clone_url: "https://github.com/Be-Secure/ros_comm.git", - html_url: "https://github.com/Be-Secure/ros_comm", - homepage: "http://wiki.ros.org/ros_comm", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "A", - project_repos: { - main_github_url: "https://github.com/ros/ros_comm", - main_bes_url: "https://github.com/Be-Secure/ros_comm", - all_projects: { - ros_comm: "https://github.com/ros/ros_comm", - }, - all_bes_repos: [ - { - id: 397469548, - name: "ros_comm", - url: "https://github.com/Be-Secure/ros_comm", - }, - ], - }, - license: { - key: "", - name: "", - spdx_id: "", - url: "", - node_id: "", - }, - language: ["C", "C++", "Cmake", "python", "Shell", "Embarkscript"], - tags: ["A", "IND-AM", "COM-C", "TD-U-IoT"], - }, - { - id: 222, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/222", - bes_tracking_id: 222, - name: "meta-ros", - full_name: "Be-Secure/meta-ros", - description: "OpenEmbedded Layers for ROS 1 and ROS 2", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 30897, - open_issues: 0, - created_at: "2021-08-18T04:23:10Z", - updated_at: "2021-09-22T10:32:44Z", - pushed_at: "2021-09-22T10:32:07Z", - git_url: "git://github.com/Be-Secure/meta-ros.git", - clone_url: "https://github.com/Be-Secure/meta-ros.git", - html_url: "https://github.com/Be-Secure/meta-ros", - homepage: "http://wiki.ros.org/meta-ros", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "A", - project_repos: { - main_github_url: "https://github.com/ros/meta-ros", - main_bes_url: "https://github.com/Be-Secure/meta-ros", - all_projects: { - "meta-ros": "https://github.com/ros/meta-ros", - }, - all_bes_repos: [ - { - id: 397471153, - name: "meta-ros", - url: "https://github.com/Be-Secure/meta-ros", - }, - ], - }, - license: { - key: "mit", - name: "MIT license", - spdx_id: "mit", - url: "https://api.github.com/licenses/mit", - node_id: "MDc6TGljZW5zZTEz", - }, - language: ["C", "Shell", "PHP", "Pascal", "Bitbake", "NASL"], - tags: ["A", "IND-AM", "COM-C", "TD-U-IoT"], - }, - { - id: 223, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/223", - bes_tracking_id: 223, - name: "tomcat", - full_name: "Be-Secure/tomcat", - description: "Apache Tomcat", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 144508, - open_issues: 0, - created_at: "2022-10-28T10:05:12Z", - updated_at: "2022-10-28T03:47:13Z", - pushed_at: "2022-10-28T09:34:23Z", - git_url: "git://github.com/Be-Secure/tomcat.git", - clone_url: "https://github.com/Be-Secure/tomcat.git", - html_url: "https://github.com/Be-Secure/tomcat", - homepage: "http://tomcat.apache.org", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - - bes_technology_stack: "A", - project_repos: { - main_github_url: "https://github.com/apache/tomcat", - main_bes_url: "https://github.com/Be-Secure/tomcat", - all_projects: { - tomcat: "https://github.com/apache/tomcat", - }, - all_bes_repos: [ - { - id: 558794014, - name: "tomcat", - url: "https://github.com/Be-Secure/tomcat", - }, - ], - }, - license: { - key: "apache-2.0", - name: "Apache License 2.0", - spdx_id: "Apache-2.0", - url: "https://api.github.com/licenses/apache-2.0", - node_id: "MDc6TGljZW5zZTI=", - }, - language: ["Java"], - tags: { - IND: ["ALL"], - SD: [""], - "COM-F": ["Apache"], - "TD-U": ["TD-U-W"], - }, - }, - { - id: 136, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/136", - bes_tracking_id: 136, - name: "fastjson", - full_name: "Be-Secure/fastjson", - description: "A fast JSON parser/generator for Java. ", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 15449, - open_issues: 0, - created_at: "2022-06-01T08:40:32Z", - updated_at: "2022-06-20T05:16:20Z", - pushed_at: "2022-06-20T05:16:11Z", - git_url: "git://github.com/Be-Secure/fastjson.git", - clone_url: "https://github.com/Be-Secure/fastjson.git", - html_url: "https://github.com/Be-Secure/fastjson", - homepage: "https://github.com/alibaba/fastjson/wiki", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "L&F", - project_repos: { - main_github_url: "https://github.com/alibaba/fastjson", - main_bes_url: "https://github.com/Be-Secure/fastjson", - all_projects: { - fastjson: "https://github.com/alibaba/fastjson", - }, - all_bes_repos: [ - { - id: 498655991, - name: "fastjson", - url: "https://github.com/Be-Secure/fastjson", - }, - ], - }, - license: { - key: "apache-2.0", - name: "Apache License 2.0", - spdx_id: "Apache-2.0", - url: "https://api.github.com/licenses/apache-2.0", - node_id: "MDc6TGljZW5zZTI=", - }, - language: ["Java"], - - tags: { - IND: ["ALL"], - SD: [""], - COM: ["Alibaba"], - "TD-U": ["TD-U-W"], - }, - }, - { - id: 94, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/94", - bes_tracking_id: 94, - name: "skywalking", - full_name: "Be-Secure/skywalking", - description: "APM, Application Performance Monitoring System", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 165447, - open_issues: 0, - created_at: "2021-12-21T16:16:14Z", - updated_at: "2022-09-19T18:05:25Z", - pushed_at: "2022-11-14T11:02:18Z", - git_url: "git://github.com/Be-Secure/skywalking.git", - clone_url: "https://github.com/Be-Secure/skywalking.git", - html_url: "https://github.com/Be-Secure/skywalking", - homepage: "https://skywalking.apache.org/", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "A", - project_repos: { - main_github_url: "https://github.com/apache/skywalking", - main_bes_url: "https://github.com/Be-Secure/skywalking", - all_projects: { - skywalking: "https://github.com/apache/skywalking", - }, - all_bes_repos: [ - { - id: 440578021, - name: "skywalking", - url: "https://github.com/Be-Secure/skywalking", - }, - ], - }, - license: { - key: "apache-2.0", - name: "Apache License 2.0", - spdx_id: "Apache-2.0", - url: "https://api.github.com/licenses/apache-2.0", - node_id: "MDc6TGljZW5zZTI=", - }, - language: ["Java"], - - tags: { - IND: ["ALL"], - SD: [""], - COM: ["Alibaba"], - "TD-U": [""], - }, - }, - { - id: 87, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/87", - bes_tracking_id: 87, - name: "owlviewer", - full_name: "Be-Secure/owlviewer", - description: "Visualization of OWL ontologies", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 2945, - open_issues: 0, - created_at: "2023-01-16T17:16:57Z", - updated_at: "2023-01-29T17:06:52Z", - pushed_at: "2023-01-29T17:06:49Z", - git_url: "git://github.com/Be-Secure/owlviewer.git", - clone_url: "https://github.com/Be-Secure/owlviewer.git", - html_url: "https://github.com/Be-Secure/owlviewer", - homepage: "Not Available", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "A", - project_repos: { - main_github_url: "https://github.com/broadcom/owlviewer", - main_bes_url: "https://github.com/Be-Secure/owlviewer", - all_projects: { - owlviewer: "https://github.com/broadcom/owlviewer", - }, - all_bes_repos: [ - { - id: 589677739, - name: "owlviewer", - url: "https://github.com/Be-Secure/owlviewer", - }, - ], - }, - license: { - key: "mit", - name: "MIT License", - spdx_id: "MIT", - url: "https://api.github.com/licenses/mit", - node_id: "MDc6TGljZW5zZTEz", - }, - language: ["Java"], - - tags: { - IND: ["TEL"], - SD: [""], - "COM-C": [""], - "TD-C": ["TD-C-WA"], - }, - }, - { - id: 86, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/86", - bes_tracking_id: 86, - name: "security-analytics-export-tools", - full_name: "Be-Secure/security-analytics-export-tools", - description: - "Sample code for exporting data from Security Analytics sensors", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 337, - open_issues: 0, - created_at: "2023-01-05T11:00:33Z", - updated_at: "2023-01-08T14:32:51Z", - pushed_at: "2023-01-30T06:30:35Z", - git_url: "git://github.com/Be-Secure/security-analytics-export-tools.git", - clone_url: - "https://github.com/Be-Secure/security-analytics-export-tools.git", - html_url: "https://github.com/Be-Secure/security-analytics-export-tools", - homepage: "Not Available", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "S", - project_repos: { - main_github_url: - "https://github.com/Broadcom/security-analytics-export-tools", - main_bes_url: - "https://github.com/Be-Secure/security-analytics-export-tools", - all_projects: { - "security-analytics-export-tools": - "https://github.com/Broadcom/security-analytics-export-tools", - }, - all_bes_repos: [ - { - id: 585509879, - name: "security-analytics-export-tools", - url: "https://github.com/Be-Secure/security-analytics-export-tools", - }, - ], - }, - license: { - key: "mit", - name: "MIT License", - spdx_id: "MIT", - url: "https://api.github.com/licenses/mit", - node_id: "MDc6TGljZW5zZTEz", - }, - language: ["Python"], - - tags: { - IND: ["TEL"], - SD: ["SD-NS"], - "COM-C": [""], - "TD-C": ["TD-C-CA"], - }, - }, - { - id: 84, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/84", - bes_tracking_id: 84, - name: "jena", - full_name: "Be-Secure/jena", - description: "Apache Jena", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 425673, - open_issues: 0, - created_at: "2013-01-04T08:00:32Z", - updated_at: "2023-02-01T14:10:17Z", - pushed_at: "2023-02-06T12:57:53Z", - git_url: "git://github.com/Be-Secure/jena.git", - clone_url: "https://github.com/Be-Secure/jena.git", - html_url: "https://github.com/Be-Secure/jena", - homepage: "https://jena.apache.org/", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "A", - project_repos: { - main_github_url: "https://github.com/apache/jena", - main_bes_url: "https://github.com/Be-Secure/jena", - all_projects: { - jena: "https://github.com/apache/jena", - }, - all_bes_repos: [ - { - id: 595176415, - name: "jena", - url: "https://github.com/Be-Secure/jena", - }, - ], - }, - license: { - key: "apache-2.0", - name: "Apache License 2.0", - spdx_id: "Apache-2.0", - url: "https://api.github.com/licenses/apache-2.0", - node_id: "MDc6TGljZW5zZTI=", - }, - language: ["Java"], - - tags: { - IND: ["ALL"], - "COM-F": ["Apache"], - "TD-C": ["TD-C-WA", "TD-C-A"], - "TD-U": ["TD-U-W"], - }, - }, - { - id: 85, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/85", - bes_tracking_id: 85, - name: "spring-boot", - full_name: "Be-Secure/spring-boot", - description: "Spring Boot", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 160996, - open_issues: 0, - created_at: "2012-10-19T15:02:57Z", - updated_at: "2023-02-08T09:47:43Z", - pushed_at: "2023-02-08T11:05:29Z", - git_url: "git://github.com/Be-Secure/spring-boot.git", - clone_url: "https://github.com/Be-Secure/spring-boot.git", - html_url: "https://github.com/Be-Secure/spring-boot", - homepage: "https://spring.io/projects/spring-boot", - owner: { - login: "Be-Secure", - id: 595220202, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "L&F", - project_repos: { - main_github_url: "https://github.com/spring-projects/spring-boot", - main_bes_url: "https://github.com/Be-Secure/spring-boot", - all_projects: { - "spring-boot": "https://github.com/spring-projects/spring-boot", - }, - all_bes_repos: [ - { - id: 595220202, - name: "spring-boot", - url: "https://github.com/Be-Secure/spring-boot", - }, - ], - }, - license: { - key: "apache-2.0", - name: "Apache License 2.0", - spdx_id: "Apache-2.0", - url: "https://api.github.com/licenses/apache-2.0", - node_id: "MDc6TGljZW5zZTI=", - }, - language: ["Java"], - - tags: { - IND: ["ALL"], - "COM-F": [""], - "TD-C": ["TD-C-Ms"], - "TD-U": ["TD-U-ApD"], - COM: ["Vmware"], - }, - }, - { - id: 247, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/247", - bes_tracking_id: 247, - name: "swig-wx", - full_name: "Be-Secure/swig-wx", - description: - "Custom version of swig for wxPython, used by rx (deprecated)", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 3280, - open_issues: 0, - created_at: "2021-08-18T04:33:04Z", - updated_at: "2021-08-18T04:33:05Z", - pushed_at: "2013-02-07T21:28:51Z", - git_url: "git://github.com/Be-Secure/swig-wx.git", - clone_url: "https://github.com/Be-Secure/swig-wx.git", - html_url: "https://github.com/Be-Secure/swig-wx", - homepage: null, - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "A", - project_repos: { - main_github_url: "https://github.com/ros/swig-wx", - main_bes_url: "https://github.com/Be-Secure/swig-wx", - all_projects: { - "swig-wx": "https://github.com/ros/swig-wx", - }, - all_bes_repos: [ - { - id: 397472993, - name: "swig-wx", - url: "https://github.com/Be-Secure/swig-wx", - }, - ], - }, - license: { - key: "other", - name: "Other", - spdx_id: "NOASSERTION", - url: null, - node_id: "MDc6TGljZW5zZTA=", - }, - language: ["C++", "Python", "C", "C#", "Java", "Perl"], - tags: { - IND: ["Automotive"], - SD: [""], - COM: ["community-led"], - "TD-U": ["TD-U-IoT"], - }, - }, - { - id: 218, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/218", - bes_tracking_id: 218, - name: "ros_tutorials", - full_name: "Be-Secure/ros_tutorials", - description: "Code used in tutorials found on ROS wiki", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 591, - open_issues: 0, - created_at: "2021-08-18T04:28:27Z", - updated_at: "2021-08-18T04:28:28Z", - pushed_at: "2021-08-11T05:23:07Z", - git_url: "git://github.com/Be-Secure/ros_tutorials.git", - clone_url: "https://github.com/Be-Secure/ros_tutorials.git", - html_url: "https://github.com/Be-Secure/ros_tutorials", - homepage: "http://wiki.ros.org/ros_tutorials", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "A", - project_repos: { - main_github_url: "https://github.com/ros/ros_tutorials", - main_bes_url: "https://github.com/Be-Secure/ros_tutorials", - all_projects: { - ros_tutorials: "https://github.com/ros/ros_tutorials", - }, - all_bes_repos: [ - { - id: 397472124, - name: "ros_tutorials", - url: "https://github.com/Be-Secure/ros_tutorials", - }, - ], - }, - license: null, - language: ["C++", "Python", "Cmark"], - tags: { - IND: ["Automotive"], - SD: [""], - COM: ["community-led"], - "TD-U": ["TD-U-IoT"], - }, - }, - { - id: 252, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/252", - bes_tracking_id: 252, - name: "rosdistro", - full_name: "Be-Secure/rosdistro", - description: - "This repo maintains the lists of repositories defining ROS distributions.", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 101629, - open_issues: 0, - created_at: "2021-08-18T04:26:40Z", - updated_at: "2021-08-18T04:26:41Z", - pushed_at: "2021-08-18T01:36:04Z", - git_url: "git://github.com/Be-Secure/rosdistro.git", - clone_url: "https://github.com/Be-Secure/rosdistro.git", - html_url: "https://github.com/Be-Secure/rosdistro", - homepage: "http://wiki.ros.org/rosdistro", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "A", - project_repos: { - main_github_url: "https://github.com/ros/rosdistro", - main_bes_url: "https://github.com/Be-Secure/rosdistro", - all_projects: { - rosdistro: "https://github.com/ros/rosdistro", - }, - all_bes_repos: [ - { - id: 397471826, - name: "rosdistro", - url: "https://github.com/Be-Secure/rosdistro", - }, - ], - }, - license: { - key: "other", - name: "Other", - spdx_id: "NOASSERTION", - url: null, - node_id: "MDc6TGljZW5zZTA=", - }, - language: ["Shell", "Python"], - - tags: { - IND: ["Automotive"], - SD: [""], - COM: ["community-led"], - "TD-U": ["TD-U-IoT"], - }, - }, - { - id: 76, - bes_tracking_id: 76, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/76", - name: "oneVPL", - full_name: "Be-Secure/oneVPL", - description: - "oneAPI Video Processing Library (oneVPL) dispatcher, tools, and examples", - bes_technology_stack: "L&F", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 19926, - open_issues: 0, - created_at: "2023-02-25T19:17:05Z", - updated_at: "2023-02-25T20:27:35Z", - pushed_at: "2023-02-25T20:27:46Z", - git_url: "git://github.com/Be-Secure/oneVPL.git", - clone_url: "https://github.com/Be-Secure/oneVPL.git", - html_url: "https://github.com/Be-Secure/oneVPL", - homepage: "", - owner: { - login: "Be-Secure", - id: 44028837, - node_id: "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - gravatar_id: "", - url: "https://api.github.com/users/Be-Secure", - html_url: "https://github.com/Be-Secure", - followers_url: "https://api.github.com/users/Be-Secure/followers", - following_url: - "https://api.github.com/users/Be-Secure/following{/other_user}", - gists_url: "https://api.github.com/users/Be-Secure/gists{/gist_id}", - starred_url: - "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - subscriptions_url: - "https://api.github.com/users/Be-Secure/subscriptions", - organizations_url: "https://api.github.com/users/Be-Secure/orgs", - repos_url: "https://api.github.com/users/Be-Secure/repos", - events_url: "https://api.github.com/users/Be-Secure/events{/privacy}", - received_events_url: - "https://api.github.com/users/Be-Secure/received_events", - type: "Organization", - site_admin: false, - }, - project_repos: { - main_github_url: "https://github.com/oneapi-src/oneVPL", - main_bes_url: "https://github.com/Be-Secure/oneVPL", - all_projects: [ - { - id: 244967696, - name: "oneapi-src/oneVPL", - url: "https://github.com/oneapi-src/oneVPL", - }, - ], - all_bes_repos: [ - { - id: 606531959, - name: "Be-Secure/oneVPL", - url: "https://github.com/Be-Secure/oneVPL", - }, - ], - }, - license: { - key: "mit", - name: "MIT License", - spdx_id: "MIT", - url: "https://api.github.com/licenses/mit", - node_id: "MDc6TGljZW5zZTEz", - }, - language: { - "C++": 5836003, - C: 666329, - Python: 426824, - CMake: 101529, - Shell: 41675, - Batchfile: 32315, - Starlark: 25499, - Dockerfile: 3669, - }, - tags: ["L&F", "IND-ALL", "COM - C", "Tracked"], - }, - { - id: 274, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/274", - bes_tracking_id: 274, - name: "catkin", - full_name: "Be-Secure/catkin", - description: - "Catkin is a collection of cmake macros and associated python code used to build some parts of ROS.", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 3755, - open_issues: 0, - created_at: "2021-08-18T04:24:52Z", - updated_at: "2021-08-18T04:24:53Z", - pushed_at: "2021-08-06T23:16:35Z", - git_url: "git://github.com/Be-Secure/catkin.git", - clone_url: "https://github.com/Be-Secure/catkin.git", - html_url: "https://github.com/Be-Secure/catkin", - homepage: "http://wiki.ros.org/catkin", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "A", - project_repos: { - main_github_url: "https://github.com/ros/catkin", - main_bes_url: "https://github.com/Be-Secure/catkin", - all_projects: { - catkin: "https://github.com/ros/catkin", - }, - all_bes_repos: [ - { - id: 397471497, - name: "catkin", - url: "https://github.com/Be-Secure/catkin", - }, - ], - }, - license: { - key: "bsd-3-clause", - name: 'BSD 3-Clause "New" or "Revised" License', - spdx_id: "BSD-3-Clause", - url: "https://api.github.com/licenses/bsd-3-clause", - node_id: "MDc6TGljZW5zZTU=", - }, - language: ["Cmake", "Shell", "Python"], - tags: { - IND: ["Automotive"], - SD: [""], - COM: ["community-led"], - "TD-U": ["TD-U-IoT"], - }, - }, - { - id: 75, - bes_tracking_id: 75, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/75", - name: "oneCCL", - full_name: "Be-Secure/oneCCL", - description: "oneAPI Collective Communications Library (oneCCL)", - bes_technology_stack: "L&F", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 129865, - open_issues: 0, - created_at: "2023-02-25T19:17:38Z", - updated_at: "2023-02-25T20:18:33Z", - pushed_at: "2023-02-25T20:18:45Z", - git_url: "git://github.com/Be-Secure/oneCCL.git", - clone_url: "https://github.com/Be-Secure/oneCCL.git", - html_url: "https://github.com/Be-Secure/oneCCL", - homepage: "https://oneapi-src.github.io/oneCCL", - owner: { - login: "Be-Secure", - id: 44028837, - node_id: "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - gravatar_id: "", - url: "https://api.github.com/users/Be-Secure", - html_url: "https://github.com/Be-Secure", - followers_url: "https://api.github.com/users/Be-Secure/followers", - following_url: - "https://api.github.com/users/Be-Secure/following{/other_user}", - gists_url: "https://api.github.com/users/Be-Secure/gists{/gist_id}", - starred_url: - "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - subscriptions_url: - "https://api.github.com/users/Be-Secure/subscriptions", - organizations_url: "https://api.github.com/users/Be-Secure/orgs", - repos_url: "https://api.github.com/users/Be-Secure/repos", - events_url: "https://api.github.com/users/Be-Secure/events{/privacy}", - received_events_url: - "https://api.github.com/users/Be-Secure/received_events", - type: "Organization", - site_admin: false, - }, - project_repos: { - main_github_url: "https://github.com/oneapi-src/oneCCL", - main_bes_url: "https://github.com/Be-Secure/oneCCL", - all_projects: [ - { - id: 207412282, - name: "oneapi-src/oneCCL", - url: "https://github.com/oneapi-src/oneCCL", - }, - ], - all_bes_repos: [ - { - id: 606532100, - name: "Be-Secure/oneCCL", - url: "https://github.com/Be-Secure/oneCCL", - }, - ], - }, - license: { - key: "other", - name: "Other", - spdx_id: "NOASSERTION", - url: null, - node_id: "MDc6TGljZW5zZTA=", - }, - language: { - "C++": 3633515, - C: 107041, - CMake: 87619, - Makefile: 11998, - Shell: 8352, - }, - tags: ["L&F", "IND-ALL", "COM - C", "TD-U-AI/ML", "TD-C-DA", "Tracked"], - }, - { - id: 233, - bes_tracking_id: 233, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/233", - name: "tock", - full_name: "Be-Secure/tock", - description: - "embedded operating system designed for running multiple concurrent, mutually distrustful applications on Cortex-M and RISC-V based embedded platforms..", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 155569, - open_issues: 0, - created_at: "2021-08-12T03:30:02Z", - updated_at: "2021-08-12T03:30:03Z", - pushed_at: "2021-08-12T01:25:43Z", - git_url: "git://github.com/Be-Secure/tock.git", - clone_url: "https://github.com/Be-Secure/tock.git", - html_url: "https://github.com/Be-Secure/tock", - homepage: "https://www.tockos.org", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "A", - project_repos: { - main_github_url: "https://github.com/tock/tock", - main_bes_url: "https://github.com/Be-Secure/tock", - all_projects: { - tock: "https://github.com/tock/tock", - }, - all_bes_repos: [ - { - id: 395183264, - name: "tock", - url: "https://github.com/Be-Secure/tock", - }, - ], - }, - license: { - key: "apache-2.0", - name: "Apache License 2.0", - spdx_id: "Apache-2.0", - url: "https://api.github.com/licenses/apache-2.0", - node_id: "MDc6TGljZW5zZTI=", - }, - language: ["C", "Nix", "Rust", "Python", "Shell", "Makefile"], - - tags: ["A", "IND-AM", "COM - C"], - }, - { - id: 74, - bes_tracking_id: 74, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/74", - name: "level-zero", - full_name: "Be-Secure/level-zero", - description: "oneAPI Level Zero Specification Headers and Loader", - bes_technology_stack: "A", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 2042, - open_issues: 0, - created_at: "2023-02-25T19:18:10Z", - updated_at: "2023-02-25T20:06:00Z", - pushed_at: "2023-02-25T20:06:19Z", - git_url: "git://github.com/Be-Secure/level-zero.git", - clone_url: "https://github.com/Be-Secure/level-zero.git", - html_url: "https://github.com/Be-Secure/level-zero", - homepage: - "https://spec.oneapi.com/versions/latest/elements/l0/source/index.html", - owner: { - login: "Be-Secure", - id: 44028837, - node_id: "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - gravatar_id: "", - url: "https://api.github.com/users/Be-Secure", - html_url: "https://github.com/Be-Secure", - followers_url: "https://api.github.com/users/Be-Secure/followers", - following_url: - "https://api.github.com/users/Be-Secure/following{/other_user}", - gists_url: "https://api.github.com/users/Be-Secure/gists{/gist_id}", - starred_url: - "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - subscriptions_url: - "https://api.github.com/users/Be-Secure/subscriptions", - organizations_url: "https://api.github.com/users/Be-Secure/orgs", - repos_url: "https://api.github.com/users/Be-Secure/repos", - events_url: "https://api.github.com/users/Be-Secure/events{/privacy}", - received_events_url: - "https://api.github.com/users/Be-Secure/received_events", - type: "Organization", - site_admin: false, - }, - project_repos: { - main_github_url: "https://github.com/oneapi-src/level-zero", - main_bes_url: "https://github.com/Be-Secure/level-zero", - all_projects: [ - { - id: 245246663, - name: "oneapi-src/level-zero", - url: "https://github.com/oneapi-src/level-zero", - }, - ], - all_bes_repos: [ - { - id: 606532210, - name: "Be-Secure/level-zero", - url: "https://github.com/Be-Secure/level-zero", - }, - ], - }, - license: { - key: "mit", - name: "MIT License", - spdx_id: "MIT", - url: "https://api.github.com/licenses/mit", - node_id: "MDc6TGljZW5zZTEz", - }, - language: { - "C++": 2918567, - C: 1291721, - Python: 663363, - Mako: 38645, - CMake: 25087, - Dockerfile: 319, - }, - tags: ["A", "IND-ALL", "COM - C", "TD-U-ApD", "Tracked"], - }, - { - id: 186, - bes_tracking_id: 186, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/186", - name: "moodle", - full_name: "Be-Secure/moodle", - description: - "learning platform designed to provide educators, administrators and learners with a single robust, secure and integrated system to create personalized learning environments.", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 307158, - open_issues: 0, - created_at: "2021-08-11T14:34:52Z", - updated_at: "2021-08-11T14:34:53Z", - pushed_at: "2021-08-11T15:26:06Z", - git_url: "git://github.com/Be-Secure/moodle.git", - clone_url: "https://github.com/Be-Secure/moodle.git", - html_url: "https://github.com/Be-Secure/moodle", - homepage: "https://moodle.org/", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "A", - project_repos: { - main_github_url: "https://github.com/moodle/moodle", - main_bes_url: "https://github.com/Be-Secure/moodle", - all_projects: { - moodle: "https://github.com/moodle/moodle", - }, - all_bes_repos: [ - { - id: 395019202, - name: "moodle", - url: "https://github.com/Be-Secure/moodle", - }, - ], - }, - license: { - key: "gpl-3.0", - name: "GNU General Public License v3.0", - spdx_id: "GPL-3.0", - url: "https://api.github.com/licenses/gpl-3.0", - node_id: "MDc6TGljZW5zZTk=", - }, - language: ["Javascript", "CSS", "SCSS", "PHP", "Mustache", "Gherkin"], - - tags: ["A", "IND-ED", "COM - C", "TD-C-WA"], - }, - { - id: 73, - bes_tracking_id: 73, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/73", - name: "level-zero-spec", - full_name: "Be-Secure/level-zero-spec", - description: "", - bes_technology_stack: "A", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 2790, - open_issues: 0, - created_at: "2023-02-25T19:18:44Z", - updated_at: "2023-02-25T19:56:04Z", - pushed_at: "2023-02-25T19:56:21Z", - git_url: "git://github.com/Be-Secure/level-zero-spec.git", - clone_url: "https://github.com/Be-Secure/level-zero-spec.git", - html_url: "https://github.com/Be-Secure/level-zero-spec", - homepage: null, - owner: { - login: "Be-Secure", - id: 44028837, - node_id: "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - gravatar_id: "", - url: "https://api.github.com/users/Be-Secure", - html_url: "https://github.com/Be-Secure", - followers_url: "https://api.github.com/users/Be-Secure/followers", - following_url: - "https://api.github.com/users/Be-Secure/following{/other_user}", - gists_url: "https://api.github.com/users/Be-Secure/gists{/gist_id}", - starred_url: - "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - subscriptions_url: - "https://api.github.com/users/Be-Secure/subscriptions", - organizations_url: "https://api.github.com/users/Be-Secure/orgs", - repos_url: "https://api.github.com/users/Be-Secure/repos", - events_url: "https://api.github.com/users/Be-Secure/events{/privacy}", - received_events_url: - "https://api.github.com/users/Be-Secure/received_events", - type: "Organization", - site_admin: false, - }, - project_repos: { - main_github_url: "https://github.com/oneapi-src/level-zero-spec", - main_bes_url: "https://github.com/Be-Secure/level-zero-spec", - all_projects: [ - { - id: 467697050, - name: "oneapi-src/level-zero-spec", - url: "https://github.com/oneapi-src/level-zero-spec", - }, - ], - all_bes_repos: [ - { - id: 606532344, - name: "Be-Secure/level-zero-spec", - url: "https://github.com/Be-Secure/level-zero-spec", - }, - ], - }, - license: { - key: "mit", - name: "MIT License", - spdx_id: "MIT", - url: "https://api.github.com/licenses/mit", - node_id: "MDc6TGljZW5zZTEz", - }, - language: { - Python: 80383, - Mako: 28932, - CMake: 2302, - HTML: 137, - CSS: 59, - }, - tags: ["A", "IND-ALL", "COM - C", "TD-U-ApD"], - }, - { - id: 139, - bes_tracking_id: 139, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/139", - name: "opencv", - full_name: "Be-Secure/opencv", - description: "machine learning software library.", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 496583, - open_issues: 0, - created_at: "2021-08-11T14:37:50Z", - updated_at: "2021-08-11T14:37:52Z", - pushed_at: "2021-08-11T14:37:11Z", - git_url: "git://github.com/Be-Secure/opencv.git", - clone_url: "https://github.com/Be-Secure/opencv.git", - html_url: "https://github.com/Be-Secure/opencv", - homepage: "https://opencv.org", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "A", - project_repos: { - main_github_url: "https://github.com/opencv/opencv", - main_bes_url: "https://github.com/Be-Secure/opencv", - all_projects: { - opencv: "https://github.com/opencv/opencv", - }, - all_bes_repos: [ - { - id: 395020083, - name: "opencv", - url: "https://github.com/Be-Secure/opencv", - }, - ], - }, - license: { - key: "apache-2.0", - name: "Apache License 2.0", - spdx_id: "Apache-2.0", - url: "https://api.github.com/licenses/apache-2.0", - node_id: "MDc6TGljZW5zZTI=", - }, - language: ["Java", "Python", "Cmake", "C", "C++", "Objective-C++"], - - tags: ["L&F", "COM - C", "TD-U-AI/ML", "TD-C-CA"], - }, - { - id: 72, - bes_tracking_id: 72, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/72", - name: "unified-runtime", - full_name: "Be-Secure/unified-runtime", - description: "", - bes_technology_stack: "A", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 1644, - open_issues: 0, - created_at: "2023-02-25T19:19:16Z", - updated_at: "2023-02-25T19:39:00Z", - pushed_at: "2023-02-25T19:39:40Z", - git_url: "git://github.com/Be-Secure/unified-runtime.git", - clone_url: "https://github.com/Be-Secure/unified-runtime.git", - html_url: "https://github.com/Be-Secure/unified-runtime", - homepage: "https://oneapi-src.github.io/unified-runtime/", - owner: { - login: "Be-Secure", - id: 44028837, - node_id: "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - gravatar_id: "", - url: "https://api.github.com/users/Be-Secure", - html_url: "https://github.com/Be-Secure", - followers_url: "https://api.github.com/users/Be-Secure/followers", - following_url: - "https://api.github.com/users/Be-Secure/following{/other_user}", - gists_url: "https://api.github.com/users/Be-Secure/gists{/gist_id}", - starred_url: - "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - subscriptions_url: - "https://api.github.com/users/Be-Secure/subscriptions", - organizations_url: "https://api.github.com/users/Be-Secure/orgs", - repos_url: "https://api.github.com/users/Be-Secure/repos", - events_url: "https://api.github.com/users/Be-Secure/events{/privacy}", - received_events_url: - "https://api.github.com/users/Be-Secure/received_events", - type: "Organization", - site_admin: false, - }, - project_repos: { - main_github_url: "https://github.com/oneapi-src/unified-runtime", - main_bes_url: "https://github.com/Be-Secure/unified-runtime", - all_projects: [ - { - id: 508062186, - name: "oneapi-src/unified-runtime", - url: "https://github.com/oneapi-src/unified-runtime", - }, - ], - all_bes_repos: [ - { - id: 606532466, - name: "Be-Secure/unified-runtime", - url: "https://github.com/Be-Secure/unified-runtime", - }, - ], - }, - license: { - key: "mit", - name: "MIT License", - spdx_id: "MIT", - url: "https://api.github.com/licenses/mit", - node_id: "MDc6TGljZW5zZTEz", - }, - language: { - "C++": 1164013, - C: 442708, - Python: 243537, - Mako: 50832, - CMake: 22327, - Batchfile: 5915, - HTML: 137, - CSS: 59, - }, - tags: ["A", "IND-ALL", "COM - C", "TD-U-ApD"], - }, - { - id: 187, - bes_tracking_id: 187, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/187", - name: "odoo", - full_name: "Be-Secure/odoo", - description: "Odoo is a suite of web based open source business apps.", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 3712670, - open_issues: 0, - created_at: "2021-08-11T14:32:10Z", - updated_at: "2021-08-11T14:32:13Z", - pushed_at: "2021-08-11T14:31:51Z", - git_url: "git://github.com/Be-Secure/odoo.git", - clone_url: "https://github.com/Be-Secure/odoo.git", - html_url: "https://github.com/Be-Secure/odoo", - homepage: "https://www.odoo.com", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "A", - project_repos: { - main_github_url: "https://github.com/odoo/odoo", - main_bes_url: "https://github.com/Be-Secure/odoo", - all_projects: { - odoo: "https://github.com/odoo/odoo", - }, - all_bes_repos: [ - { - id: 395018421, - name: "odoo", - url: "https://github.com/Be-Secure/odoo", - }, - ], - }, - license: { - key: "other", - name: "Other", - spdx_id: "NOASSERTION", - url: "null", - node_id: "MDc6TGljZW5zZTA=", - }, - language: ["Javascript", "HTML", "CSS", "Python", "Shell", "SCSS"], - - tags: ["A", "IND-ALL", "COM - C", "TD-U-DkA"], - }, - { - id: 71, - bes_tracking_id: 71, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/71", - name: "visual-quality-inspection", - full_name: "Be-Secure/visual-quality-inspection", - description: - "AI Starter Kit for Quality Visual Inspection using Intel\u00ae Extension for Pytorch", - bes_technology_stack: "L&F", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 204, - open_issues: 0, - created_at: "2023-02-25T19:20:00Z", - updated_at: "2023-02-25T19:23:57Z", - pushed_at: "2023-02-25T19:24:29Z", - git_url: "git://github.com/Be-Secure/visual-quality-inspection.git", - clone_url: "https://github.com/Be-Secure/visual-quality-inspection.git", - html_url: "https://github.com/Be-Secure/visual-quality-inspection", - homepage: "", - owner: { - login: "Be-Secure", - id: 44028837, - node_id: "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - gravatar_id: "", - url: "https://api.github.com/users/Be-Secure", - html_url: "https://github.com/Be-Secure", - followers_url: "https://api.github.com/users/Be-Secure/followers", - following_url: - "https://api.github.com/users/Be-Secure/following{/other_user}", - gists_url: "https://api.github.com/users/Be-Secure/gists{/gist_id}", - starred_url: - "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - subscriptions_url: - "https://api.github.com/users/Be-Secure/subscriptions", - organizations_url: "https://api.github.com/users/Be-Secure/orgs", - repos_url: "https://api.github.com/users/Be-Secure/repos", - events_url: "https://api.github.com/users/Be-Secure/events{/privacy}", - received_events_url: - "https://api.github.com/users/Be-Secure/received_events", - type: "Organization", - site_admin: false, - }, - project_repos: { - main_github_url: - "https://github.com/oneapi-src/visual-quality-inspection", - main_bes_url: "https://github.com/Be-Secure/visual-quality-inspection", - all_projects: [ - { - id: 506429950, - name: "oneapi-src/visual-quality-inspection", - url: "https://github.com/oneapi-src/visual-quality-inspection", - }, - ], - all_bes_repos: [ - { - id: 606532641, - name: "Be-Secure/visual-quality-inspection", - url: "https://github.com/Be-Secure/visual-quality-inspection", - }, - ], - }, - license: { - key: "bsd-3-clause", - name: 'BSD 3-Clause "New" or "Revised" License', - spdx_id: "BSD-3-Clause", - url: "https://api.github.com/licenses/bsd-3-clause", - node_id: "MDc6TGljZW5zZTU=", - }, - language: { - Python: 56176, - }, - tags: ["L&F", "IND-ALL", "COM - C", "TD-U-AI/ML"], - }, - { - id: 188, - bes_tracking_id: 188, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/188", - name: "magento2", - full_name: "Be-Secure/magento2", - description: - "Delivers basic eCommerce capabilities to build a unique online store from the ground up.", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 630994, - open_issues: 0, - created_at: "2021-08-11T14:33:05Z", - updated_at: "2021-08-11T14:33:09Z", - pushed_at: "2021-08-11T14:07:09Z", - git_url: "git://github.com/Be-Secure/magento2.git", - clone_url: "https://github.com/Be-Secure/magento2.git", - html_url: "https://github.com/Be-Secure/magento2", - homepage: "http://www.magento.com", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "A", - project_repos: { - main_github_url: "https://github.com/magento/magento2", - main_bes_url: "https://github.com/Be-Secure/magento2", - all_projects: { - magento2: "https://github.com/magento/magento2", - }, - all_bes_repos: [ - { - id: 395018690, - name: "magento2", - url: "https://github.com/Be-Secure/magento2", - }, - ], - }, - license: { - key: "osl-3.0", - name: "Open Software License 3.0", - spdx_id: "OSL-3.0", - url: "https://api.github.com/licenses/osl-3.0", - node_id: "MDc6TGljZW5zZTE2", - }, - language: ["Javascript", "HTML", "Less", "PHP"], - - tags: ["A", "IND-RT", "COM - C", "TD-U-DkA", "TD-C-CA"], - }, - { - id: 242, - bes_tracking_id: 242, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/242", - name: "hexo", - full_name: "Be-Secure/hexo", - description: - "A fast, simple & powerful blog framework, powered by Node.js.", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 7638, - open_issues: 0, - created_at: "2023-02-23T07:25:10Z", - updated_at: "2023-02-23T06:29:36Z", - pushed_at: "2023-02-19T17:06:21Z", - git_url: "git://github.com/Be-Secure/hexo.git", - clone_url: "https://github.com/Be-Secure/hexo.git", - html_url: "https://github.com/Be-Secure/hexo", - homepage: "https://hexo.io", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "L&F", - project_repos: { - main_github_url: "https://github.com/hexojs/hexo", - main_bes_url: "https://github.com/Be-Secure/hexo", - all_projects: { - hexo: "https://github.com/hexojs/hexo", - }, - all_bes_repos: [ - { - id: 605453366, - name: "hexo", - url: "https://github.com/Be-Secure/hexo", - }, - ], - }, - license: { - key: "mit", - name: "MIT License", - spdx_id: "MIT", - url: "https://api.github.com/licenses/mit", - node_id: "MDc6TGljZW5zZTEz", - }, - language: [ - { - JavaScript: 754789, - Shell: 58, - }, - ], - - tags: ["L&F", "IND-ALL", "COM - C"], - }, - { - id: 198, - bes_tracking_id: 198, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/198", - name: "joplin", - full_name: "Be-Secure/joplin", - description: - "Joplin - an open source note taking and to-do application with synchronization capabilities for Windows, macOS, Linux, Android and iOS. Forum: https://discourse.joplinapp.org/", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 215192, - open_issues: 0, - created_at: "2017-01-16T21:49:41Z", - updated_at: "2023-02-23T18:59:10Z", - pushed_at: "2023-02-23T16:42:53Z", - git_url: "git://github.com/Be-Secure/joplin.git", - clone_url: "https://github.com/Be-Secure/joplin.git", - html_url: "https://github.com/Be-Secure/joplin", - homepage: "https://joplinapp.org", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "A", - project_repos: { - main_github_url: "https://github.com/laurent22/joplin", - main_bes_url: "https://github.com/Be-Secure/joplin", - all_projects: { - joplin: "https://github.com/laurent22/joplin", - }, - all_bes_repos: [ - { - id: 79162682, - name: "joplin", - url: "https://github.com/Be-Secure/joplin", - }, - ], - }, - license: { - key: "other", - name: "Other", - spdx_id: "NOASSERTION", - url: null, - node_id: "MDc6TGljZW5zZTA=", - }, - language: [ - { - TypeScript: 3501550, - JavaScript: 2959974, - HTML: 130183, - CSS: 101881, - Mustache: 48814, - Handlebars: 31635, - Shell: 22781, - Java: 20784, - "Objective-C": 16633, - Ruby: 2194, - Starlark: 1920, - C: 419, - Batchfile: 140, - }, - ], - - tags: ["A", "IND-ALL", "COM - C", "TD-U-W", "TD-U-DkA", "TD-U-MoA"], - }, - { - id: 82, - bes_tracking_id: 82, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/82", - name: "gramine", - full_name: "Be-Secure/gramine", - description: - "Gramine (formerly called Graphene) is a lightweight library OS, designed to run a single linux application with minimal host requirements.", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 14106, - open_issues: 0, - created_at: "2023-02-17T05:20:19Z", - updated_at: "2023-02-17T08:26:02Z", - pushed_at: "2023-02-17T10:34:36Z", - git_url: "git://github.com/Be-Secure/gramine.git", - clone_url: "https://github.com/Be-Secure/gramine.git", - html_url: "https://github.com/Be-Secure/gramine", - homepage: "https://gramineproject.io", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "L&F", - project_repos: { - main_github_url: "https://github.com/gramineproject/gramine", - main_bes_url: "https://github.com/Be-Secure/gramine", - all_projects: { - gramine: "https://github.com/gramineproject/gramine", - }, - all_bes_repos: [ - { - id: 602866481, - name: "gramine", - url: "https://github.com/Be-Secure/gramine", - }, - ], - }, - license: { - key: "lgpl-3.0", - name: "GNU Lesser General Public License v3.0", - spdx_id: "LGPL-3.0", - url: "https://api.github.com/licenses/lgpl-3.0", - node_id: "MDc6TGljZW5zZTEy", - }, - language: [ - { - C: 3279350, - Python: 218858, - Meson: 69516, - Assembly: 61849, - Makefile: 46362, - Shell: 25234, - "C++": 10515, - Dockerfile: 6210, - GDB: 4927, - Rust: 970, - "Emacs Lisp": 478, - }, - ], - - tags: ["L&F", "SD-AS", "IND-ALL", "COM-C"], - }, - { - id: 235, - bes_tracking_id: 235, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/235", - name: "logstash", - full_name: "Be-Secure/logstash", - description: - "Logstash is a server-side data processing pipeline that ingests data from a multitude of sources simultaneously, transforms it, and then sends it to your favorite stash.", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 123067, - open_issues: 0, - created_at: "2023-02-20T08:40:20Z", - updated_at: "2023-02-20T12:39:17Z", - pushed_at: "2023-02-24T08:21:47Z", - git_url: "git://github.com/Be-Secure/logstash.git", - clone_url: "https://github.com/Be-Secure/logstash.git", - html_url: "https://github.com/Be-Secure/logstash", - homepage: "https://www.elastic.co/products/logstash", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "L&F", - project_repos: { - main_github_url: "https://github.com/elastic/logstash", - main_bes_url: "https://github.com/Be-Secure/logstash", - all_projects: { - logstash: "https://github.com/elastic/logstash", - }, - all_bes_repos: [ - { - id: 604056140, - name: "logstash", - url: "https://github.com/Be-Secure/logstash", - }, - ], - }, - license: { - key: "other", - name: "Other", - spdx_id: "NOASSERTION", - url: null, - node_id: "MDc6TGljZW5zZTA=", - }, - language: [ - { - Java: 2457732, - Ruby: 2456269, - Shell: 76820, - HTML: 60726, - Python: 17531, - CSS: 14421, - Makefile: 10506, - Groovy: 10043, - PowerShell: 9805, - Batchfile: 8625, - Jinja: 7440, - Go: 6056, - C: 3338, - Dockerfile: 2644, - }, - ], - - tags: [ - "L&F", - "TD-C-s", - "TD-U-DAA", - "IND-BFSI", - "IND-CyS", - "IND-ED", - "IND-RT", - "IND-TEL", - "COM-C", - ], - }, - { - id: 234, - bes_tracking_id: 234, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/234", - name: "struts", - full_name: "Be-Secure/struts", - description: - "The Apache Struts web framework is a free open-source solution for creating Java web applications.", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 78342, - open_issues: 0, - created_at: "2023-02-20T08:41:53Z", - updated_at: "2023-02-20T13:11:53Z", - pushed_at: "2023-02-20T13:34:22Z", - git_url: "git://github.com/Be-Secure/struts.git", - clone_url: "https://github.com/Be-Secure/struts.git", - html_url: "https://github.com/Be-Secure/struts", - homepage: "https://struts.apache.org", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "L&F", - project_repos: { - main_github_url: "https://github.com/apache/struts", - main_bes_url: "https://github.com/Be-Secure/struts", - all_projects: { - struts: "https://github.com/apache/struts", - }, - all_bes_repos: [ - { - id: 604056731, - name: "struts", - url: "https://github.com/Be-Secure/struts", - }, - ], - }, - license: { - key: "apache-2.0", - name: "Apache License 2.0", - spdx_id: "Apache-2.0", - url: "https://api.github.com/licenses/apache-2.0", - node_id: "MDc6TGljZW5zZTI=", - }, - language: [ - { - Java: 12478304, - HTML: 1292369, - FreeMarker: 296744, - JavaScript: 33058, - CSS: 22949, - XSLT: 11725, - }, - ], - - tags: [ - "L&F", - "TD-C-WA", - "TD-U-W", - "IND-BFSI", - "IND-ED", - "IND-HLS", - "IND-NG", - "IND-RT", - "IND-TEL", - "COM-C", - ], - }, - { - id: 231, - bes_tracking_id: 231, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/231", - name: "ThreatPlaybook", - full_name: "Be-Secure/ThreatPlaybook", - description: - "A unified DevSecOps Framework that allows you to go from iterative, collaborative Threat Modeling to Application Security Test Orchestration.", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 3018, - open_issues: 0, - created_at: "2023-02-23T07:25:10Z", - updated_at: "2023-02-23T06:29:36Z", - pushed_at: "2023-02-19T17:06:21Z", - git_url: "git://github.com/Be-Secure/ThreatPlaybook.git", - clone_url: "https://github.com/Be-Secure/ThreatPlaybook.git", - html_url: "https://github.com/Be-Secure/ThreatPlaybook", - homepage: "https://we45.gitbook.io/threatplaybook", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "L&F", - project_repos: { - main_github_url: "https://github.com/we45/ThreatPlaybook", - main_bes_url: "https://github.com/Be-Secure/ThreatPlaybook", - all_projects: { - ThreatPlaybook: "https://github.com/we45/ThreatPlaybook", - }, - all_bes_repos: [ - { - id: 440103696, - name: "ThreatPlaybook", - url: "https://github.com/Be-Secure/ThreatPlaybook", - }, - ], - }, - license: { - key: "mit", - name: "MIT license", - spdx_id: "mit", - url: "https://api.github.com/licenses/mit", - node_id: "MDc6TGljZW5zZTEz", - }, - language: [ - { - Python: 66777, - }, - ], - - tags: ["L&F", "SD-AS", "IND-CyS"], - }, - { - id: 189, - bes_tracking_id: 189, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/189", - name: "canvas-lms", - full_name: "Be-Secure/canvas-lms", - description: "The open LMS by Instructure, Inc.", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 1231519, - open_issues: 0, - created_at: "2023-02-22T10:29:24Z", - updated_at: "2023-02-22T09:38:29Z", - pushed_at: "2023-02-21T22:22:19Z", - git_url: "git://github.com/Be-Secure/canvas-lms.git", - clone_url: "https://github.com/Be-Secure/canvas-lms.git", - html_url: "https://github.com/Be-Secure/canvas-lms", - homepage: "https://github.com/instructure/canvas-lms/wiki", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "A", - project_repos: { - main_github_url: "https://github.com/instructure/canvas-lms", - main_bes_url: "https://github.com/Be-Secure/canvas-lms", - all_projects: { - "canvas-lms": "https://github.com/instructure/canvas-lms", - }, - all_bes_repos: [ - { - id: 605046755, - name: "canvas-lms", - url: "https://github.com/Be-Secure/canvas-lms", - }, - ], - }, - license: { - key: "agpl-3.0", - name: "GNU Affero General Public License v3.0", - spdx_id: "AGPL-3.0", - url: "https://api.github.com/licenses/agpl-3.0", - node_id: "MDc6TGljZW5zZTE=", - }, - language: [ - { - Ruby: 41012247, - JavaScript: 27907513, - TypeScript: 2694796, - HTML: 2124037, - SCSS: 1146950, - CoffeeScript: 736995, - Handlebars: 486324, - Groovy: 148710, - Shell: 137358, - CSS: 107061, - Dockerfile: 7951, - Python: 3832, - Lua: 3825, - Kotlin: 1322, - Makefile: 313, - }, - ], - - tags: ["A", "IND-ED", "COM - C", "TD-C-A"], - }, - { - id: 191, - bes_tracking_id: 191, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/191", - name: "canvas-android", - full_name: "Be-Secure/canvas-android", - description: "Canvas Android apps", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 48897, - open_issues: 0, - created_at: "2023-02-22T10:40:47Z", - updated_at: "2023-02-01T02:10:46Z", - pushed_at: "2023-02-21T15:02:46Z", - git_url: "git://github.com/Be-Secure/canvas-android.git", - clone_url: "https://github.com/Be-Secure/canvas-android.git", - html_url: "https://github.com/Be-Secure/canvas-android", - homepage: "", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "A", - project_repos: { - main_github_url: "https://github.com/instructure/canvas-android", - main_bes_url: "https://github.com/Be-Secure/canvas-android", - all_projects: { - "canvas-android": "https://github.com/instructure/canvas-android", - }, - all_bes_repos: [ - { - id: 605046755, - name: "canvas-android", - url: "https://github.com/Be-Secure/canvas-android", - }, - ], - }, - license: null, - language: [ - { - Kotlin: 11198575, - Dart: 4964930, - HTML: 184971, - Java: 79793, - Ruby: 36778, - Shell: 27604, - JavaScript: 9505, - "Objective-C": 7431, - Groovy: 7123, - Python: 2438, - CSS: 1356, - Swift: 807, - Dockerfile: 112, - }, - ], - - tags: ["A", "IND-ALL", "COM - C", "TD-C-A"], - }, - { - id: 145, - bes_tracking_id: 145, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/145", - name: "ros", - full_name: "Be-Secure/ros", - description: "Core ROS packages", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 14727, - open_issues: 0, - created_at: "2023-02-22T10:40:47Z", - updated_at: "2023-02-01T02:10:46Z", - pushed_at: "2023-02-21T15:02:46Z", - git_url: "git://github.com/Be-Secure/ros.git", - clone_url: "https://github.com/Be-Secure/ros.git", - html_url: "https://github.com/Be-Secure/ros", - homepage: "", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "A", - project_repos: { - main_github_url: "https://github.com/ros/ros", - main_bes_url: "https://github.com/Be-Secure/ros", - all_projects: { - ros: "https://github.com/ros/ros", - }, - all_bes_repos: [ - { - id: 605046755, - name: "ros", - url: "https://github.com/Be-Secure/ros", - }, - ], - }, - license: { - key: "bsd-3-clause", - name: 'BSD 3-Clause "New" or "Revised" License', - spdx_id: "BSD-3-Clause", - url: "https://api.github.com/licenses/bsd-3-clause", - node_id: "MDc6TGljZW5zZTU=", - }, - language: [ - { - Python: 501993, - CMake: 105676, - "C++": 18111, - Makefile: 10138, - Batchfile: 7640, - Shell: 6723, - EmberScript: 4202, - Awk: 639, - }, - ], - - tags: ["A", "IND-AM", "COM - C", "TD-C-A"], - }, - { - id: 192, - bes_tracking_id: 192, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/192", - name: "kaa", - full_name: "Be-Secure/kaa", - description: - "Kaa Internet of Things platform for device management, data collection, analytics and visualization, remote control, software updates and more", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 238472, - open_issues: 0, - created_at: "2021-08-11T05:15:33Z", - updated_at: "2022-12-08T16:56:54Z", - pushed_at: "2022-12-08T16:56:45Z", - git_url: "git://github.com/Be-Secure/kaa.git", - clone_url: "https://github.com/Be-Secure/kaa.git", - html_url: "https://github.com/Be-Secure/kaa", - homepage: "http://www.kaaproject.org", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "A", - project_repos: { - main_github_url: "https://github.com/kaaproject/kaa", - main_bes_url: "https://github.com/Be-Secure/kaa", - all_projects: { - kaa: "https://github.com/kaaproject/kaa", - }, - all_bes_repos: [ - { - id: 605046755, - name: "kaa", - url: "https://github.com/Be-Secure/kaa", - }, - ], - }, - license: { - key: "bsd-3-clause", - name: 'BSD 3-Clause "New" or "Revised" License', - spdx_id: "BSD-3-Clause", - url: "https://api.github.com/licenses/bsd-3-clause", - node_id: "MDc6TGljZW5zZTU=", - }, - language: {}, - tags: ["A", "IND-AM", "COM - C", "TD-C-A"], - }, - { - id: 194, - bes_tracking_id: 194, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/194", - name: "pimcore", - full_name: "Be-Secure/pimcore", - description: - "Open Source Data & Experience Management Platform (PIM, MDM, CDP, DAM, DXP/CMS & Digital Commerce)", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 507803, - open_issues: 0, - created_at: "2021-08-05T08:50:28Z", - updated_at: "2021-08-05T08:50:29Z", - pushed_at: "2021-08-05T08:06:07Z", - git_url: "git://github.com/Be-Secure/pimcore.git", - clone_url: "https://github.com/Be-Secure/pimcore.git", - html_url: "https://github.com/Be-Secure/pimcore", - homepage: "http://www.pimcore.org/", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "A", - project_repos: { - main_github_url: "https://github.com/pimcore/pimcore", - main_bes_url: "https://github.com/Be-Secure/pimcore", - all_projects: { - pimcore: "https://github.com/pimcore/pimcore", - }, - all_bes_repos: [ - { - id: 605046755, - name: "pimcore", - url: "https://github.com/Be-Secure/pimcore", - }, - ], - }, - license: { - key: "other", - name: "Other", - spdx_id: "NOASSERTION", - url: null, - node_id: "MDc6TGljZW5zZTA=", - }, - language: { - PHP: 9587829, - JavaScript: 5773385, - CSS: 865703, - Twig: 255101, - SCSS: 17150, - HTML: 5274, - Shell: 4538, - }, - - tags: ["A", "IND-AM", "COM - C", "TD-C-A"], - }, - { - id: 96, - bes_tracking_id: 96, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/96", - name: "scikit-learn", - full_name: "Be-Secure/scikit-learn", - description: "scikit-learn: machine learning in Python", - bes_technology_stack: "L&F", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 150153, - open_issues: 0, - created_at: "2023-03-01T11:34:47Z", - updated_at: "2023-03-01T11:39:21Z", - pushed_at: "2023-03-01T11:41:32Z", - git_url: "git://github.com/Be-Secure/scikit-learn.git", - clone_url: "https://github.com/Be-Secure/scikit-learn.git", - html_url: "https://github.com/Be-Secure/scikit-learn", - homepage: "https://scikit-learn.org", - owner: { - login: "Be-Secure", - id: 44028837, - node_id: "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - gravatar_id: "", - url: "https://api.github.com/users/Be-Secure", - html_url: "https://github.com/Be-Secure", - followers_url: "https://api.github.com/users/Be-Secure/followers", - following_url: - "https://api.github.com/users/Be-Secure/following{/other_user}", - gists_url: "https://api.github.com/users/Be-Secure/gists{/gist_id}", - starred_url: - "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - subscriptions_url: - "https://api.github.com/users/Be-Secure/subscriptions", - organizations_url: "https://api.github.com/users/Be-Secure/orgs", - repos_url: "https://api.github.com/users/Be-Secure/repos", - events_url: "https://api.github.com/users/Be-Secure/events{/privacy}", - received_events_url: - "https://api.github.com/users/Be-Secure/received_events", - type: "Organization", - site_admin: false, - }, - project_repos: { - main_github_url: "https://github.com/scikit-learn/scikit-learn", - main_bes_url: "https://github.com/Be-Secure/scikit-learn", - all_projects: [ - { - id: 843222, - name: "scikit-learn/scikit-learn", - url: "https://github.com/scikit-learn/scikit-learn", - }, - ], - all_bes_repos: [ - { - id: 608128969, - name: "Be-Secure/scikit-learn", - url: "https://github.com/Be-Secure/scikit-learn", - }, - ], - }, - license: { - key: "bsd-3-clause", - name: 'BSD 3-Clause "New" or "Revised" License', - spdx_id: "BSD-3-Clause", - url: "https://api.github.com/licenses/bsd-3-clause", - node_id: "MDc6TGljZW5zZTU=", - }, - language: { - Python: 10298005, - Cython: 780948, - "C++": 147316, - Shell: 42620, - C: 42335, - Makefile: 1644, - }, - tags: ["L&F", "IND-ED", "COM - C", "TD-U-AI/ML", "TD-C-A"], - }, - { - id: 229, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/229", - bes_tracking_id: 229, - name: "spiderfoot", - full_name: "Be-Secure/spiderfoot", - description: "TAVOSS-TR: Spiderfoot", - watchers_count: 0, - forks_count: 1, - stargazers_count: 0, - size: 16382, - open_issues: 0, - created_at: "2023-02-20T08:22:56Z", - updated_at: "2023-02-23T11:40:13Z", - pushed_at: "2023-02-23T11:40:04Z", - git_url: "git://github.com/Be-Secure/spiderfoot.git", - clone_url: "https://github.com/Be-Secure/spiderfoot.git", - html_url: "https://github.com/Be-Secure/spiderfoot", - homepage: "", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "S", - project_repos: { - main_github_url: "https://github.com/smicallef/spiderfoot", - main_bes_url: "https://github.com/Be-Secure/spiderfoot", - all_projects: { - spiderfoot: "https://github.com/smicallef/spiderfoot", - }, - all_bes_repos: [ - { - id: 604049599, - name: "spiderfoot", - url: "https://github.com/Be-Secure/spiderfoot", - }, - ], - }, - license: { - key: "gpl-2.0", - name: "GNU General Public License v2.0", - spdx_id: "GPL-2.0", - url: "https://api.github.com/licenses/gpl-2.0", - node_id: "MDc6TGljZW5zZTg=", - }, - language: { - Python: 2647067, - JavaScript: 33563, - CSS: 9908, - RobotFramework: 7375, - Dockerfile: 2779, - Shell: 1464, - }, - tags: [ - "A", - "IND-ALL", - "IND-Cys", - "SD-IoTS", - "SD-NS", - "SD-SRM", - "TD-U-DAA", - ], - }, - { - id: 230, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/230", - bes_tracking_id: 230, - name: "toit", - full_name: "Be-Secure/toit", - description: "TAVOSS-TR: Toit", - watchers_count: 0, - forks_count: 1, - stargazers_count: 0, - size: 11397, - open_issues: 0, - created_at: "2023-02-20T08:36:20Z", - updated_at: "2023-02-23T12:10:56Z", - pushed_at: "2023-02-23T12:10:40Z", - git_url: "git://github.com/Be-Secure/toit.git", - clone_url: "https://github.com/Be-Secure/toit.git", - html_url: "https://github.com/Be-Secure/toit", - homepage: "", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "L&F", - project_repos: { - main_github_url: "https://github.com/toitlang/toit", - main_bes_url: "https://github.com/Be-Secure/toit", - all_projects: { - rdkcryptoapi: "https://github.com/toitlang/toit", - }, - all_bes_repos: [ - { - id: 604054441, - name: "toit", - url: "https://github.com/Be-Secure/toit", - }, - ], - }, - license: { - key: "lgpl-2.1", - name: "GNU Lesser General Public License v2.1", - spdx_id: "LGPL-2.1", - url: "https://api.github.com/licenses/lgpl-2.1", - node_id: "MDc6TGljZW5zZTEx", - }, - language: { - "C++": 2719592, - Go: 243864, - CMake: 105860, - Makefile: 10403, - C: 1937, - Python: 1169, - "Vim Snippet": 32, - }, - tags: ["COM-C", "COM-F", "L&F", "TD-C-S", "TD-U-AI/ML"], - }, - { - id: 232, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/232", - bes_tracking_id: 232, - name: "primeng", - full_name: "Be-Secure/primeng", - description: "TAVOSS-TR: Primeng", - watchers_count: 0, - forks_count: 1, - stargazers_count: 0, - size: 100588, - open_issues: 481, - created_at: "2023-02-20T08:20:55Z", - updated_at: "2023-02-23T12:39:38Z", - pushed_at: "2023-02-23T12:46:38Z", - git_url: "git://github.com/Be-Secure/primeng.git", - clone_url: "https://github.com/Be-Secure/rdkcryptoapi.git", - html_url: "https://github.com/Be-Secure/primeng", - homepage: "", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "L&F", - project_repos: { - main_github_url: "https://github.com/primefaces/primeng", - main_bes_url: "https://github.com/Be-Secure/primeng", - all_projects: { - primeng: "https://github.com/primefaces/primeng", - }, - all_bes_repos: [ - { - id: 604048855, - name: "primeng", - url: "https://github.com/Be-Secure/primeng", - }, - ], - }, - license: { - key: "mit", - name: "MIT License", - spdx_id: "MIT", - url: "https://api.github.com/licenses/mit", - node_id: "MDc6TGljZW5zZTEz", - }, - language: { - CSS: 9047489, - TypeScript: 2993915, - HTML: 2811960, - SCSS: 93686, - JavaScript: 3483, - PHP: 86, - }, - tags: ["A", "IND-ALL", "SD-AS", "TD-C-WA", "TD-U-W"], - }, - { - id: 202, - bes_tracking_id: 202, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/202", - name: "chatwoot", - full_name: "Be-Secure/chatwoot", - description: "Open-source customer engagement suite, an alternative to Intercom, Zendesk, Salesforce Service Cloud etc. 🔥💬.", - bes_technology_stack: "A", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 47491, - open_issues: 0, - created_at: "2021-08-05T09:58:34Z", - updated_at: "2021-08-05T09:58:35Z", - pushed_at: "2021-08-05T09:23:42Z", - git_url: "git://github.com/Be-Secure/chatwoot.git", - clone_url: "https://github.com/Be-Secure/chatwoot.git", - html_url: "https://github.com/Be-Secure/chatwoot", - homepage: "https://www.chatwoot.com/help-center", - owner: { - login: "Be-Secure", - id: 44028837, - node_id: "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - gravatar_id: "", - url: "https://api.github.com/users/Be-Secure", - html_url: "https://github.com/Be-Secure", - followers_url: "https://api.github.com/users/Be-Secure/followers", - following_url: - "https://api.github.com/users/Be-Secure/following{/other_user}", - gists_url: "https://api.github.com/users/Be-Secure/gists{/gist_id}", - starred_url: - "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - subscriptions_url: - "https://api.github.com/users/Be-Secure/subscriptions", - organizations_url: "https://api.github.com/users/Be-Secure/orgs", - repos_url: "https://api.github.com/users/Be-Secure/repos", - events_url: "https://api.github.com/users/Be-Secure/events{/privacy}", - received_events_url: - "https://api.github.com/users/Be-Secure/received_events", - type: "Organization", - site_admin: false, - }, - project_repos: { - main_github_url: "https://github.com/chatwoot", - main_bes_url: "https://github.com/Be-Secure/chatwoot", - all_projects: [ - { - id: "", - name: "", - url: "", - }, - ], - all_bes_repos: [ - { - id: 202291859, - name: "Be-Secure/chatwoot", - url: "https://github.com/Be-Secure/chatwoot", - }, - ], - }, - license: { - key: "mit", - name: "MIT License", - spdx_id: "MIT", - url: "https://api.github.com/licenses/mit", - node_id: "MDc6TGljZW5zZTEz" - }, - language: { - JavaScript: 754789, - Shell: 58 - }, - tags: ["L&F", "IND-ALL", "COM - C"], - }, - { - id: 169, - bes_tracking_id: 169, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/169", - name: "springfox", - full_name: "Be-Secure/springfox", - description: "Automated JSON API documentation for API's built with Spring", - bes_technology_stack: "A", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 47491, - open_issues: 0, - created_at: "2021-08-05T09:58:34Z", - updated_at: "2021-08-05T09:58:35Z", - pushed_at: "2021-08-05T09:23:42Z", - git_url: "git://github.com/Be-Secure/springfox.git", - clone_url: "https://github.com/Be-Secure/springfox.git", - html_url: "https://github.com/springfox/springfox", - homepage: "http://springfox.io", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - gravatar_id: "", - url: "https://api.github.com/users/Be-Secure", - html_url: "https://github.com/Be-Secure", - followers_url: "https://api.github.com/users/Be-Secure/followers", - following_url: - "https://api.github.com/users/Be-Secure/following{/other_user}", - gists_url: "https://api.github.com/users/Be-Secure/gists{/gist_id}", - starred_url: - "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - subscriptions_url: - "https://api.github.com/users/Be-Secure/subscriptions", - organizations_url: "https://api.github.com/users/Be-Secure/orgs", - repos_url: "https://api.github.com/users/Be-Secure/repos", - events_url: "https://api.github.com/users/Be-Secure/events{/privacy}", - received_events_url: - "https://api.github.com/users/Be-Secure/received_events", - type: "Organization", - site_admin: false, - }, - project_repos: { - main_github_url: "https://github.com/springfox", - main_bes_url: "https://github.com/Be-Secure/springfox", - all_projects: [ - { - id: "", - name: "", - url: "", - }, - ], - all_bes_repos: [ - { - id: 3333858979, - name: "springfox", - url: "https://github.com/Be-Secure/springfox", - }, - ], - }, - license: { - key: "apache-2.0", - name: "Apache License 2.0", - spdx_id: "Apache-2.0", - url: "https://api.github.com/licenses/apache-2.0", - node_id: "MDc6TGljZW5zZTI=" - }, - language: { - Java: 491049, - Groovy: 158286, - JavaScript: 10748, - HTML: 3157, - CSS: 2894, - VimSnippet: 1990, - Shell: 337 - }, - tags: ["TD-U-ApD", "IND-ALL", "COM - C"], - }, - { - id: 159, - bes_tracking_id: 159, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/159", - name: "spring-security", - full_name: "Be-Secure/spring-security", - description: "Spring Security", - bes_technology_stack: "A", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 71143, - open_issues: 0, - created_at: "2021-08-05T09:58:34Z", - updated_at: "2023-02-24T06:19:14Z", - pushed_at: "2023-02-24T02:47:32Z", - git_url: "git://github.com/Be-Secure/spring-securityc.git", - clone_url: "https://github.com/Be-Secure/spring-security.git", - html_url: "https://github.com/Be-Secure/spring-security", - homepage: "http://spring.io/projects/spring-security", - owner: { - login: "Be-Secure", - id: 402883, - node_id: "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - gravatar_id: "", - url: "https://api.github.com/users/Be-Secure", - html_url: "https://github.com/Be-Secure", - followers_url: "https://api.github.com/users/Be-Secure/followers", - following_url: - "https://api.github.com/users/Be-Secure/following{/other_user}", - gists_url: "https://api.github.com/users/Be-Secure/gists{/gist_id}", - starred_url: - "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - subscriptions_url: - "https://api.github.com/users/Be-Secure/subscriptions", - organizations_url: "https://api.github.com/users/Be-Secure/orgs", - repos_url: "https://api.github.com/users/Be-Secure/repos", - events_url: "https://api.github.com/users/Be-Secure/events{/privacy}", - received_events_url: - "https://api.github.com/users/Be-Secure/received_events", - type: "Organization", - site_admin: false, - }, - project_repos: { - main_github_url: "https://github.com/spring-security", - main_bes_url: "https://github.com/Be-Secure/spring-security", - all_projects: [ - { - id: "", - name: "", - url: "", - }, - ], - all_bes_repos: [ - { - id: 44028837, - name: "spring-security", - url: "https://github.com/Be-Secure/spring-security" - }, - ], - }, - license: { - key: "apache-2.0", - name: "Apache License 2.0", - spdx_id: "Apache-2.0", - url: "https://api.github.com/licenses/apache-2.0", - node_id: "MDc6TGljZW5zZTI=" - }, - language: { - Java: 15872722, - Kotlin: 845502, - Groovy: 43860, - AspectJ: 16776, - Ruby: 7008, - PLSQL: 3180, - XSLT: 2369, - Shell: 811, - Python: 129, - HTML: 80, - JavaScript: 10 - }, - tags: ["TD-C-WA", "IND-ALL", "COM - C"], - }, - { - id: 161, - bes_tracking_id: 161, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/161", - name: "healthchecks", - full_name: "Be-Secure/healthchecks", - description: "A cron monitoring tool written in Python & Django", - bes_technology_stack: "A", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 20334, - open_issues: 0, - created_at: "2023-02-24T07:34:26Z", - updated_at: "2023-02-24T02:55:18Z", - pushed_at: "2023-02-21T09:11:50Z", - git_url: "git://github.com/healthchecks/healthchecks.git", - clone_url: "https://github.com/healthchecks/healthchecks.git", - html_url: "https://github.com/Be-Secure/healthchecks", - homepage: "https://healthchecks.io", - owner: { - login: "Be-Secure", - id: 44028837, - node_id: "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - gravatar_id: "", - url: "https://api.github.com/users/Be-Secure", - html_url: "https://github.com/Be-Secure", - followers_url: "https://api.github.com/users/Be-Secure/followers", - following_url: - "https://api.github.com/users/Be-Secure/following{/other_user}", - gists_url: "https://api.github.com/users/Be-Secure/gists{/gist_id}", - starred_url: - "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - subscriptions_url: - "https://api.github.com/users/Be-Secure/subscriptions", - organizations_url: "https://api.github.com/users/Be-Secure/orgs", - repos_url: "https://api.github.com/users/Be-Secure/repos", - events_url: "https://api.github.com/users/Be-Secure/events{/privacy}", - received_events_url: - "https://api.github.com/users/Be-Secure/received_events", - type: "Organization", - site_admin: false, - }, - project_repos: { - main_github_url: "https://github.com/healthchecks", - main_bes_url: "https://github.com/Be-Secure/healthchecks", - all_projects: [ - { - id: "", - name: "", - url: "", - }, - ], - all_bes_repos: [ - { - id: 38067078, - name: "healthcheck", - url: "https://github.com/Be-Secure/healthcheck" - }, - ], - }, - license: { - key: "bsd-3-clause", - name: "BSD 3-Clause \"New\" or \"Revised\" License", - spdx_id: "BSD-3-Clause", - url: "https://api.github.com/licenses/bsd-3-clause", - node_id: "MDc6TGljZW5zZTU=" - }, - language: { - Python: 1089200, - HTML: 842757, - Less: 211299, - CSS: 66400, - JavaScript: 51271, - Shell: 1668, - Dockerfile: 1088 - - }, - tags: ["TD-U-W", "IND-ALL", "COM - C"], - }, - { - id: 171, - bes_tracking_id: 171, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/171", - name: "saleor", - full_name: "Be-Secure/saleor", - description: "A modular, high performance, headless e-commerce platform built with Python, GraphQL, Django, and React.", - bes_technology_stack: "A", - watchers_count: 0, - forks_count: 0, - stargazers_count: 0, - size: 111120, - open_issues: 0, - created_at: "2021-08-05T09:54:20Z", - updated_at: "2021-10-06T10:36:32Z", - pushed_at: "2021-08-05T09:38:10Z", - git_url: "git://github.com/healthchecks/saleor.git", - clone_url: "https://github.com/healthchecks/saleor.git", - html_url: "https://github.com/Be-Secure/saleor", - homepage: "https://saleor.io", - owner: { - login: "Be-Secure", - id: 44028837, - node_id: "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - gravatar_id: "", - url: "https://api.github.com/users/Be-Secure", - html_url: "https://github.com/Be-Secure", - followers_url: "https://api.github.com/users/Be-Secure/followers", - following_url: - "https://api.github.com/users/Be-Secure/following{/other_user}", - gists_url: "https://api.github.com/users/Be-Secure/gists{/gist_id}", - starred_url: - "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - subscriptions_url: - "https://api.github.com/users/Be-Secure/subscriptions", - organizations_url: "https://api.github.com/users/Be-Secure/orgs", - repos_url: "https://api.github.com/users/Be-Secure/repos", - events_url: "https://api.github.com/users/Be-Secure/events{/privacy}", - received_events_url: - "https://api.github.com/users/Be-Secure/received_events", - type: "Organization", - site_admin: false, - }, - project_repos: { - main_github_url: "https://github.com/saleor", - main_bes_url: "https://github.com/Be-Secure/saleor", - all_projects: [ - { - id: "", - name: "", - url: "", - }, - ], - all_bes_repos: [ - { - id: 13796165, - name: "saleor", - url: "https://github.com/Be-Secure/saleor" - }, - ], - }, - license: { - key: "other", - name: "Other", - spdx_id: "NOASSERTION", - url: null, - node_id: "MDc6TGljZW5zZTA=" - }, - language: { - Python: 7567521, - HTML: 240695, - Dockerfile: 2169, - Shell: 439 - }, - tags: ["TD-U-W", "IND-RT", "COM - C"], - }, - { - id: 150, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/150", - bes_tracking_id: 150, - name: "wallabag", - full_name: "Be-Secure/wallabag", - description: "wallabag is a self hostable application for saving web pages: Save and classify articles. Read them later. Freely.", - watchers_count: 0, - forks_count: 1, - stargazers_count: 0, - size: 119121, - open_issues: 227, - created_at: "2023-02-23T07:27:31Z", - updated_at: "2023-02-23T07:19:03Z", - pushed_at: "2023-02-25T17:41:07Z", - git_url: "git://github.com/Be-Secure/wallabag.git", - clone_url: "https://github.com/Be-Secure/wallabag.git", - html_url: "https://github.com/Be-Secure/wallabag", - homepage: "https://wallabag.org", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "A", - project_repos: { - main_github_url: "https://github.com/wallabag/wallabag", - main_bes_url: "https://github.com/Be-Secure/wallabag", - all_projects: { - wallabag: "https://github.com/wallabag/wallabag", - }, - all_bes_repos: [ - { - id: 605454107, - name: "wallabag", - url: "https://github.com/Be-Secure/wallabag", - }, - ], - }, - license: { - key: "mit", - name: "MIT License", - spdx_id: "MIT", - url: "https://api.github.com/licenses/mit", - node_id: "MDc6TGljZW5zZTEz", - }, - language: { - PHP: 1330248, - Twig: 211837, - SCSS: 30266, - JavaScript: 28661, - Shell: 4236, - Dockerfile: 2468, - Makefile: 1839, - }, - tags: ["A", "IND-ALL", "COM-C"], - }, - { - id: 200, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/200", - bes_tracking_id: 200, - name: "akaunting", - full_name: "Be-Secure/akaunting", - description: "Delivers basic eCommerce capabilities to build a unique online store from the ground up.", - watchers_count: 0, - forks_count: 1, - stargazers_count: 0, - size: 73109, - open_issues: 481, - created_at: "2023-02-23T07:29:42Z", - updated_at: "2023-02-22T21:15:55Z", - pushed_at: "2023-02-23T00:23:55Z", - git_url: "git://github.com/Be-Secure/akaunting.git", - clone_url: "https://github.com/Be-Secure/akaunting.git", - html_url: "https://github.com/Be-Secure/akaunting", - homepage: "https://akaunting.com", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "A", - project_repos: { - main_github_url: "https://github.com/akaunting/akaunting", - main_bes_url: "https://github.com/Be-Secure/akaunting", - all_projects: { - akaunting: "https://github.com/akaunting/akaunting", - }, - all_bes_repos: [ - { - id: 605454739, - name: "akaunting", - url: "https://github.com/Be-Secure/akaunting", - }, - ], - }, - license: { - key: "gpl-3.0", - name: "GNU General Public License v3.0", - spdx_id: "GPL-3.0", - url: "https://api.github.com/licenses/gpl-3.0", - node_id: "MDc6TGljZW5zZTk=" - }, - language: { - PHP: 6827559, - Blade: 1122305, - Vue: 432140, - Shell: 636, - }, - tags: ["A", "IND-BFSI", "COM - C"], - }, - { - id: 154, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/154", - bes_tracking_id: 154, - name: "grav", - full_name: "Be-Secure/grav", - description: "Modern, Crazy Fast, Ridiculously Easy and Amazingly Powerful Flat-File CMS powered by PHP, Markdown, Twig, and Symfony", - watchers_count: 0, - forks_count: 1, - stargazers_count: 0, - size: 25941, - open_issues: 481, - created_at: "2023-02-23T07:28:42Z", - updated_at: "2023-02-23T05:35:37Z", - pushed_at: "2023-02-22T16:20:37Z", - git_url: "git://github.com/Be-Secure/grav.git", - clone_url: "https://github.com/Be-Secure/grav.git", - html_url: "https://github.com/Be-Secure/grav", - homepage: "https://getgrav.org", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "A", - project_repos: { - main_github_url: "https://github.com/getgrav/grav", - main_bes_url: "https://github.com/Be-Secure/grav", - all_projects: { - grav: "https://github.com/getgrav/grav", - }, - all_bes_repos: [ - { - id: 605454460, - name: "grav", - url: "https://github.com/Be-Secure/grav", - }, - ], - }, - license: { - key: "mit", - name: "MIT License", - spdx_id: "MIT", - url: "https://api.github.com/licenses/mit", - node_id: "MDc6TGljZW5zZTEz", - }, - language: { - PHP: 2908430, - CSS: 4990, - Twig: 1772, - Logos: 831, - JavaScript: 234, - }, - tags: ["A", "IND-ALL", "COM - C"], - }, - { - id: 156, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/156", - bes_tracking_id: 156, - name: "php-pm", - full_name: "Be-Secure/php-pm", - description: "PPM is a process manager, supercharger and load balancer for modern PHP applications.", - watchers_count: 0, - forks_count: 1, - stargazers_count: 0, - size: 758, - open_issues: 481, - created_at: "2023-02-23T07:32:29Z", - updated_at: "2023-02-21T02:24:52Z", - pushed_at: "2022-09-28T16:36:05Z", - git_url: "git://github.com/Be-Secure/php-pm.git", - clone_url: "https://github.com/Be-Secure/php-pm.git", - html_url: "https://github.com/Be-Secure/php-pm", - homepage: "", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "L&F", - project_repos: { - main_github_url: "https://github.com/php-pm/php-pm", - main_bes_url: "https://github.com/Be-Secure/php-pm", - all_projects: { - "php-pm": "https://github.com/php-pm/php-pm", - }, - all_bes_repos: [ - { - id: 605455596, - name: "php-pm", - url: "https://github.com/Be-Secure/php-pm", - }, - ], - }, - license: { - key: "mit", - name: "MIT License", - spdx_id: "MIT", - url: "https://api.github.com/licenses/mit", - node_id: "MDc6TGljZW5zZTEz", - }, - language: { - "PHP": 124320, - "Shell": 2366, - }, - tags: ["A", "IND-ALL"], - }, - { - id: 158, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/158", - bes_tracking_id: 158, - name: "portus", - full_name: "Be-Secure/portus", - description: "Authorization service and frontend for Docker registry (v2)", - watchers_count: 0, - forks_count: 1, - stargazers_count: 0, - size: 37891, - open_issues: 481, - created_at: "2015-04-13T12:18:20Z", - updated_at: "2023-02-24T17:09:44Z", - pushed_at: "2023-01-19T11:16:56Z", - git_url: "git://github.com/Be-Secure/portus.git", - clone_url: "https://github.com/Be-Secure/portus.git", - html_url: "https://github.com/Be-Secure/portus", - homepage: "http://port.us.org/", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure", - }, - bes_technology_stack: "A", - project_repos: { - main_github_url: "https://github.com/SUSE/portus", - main_bes_url: "https://github.com/Be-Secure/portus", - all_projects: { - portus: "https://github.com/SUSE/portus", - }, - all_bes_repos: [ - { - id: 392991767, - name: "portus", - url: "https://github.com/Be-Secure/portus", - }, - ], - }, - license: { - key: "mit", - name: "MIT License", - spdx_id: "MIT", - url: "https://api.github.com/licenses/mit", - node_id: "MDc6TGljZW5zZTEz", - }, - language: { - Ruby: 1098584, - Vue: 202208, - HTML: 70298, - JavaScript: 61504, - Shell: 31989, - CSS: 23374, - Dockerfile: 3250 - }, - tags: ["A", "IND-ALL", "TD-U-IoT"], - }, - { - id: 197, - bes_tracking_id: 197, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/197", - name: "bit", - full_name: "Be-Secure/bit", - description: "A tool for component-driven application development. ", - watchers_count: 0, - forks_count: 1, - stargazers_count: 0, - size: 86380, - open_issues: 0, - created_at: "2021-08-05T10:04:22Z", - updated_at: "2021-08-05T10:04:23Z", - pushed_at: "2021-08-05T09:18:48Z", - git_url: "git://github.com/Be-Secure/bit.git", - clone_url: "https://github.com/Be-Secure/bit.git", - html_url: "https://github.com/Be-Secure/bit", - homepage: "https://bit.dev", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure" - }, - bes_technology_stack: "DO", - project_repos: { - main_github_url: "https://github.com/teambit/bit", - main_bes_url: "https://github.com/Be-Secure/bit", - all_projects: { - joplin: "https://github.com/teambit/bit" - - }, - all_bes_repos: [{ - id: 392993316, - name: "bit", - url: "https://github.com/Be-Secure/bit" - } - - ] - }, - license: { - key: "other", - name: "Other", - spdx_id: "NOASSERTION", - url: null, - node_id: "MDc6TGljZW5zZTA=" - }, - language: [ - { - TypeScript: 6366608, - JavaScript: 105153, - SCSS: 91100, - Vue: 23116, - Shell: 10631, - PowerShell: 4305, - CSS: 1730, - Ruby: 1031, - Stylus: 1003, - Dockerfile: 745, - Batchfile: 298, - Less: 56, - Sass: 13 - } - ], - - tags: [ - "DO", - "IND-ALL", - ] - - }, - { - id: 148, - bes_tracking_id: 148, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/148", - name: "Koha", - full_name: "Be-Secure/Koha", - description: "Koha is a free software integrated library system (ILS). Koha is distributed under the GNU GPL version 3 or later. ***Note: this is a synced mirror of the official Koha repo. Note: This project uses its own bug tracker, see https://bugs.koha-community.org/ to report a bug or submit a patch.", - watchers_count: 0, - forks_count: 1, - stargazers_count: 0, - size: 5469472, - open_issues: 0, - created_at: "2023-02-22T10:48:34Z", - updated_at: "2023-02-19T20:11:16Z", - pushed_at: "2023-02-21T12:18:58Z", - git_url: "git://github.com/Be-Secure/Koha.git", - clone_url: "https://github.com/Be-Secure/Koha.git", - html_url: "https://github.com/Be-Secure/Koha", - homepage: "https://koha-community.org/", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure" - }, - bes_technology_stack: "A", - project_repos: { - main_github_url: "https://github.com/Koha-Community/Koha", - main_bes_url: "https://github.com/Be-Secure/Koha", - all_projects: { - Koha: "https://github.com/Koha-Community/Koha" - - }, - all_bes_repos: [{ - id: 605053733, - name: "Koha", - url: "https://github.com/Be-Secure/Koha" - } - - ] - }, - license: { - key: "gpl-3.0", - name: "GNU General Public License v3.0", - spdx_id: "GPL-3.0", - url: "https://api.github.com/licenses/gpl-3.0", - node_id: "MDc6TGljZW5zZTk=" - }, - language: [ - - { - Perl: 16605505, - JavaScript: 6168358, - HTML: 2511094, - XSLT: 1580514, - Raku: 907624, - Vue: 296868, - SCSS: 256958, - CSS: 211311, - Pawn: 159454, - NASL: 137851, - "C++": 68666, - TypeScript: 60683, - Assembly: 39632, - SourcePawn: 25864, - Python: 21872, - Shell: 21676, - "mIRC Script": 8174, - PHP: 5166, - CoffeeScript: 3009, - Makefile: 879 - } - ], - - tags: [ - "L&F", - "IND-ED", - "COM - C", - - ] - }, - { - id: 195, - bes_tracking_id: 195, - issue_url: "https://github.com/Be-Secure/Be-Secure/issues/195", - name: "espocrm", - full_name: "Be-Secure/espocrm", - description: "EspoCRM open source CRM application", - watchers_count: 0, - forks_count: 1, - stargazers_count: 0, - size: 58786, - open_issues: 0, - created_at: "2023-02-23T07:23:00Z", - updated_at: "2023-02-23T07:02:07Z", - pushed_at: "2023-02-22T16:02:08Z", - git_url: "git://github.com/Be-Secure/espocrm.git", - clone_url: "https://github.com/Be-Secure/espocrm.git", - html_url: "https://github.com/Be-Secure/espocrm", - homepage: "https://www.espocrm.com", - owner: { - login: "Be-Secure", - id: 44028837, - avatar_url: "https://avatars.githubusercontent.com/u/44028837?v=4", - html_url: "https://github.com/Be-Secure" - }, - bes_technology_stack: "A", - project_repos: { - main_github_url: "https://github.com/espocrm/espocrm", - main_bes_url: "https://github.com/Be-Secure/espocrm", - all_projects: { - espocrm: "https://github.com/espocrm/espocrm" - - }, - all_bes_repos: [{ - id: 605452647, - name: "espocrm", - url: "https://github.com/Be-Secure/espocrm" - } - - ] - }, - license: { - key: "gpl-3.0", - name: "GNU General Public License v3.0", - spdx_id: "GPL-3.0", - url: "https://api.github.com/licenses/gpl-3.0", - node_id: "MDc6TGljZW5zZTk=" - }, - language: [ - - { - PHP: 10401846, - JavaScript: 4965763, - Less: 567511, - Smarty: 349915, - CSS: 78728, - HTML: 2173 - } - ], - - tags: [ - "A", - "IND-ALL", - "COM - C" - ] - - - }, - ], -}; diff --git a/bes_theme/assets/data/OSSP-master_bk.js b/bes_theme/assets/data/OSSP-master_bk.js deleted file mode 100644 index c97f95be..00000000 --- a/bes_theme/assets/data/OSSP-master_bk.js +++ /dev/null @@ -1,16099 +0,0 @@ -modelDataAvailable({ - "total_count": 15, - "incomplete_results": false, - "items": [ - - { - "id": 175, - "bes_tracking_id": 175, - "name": "cassandra", - "full_name": "Be-Secure/cassandra", - "description": "Cassandra can distribute your data across multiple machines in an application-transparent matter.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 358482, - "open_issues": 0, - "created_at": "2021-08-18T11:27:18Z", - "updated_at": "2021-08-18T11:27:19Z", - "pushed_at": "2021-08-18T09:52:30Z", - "git_url": "git://github.com/Be-Secure/cassandra.git", - "clone_url": "https://github.com/Be-Secure/cassandra.git", - "html_url": "https://github.com/Be-Secure/cassandra", - "homepage": "http://cassandra.apache.org", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2021, - "bes_cve_details_id": "", - "cvedetails_product_id": "31429", - "cvedetails_vendor_id": "45" - }, - "project_repos": { - "main_github_url": "https://github.com/apache/cassandra", - "main_bes_url": "https://github.com/Be-Secure/cassandra", - "all_projects": { - "cassandra": "https://github.com/apache/cassandra" - - }, - "all_bes_repos": [{ - "id": 397575793, - "name": "cassandra", - "url": "https://github.com/Be-Secure/cassandra" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "Shell", "Python", "Java", "HTML", "GAP", "Lex" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "Android" - ], - "TD-U": [ - "TD-U-Db" - - ] - - } - - - - }, - { - "id": 174, - "bes_tracking_id": 174, - "name": "swig-wx", - "full_name": "Be-Secure/swig-wx", - "description": "Simplified Wrapper and Interface Generator", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 3280, - "open_issues": 0, - "created_at": "2021-08-18T04:33:04Z", - "updated_at": "2021-08-18T04:33:05Z", - "pushed_at": "2013-02-07T21:28:51Z", - "git_url": "git://github.com/Be-Secure/swig-wx.git", - "clone_url": "https://github.com/Be-Secure/swig-wx.git", - "html_url": "https://github.com/Be-Secure/swig-wx", - "homepage": "http://wiki.ros.org/swig-wx", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/ros/swig-wx", - "main_bes_url": "https://github.com/Be-Secure/swig-wx", - "all_projects": { - "swig-wx": "https://github.com/ros/swig-wx" - - }, - "all_bes_repos": [{ - "id": 397472993, - "name": "swig-wx", - "url": "https://github.com/Be-Secure/swig-wx" - } - - ] - }, - "license": { - "key": "", - "name": "", - "spdx_id": "", - "url": "", - "node_id": "" - }, - "language": [ - - "C++", "Python", "C", "C#", "Java", "Perl" - ], - - "tags": { - "IND": [ - "Automotive" - ], - "SD": [ - "" - ], - "COM": [ - "community-led" - ], - "TD-U": [ - "TD-U-IoT" - - ] - - - } - - - }, - { - "id": 173, - "bes_tracking_id": 173, - "name": "ros_tutorials", - "full_name": "Be-Secure/ros_tutorials", - "description": "Code used in tutorials found on ROS wiki", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 591, - "open_issues": 0, - "created_at": "2021-08-18T04:28:27Z", - "updated_at": "2021-08-18T04:28:28Z", - "pushed_at": "2021-08-11T05:23:07Z", - "git_url": "git://github.com/Be-Secure/ros_tutorials.git", - "clone_url": "https://github.com/Be-Secure/ros_tutorials.git", - "html_url": "https://github.com/Be-Secure/ros_tutorials", - "homepage": "http://wiki.ros.org/ros_tutorials", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/ros/ros_tutorials", - "main_bes_url": "https://github.com/Be-Secure/ros_tutorials", - "all_projects": { - "ros_tutorials": "https://github.com/ros/ros_tutorials" - - }, - "all_bes_repos": [{ - "id": 397472124, - "name": "ros_tutorials", - "url": "https://github.com/Be-Secure/ros_tutorials" - } - - ] - }, - "license": { - "key": "bsd-3-clause", - "name": "BSD 3-Clause \"New\" or \"Revised\" License", - "spdx_id": "BSD-3-Clause", - "url": "https://api.github.com/licenses/bsd-3-clause", - "node_id": "MDc6TGljZW5zZTU=" - }, - "language": [ - - "C++", "Python", "Cmark" - ], - - "tags": { - "IND": [ - "Automotive" - ], - "SD": [ - "" - ], - "COM": [ - "community-led" - ], - "TD-U": [ - "TD-U-IoT" - - ] - - - } - - - }, - { - "id": 172, - "bes_tracking_id": 172, - "name": "rosdistro", - "full_name": "Be-Secure/rosdistro", - "description": "This repo maintains the lists of repositories defining ROS distributions.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 101629, - "open_issues": 0, - "created_at": "2021-08-18T04:26:40Z", - "updated_at": "2021-08-18T04:26:41Z", - "pushed_at": "2021-08-18T01:36:04Z", - "git_url": "git://github.com/Be-Secure/rosdistro.git", - "clone_url": "https://github.com/Be-Secure/rosdistro.git", - "html_url": "https://github.com/Be-Secure/rosdistro", - "homepage": "http://wiki.ros.org/rosdistro", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/ros/rosdistro", - "main_bes_url": "https://github.com/Be-Secure/rosdistro", - "all_projects": { - "rosdistro": "https://github.com/ros/rosdistro" - - }, - "all_bes_repos": [{ - "id": 397471826, - "name": "rosdistro", - "url": "https://github.com/Be-Secure/rosdistro" - } - - ] - }, - "license": { - "key": "bsd-3-clause", - "name": "BSD 3-Clause \"New\" or \"Revised\" License", - "spdx_id": "BSD-3-Clause", - "url": "https://api.github.com/licenses/bsd-3-clause", - "node_id": "MDc6TGljZW5zZTU=" - }, - "language": [ - - "Shell", "Python" - ], - - "tags": { - "IND": [ - "Automotive" - ], - "SD": [ - "" - ], - "COM": [ - "community-led" - ], - "TD-U": [ - "TD-U-IoT" - - ] - - - } - - - }, - { - "id": 171, - "bes_tracking_id": 171, - "name": "catkin", - "full_name": "Be-Secure/catkin", - "description": "Catkin is a collection of cmake macros and associated python code used to build some parts of ROS.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 3755, - "open_issues": 0, - "created_at": "2021-08-18T04:24:52Z", - "updated_at": "2021-08-18T04:24:53Z", - "pushed_at": "2021-08-06T23:16:35Z", - "git_url": "git://github.com/Be-Secure/catkin.git", - "clone_url": "https://github.com/Be-Secure/catkin.git", - "html_url": "https://github.com/Be-Secure/catkin", - "homepage": "http://wiki.ros.org/catkin", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/ros/catkin", - "main_bes_url": "https://github.com/Be-Secure/catkin", - "all_projects": { - "catkin": "https://github.com/ros/catkin" - - }, - "all_bes_repos": [{ - "id": 397471497, - "name": "catkin", - "url": "https://github.com/Be-Secure/catkin" - } - - ] - }, - "license": { - "key": "bsd-3-clause", - "name": "BSD 3-Clause \"New\" or \"Revised\" License", - "spdx_id": "BSD-3-Clause", - "url": "https://api.github.com/licenses/bsd-3-clause", - "node_id": "MDc6TGljZW5zZTU=" - }, - "language": [ - - "Cmake", "Shell", "Python" - ], - - "tags": { - "IND": [ - "Automotive" - ], - "SD": [ - "" - ], - "COM": [ - "community-led" - ], - "TD-U": [ - "TD-U-IoT" - - ] - - - } - - - }, - { - "id": 170, - "bes_tracking_id": 170, - "name": "meta-ros", - "full_name": "Be-Secure/meta-ros", - "description": "OpenEmbedded Layers for ROS 1 and ROS 2", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 30897, - "open_issues": 0, - "created_at": "2021-08-18T04:23:10Z", - "updated_at": "2021-09-22T10:32:44Z", - "pushed_at": "2021-09-22T10:32:07Z", - "git_url": "git://github.com/Be-Secure/meta-ros.git", - "clone_url": "https://github.com/Be-Secure/meta-ros.git", - "html_url": "https://github.com/Be-Secure/meta-ros", - "homepage": "http://wiki.ros.org/meta-ros", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/ros/meta-ros", - "main_bes_url": "https://github.com/Be-Secure/meta-ros", - "all_projects": { - "meta-ros": "https://github.com/ros/meta-ros" - - }, - "all_bes_repos": [{ - "id": 397471153, - "name": "meta-ros", - "url": "https://github.com/Be-Secure/meta-ros" - } - - ] - }, - "license": { - "key": "mit", - "name": "MIT license", - "spdx_id": "mit", - "url": "https://api.github.com/licenses/mit", - "node_id": "MDc6TGljZW5zZTEz" - }, - "language": [ - - "C", "Shell", "PHP", "Pascal", "Bitbake", "NASL" - ], - - "tags": { - "IND": [ - "Automotive" - ], - "SD": [ - "" - ], - "COM": [ - "community-led" - ], - "TD-U": [ - "TD-U-IoT" - - ] - - - } - - - }, - { - "id": 169, - "bes_tracking_id": 169, - "name": "ros_comm", - "full_name": "Be-Secure/ros_comm", - "description": "ROS communications-related packages, including core client libraries (roscpp, rospy, roslisp) and graph introspection tools (rostopic, rosnode, rosservice, rosparam).", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 14721, - "open_issues": 0, - "created_at": "2021-08-18T04:13:56Z", - "updated_at": "2021-08-18T04:13:57Z", - "pushed_at": "2021-07-17T08:48:38Z", - "git_url": "git://github.com/Be-Secure/ros_comm.git", - "clone_url": "https://github.com/Be-Secure/ros_comm.git", - "html_url": "https://github.com/Be-Secure/ros_comm", - "homepage": "http://wiki.ros.org/ros_comm", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2021, - "bes_cve_details_id": "", - "cvedetails_product_id": "73864", - "cvedetails_vendor_id": "22167" - }, - "project_repos": { - "main_github_url": "https://github.com/ros/ros_comm", - "main_bes_url": "https://github.com/Be-Secure/ros_comm", - "all_projects": { - "ros_comm": "https://github.com/ros/ros_comm" - - }, - "all_bes_repos": [{ - "id": 397469548, - "name": "ros_comm", - "url": "https://github.com/Be-Secure/ros_comm" - } - - ] - }, - "license": { - "key": "", - "name": "", - "spdx_id": "", - "url": "", - "node_id": "" - }, - "language": [ - - "C", "C++", "Cmake", "python", "Shell", "Embarkscript" - ], - - "tags": { - "IND": [ - "Automotive" - ], - "SD": [ - "" - ], - "COM": [ - "community-led" - ], - "TD-U": [ - "TD-U-IoT" - - ] - - - } - - - }, - { - "id": 168, - "bes_tracking_id": 168, - "name": "rdkservices", - "full_name": "Be-Secure/rdkservices", - "description": "RDK services are a set of JSON-RPC based RESTful services for accessing various set-top box components.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 5112, - "open_issues": 0, - "created_at": "2021-08-18T03:57:44Z", - "updated_at": "2021-08-18T03:57:44Z", - "pushed_at": "2021-08-17T22:13:18Z", - "git_url": "git://github.com/Be-Secure/rdkservices.git", - "clone_url": "https://github.com/Be-Secure/rdkservices.git", - "html_url": "https://github.com/Be-Secure/rdkservices", - "homepage": "", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/rdkcentral/rdkservices", - "main_bes_url": "https://github.com/Be-Secure/rdkservices", - "all_projects": { - "rdkservices": "https://github.com/rdkcentral/rdkservices" - - }, - "all_bes_repos": [{ - "id": 397466429, - "name": "rdkservices", - "url": "https://github.com/Be-Secure/rdkservices" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "Javascript", "HTML", "C", "C++", "Cmake", "python", "Shell" - ], - - "tags": { - "IND": [ - "Automotive" - ], - "SD": [ - "" - ], - "COM": [ - "community-led" - ], - "TD-U": [ - "TD-U-IoT" - - ] - - - } - - - }, - { - "id": 167, - "bes_tracking_id": 167, - "name": "lightning", - "full_name": "Be-Secure/lightning", - "description": "Lightning is a (TV) app development framework that offers great portability and performance.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 15597, - "open_issues": 0, - "created_at": "2021-08-18T03:54:24Z", - "updated_at": "2021-08-18T03:54:25Z", - "pushed_at": "2021-08-16T09:25:21Z", - "git_url": "git://github.com/Be-Secure/lightning.git", - "clone_url": "https://github.com/Be-Secure/lightning.git", - "html_url": "https://github.com/Be-Secure/lightning", - "homepage": "", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/rdkcentral/lightning", - "main_bes_url": "https://github.com/Be-Secure/lightning", - "all_projects": { - "lightning": "https://github.com/rdkcentral/lightning" - - }, - "all_bes_repos": [{ - "id": 397465824, - "name": "lightning", - "url": "https://github.com/Be-Secure/lightning" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "Javascript", "HTML" - ], - - "tags": { - "IND": [ - "Automotive" - ], - "SD": [ - "" - ], - "COM": [ - "community-led" - ], - "TD-U": [ - "TD-U-IoT" - - ] - - - } - - - }, - { - "id": 166, - "bes_tracking_id": 166, - "name": "rdkcryptoapi", - "full_name": "Be-Secure/rdkcryptoapi", - "description": "RDKCryptoAPI contains cryptographic APIs used in the RDK Software Stack and an OpenSSL reference implementation.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 379, - "open_issues": 0, - "created_at": "2021-08-18T03:39:46Z", - "updated_at": "2021-08-18T03:39:47Z", - "pushed_at": "2020-08-28T21:30:38Z", - "git_url": "git://github.com/Be-Secure/rdkcryptoapi.git", - "clone_url": "https://github.com/Be-Secure/rdkcryptoapi.git", - "html_url": "https://github.com/Be-Secure/rdkcryptoapi", - "homepage": "", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/rdkcentral/rdkcryptoapi", - "main_bes_url": "https://github.com/Be-Secure/rdkcryptoapi", - "all_projects": { - "rdkcryptoapi": "https://github.com/rdkcentral/rdkcryptoapi" - - }, - "all_bes_repos": [{ - "id": 397463052, - "name": "rdkcryptoapi", - "url": "https://github.com/Be-Secure/rdkcryptoapi" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "C" - ], - - "tags": { - "IND": [ - "Automotive" - ], - "SD": [ - "" - ], - "COM": [ - "community-led" - ], - "TD-U": [ - "TD-U-IoT" - - ] - - - } - - - }, - { - "id": 165, - "bes_tracking_id": 165, - "name": "tock", - "full_name": "Be-Secure/tock", - "description": "embedded operating system designed for running multiple concurrent, mutually distrustful applications on Cortex-M and RISC-V based embedded platforms..", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 155569, - "open_issues": 0, - "created_at": "2021-08-12T03:30:02Z", - "updated_at": "2021-08-12T03:30:03Z", - "pushed_at": "2021-08-12T01:25:43Z", - "git_url": "git://github.com/Be-Secure/tock.git", - "clone_url": "https://github.com/Be-Secure/tock.git", - "html_url": "https://github.com/Be-Secure/tock", - "homepage": "https://www.tockos.org", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2018, - "bes_cve_details_id": "", - "cvedetails_product_id": "60804", - "cvedetails_vendor_id": "20738" - }, - "project_repos": { - "main_github_url": "https://github.com/tock/tock", - "main_bes_url": "https://github.com/Be-Secure/tock", - "all_projects": { - "tock": "https://github.com/tock/tock" - - }, - "all_bes_repos": [{ - "id": 395183264, - "name": "tock", - "url": "https://github.com/Be-Secure/tock" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "C", "Nix", "Rust", "Python", "Shell", "Makefile" - ], - - "tags": { - "IND": [ - "Automotive" - ], - "SD": [ - "SD-IoTS" - ], - "COM": [ - "community-led" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - { - "id": 164, - "bes_tracking_id": 164, - "name": "moodle", - "full_name": "Be-Secure/moodle", - "description": "learning platform designed to provide educators, administrators and learners with a single robust, secure and integrated system to create personalized learning environments.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 307158, - "open_issues": 0, - "created_at": "2021-08-11T14:34:52Z", - "updated_at": "2021-08-11T14:34:53Z", - "pushed_at": "2021-08-11T15:26:06Z", - "git_url": "git://github.com/Be-Secure/moodle.git", - "clone_url": "https://github.com/Be-Secure/moodle.git", - "html_url": "https://github.com/Be-Secure/moodle", - "homepage": "https://moodle.org/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 24, - "year": 2022, - "bes_cve_details_id": "", - "cvedetails_product_id": "3590", - "cvedetails_vendor_id": "2105" - }, - "project_repos": { - "main_github_url": "https://github.com/moodle/moodle", - "main_bes_url": "https://github.com/Be-Secure/moodle", - "all_projects": { - "moodle": "https://github.com/moodle/moodle" - - }, - "all_bes_repos": [{ - "id": 395019202, - "name": "moodle", - "url": "https://github.com/Be-Secure/moodle" - } - - ] - }, - "license": { - "key": "gpl-3.0", - "name": "GNU General Public License v3.0", - "spdx_id": "GPL-3.0", - "url": "https://api.github.com/licenses/gpl-3.0", - "node_id": "MDc6TGljZW5zZTk=" - }, - "language": [ - - "Javascrpti", "CSS", "SCSS", "PHP", "Mustache", "Gherkin" - ], - - "tags": { - "IND": [ - "Education" - ], - "SD": [ - "" - ], - "COM": [ - "community-led" - ], - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - { - "id": 163, - "bes_tracking_id": 163, - "name": "opencv", - "full_name": "Be-Secure/opencv", - "description": "machine learning software library.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 496583, - "open_issues": 0, - "created_at": "2021-08-11T14:37:50Z", - "updated_at": "2021-08-11T14:37:52Z", - "pushed_at": "2021-08-11T14:37:11Z", - "git_url": "git://github.com/Be-Secure/opencv.git", - "clone_url": "https://github.com/Be-Secure/opencv.git", - "html_url": "https://github.com/Be-Secure/opencv", - "homepage": "https://opencv.org", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 2, - "year": 2020, - "bes_cve_details_id": "", - "cvedetails_product_id": "36994", - "cvedetails_vendor_id": "16327" - }, - "project_repos": { - "main_github_url": "https://github.com/opencv/opencv", - "main_bes_url": "https://github.com/Be-Secure/opencv", - "all_projects": { - "opencv": "https://github.com/opencv/opencv" - - }, - "all_bes_repos": [{ - "id": 395020083, - "name": "opencv", - "url": "https://github.com/Be-Secure/opencv" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "Java", "Python", "Cmake", "C", "C++", "Objective-C++" - ], - - "tags": { - "IND": [ - "Automotive" - ], - "SD": [ - "" - ], - "COM": [ - "community-led" - ], - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - { - "id": 162, - "bes_tracking_id": 162, - "name": "odoo", - "full_name": "Be-Secure/odoo", - "description": "Odoo is a suite of web based open source business apps.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 3712670, - "open_issues": 0, - "created_at": "2021-08-11T14:32:10Z", - "updated_at": "2021-08-11T14:32:13Z", - "pushed_at": "2021-08-11T14:31:51Z", - "git_url": "git://github.com/Be-Secure/odoo.git", - "clone_url": "https://github.com/Be-Secure/odoo.git", - "html_url": "https://github.com/Be-Secure/odoo", - "homepage": "https://www.odoo.com", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 12, - "year": 2020, - "bes_cve_details_id": "", - "cvedetails_product_id": "38140", - "cvedetails_vendor_id": "16543" - }, - "project_repos": { - "main_github_url": "https://github.com/odoo/odoo", - "main_bes_url": "https://github.com/Be-Secure/odoo", - "all_projects": { - "odoo": "https://github.com/odoo/odoo" - - }, - "all_bes_repos": [{ - "id": 395018421, - "name": "odoo", - "url": "https://github.com/Be-Secure/odoo" - } - - ] - }, - "license": { - "key": "other", - "name": "Other", - "spdx_id": "NOASSERTION", - "url": "null", - "node_id": "MDc6TGljZW5zZTA=" - }, - "language": [ - - "Javascript", "HTML", "CSS", "Python", "Shell", "SCSS" - ], - - "tags": { - "IND": [ - "Automotive" - ], - "SD": [ - "" - ], - "COM": [ - "community-led" - ], - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - { - "id": 161, - "bes_tracking_id": 161, - "name": "magento2", - "full_name": "Be-Secure/magento2", - "description": "Delivers basic eCommerce capabilities to build a unique online store from the ground up.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 630994, - "open_issues": 0, - "created_at": "2021-08-11T14:33:05Z", - "updated_at": "2021-08-11T14:33:09Z", - "pushed_at": "2021-08-11T14:07:09Z", - "git_url": "git://github.com/Be-Secure/magento2.git", - "clone_url": "https://github.com/Be-Secure/magento2.git", - "html_url": "https://github.com/Be-Secure/magento2", - "homepage": "http://www.magento.com", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2017, - "bes_cve_details_id": "", - "cvedetails_product_id": "36803", - "cvedetails_vendor_id": "15393" - }, - "project_repos": { - "main_github_url": "https://github.com/magento/magento2", - "main_bes_url": "https://github.com/Be-Secure/magento2", - "all_projects": { - "magento2": "https://github.com/magento/magento2" - - }, - "all_bes_repos": [{ - "id": 395018690, - "name": "magento2", - "url": "https://github.com/Be-Secure/magento2" - } - - ] - }, - "license": { - "key": "osl-3.0", - "name": "Open Software License 3.0", - "spdx_id": "OSL-3.0", - "url": "https://api.github.com/licenses/osl-3.0", - "node_id": "MDc6TGljZW5zZTE2" - }, - "language": [ - - "Javascript", "HTML", "Less", "PHP" - ], - - "tags": { - "IND": [ - "Retail" - ], - "SD": [ - "" - ], - "COM": [ - "community-led" - ], - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - - { - "id": 160, - "bes_tracking_id": 160, - "name": "canvas-LMS", - "full_name": "Be-Secure/canvas-LMS", - "description": "For use by anyone interested in learning more about or using learning management systems.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 825994, - "open_issues": 0, - "created_at": "2021-08-11T14:39:20Z", - "updated_at": "2021-08-11T14:39:22Z", - "pushed_at": "2021-08-11T13:35:54Z", - "git_url": "git://github.com/Be-Secure/canvas-LMS.git", - "clone_url": "https://github.com/Be-Secure/canvas-LMS.git", - "html_url": "https://github.com/Be-Secure/canvas-LMS", - "homepage": "https://github.com/instructure/canvas-lms/wiki", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/instructure/canvas-LMS", - "main_bes_url": "https://github.com/Be-Secure/canvas-LMS", - "all_projects": { - "canvas-LMS": "https://github.com/instructure/canvas-LMS" - - }, - "all_bes_repos": [{ - "id": 395020537, - "name": "canvas-LMS", - "url": "https://github.com/Be-Secure/canvas-LMS" - } - - ] - }, - "license": { - "key": "agpl-3.0", - "name": "GNU Affero General Public License v3.0", - "spdx_id": "AGPL-3.0", - "url": "https://api.github.com/licenses/agpl-3.0", - "node_id": "MDc6TGljZW5zZTE=" - }, - "language": [ - - "Javascript", "Ruby", "HTML", "typescript", "coffeescript", "SCSS" - ], - - "tags": { - "IND": [ - "Education" - ], - "SD": [ - "" - ], - "COM": [ - "community-led" - ], - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - { - "id": 159, - "bes_tracking_id": 159, - "name": "canvas-android", - "full_name": "Be-Secure/canvas-android", - "description": "The open source code provided by the Android Team at Instructure.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 37798, - "open_issues": 0, - "created_at": "2021-08-11T14:39:54Z", - "updated_at": "2021-08-11T14:39:55Z", - "pushed_at": "2021-08-11T12:46:35Z", - "git_url": "git://github.com/Be-Secure/canvas-android.git", - "clone_url": "https://github.com/Be-Secure/canvas-android.git", - "html_url": "https://github.com/Be-Secure/canvas-android", - "homepage": "", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/instructure/canvas-android", - "main_bes_url": "https://github.com/Be-Secure/canvas-android", - "all_projects": { - "canvas-android": "https://github.com/instructure/canvas-android" - - }, - "all_bes_repos": [{ - "id": 397466854, - "name": "canvas-android", - "url": "https://github.com/Be-Secure/canvas-android" - } - - ] - }, - "license": { - "key": "gpl-3.0", - "name": "GNU General Public License v3.0", - "spdx_id": "GPL-3.0", - "url": "https://api.github.com/licenses/gpl-3.0", - "node_id": "MDc6TGljZW5zZTk=" - }, - "language": [ - - "Python", "Java", "Shell", "Kotlin", "Ruby", "HTML", "Dart" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "community-led" - ], - "TD-U": [ - "TD-U-MoA" - - ] - - - } - - - }, - - { - "id": 158, - "bes_tracking_id": 158, - "name": "ros", - "full_name": "Be-Secure/ros", - "description": "Is a set of software libraries and tools that help you build robot applications.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 14727, - "open_issues": 0, - "created_at": "2021-08-18T04:00:06Z", - "updated_at": "2021-08-18T04:00:07Z", - "pushed_at": "2021-07-23T22:48:42Z", - "git_url": "git://github.com/Be-Secure/ros.git", - "clone_url": "https://github.com/Be-Secure/ros.git", - "html_url": "https://github.com/Be-Secure/ros", - "homepage": "https://ros.org/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2012, - "bes_cve_details_id": "", - "cvedetails_product_id": "23743", - "cvedetails_vendor_id": "109" - }, - "project_repos": { - "main_github_url": "https://github.com/ros/ros", - "main_bes_url": "https://github.com/Be-Secure/ros", - "all_projects": { - "ros": "https://github.com/ros/ros" - - }, - "all_bes_repos": [{ - "id": 397466854, - "name": "ros", - "url": "https://github.com/Be-Secure/ros" - } - - ] - }, - "license": { - "key": "bsd-3-clause", - "name": "BSD 3-Clause \"New\" or \"Revised\" License", - "spdx_id": "BSD-3-Clause", - "url": "https://api.github.com/licenses/bsd-3-clause", - "node_id": "MDc6TGljZW5zZTU=" - }, - "language": [ - - "Python", "C++", "Shell", "Makefile", "Batchfile", "Cmake" - - ], - - "tags": { - "IND": [ - "Automotive" - ], - "SD": [ - "" - ], - "COM": [ - "community-led" - ], - "TD-U": [ - "TD-U-IoT" - - ] - - - } - - - }, - { - "id": 157, - "bes_tracking_id": 157, - "name": "kaa", - "full_name": "Be-Secure/kaa", - "description": "Kaa is a highly flexible and scalable IoT platform for building IoT solutions and managing connected devices.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 235274, - "open_issues": 0, - "created_at": "2021-08-11T05:15:33Z", - "updated_at": "2021-08-11T05:15:34Z", - "pushed_at": "2021-08-04T12:47:40Z", - "git_url": "git://github.com/Be-Secure/kaa.git", - "clone_url": "https://github.com/Be-Secure/kaa.git", - "html_url": "https://github.com/Be-Secure/kaa", - "homepage": "http://www.kaaproject.org", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2020, - "bes_cve_details_id": "", - "cvedetails_product_id": "88959", - "cvedetails_vendor_id": "23795" - }, - "project_repos": { - "main_github_url": "https://github.com/kaaproject/kaa", - "main_bes_url": "https://github.com/Be-Secure/kaa", - "all_projects": { - "kaa": "https://github.com/kaaproject/kaa" - - }, - "all_bes_repos": [{ - "id": 394870470, - "name": "kaa", - "url": "https://github.com/Be-Secure/kaa" - } - - ] - }, - "license": { - "key": "", - "name": "", - "spdx_id": "", - "url": "", - "node_id": "" - }, - "language": [ - - "Go" - - ], - - "tags": { - "IND": [ - "Automotive" - ], - "SD": [ - "" - ], - "COM": [ - "community-led" - ], - "TD-U": [ - "TD-U-IoT" - - ] - - - } - - - }, - { - "id": 156, - "bes_tracking_id": 156, - "name": "pimcore", - "full_name": "Be-Secure/pimcore", - "description": "aggregates, enriches, and manages enterprise data and provides up-to-date, consistent, and personalized experiences to customers.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 432096, - "open_issues": 0, - "created_at": "2021-08-05T08:50:28Z", - "updated_at": "2021-08-05T08:50:29Z", - "pushed_at": "2021-08-05T08:06:07Z", - "git_url": "git://github.com/Be-Secure/pimcore.git", - "clone_url": "https://github.com/Be-Secure/pimcore.git", - "html_url": "https://github.com/Be-Secure/pimcore", - "homepage": "http://www.pimcore.org/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 10, - "year": 2021, - "bes_cve_details_id": "", - "cvedetails_product_id": "27498", - "cvedetails_vendor_id": "13251" - }, - "project_repos": { - "main_github_url": "https://github.com/pimcore/pimcore", - "main_bes_url": "https://github.com/Be-Secure/pimcore", - "all_projects": { - "pimcore": "https://github.com/pimcore/pimcore" - - }, - "all_bes_repos": [{ - "id": 392971412, - "name": "pimcore", - "url": "https://github.com/Be-Secure/pimcore" - } - - ] - }, - "license": { - "key": "gpl-3.0", - "name": "GNU General Public License v3.0", - "spdx_id": "GPL-3.0", - "url": "https://api.github.com/licenses/gpl-3.0", - "node_id": "MDc6TGljZW5zZTk=" - }, - "language": [ - - "Javascript", "PHP", "HTML", "CSS", "Twig", "SCSS" - - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "community-led" - ], - "TD-U": [ - "TD-U-DkA" - - ] - - - } - - - }, - { - "id": 155, - "bes_tracking_id": 155, - "name": "espocrm", - "full_name": "Be-Secure/espocrm", - "description": "web application with a frontend designed as a single page application and REST API backend written in PHP.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 43659, - "open_issues": 0, - "created_at": "2021-08-05T08:47:45Z", - "updated_at": "2021-08-05T08:47:46Z", - "pushed_at": "2021-08-05T08:01:36Z", - "git_url": "git://github.com/Be-Secure/espocrm.git", - "clone_url": "https://github.com/Be-Secure/espocrm.git", - "html_url": "https://github.com/Be-Secure/espocrm", - "homepage": "https://www.espocrm.com", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2021, - "bes_cve_details_id": "", - "cvedetails_product_id": "29283", - "cvedetails_vendor_id": "14206" - }, - "project_repos": { - "main_github_url": "https://github.com/espocrm/espocrm", - "main_bes_url": "https://github.com/Be-Secure/espocrm", - "all_projects": { - "espocrm": "https://github.com/espocrm/espocrm" - - }, - "all_bes_repos": [{ - "id": 392970608, - "name": "espocrm", - "url": "https://github.com/Be-Secure/espocrm" - } - - ] - }, - "license": { - "key": "gpl-3.0", - "name": "GNU General Public License v3.0", - "spdx_id": "GPL-3.0", - "url": "https://api.github.com/licenses/gpl-3.0", - "node_id": "MDc6TGljZW5zZTk=" - }, - "language": [ - - "Javascript", "PHP", "Less", "Smarty" - - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "community-led" - ], - "TD-U": [ - "TD-U-DkA" - - ] - - - } - - - }, - { - "id": 154, - "bes_tracking_id": 154, - "name": "koha", - "full_name": "Be-Secure/koha", - "description": "Koha is a free software integrated library system", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 4320411, - "open_issues": 0, - "created_at": "2021-08-05T17:17:14Z", - "updated_at": "2021-08-05T17:17:15Z", - "pushed_at": "2021-08-04T12:07:03Z", - "git_url": "git://github.com/Be-Secure/koha.git", - "clone_url": "https://github.com/Be-Secure/koha.git", - "html_url": "https://github.com/Be-Secure/koha", - "homepage": "https://koha-community.org/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 4, - "year": 2020, - "bes_cve_details_id": "", - "cvedetails_product_id": "21648", - "cvedetails_vendor_id": "11706" - }, - "project_repos": { - "main_github_url": "https://github.com/koha-community/koha", - "main_bes_url": "https://github.com/Be-Secure/koha", - "all_projects": { - "koha": "https://github.com/koha-community/koha" - - }, - "all_bes_repos": [{ - "id": 393121129, - "name": "koha", - "url": "https://github.com/Be-Secure/koha" - } - - ] - }, - "license": { - "key": "gpl-3.0", - "name": "GNU General Public License v3.0", - "spdx_id": "GPL-3.0", - "url": "https://api.github.com/licenses/gpl-3.0", - "node_id": "MDc6TGljZW5zZTk=" - }, - "language": [ - - "Javascript", "HTML", "Raku", "SCSS", "XSLT" - - ], - - "tags": { - "IND": [ - "NG" - ], - "SD": [ - "" - ], - "COM": [ - "community-led" - ], - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - { - "id": 153, - "bes_tracking_id": 153, - "name": "bit", - "full_name": "Be-Secure/bit", - "description": "Bit is a tool chain for composable software development", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 86380, - "open_issues": 0, - "created_at": "2021-08-05T10:04:22Z", - "updated_at": "2021-08-05T10:04:23Z", - "pushed_at": "2021-08-05T09:18:48Z", - "git_url": "git://github.com/Be-Secure/bit.git", - "clone_url": "https://github.com/Be-Secure/bit.git", - "html_url": "https://github.com/Be-Secure/bit", - "homepage": "https://bit.dev", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "82132", - "cvedetails_vendor_id": "23065" - }, - "project_repos": { - "main_github_url": "https://github.com/teambit/bit", - "main_bes_url": "https://github.com/Be-Secure/bit", - "all_projects": { - "bit": "https://github.com/teambit/bit" - - }, - "all_bes_repos": [{ - "id": 392993316, - "name": "bit", - "url": "https://github.com/Be-Secure/bit" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "Javascript", "Typescript", "Shell", "powershell", "Vue", "SCSS" - - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "Independent-project" - ], - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - { - "id": 152, - "bes_tracking_id": 152, - "name": "joplin", - "full_name": "Be-Secure/joplin", - "description": "Joplin is a free, open source note taking and to-do application", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 215192, - "open_issues": 0, - "created_at": "2021-08-05T10:03:20Z", - "updated_at": "2021-08-05T10:03:22Z", - "pushed_at": "2021-08-05T03:41:34Z", - "git_url": "git://github.com/Be-Secure/joplin.git", - "clone_url": "https://github.com/Be-Secure/joplin.git", - "html_url": "https://github.com/Be-Secure/joplin", - "homepage": "https://joplinapp.org/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2021, - "bes_cve_details_id": "", - "cvedetails_product_id": "99830", - "cvedetails_vendor_id": "25298" - }, - "project_repos": { - "main_github_url": "https://github.com/laurent22/joplin", - "main_bes_url": "https://github.com/Be-Secure/joplin", - "all_projects": { - "joplin": "https://github.com/laurent22/joplin" - - }, - "all_bes_repos": [{ - "id": 392993011, - "name": "joplin", - "url": "https://github.com/Be-Secure/joplin" - } - - ] - }, - "license": { - "key": "mit", - "name": "mit license", - "spdx_id": "MIT", - "url": "https://api.github.com/licenses/mit", - "node_id": "MDc6TGljZW5zZTEz" - }, - "language": [ - - "Javascript", "Java", "CSS", "HTML", "Typescript", "Mustache" - - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "community-led" - ], - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - { - "id": 151, - "bes_tracking_id": 151, - "name": "hexo", - "full_name": "Be-Secure/hexo", - "description": "A fast, simple & powerful blog framework, powered by Node.js.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 7205, - "open_issues": 0, - "created_at": "2021-08-05T10:02:05Z", - "updated_at": "2021-08-05T10:02:07Z", - "pushed_at": "2021-08-01T08:53:48Z", - "git_url": "git://github.com/Be-Secure/hexo.git", - "clone_url": "https://github.com/Be-Secure/hexo.git", - "html_url": "https://github.com/Be-Secure/hexo", - "homepage": "https://hexo.io", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2021, - "bes_cve_details_id": "", - "cvedetails_product_id": "105979", - "cvedetails_vendor_id": "25968" - }, - "project_repos": { - "main_github_url": "https://github.com/hexojs/hexo", - "main_bes_url": "https://github.com/Be-Secure/hexo", - "all_projects": { - "hexo": "https://github.com/hexojs/hexo" - - }, - "all_bes_repos": [{ - "id": 392992675, - "name": "hexo", - "url": "https://github.com/Be-Secure/hexo" - } - - ] - }, - "license": { - "key": "mit", - "name": "mit license", - "spdx_id": "MIT", - "url": "https://api.github.com/licenses/mit", - "node_id": "MDc6TGljZW5zZTEz" - }, - "language": [ - - "Javascript", "Shell", "CSS" - - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "community-led" - ], - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - { - "id": 150, - "bes_tracking_id": 150, - "name": "wallabag", - "full_name": "Be-Secure/wallabag", - "description": "wallabag is a web application allowing you to save web pages for later reading.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 90041, - "open_issues": 0, - "created_at": "2021-08-05T10:01:23Z", - "updated_at": "2021-09-10T07:23:25Z", - "pushed_at": "2021-09-10T07:23:17Z", - "git_url": "git://github.com/Be-Secure/wallabag.git", - "clone_url": "https://github.com/Be-Secure/wallabag.git", - "html_url": "https://github.com/Be-Secure/wallabag", - "homepage": "https://wallabag.org", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2018, - "bes_cve_details_id": "", - "cvedetails_product_id": "67943", - "cvedetails_vendor_id": "21707" - }, - "project_repos": { - "main_github_url": "https://github.com/wallabag/wallabag", - "main_bes_url": "https://github.com/Be-Secure/wallabag", - "all_projects": { - "wallabag": "https://github.com/wallabag/wallabag" - - }, - "all_bes_repos": [{ - "id": 392992423, - "name": "wallabag", - "url": "https://github.com/Be-Secure/wallabag" - } - - ] - }, - "license": { - "key": "mit", - "name": "mit license", - "spdx_id": "MIT", - "url": "https://api.github.com/licenses/mit", - "node_id": "MDc6TGljZW5zZTEz" - }, - "language": [ - - "PHP", "Javascript", "Shell", "CSS", "Twig", "SCSS" - - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "community-led" - ], - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - - - { - "id": 149, - "bes_tracking_id": 149, - "name": "akaunting", - "full_name": "Be-Secure/akaunting", - "description": "It is built with modern technologies such as Laravel, VueJS, Tailwind, RESTful API etc.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 28918, - "open_issues": 0, - "created_at": "2021-08-05T08:52:09Z", - "updated_at": "2021-08-05T08:52:11Z", - "pushed_at": "2021-08-05T00:15:40Z", - "git_url": "git://github.com/Be-Secure/akaunting.git", - "clone_url": "https://github.com/Be-Secure/akaunting.git", - "html_url": "https://github.com/Be-Secure/akaunting", - "homepage": "https://akaunting.com/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 8, - "year": 2021, - "bes_cve_details_id": "", - "cvedetails_product_id": "82472", - "cvedetails_vendor_id": "20511" - }, - "project_repos": { - "main_github_url": "https://github.com/akaunting/akaunting", - "main_bes_url": "https://github.com/Be-Secure/akaunting", - "all_projects": { - "akaunting": "https://github.com/akaunting/akaunting" - - }, - "all_bes_repos": [{ - "id": 392971892, - "name": "akaunting", - "url": "https://github.com/Be-Secure/akaunting" - } - - ] - }, - "license": { - "key": "gpl-3.0", - "name": "GNU General Public License v3.0", - "spdx_id": "GPL-3.0", - "url": "https://api.github.com/licenses/gpl-3.0", - "node_id": "MDc6TGljZW5zZTk=" - }, - "language": [ - - "PHP", "Blade", "Vue" - - ], - - "tags": { - "IND": [ - "BFSI" - ], - "SD": [ - "" - ], - "COM": [ - "community-led" - ], - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - - { - "id": 148, - "bes_tracking_id": 148, - "name": "grav", - "full_name": "Be-Secure/grav", - "description": "Grav is a Fast, Simple, and Flexible, file-based Web-platform..", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 22751, - "open_issues": 0, - "created_at": "2021-08-05T10:00:50Z", - "updated_at": "2021-08-05T10:00:51Z", - "pushed_at": "2021-08-05T10:00:51Z", - "git_url": "git://github.com/Be-Secure/grav.git", - "clone_url": "https://github.com/Be-Secure/grav.git", - "html_url": "https://github.com/Be-Secure/grav", - "homepage": "https://getgrav.org/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 4, - "year": 2021, - "bes_cve_details_id": "", - "cvedetails_product_id": "82472", - "cvedetails_vendor_id": "20511" - }, - "project_repos": { - "main_github_url": "https://github.com/getgrav/grav", - "main_bes_url": "https://github.com/Be-Secure/grav", - "all_projects": { - "grav": "https://github.com/getgrav/grav" - - }, - "all_bes_repos": [{ - "id": 392992220, - "name": "grav", - "url": "https://github.com/Be-Secure/grav" - } - - ] - }, - "license": { - "key": "mit", - "name": "MIT license", - "spdx_id": "MIT", - "url": "https://api.github.com/licenses/mit", - "node_id": "MDc6TGljZW5zZTEz" - }, - "language": [ - - "PHP" - - - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "community-led" - ], - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - - - { - "id": 147, - "bes_tracking_id": 147, - "name": "php-pm", - "full_name": "Be-Secure/php-pm", - "description": "PHP-PM is a process manager, supercharger and load balancer for PHP applications.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 757, - "open_issues": 0, - "created_at": "2021-08-05T10:00:04Z", - "updated_at": "2021-08-05T10:00:05Z", - "pushed_at": "2021-04-16T09:46:16Z", - "git_url": "git://github.com/Be-Secure/php-pm.git", - "clone_url": "https://github.com/Be-Secure/php-pm.git", - "html_url": "https://github.com/Be-Secure/php-pm", - "homepage": "", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 6, - "year": 2021, - "bes_cve_details_id": "", - "cvedetails_product_id": "128", - "cvedetails_vendor_id": "74" - }, - "project_repos": { - "main_github_url": "https://github.com/php-pm/php-pm", - "main_bes_url": "https://github.com/Be-Secure/php-pm", - "all_projects": { - "php-pm": "https://github.com/php-pm/php-pm/" - - }, - "all_bes_repos": [{ - "id": 444367240, - "name": "php-pm", - "url": "https://github.com/Be-Secure/php-pm" - } - - ] - }, - "license": { - "key": "mit", - "name": "MIT license", - "spdx_id": "mit", - "url": "https://api.github.com/licenses/mit", - "node_id": "MDc6TGljZW5zZTEz" - }, - "language": [ - - "PHP", "Shell" - - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "Independent project" - ], - "TD-U": [ - "TD-U-W" - ] - - - } - - - }, - { - "id": 146, - "bes_tracking_id": 146, - "name": "portus", - "full_name": "Be-Secure/portus", - "description": "Portus is an authorization server and a user interface for the next generation of the Docker registry.", - "stargazers_count": 0, - "watchers_count": 0, - "forks_count": 0, - "size": 37891, - "open_issues": 0, - "created_at": "2021-08-05T09:59:15Z", - "updated_at": "2021-08-05T09:59:16Z", - "pushed_at": "2021-08-04T01:49:39Z", - "git_url": "git://github.com/Be-Secure/portus.git", - "clone_url": "https://github.com/Be-Secure/portus.git", - "html_url": "https://github.com/Be-Secure/portus", - "homepage": "http://port.us.org/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2018, - "bes_cve_details_id": "", - "cvedetails_product_id": "40412", - "cvedetails_vendor_id": "61" - }, - "project_repos": { - "main_github_url": "https://github.com/suse/portus", - "main_bes_url": "https://github.com/Be-Secure/portus", - "all_projects": [{ - "name": "chatwoot", - "url": "https://github.com/suse/portus" - } - - ], - - - "all_bes_repos": [{ - "id": 392991767, - "name": "portus", - "url": "https://github.com/Be-Secure/portus" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "Javascript", "CSS", "HTML", "Shell", "Vue", "Ruby" - ], - "tags": { - "IND": [ - "ALL" - ], - - "COM-C": [ - "Community led" - ], - "TD-U": [ - "TD-U-W" - ] - - } - - - }, - - { - "id": 145, - "bes_tracking_id": 145, - "name": "chatwoot", - "full_name": "Be-Secure/chatwoot", - "description": "Chatwoot lets you view and manage your customer data, communicate with them irrespective of which medium they use, and re-engage them based on their profile", - "stargazers_count": 0, - "watchers_count": 0, - "forks_count": 0, - "size": 47491, - "open_issues": 0, - "created_at": "2021-08-05T09:58:34Z", - "updated_at": "2021-08-05T09:58:35Z", - "pushed_at": "2021-08-05T09:23:42Z", - "git_url": "git://github.com/Be-Secure/chatwoot.git", - "clone_url": "https://github.com/Be-Secure/chatwoot.git", - "html_url": "https://github.com/Be-Secure/chatwoot", - "homepage": "https://www.chatwoot.com/help-center", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2021, - "bes_cve_details_id": "", - "cvedetails_product_id": "98837", - "cvedetails_vendor_id": "25029" - }, - "project_repos": { - "main_github_url": "https://github.com/chatwoot/chatwoot", - "main_bes_url": "https://github.com/Be-Secure/chatwoot", - "all_projects": [{ - "name": "chatwoot", - "url": "https://github.com/chatwoot/chatwoot" - } - - ], - - - "all_bes_repos": [{ - "id": 392991563, - "name": "chatwoot", - "url": "https://github.com/Be-Secure/chatwoot" - } - - ] - }, - "license": { - "key": "mit", - "name": "MIT License ", - "spdx_id": "mit", - "url": "https://api.github.com/licenses/mit", - "node_id": "MDc6TGljZW5zZTEz" - }, - "language": [ - - "Ruby", "Javascript", "CSS", "HTML", "Shell", "Vue", "SCSS" - ], - "tags": { - "IND": [ - "Retail" - ], - - "COM-C": [ - "Community led" - ], - "TD-U": [ - "TD-U-W" - ] - - } - - - }, - { - "id": 128, - "bes_tracking_id": 128, - "name": "springfox", - "full_name": "Be-Secure/springfox", - "description": "Automated JSON API documentation for API's built with Spring", - "stargazers_count": 0, - "watchers_count": 0, - "forks_count": 0, - "size": 186294, - "open_issues": 0, - "created_at": "2021-08-05T09:57:02Z", - "updated_at": "2021-08-05T09:57:04Z", - "pushed_at": "2021-08-02T16:45:36Z", - "git_url": "git://github.com/Be-Secure/springfox.git", - "clone_url": "https://github.com/Be-Secure/springfox.git", - "html_url": "https://github.com/Be-Secure/springfox", - "homepage": "http://springfox.io", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/springfox/springfox", - "main_bes_url": "https://github.com/Be-Secure/springfox", - "all_projects": [{ - "name": "springfox", - "url": "https://github.com/springfox/springfox" - } - - ], - - - "all_bes_repos": [{ - "id": 392991148, - "name": "springfox", - "url": "https://github.com/Be-Secure/springfox" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "Java", "Groovy", "Javascript", "CSS", "HTML", "Shell", "Vim Snippet" - ], - "tags": { - "IND": [ - "ALL" - ], - - "COM-C": [ - "Community led" - ], - "TD-U": [ - "TD-U-ApD" - ] - - } - - - }, - - { - "id": 144, - "bes_tracking_id": 144, - "name": "spring-security", - "full_name": "Be-Secure/spring-security", - "description": "Spring Security provides security services for the Spring IO Platform.", - "stargazers_count": 0, - "watchers_count": 0, - "forks_count": 0, - "size": 56665, - "open_issues": 0, - "created_at": "2021-08-05T09:55:50Z", - "updated_at": "2021-08-05T09:55:51Z", - "pushed_at": "2021-08-04T08:33:23Z", - "git_url": "git://github.com/Be-Secure/spring-security.git", - "clone_url": "https://github.com/Be-Secure/spring-security.git", - "html_url": "https://github.com/Be-Secure/spring-security", - "homepage": "https://spring.io/projects/spring-security", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/spring-projects/spring-security", - "main_bes_url": "https://github.com/Be-Secure/spring-security", - "all_projects": [{ - "name": "spring-security", - "url": "https://github.com/spring-projects/spring-security" - } - - ], - - - "all_bes_repos": [{ - "id": 392990814, - "name": "spring-security", - "url": "https://github.com/Be-Secure/spring-security" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "Java", "kotlin", "Groovy", "PLSQL", "AspectJ", "XSLT" - ], - "tags": { - "IND": [ - "ALL" - ], - - "COM-C": [ - "Community led" - ], - "TD-U": [ - "TD-U-W" - ] - - } - - - }, - - - { - "id": 143, - "bes_tracking_id": 143, - "name": "healthchecks", - "full_name": "Be-Secure/healthchecks", - "description": "Healthchecks is a cron job monitoring service. It listens for HTTP requests and email messages from your cron jobs and scheduled tasks. When a ping does not arrive on time, Healthchecks sends out alerts.", - "stargazers_count": 0, - "watchers_count": 0, - "forks_count": 0, - "size": 12834, - "open_issues": 0, - "created_at": "2021-08-05T09:55:04Z", - "updated_at": "2021-08-05T09:55:06Z", - "pushed_at": "2021-08-03T16:02:39Z", - "git_url": "git://github.com/Be-Secure/healthchecks.git", - "clone_url": "https://github.com/Be-Secure/healthchecks.git", - "html_url": "https://github.com/Be-Secure/healthchecks", - "homepage": "https://healthchecks.io/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/healthchecks/healthchecks", - "main_bes_url": "https://github.com/Be-Secure/healthchecks", - "all_projects": [{ - "name": "healthchecks", - "url": "https://github.com/healthchecks/healthchecks" - } - - ], - - - "all_bes_repos": [{ - "id": 392990592, - "name": "healthchecks", - "url": "https://github.com/Be-Secure/healthchecks" - } - - ] - }, - "license": { - "key": "bsd-3-clause", - "name": "BSD 3-Clause \"New\" or \"Revised\" License", - "spdx_id": "BSD-3-Clause", - "url": "https://api.github.com/licenses/bsd-3-clause", - "node_id": "MDc6TGljZW5zZTU=" - }, - "language": [ - - "JavaScript", "Python", "CSS", "Less", "HTML", "Dockerfile", "Shell" - - ], - "tags": { - "IND": [ - "ALL" - ], - - "COM-C": [ - "Community led" - ], - "TD-U": [ - "TD-U-MsG" - ] - - } - - - }, - { - "id": 126, - "bes_tracking_id": 126, - "name": "saleor", - "full_name": "Be-Secure/saleor", - "description": "Based on Python and Django, the latest major update introduces a modular front end powered by a GraphQL API and written with React and TypeScript.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 111120, - "open_issues": 0, - "created_at": "2021-08-05T09:54:20Z", - "updated_at": "2021-10-06T10:36:32Z", - "pushed_at": "2021-08-05T09:38:10Z", - "git_url": "git://github.com/Be-Secure/saleor.git", - "clone_url": "https://github.com/Be-Secure/saleor.git", - "html_url": "https://github.com/Be-Secure/saleor", - "homepage": "https://saleor.io", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - "count": 0, - "year": 2022, - "bes_cve_details_id": "", - "cvedetails_product_id": "111245", - "cvedetails_vendor_id": "26617" - }, - "project_repos": { - "main_github_url": "https://github.com/saleor/saleor", - "main_bes_url": "https://github.com/Be-Secure/saleor", - "all_projects": { - "saleor": "https://github.com/saleor/" - - }, - "all_bes_repos": [{ - - "id": 392990385, - "name": "saleor", - "url": "https://github.com/Be-Secure/saleor" - } - - ] - }, - "license": { - "key": "other", - "name": "other", - "spdx_id": "NOASSERTION", - "url": "null", - "node_id": "MDc6TGljZW5zZTA=" - }, - "language": [ - - "python", "HTML" - - ], - - "tags": { - "IND": [ - "retail" - ], - "SD": [ - "" - ], - "COM": [ - "community led" - ], - "TD-U": [ - "TD-U-W" - ] - } - }, - - - { - "id": 137, - "bes_tracking_id": 137, - "name": "django", - "full_name": "Be-Secure/django", - "description": " Django is a high-level Python web framework that encourages rapid development and clean, pragmatic design. ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 216109, - "open_issues": 0, - "created_at": "2022-01-04T09:33:20Z", - "updated_at": "2022-02-02T12:55:38Z", - "pushed_at": "2022-02-02T12:54:44Z", - "git_url": "git://github.com/Be-Secure/django.git", - "clone_url": "https://github.com/Be-Secure/django.git", - "html_url": "https://github.com/Be-Secure/django", - "homepage": "https://www.djangoproject.com/", - - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - "count": 8, - "year": 2021, - "bes_cve_details_id": "", - "cvedetails_product_id": "18211", - "cvedetails_vendor_id": "10199" - }, - "project_repos": { - "main_github_url": "https://github.com/django/django/", - "main_bes_url": "https://github.com/Be-Secure/django", - "all_projects": { - "django": "https://github.com/django/" - - }, - "all_bes_repos": [{ - "id": 444360776, - "name": "django", - "url": "https://github.com/Be-Secure/django" - } - - ] - }, - "license": { - "key": "bsd-3-clause", - "name": "BSD 3-Clause \"New\" or \"Revised\" License", - "spdx_id": "BSD-3-Clause", - "url": "https://api.github.com/licenses/bsd-3-clause", - "node_id": "MDc6TGljZW5zZTU=" - }, - "language": [ - - "python", "smarty", "CSS", "HTML", "Shell", "Javascript" - - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "community led" - ], - "TD-U": [ - "TD-U-W" - ] - - } - - - }, - - - { - "id": 125, - "bes_tracking_id": 125, - "name": "wagtail", - "full_name": "Be-Secure/wagtail", - "description": "It's focused on user experience, and offers precise control for designers and developers.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 139546, - "open_issues": 0, - "created_at": "2021-08-05T09:53:35Z", - "updated_at": "2021-08-05T09:53:36Z", - "pushed_at": "2021-08-05T06:18:18Z", - "git_url": "git://github.com/Be-Secure/wagtail.git", - "clone_url": "https://github.com/Be-Secure/wagtail.git", - "html_url": "https://github.com/Be-Secure/wagtail", - "homepage": "https://wagtail.io", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 2, - "year": 2021, - "bes_cve_details_id": "", - "cvedetails_product_id": "82628", - "cvedetails_vendor_id": "23152" - }, - "project_repos": { - "main_github_url": "https://github.com/wagtail/wagtail", - "main_bes_url": "https://github.com/Be-Secure/wagtail", - "all_projects": { - "wagtail": "https://github.com/wagtail/" - - }, - "all_bes_repos": [{ - "id": 392990183, - "name": "wagtail", - "url": "https://github.com/Be-Secure/wagtail" - } - - ] - }, - "license": { - "key": "bsd-3-clause", - "name": "BSD 3-Clause \"New\" or \"Revised\" License", - "spdx_id": "BSD-3-Clause", - "url": "https://api.github.com/licenses/bsd-3-clause", - "node_id": "MDc6TGljZW5zZTU=" - }, - "language": [ - - "python", "HTML", "javascript", "typescript", "shell", "SCSS" - - ], - - "tags": { - "IND": [ - "consumer" - ], - "SD": [ - "" - ], - "COM": [ - "community led" - ], - "TD-U": [ - "TD-U-W" - ] - - - } - - - }, - - - - { - "id": 123, - "bes_tracking_id": 123, - "name": "pytorch", - "full_name": "Be-Secure/pytorch", - "description": "PyTorch provides Tensors that can live either on the CPU or the GPU and accelerates the computation by a huge amount.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 709231, - "open_issues": 0, - "created_at": "2022-01-04T10:05:38Z", - "updated_at": "2022-01-04T10:05:43Z", - "pushed_at": "2022-01-04T09:33:37Z", - "git_url": "git://github.com/Be-Secure/pytorch.git", - "clone_url": "https://github.com/Be-Secure/pytorch.git", - "html_url": "https://github.com/Be-Secure/pytorch", - "homepage": "https://pytorch.org", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/pytorch/pytorch", - "main_bes_url": "https://github.com/Be-Secure/pytorch", - "all_projects": { - "pytorch": "https://github.com/pytorch/", - - "all_bes_repos": [{ - "id": 444370326, - "name": "pytorch", - "url": "https://github.com/Be-Secure/pytorch" - }] - }, - "license": { - "key": "other", - "name": "other", - "spdx_id": "NOASSERTION", - "url": "null", - "node_id": "MDc6TGljZW5zZTA=" - }, - "language": [ - - "python", "c", "c++", "cuda", "cmake", "objective-c++" - - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "community led" - ], - "TD-U": [ - "TD-U-AI/ML" - ] - - - } - - - } - - }, - - - { - "id": 136, - "bes_tracking_id": 136, - "name": "powerfulseal", - "full_name": "Be-Secure/powerfulseal", - "description": " PowerfulSeal injects failure into your Kubernetes clusters, so that you can detect problems as early as possible. It allows for writing scenarios describing complete chaos experiments.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 8545, - "open_issues": 0, - "created_at": "2021-08-05T09:52:53Z", - "updated_at": "2021-08-05T09:52:54Z", - "pushed_at": "2021-07-19T15:09:24Z", - "git_url": "git://github.com/Be-Secure/powerfulseal.git", - "clone_url": "https://github.com/Be-Secure/powerfulseal.git", - "html_url": "https://github.com/Be-Secure/powerfulseal", - "homepage": "", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/roots/powerfulseal/", - "main_bes_url": "https://github.com/Be-Secure/powerfulseal", - "all_projects": { - "powerfulseal": "https://github.com/powerfulseal/" - - }, - "all_bes_repos": [{ - "id": 392989987, - "name": "powerfulseal", - "url": "https://github.com/Be-Secure/powerfulseal" - }] - }, - - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "python" - - ], - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "Linux foundation" - ], - "TD-U": [ - "TD-U-W" - ] - } - }, - - { - "id": 142, - "bes_tracking_id": 142, - "name": "pykale", - "full_name": "Be-Secure/pykale", - "description": "PyKale enforces standardization and minimalism, via green machine learning concepts of reducing repetitions and redundancy, reusing existing resources, and recycling learning models across areas.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 15507, - "open_issues": 0, - "created_at": "2021-08-06T12:12:00Z", - "updated_at": "2021-08-06T12:12:01Z", - "pushed_at": "2021-08-05T22:10:39Z", - "git_url": "git://github.com/Be-Secure/pykale.git", - "clone_url": "https://github.com/Be-Secure/pykale.git", - "html_url": "https://github.com/Be-Secure/pykale", - "homepage": "https://pykale.readthedocs.io/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/pykale/pykale", - "main_bes_url": "https://github.com/Be-Secure/pykale", - "all_projects": { - "pykale": "https://github.com/pykale/" - - }, - "all_bes_repos": [{ - "id": 393366345, - "name": "pykale", - "url": "https://github.com/Be-Secure/pykale" - } - - ] - }, - "license": { - "key": "mit", - "name": "MIT license", - "spdx_id": "MIT", - "url": "https://api.github.com/licenses/mit", - "node_id": "MDc6TGljZW5zZTEz" - }, - "language": [ - - "python" - - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "community led" - ], - "TD-U": [ - "TD-U-AI/ML" - ] - - - } - - - }, - - - - { - "id": 141, - "bes_tracking_id": 141, - "name": "kotlin", - "full_name": "Be-Secure/kotlin", - "description": "Support for multi platform programming is one of Kotlin’s key benefits.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 1351987, - "open_issues": 0, - "created_at": "2022-01-04T09:59:36Z", - "updated_at": "2022-01-04T09:59:52Z", - "pushed_at": "2022-01-03T16:59:26Z", - "git_url": "git://github.com/Be-Secure/kotlin.git", - "clone_url": "https://github.com/Be-Secure/kotlin.git", - "html_url": "https://github.com/Be-Secure/kotlin", - "homepage": "https://kotlinlang.org/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2021, - "bes_cve_details_id": "", - "cvedetails_product_id": "56854", - "cvedetails_vendor_id": "15146" - }, - "project_repos": { - "main_github_url": "https://github.com/jetbrains/kotlin", - "main_bes_url": "https://github.com/Be-Secure/kotlin", - "all_projects": { - "kotlin": "https://github.com/kotlin/" - - }, - "all_bes_repos": [{ - "id": 444368451, - "name": "kotlin", - "url": "https://github.com/Be-Secure/kotlin" - } - - ] - }, - "license": { - "key": "Apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache- 2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "javas", "kotlin", "c++", "c", "swift", "objective-c" - - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "community led" - ], - "TD-U": [ - "TD-U-MoA" - ] - - - } - - - }, - - - { - "id": 140, - "bes_tracking_id": 140, - "name": "react", - "full_name": "Be-Secure/react", - "description": "React is a JavaScript library for building user interfaces.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 173759, - "open_issues": 0, - "created_at": "2022-01-04T09:55:17Z", - "updated_at": "2022-01-04T09:55:19Z", - "pushed_at": "2022-01-03T14:16:24Z", - "git_url": "git://github.com/Be-Secure/react.git", - "clone_url": "https://github.com/Be-Secure/react.git", - "html_url": "https://github.com/Be-Secure/react", - "homepage": "https://reactjs.org/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2018, - "bes_cve_details_id": "", - "cvedetails_product_id": "61450", - "cvedetails_vendor_id": "7758" - }, - "project_repos": { - "main_github_url": "https://github.com/facebook/react", - "main_bes_url": "https://github.com/Be-Secure/react", - "all_projects": { - "react": "https://github.com/react/" - - }, - "all_bes_repos": [{ - "id": 444367240, - "name": "react", - "url": "https://github.com/Be-Secure/react" - } - - ] - }, - "license": { - "key": "mit", - "name": "MIT license", - "spdx_id": "mit", - "url": "https://api.github.com/licenses/mit", - "node_id": "MDc6TGljZW5zZTEz" - }, - "language": [ - - "javascript", "HTML", "typrscript", "coffeescript", "CSS", "c++" - - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "Organisation led" - ], - "TD-U": [ - "TD-U-W" - ] - - - } - - - }, - - { - "id": 119, - "bes_tracking_id": 119, - "name": "angular", - "full_name": "Be-Secure/angular", - "description": "Angular is a development platform for building mobile and desktop web applications using Typescript/JavaScript and other languages..", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 381479, - "open_issues": 0, - "created_at": "2022-01-04T09:53:51Z", - "updated_at": "2022-04-26T08:17:19Z", - "pushed_at": "2022-04-26T08:15:05Z", - "git_url": "git://github.com/Be-Secure/angular.git", - "clone_url": "https://github.com/Be-Secure/angular.git", - "html_url": "https://github.com/Be-Secure/angular", - "homepage": "https://angular.io", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - "count": 2, - "year": 2022, - "bes_cve_details_id": "", - "cvedetails_product_id": "115892", - "cvedetails_vendor_id": "27257" - }, - "project_repos": { - "main_github_url": "https://github.com/angular", - "main_bes_url": "https://github.com/Be-Secure/angular", - "all_projects": { - "angular": "https://github.com/angular/" - - }, - "all_bes_repos": [{ - "id": 444366863, - "name": "angular", - "url": "https://github.com/Be-Secure/angular" - } - - ] - }, - "license": { - "key": "mit", - "name": "MIT license", - "spdx_id": "mit", - "url": "https://api.github.com/licenses/mit", - "node_id": "MDc6TGljZW5zZTEz" - }, - "language": [ - - "javascript", "HTML", "typrscript", "dart", "starlark" - - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "Community led project" - ], - "TD-U": [ - "TD-U-W" - ] - - - } - - - }, - - { - "id": 139, - "bes_tracking_id": 139, - "name": "Rails", - "full_name": "Be-Secure/rails", - "description": "Rails is a web-application framework that includes everything needed to create database-backed web applications according to the Model-View-Controller (MVC) pattern.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 240576, - "open_issues": 0, - "created_at": "2022-01-04T09:50:27Z", - "updated_at": "2022-01-04T09:50:28Z", - "pushed_at": "2022-01-04T09:40:51Z", - "git_url": "git://github.com/Be-Secure/rails.git", - "clone_url": "https://github.com/Be-Secure/rails.git", - "html_url": "https://github.com/Be-Secure/rails", - "homepage": "https://rubyonrails.org/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - "count": 9, - "year": 2021, - "bes_cve_details_id": "", - "cvedetails_product_id": "22569", - "cvedetails_vendor_id": "12043" - }, - "project_repos": { - "main_github_url": "https://github.com/rails/rails", - "main_bes_url": "https://github.com/Be-Secure/rails", - "all_projects": { - "rails": "https://github.com/rails/" - - }, - "all_bes_repos": [{ - "id": 444365828, - "name": "rails", - "url": "https://github.com/Be-Secure/rails" - } - - ] - }, - "license": { - "key": "mit", - "name": "MIT license", - "spdx_id": "mit", - "url": "https://api.github.com/licenses/mit", - "node_id": "MDc6TGljZW5zZTEz" - }, - "language": [ - - "ruby", "javascript", "coffeescript", "shell", "HTML", "CSS" - - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "Community led project" - ], - "TD-U": [ - "TD-U-W" - ] - - - } - - - }, - { - "id": 138, - "bes_tracking_id": 138, - "name": "Ruby", - "full_name": "Be-Secure/Ruby", - "description": "Ruby is an interpreted object-oriented programming language often used for web development.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 272834, - "open_issues": 0, - "created_at": "2022-01-04T09:48:37Z", - "updated_at": "2022-02-02T12:53:24Z", - "pushed_at": "2022-02-02T12:52:42Z", - "git_url": "git://github.com/Be-Secure/ruby.git", - "clone_url": "https://github.com/Be-Secure/ruby.git", - "html_url": "https://github.com/Be-Secure/ruby", - "homepage": "https://www.ruby-lang.org/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 2, - "year": 2021, - "bes_cve_details_id": "", - "cvedetails_product_id": "12215", - "cvedetails_vendor_id": "7252" - }, - "project_repos": { - "main_github_url": "https://github.com/ruby/ruby", - "main_bes_url": "https://github.com/Be-Secure/ruby", - "all_projects": { - "ruby": "https://github.com/ruby/" - - }, - "all_bes_repos": [{ - "id": 444365263, - "name": "ruby", - "url": "https://github.com/Be-Secure/ruby" - } - - ] - }, - "license": { - "key": "other", - "name": "other", - "spdx_id": "NOASSERTION", - "url": "", - "node_id": "MDc6TGljZW5zZTA=" - }, - "language": [ - - "YACC", "C", "C++", "makefile", "ruby", "rust" - - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "Community led project" - ], - "TD-U": [ - "TD-U-W" - ] - - - } - - - }, - { - "id": 116, - "bes_tracking_id": 116, - "name": "laravel", - "full_name": "Be-Secure/laravel", - "description": "Laravel takes the pain out of development by easing common tasks used in many web projects", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 10320, - "open_issues": 0, - "created_at": "2022-01-04T09:41:21Z", - "updated_at": "2022-01-04T09:41:22Z", - "pushed_at": "2022-01-03T15:02:45Z", - "git_url": "git://github.com/Be-Secure/laravel.git", - "clone_url": "https://github.com/Be-Secure/laravel.git", - "html_url": "https://github.com/Be-Secure/laravel", - "homepage": "https://laravel.com", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 2, - "year": 2021, - "bes_cve_details_id": "", - "cvedetails_product_id": "38139", - "cvedetails_vendor_id": "16542" - }, - "project_repos": { - "main_github_url": "https://github.com/laravel/laravel", - "main_bes_url": "https://github.com/Be-Secure/laravel", - "all_projects": { - "laravel": "https://github.com/laravel/" - - }, - "all_bes_repos": [{ - "id": 444361535, - "name": "laravel", - "url": "https://github.com/Be-Secure/laravel" - } - - ] - }, - "license": { - "key": "mit", - "name": "MIT license", - "spdx_id": "MIT", - "url": "https://api.github.com/licenses/mit", - "node_id": "MDc6TGljZW5zZTEz" - }, - "language": [ - - "PHP", "blade" - - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "Community led project" - ], - "TD-U": [ - "TD-U-W" - ] - - - } - - - }, - { - "id": 115, - "bes_tracking_id": 115, - "name": "flask", - "full_name": "Be-Secure/flask", - "description": "Flask is a lightweight WSGI web application framework", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 8795, - "open_issues": 0, - "created_at": "2022-01-04T09:35:51Z", - "updated_at": "2022-01-04T09:35:53Z", - "pushed_at": "2022-01-03T21:07:41Z", - "git_url": "git://github.com/Be-Secure/flask.git", - "clone_url": "https://github.com/Be-Secure/flask.git", - "html_url": "https://github.com/Be-Secure/flask", - "homepage": "https://flask.palletsprojects.com", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2019, - "bes_cve_details_id": "", - "cvedetails_product_id": "57169", - "cvedetails_vendor_id": "17201" - }, - "project_repos": { - "main_github_url": "https://github.com/pallets/flask", - "main_bes_url": "https://github.com/Be-Secure/flask", - "all_projects": { - "flask": "https://github.com/flask/" - - }, - "all_bes_repos": [{ - "id": 444361535, - "name": "flask", - "url": "https://github.com/Be-Secure/flask" - } - - ] - }, - "license": { - "key": "bsd-3-clause", - "name": "BSD 3-Clause \"New\" or \"Revised\" License", - "spdx_id": "BSD-3-Clause", - "url": "https://api.github.com/licenses/bsd-3-clause", - "node_id": "MDc6TGljZW5zZTU=" - }, - "language": [ - - "python" - - ], - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "Community led project" - ], - "TD-U": [ - "TD-U-W" - ] - } - - }, - - { - "id": 135, - "bes_tracking_id": 135, - "name": "Trellis", - "full_name": "Be-Secure/Trellis", - "description": " Trellis is a tool to create WordPress web servers and deploy WordPress sites.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 1767, - "open_issues": 0, - "created_at": "2021-08-05T09:50:31Z", - "updated_at": "2021-08-05T09:50:31Z", - "pushed_at": "2021-08-25T09:43:50Z", - "git_url": "git://github.com/Be-Secure/Trellis.git", - "clone_url": "https://github.com/Be-Secure/Trellis.git", - "html_url": "https://github.com/Be-Secure/Trellis", - "homepage": "https://roots.io/trellis/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/roots/trellis/", - "main_bes_url": "https://github.com/Be-Secure/trellis", - "all_projects": { - "trellis": "https://github.com/trellis/" - - }, - "all_bes_repos": [{ - "id": 392989261, - "name": "trellis", - "url": "https://github.com/Be-Secure/trellis" - } - - ] - }, - "license": { - "key": "mit", - "name": "MIT license", - "spdx_id": "MIT", - "url": "https://api.github.com/licenses/mit", - "node_id": "MDc6TGljZW5zZTEz" - }, - "language": [ - - "jinja", "python", "ruby" - - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "ROOTS COMMUNITY" - ], - "TD-U": [ - "TD-U-W" - ] - - - } - - - }, - { - "id": 117, - "bes_tracking_id": 117, - "name": "symfony", - "full_name": "Be-Secure/symfony", - "description": "Symfony is a set of PHP Components, a Web Application framework, a Philosophy, and a Community — all working together.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 211367, - "open_issues": 0, - "created_at": "2022-01-04T09:42:49Z", - "updated_at": "2022-02-02T12:49:07Z", - "pushed_at": "2022-02-02T12:48:05Z", - "git_url": "git://github.com/Be-Secure/symfony.git", - "clone_url": "https://github.com/Be-Secure/symfony.git", - "html_url": "https://github.com/Be-Secure/symfony", - "homepage": "https://www.symfony.com/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - "count": 1, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "22402", - "cvedetails_vendor_id": "11981" - }, - "project_repos": { - "main_github_url": "https://github.com/symfony/", - "main_bes_url": "https://github.com/Be-Secure/symfony", - "all_projects": { - "symfony": "https://github.com/symfony/" - - }, - "all_bes_repos": [{ - "id": 444363567, - "name": "symfony", - "url": "https://github.com/Be-Secure/symfony" - } - - ] - }, - "license": { - "key": "mit", - "name": "MIT license", - "spdx_id": "MIT", - "url": "https://api.github.com/licenses/mit", - "node_id": "MDc6TGljZW5zZTEz" - }, - "language": [ - - "PHP", "Typescript", "Java script", "HTML", "Shell" - - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "SYMFONY CORE TEAM COMMUNITY" - ], - "TD-U": [ - "TD-U-W" - ] - - - } - - - }, - - { - "id": 134, - "bes_tracking_id": 134, - "name": "tensorflow", - "full_name": "Be-Secure/tensorflow", - "description": "TensorFlow is an end-to-end open source platform for machine learning.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 758891, - "open_issues": 0, - "created_at": "2021-08-05T09:36:03Z", - "updated_at": "2021-08-05T09:36:05Z", - "pushed_at": "2021-08-05T09:31:23Z", - "git_url": "git://github.com/Be-Secure/tensorflow.git", - "clone_url": "https://github.com/Be-Secure/tensorflow.git", - "html_url": "https://github.com/Be-Secure/tensorflow", - "homepage": "https://www.tensorflow.org/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - "count": 6, - "year": 2020, - "bes_cve_details_id": "", - "cvedetails_product_id": "86745", - "cvedetails_vendor_id": "23502" - }, - "project_repos": { - "main_github_url": "https://github.com/tensorflow/tensorflow", - "main_bes_url": "https://github.com/Be-Secure/tensorflow", - "all_projects": { - "tensorflow": "https://github.com/tensorflow/tensorflow" - - }, - "all_bes_repos": [{ - "id": 392985099, - "name": "tensorflow", - "url": "https://github.com/Be-Secure/tensorflow" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "C++", "Python", "Go", "HTML", "Starlark", "MLIR" - - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "TENSORFLOW COMMUNITY" - ], - "TD-U": [ - "TD-U-AI/ML" - ] - - - } - - - }, - { - "id": 132, - "bes_tracking_id": 132, - "name": "deploy", - "full_name": "Be-Secure/deploy", - "description": "Ansistrano is an Ansible Galaxy role to easily deploy and roll back your scripting applications written in PHP, Python, NodeJS, or Ruby.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 577, - "open_issues": 0, - "created_at": "2021-08-05T09:49:47Z", - "updated_at": "2021-08-05T09:49:48Z", - "pushed_at": "2021-07-14T18:37:41Z", - "git_url": "git://github.com/Be-Secure/deploy.git", - "clone_url": "https://github.com/Be-Secure/deploy.git", - "html_url": "https://github.com/Be-Secure/deploy", - "homepage": "https://ansistrano.com", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2017, - "bes_cve_details_id": "", - "cvedetails_product_id": "55584", - "cvedetails_vendor_id": "15865" - }, - "project_repos": { - "main_github_url": "https://github.com/ansistrano/deploy", - "main_bes_url": "https://github.com/Be-Secure/deploy", - "all_projects": { - "deploy": "https://github.com/ansistrano/deploy" - - }, - "all_bes_repos": [{ - "id": 392989061, - "name": "deploy", - "url": "https://github.com/Be-Secure/deploy" - } - - ] - }, - "license": { - "key": "mit", - "name": "MIT license", - "spdx_id": "MIT", - "url": "https://api.github.com/licenses/mit", - "node_id": "MDc6TGljZW5zZTEz" - }, - "language": [ - - "Yaml" - - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "ANSISTRANO" - ], - "TD-U": [ - "TD-U-W" - ] - - - } - - - }, - - { - "id": 120, - "bes_tracking_id": 120, - "name": "ansible", - "full_name": "Be-Secure/ansible", - "description": "It automates cloud provisioning, configuration management, application deployment, intra-service orchestration, and many other IT needs. ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 214467, - "open_issues": 0, - "created_at": "2022-04-26T09:35:04Z", - "updated_at": "2022-04-26T08:25:09Z", - "pushed_at": "2022-04-26T01:58:31Z", - "git_url": "git://github.com/Be-Secure/ansible.git", - "clone_url": "https://github.com/Be-Secure/ansible.git", - "html_url": "https://github.com/Be-Secure/ansible", - "homepage": "https://ansible.com", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - "count": 1, - "year": 2018, - "bes_cve_details_id": "", - "cvedetails_product_id": "38977", - "cvedetails_vendor_id": "15207" - }, - "project_repos": { - "main_github_url": "https://github.com/ansible/ansible", - "main_bes_url": "https://github.com/Be-Secure/ansible", - "all_projects": { - "ansible": "https://github.com/ansible/ansible" - - }, - "all_bes_repos": [{ - "id": 485720718, - "name": "ansible", - "url": "https://github.com/Be-Secure/ansible" - } - - ] - }, - "license": { - "key": "gpl-3.0", - "name": "GNU General Public License v3.0", - "spdx_id": "GPL-3.0", - "url": "https://api.github.com/licenses/gpl-3.0", - "node_id": "MDc6TGljZW5zZTk=" - }, - "language": [ - - "Python" - - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "COM" - ], - "TD-U": [ - "TD-U-W" - ] - - } - - - }, - - - - { - "id": 131, - "bes_tracking_id": 131, - "name": "node", - "full_name": "Be-Secure/node", - "description": "Node.js is designed to build scalable network applications. ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 775581, - "open_issues": 0, - "created_at": "2022-01-04T09:56:22Z", - "updated_at": "2022-01-04T09:56:23Z", - "pushed_at": "2022-01-04T09:44:29Z", - "git_url": "git://github.com/Be-Secure/node.git", - "clone_url": "https://github.com/Be-Secure/node.git", - "html_url": "https://github.com/Be-Secure/node", - "homepage": "https://nodejs.org", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - "count": 1, - "year": 2014, - "bes_cve_details_id": "", - "cvedetails_product_id": "22804", - "cvedetails_vendor_id": "12113" - }, - "project_repos": { - "main_github_url": "https://github.com/nodejs/node", - "main_bes_url": "https://github.com/Be-Secure/node", - "all_projects": { - "node": "https://github.com/nodejs/node" - - }, - "all_bes_repos": [{ - "id": 444367537, - "name": "node", - "url": "https://github.com/Be-Secure/node" - } - - ] - }, - "license": { - "key": "other", - "name": "other", - "spdx_id": "NOASSERTION", - "url": null, - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "Java" - - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "NODEJS COMMUNITY" - ], - "TD-U": [ - "TD-U-W" - ] - - } - - - }, - - { - "id": 130, - "bes_tracking_id": 130, - "name": "fastjson", - "full_name": "Be-Secure/fastjson", - "description": "A fast JSON parser/generator for Java. ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 15449, - "open_issues": 0, - "created_at": "2022-06-01T08:40:32Z", - "updated_at": "2022-06-20T05:16:20Z", - "pushed_at": "2022-06-20T05:16:11Z", - "git_url": "git://github.com/Be-Secure/fastjson.git", - "clone_url": "https://github.com/Be-Secure/fastjson.git", - "html_url": "https://github.com/Be-Secure/fastjson", - "homepage": "https://github.com/alibaba/fastjson/wiki", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2022, - "bes_cve_details_id": "", - "cvedetails_product_id": "65951", - "cvedetails_vendor_id": "6086" - }, - "project_repos": { - "main_github_url": "https://github.com/alibaba/fastjson", - "main_bes_url": "https://github.com/Be-Secure/fastjson", - "all_projects": { - "fastjson": "https://github.com/alibaba/fastjson" - - }, - "all_bes_repos": [{ - "id": 498655991, - "name": "fastjson", - "url": "https://github.com/Be-Secure/fastjson" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "Java" - - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "Alibaba" - ], - "TD-U": [ - "TD-U-W" - ] - - } - - - }, - { - "id": 50, - "bes_tracking_id": 50, - "name": "prometheus", - "full_name": "Be-Secure/prometheus", - "description": "The Prometheus monitoring system and time series database.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 131761, - "open_issues": 0, - "created_at": "2021-08-02T12:24:50Z", - "updated_at": "2021-08-02T12:24:51Z", - "pushed_at": "2021-08-02T12:20:19Z", - "git_url": "git://github.com/Be-Secure/prometheus.git", - "clone_url": "https://github.com/Be-Secure/prometheus.git", - "html_url": "https://github.com/Be-Secure/prometheus", - "homepage": "https://prometheus.io/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 1, - "year": 2021, - "bes_cve_details_id": "", - "cvedetails_product_id": "61503", - "cvedetails_vendor_id": "20905" - }, - "project_repos": { - "main_github_url": "https://github.com/prometheus/prometheus", - "main_bes_url": "https://github.com/Be-Secure/prometheus", - "all_projects": { - "prometheus": "https://github.com/prometheus/prometheus" - - }, - "all_bes_repos": [{ - "id": 391939220, - "name": "prometheus", - "url": "https://github.com/Be-Secure/prometheus" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "Go", - "TypeScript", - "JavaScript", - "HTML", - "Yacc", - "SCSS", - "CSS", - "Shell", - "Lex", - "Makefile", - "Dockerfile" - - ], - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "SD-SOC" - ], - "COM": { - "foundation": "CNCF" - }, - "TD-U": [ - "TD-U-DAA" - ] - - } - - - }, - { - "id": 72, - "bes_tracking_id": 72, - "name": "WordPress", - "full_name": "Be-Secure/Wordpress", - "description": "WordPress is a free and open-source content management system written in PHP and paired with a MySQL or MariaDB database. Features include a plugin architecture and a template system, referred to within WordPress as Themes.", - "stargazers_count": 0, - "watchers_count": 0, - "forks_count": 0, - "size": 302142, - "open_issues": 0, - "created_at": "2021-09-04T08:43:07Z", - "updated_at": "2021-09-04T08:43:09Z", - "pushed_at": "2021-09-04T00:40:07Z", - "git_url": "git://github.com/Be-Secure/WordPress.git", - "clone_url": "https://github.com/Be-Secure/WordPress.git", - "html_url": "https://github.com/Be-Secure/WordPress", - "homepage": "https://wordpress.org", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 7, - "year": 2021, - "bes_cve_details_id": "", - "cvedetails_product_id": "4096", - "cvedetails_vendor_id": "2337" - }, - "project_repos": { - "main_github_url": "https://github.com/WordPress/WordPress", - "main_bes_url": "https://github.com/Be-Secure/WordPress", - "all_projects": [{ - "name": "Wordpress", - "url": "https://github.com/WordPress/WordPress" - } - - ], - - - "all_bes_repos": [{ - "id": 391939220, - "name": "WordPress", - "url": "https://github.com/Be-Secure/WordPress" - } - - ] - }, - "license": { - "key": "other", - "name": "Other", - "spdx_id": "NOASSERTION", - "url": null, - "node_id": "MDc6TGljZW5zZTA=" - }, - "language": [ - - - "PHP", - "JavaScript", - "CSS", - "SCSS" - - - ], - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": { - "Community led": "" - }, - "TD-U": [ - "TD-U-W" - ] - - } - - - }, - - { - "id": 49, - "bes_tracking_id": 49, - "name": "couchdb", - "full_name": "Be-Secure/couchdb", - "description": "Seamless multi-master syncing database with an intuitive HTTP/JSON API, designed for reliability.", - "stargazers_count": 0, - "watchers_count": 0, - "forks_count": 0, - "size": 36873, - "open_issues": 0, - "created_at": "2021-08-11T12:10:58Z", - "updated_at": "2021-08-11T12:11:00Z", - "pushed_at": "2021-08-11T05:42:30Z", - "git_url": "git://github.com/Be-Secure/couchdb.git", - "clone_url": "https://github.com/Be-Secure/couchdb.git", - "html_url": "https://github.com/Be-Secure/couchdb", - "homepage": "https://couchdb.apache.org/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 1, - "year": 2020, - "bes_cve_details_id": "", - "cvedetails_product_id": "19046", - "cvedetails_vendor_id": "45" - }, - "project_repos": { - "main_github_url": "https://github.com/apache/couchdb", - "main_bes_url": "https://github.com/Be-Secure/couchdb", - "all_projects": [{ - "name": "couchdb", - "url": "https://github.com/apache/couchdb" - } - - ], - - - "all_bes_repos": [{ - "id": 394976395, - "name": "couchdb", - "url": "https://github.com/Be-Secure/couchdb" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - - "Erlang", - "Elixir", - "JavaScript", - "Python", - "C", - "C++", - "Shell", - "Groovy", - "Ruby", - "Makefile", - "PowerShell", - "Dockerfile", - "Batchfile" - - - ], - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": { - "Foundation": "Apache" - }, - "TD-U": [ - "TD-U-Db" - ] - - } - - - }, - - { - "id": 86, - "bes_tracking_id": 86, - "name": "postgres", - "full_name": "Be-Secure/postgres", - "description": "Seamless multi-master syncing database with an intuitive HTTP/JSON API, designed for reliability.", - "stargazers_count": 0, - "watchers_count": 0, - "forks_count": 0, - "size": 589321, - "open_issues": 0, - "created_at": "2021-08-11T12:10:58Z", - "updated_at": "2021-08-11T12:11:00Z", - "pushed_at": "2021-08-11T05:42:30Z", - "git_url": "git://github.com/Be-Secure/postgres.git", - "clone_url": "https://github.com/Be-Secure/postgres.git", - "html_url": "https://github.com/Be-Secure/postgres", - "homepage": "https://www.postgresql.org/", - "owner": { - "login": "Be-Secure", - "id": 416246472, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 3, - "year": 2021, - "bes_cve_details_id": "", - "cvedetails_product_id": "575", - "cvedetails_vendor_id": "86" - }, - "project_repos": { - "main_github_url": "https://github.com/postgres/postgres", - "main_bes_url": "https://github.com/Be-Secure/postgres", - "all_projects": [{ - "name": "postgres", - "url": "https://github.com/postgres/postgres" - } - - ], - - - "all_bes_repos": [{ - "id": 416246472, - "name": "postgres", - "url": "https://github.com/Be-Secure/postgres" - } - - ] - }, - "license": { - "key": "other", - "name": "Other", - "spdx_id": "NOASSERTION", - "url": null, - "node_id": "MDc6TGljZW5zZTA=" - }, - "language": [ - - - "C", - "PLpgSQL", - "Perl", - "Yacc" - - ], - "tags": { - "IND": [ - "ALL" - ], - - "COM": { - "Community": "PostgreSQL" - }, - "TD-U": [ - "TD-U-Db" - ] - - } - - - }, - { - "id": 60, - "bes_tracking_id": 60, - "name": "kafka", - "full_name": "Be-Secure/kafka", - "description": "Mirror of Apache Kafka", - "stargazers_count": 0, - "watchers_count": 0, - "forks_count": 0, - "size": 129020, - "open_issues": 0, - "created_at": "2021-08-09T14:15:15Z", - "updated_at": "2021-08-09T14:15:16Z", - "pushed_at": "2021-08-09T10:05:31Z", - "git_url": "git://github.com/Be-Secure/kafka.git", - "clone_url": "https://github.com/Be-Secure/kafka.git", - "html_url": "https://github.com/Be-Secure/kafka", - "homepage": null, - "owner": { - "login": "Be-Secure", - "id": 416246472, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 1, - "year": 2021, - "bes_cve_details_id": "", - "cvedetails_product_id": "48980", - "cvedetails_vendor_id": "45" - }, - "project_repos": { - "main_github_url": "https://github.com/apache/kafka", - "main_bes_url": "https://github.com/Be-Secure/kafka", - "all_projects": [{ - "name": "kafka", - "url": "https://github.com/apache/kafka" - } - - ], - - - "all_bes_repos": [{ - "id": 394317976, - "name": "kafka", - "url": "https://github.com/Be-Secure/kafka" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - - - "Java", - "Scala", - "Python", - "Shell", - "Roff", - "Batchfile", - "Dockerfile", - "XSLT", - "HTML" - - ], - "tags": { - "IND": [ - "ALL" - ], - - "COM": { - "Community": "kafka" - }, - "TD-U": [ - "TD-U-Msg" - ], - "SD": [ - "SD-SOC" - ] - - } - - - }, - - { - "id": 57, - "bes_tracking_id": 57, - "name": "DefectDojo", - "full_name": "Be-Secure/DefectDojo", - "description": "DefectDojo is an open-source application vulnerability correlation and security orchestration tool.", - "stargazers_count": 0, - "watchers_count": 0, - "forks_count": 0, - "size": 77749, - "open_issues": 0, - "created_at": "2021-07-02T02:51:21Z", - "updated_at": "2021-09-11T15:44:08Z", - "pushed_at": "2021-09-11T15:43:42Z", - "git_url": "git://github.com/Be-Secure/-DefectDojo.git", - "clone_url": "https://github.com/Be-Secure/django-DefectDojo.git", - "html_url": "https://github.com/Be-Secure/django-DefectDojo", - "homepage": "https://www.defectdojo.org/", - "owner": { - "login": "Be-Secure", - "id": 416246472, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/DefectDojo/django-DefectDojo", - "main_bes_url": "https://github.com/Be-Secure/django-DefectDojo", - "all_projects": [{ - "name": "DefectDojo", - "url": "https://github.com/DefectDojo/django-DefectDojo" - } - - ], - - - "all_bes_repos": [{ - "id": 382212966, - "name": "DefectDojo", - "url": "https://github.com/Be-Secure/DefectDojo" - } - - ] - }, - "license": { - "key": "bsd-3-clause", - "name": "BSD 3-Clause \"New\" or \"Revised\" License", - "spdx_id": "BSD-3-Clause", - "url": "https://api.github.com/licenses/bsd-3-clause", - "node_id": "MDc6TGljZW5zZTU=" - }, - "language": [ - "HTML", - "Python", - "JavaScript", - "Smarty", - "Shell", - "CSS", - "Mustache", - "Batchfile" - - ], - "tags": { - "IND": [ - "ALL" - ], - - "COM": { - "Community": "OWASP" - }, - "TD-U": [ - "TD-U-Msg" - ], - "SD": [ - "SD-SOC" - ] - - } - - - }, - { - "id": 68, - "bes_tracking_id": 68, - "name": "helm", - "full_name": "Be-Secure/helm", - "description": "Helm helps you manage Kubernetes applications — Helm Charts help you define, install, and upgrade even the most complex Kubernetes application.", - "stargazers_count": 0, - "watchers_count": 0, - "forks_count": 0, - "size": 17236, - "open_issues": 0, - "created_at": "2021-08-05T09:52:23Z", - "updated_at": "2021-09-12T06:09:02Z", - "pushed_at": "2021-09-12T06:08:43Z", - "git_url": "git://github.com/Be-Secure/helm.git", - "clone_url": "https://github.com/Be-Secure/helm.git", - "html_url": "https://github.com/Be-Secure/helm", - "homepage": "https://helm.sh/", - "owner": { - "login": "Be-Secure", - "id": 392989850, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 2, - "year": 2021, - "bes_cve_details_id": "", - "cvedetails_product_id": "57140", - "cvedetails_vendor_id": "20129" - }, - "project_repos": { - "main_github_url": "https://github.com/helm/helm", - "main_bes_url": "https://github.com/Be-Secure/helm", - "all_projects": [{ - "name": "helm", - "url": "https://github.com/helm/helm" - } - - ], - "all_bes_repos": [{ - "id": 416246472, - "name": "helm", - "url": "https://github.com/Be-Secure/helm" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "Go", - "Shell", - "Makefile" - - ], - "tags": { - "IND": [ - "ALL" - ], - - "COM": { - "COM-F": "CNCF" - }, - "TD-U": [ - "TD-U-W" - ] - - } - - - }, - - { - "id": 58, - "bes_tracking_id": 58, - "name": " Hygieia", - "full_name": "Be-Secure/Hygieia", - "description": "CapitalOne DevOps Dashboard.", - "stargazers_count": 0, - "watchers_count": 0, - "forks_count": 0, - "size": 75568, - "open_issues": 19, - "created_at": "2020-10-22T06:14:23Z", - "updated_at": "2020-10-22T06:14:25Z", - "pushed_at": "2021-09-16T03:05:26Z", - "git_url": "git://github.com/Be-Secure/Hygieia.git", - "clone_url": "https://github.com/Be-Secure/Hygieia.git", - "html_url": "https://github.com/Be-Secure/Hygieia", - "homepage": "http://hygieia.github.io/Hygieia", - "owner": { - "login": "Be-Secure", - "id": 392989850, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/hygieia/hygieia", - "main_bes_url": "https://github.com/Be-Secure/Hygieia", - "all_projects": [{ - "name": "Hygieia", - "url": "https://github.com/hygieia/hygieia" - } - - ], - "all_bes_repos": [{ - "id": 306240483, - "name": "Hygieia", - "url": "https://github.com/Be-Secure/Hygieia" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - "JavaScript", - "HTML", - "Less", - "Gherkin", - "Java", - "Dockerfile", - "Shell" - - ], - "tags": { - "IND": [ - "ALL" - ], - - "COM": { - "COM-C": "Hygieia" - }, - "TD-U": [ - "TD-U-Msg" - ] - - } - - - }, - - { - "id": 63, - "bes_tracking_id": 63, - "name": "copilot-clone", - "full_name": "Be-Secure/copilot-clone", - "description": "VSCode extension for code suggestion", - "stargazers_count": 0, - "watchers_count": 0, - "forks_count": 0, - "size": 30272, - "open_issues": 0, - "created_at": "2021-08-05T08:46:07Z", - "updated_at": "2021-08-05T08:46:08Z", - "pushed_at": "2021-08-03T19:17:36Z", - "git_url": "git://github.com/Be-Secure/copilot-clone.git", - "clone_url": "https://github.com/Be-Secure/copilot-clone.git", - "html_url": "https://github.com/Be-Secure/copilot-clone", - "homepage": "", - "owner": { - "login": "Be-Secure", - "id": 392989850, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/hieunc229/copilot-clone", - "main_bes_url": "https://github.com/Be-Secure/copilot-clone", - "all_projects": [{ - "name": "copilot-clone", - "url": "https://github.com/hieunc229/copilot-clone" - } - - ], - "all_bes_repos": [{ - "id": 392970121, - "name": "copilot-clone", - "url": "https://github.com/Be-Secure/copilot-clone" - } - - ] - }, - "license": { - "key": "mit", - "name": "MIT License", - "spdx_id": "MIT", - "url": "https://api.github.com/licenses/mit", - "node_id": "MDc6TGljZW5zZTEz" - }, - "language": [ - "JavaScript", - "TypeScript" - - ], - "tags": { - "IND": [ - "ALL" - ], - "TD-U": [ - "TD-U-W" - ] - - } - - - }, - { - "id": 65, - "bes_tracking_id": 65, - "name": "Gpt-code-clippy", - "full_name": "Be-Secure/Gpt-code-clippy", - "description": "", - "stargazers_count": 0, - "watchers_count": 0, - "forks_count": 0, - "size": 18118, - "open_issues": 0, - "created_at": "2021-08-05T08:45:09Z", - "updated_at": "2021-08-07T19:53:40Z", - "pushed_at": "2021-07-26T08:55:58Z", - "git_url": "git://github.com/Be-Secure/gpt-code-clippy.git", - "clone_url": "https://github.com/Be-Secure/gpt-code-clippy.git", - "html_url": "https://github.com/Be-Secure/gpt-code-clippy", - "homepage": "", - "owner": { - "login": "Be-Secure", - "id": 392989850, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/CodedotAl/gpt-code-clippy", - "main_bes_url": "https://github.com/Be-Secure/gpt-code-clippy", - "all_projects": [{ - "name": "Gpt-code-clippy", - "url": "https://github.com/CodedotAl/gpt-code-clippy" - } - - ], - "all_bes_repos": [{ - "id": 392969816, - "name": "Gpt-code-clippy", - "url": "https://github.com/Be-Secure/gpt-code-clippy" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - "Python", - "Jupyter Notebook", - "Shell", - "Dockerfile" - - ], - "tags": { - "IND": [ - "ALL" - ], - "TD-U": [ - "TD-U-W" - ] - - } - - - }, - { - "id": 66, - "bes_tracking_id": 66, - "name": "emacs-secondmate", - "full_name": "Be-Secure/emacs-secondmate", - "description": "An open-source, mini imitation of GitHub Copilot for Emacs.", - "stargazers_count": 0, - "watchers_count": 0, - "forks_count": 0, - "size": 620, - "open_issues": 0, - "created_at": "2021-08-05T08:44:34Z", - "updated_at": "2021-08-05T08:44:35Z", - "pushed_at": "2021-07-15T23:29:40Z", - "git_url": "git://github.com/Be-Secure/emacs-secondmate.git", - "clone_url": "https://github.com/Be-Secure/emacs-secondmate.git", - "html_url": "https://github.com/Be-Secure/emacs-secondmate", - "homepage": "", - "owner": { - "login": "Be-Secure", - "id": 392989850, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/samrawal/emacs-secondmate", - "main_bes_url": "https://github.com/Be-Secure/emacs-secondmate", - "all_projects": [{ - "name": "emacs-secondmate", - "url": "https://github.com/samrawal/emacs-secondmate" - } - - ], - "all_bes_repos": [{ - "id": 392969816, - "name": "emacs-secondmate", - "url": "https://github.com/Be-Secure/emacs-secondmate" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - "Python", - "Emacs Lisp" - - ], - "tags": { - "IND": [ - "ALL" - ], - "TD-U": [ - "TD-U-W" - ] - - } - - - }, - { - "id": 94, - "bes_tracking_id": 94, - "name": "checkov", - "full_name": "Be-Secure/checkov", - "description": "It scans cloud infrastructure provisioned using Terraform, Terraform plan, Cloudformation, Kubernetes, Dockerfile, Serverless or ARM Templates and detects security and compliance misconfigurations using graph-based scanning. Checkov also powers Bridgecrew, the developer-first platform that codifies and streamlines cloud security throughout the development lifecycle. Bridgecrew identifies, fixes, and prevents misconfigurations in cloud resources and infrastructure-as-code files.", - "stargazers_count": 0, - "watchers_count": 0, - "forks_count": 0, - "size": 44382, - "open_issues": 0, - "created_at": "2021-08-05T09:52:23Z", - "updated_at": "2021-09-12T06:09:02Z", - "pushed_at": "2021-09-12T06:08:43Z", - "git_url": "git://github.com/Be-Secure/checkov.git", - "clone_url": "https://github.com/Be-Secure/checkov.git", - "html_url": "https://github.com/Be-Secure/checkov", - "homepage": "https://www.checkov.io/", - "owner": { - "login": "Be-Secure", - "id": 392988568, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - - "project_repos": { - "main_github_url": "https://github.com/checkov/checkov", - "main_bes_url": "https://github.com/Be-Secure/checkov", - "all_projects": [{ - "name": "checkov", - "url": "https://github.com/checkov/checkov" - }], - "all_bes_repos": [{ - "id": 392988568, - "name": "checkov", - "url": "https://github.com/Be-Secure/checkov" - }] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - "python", - "HCL" - ], - "tags": { - "IND": [ - "IND-CyS" - ], - - "COM": [ - "bridgecrewio" - ], - "TD-U": [ - "TD-U-W" - ] - } - }, - { - "id": 67, - "bes_tracking_id": 67, - "name": "minikube", - "full_name": "Be-Secure/minikube", - "description": "Minikube implements a local Kubernetes cluster on macOS, Linux, and Windows. Minikube's primary goals are to be the best tool for local Kubernetes application development and to support A Kubernetes features that fit", - "stargazers_count": 0, - "watchers_count": 0, - "forks_count": 0, - "size": 161495, - "open_issues": 0, - "created_at": "2021-08-05T09:51:51Z", - "updated_at": "2021-09-12T06:05:03Z", - "pushed_at": "2021-09-12T06:04:33Z", - "git_url": "git://github.com/Be-Secure/minikube.git", - "clone_url": "https://github.com/Be-Secure/minikube.git", - "html_url": "https://github.com/Be-Secure/minikube", - "homepage": "https://www.minikube.io/", - "owner": { - "login": "Be-Secure", - "id": 392989669, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://minikube.sigs.k8s.io/" - }, - "cvedetails": { - "count": 1, - "year": 2018, - "bes_cve_details_id": "", - "cvedetails_product_id": "61354", - "cvedetails_vendor_id": "15867" - }, - "project_repos": { - "main_github_url": "https://github.com/minikube/minikube", - "main_bes_url": "https://github.com/Be-Secure/minikube", - "all_projects": [{ - "name": "minikube", - "url": "https://github.com/minikube/minikube" - } - - ], - "all_bes_repos": [{ - "id": 392989669, - "name": "minikube", - "url": "https://github.com/Be-Secure/minikube" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - "GO" - ], - "tags": { - "IND": [ - "IND-ALL" - ], - - "COM": { - "COM-C": "kubernetes" - }, - "TD-U": [ - "TD-U-W" - ] - } - }, - { - "id": 95, - "bes_tracking_id": 95, - "name": "molekule", - "full_name": "Be-Secure/molekule", - "description": "Molecule project is designed to aid in the development and testing of Ansible roles. Molecule provides support for testing with multiple instances, operating systems and distributions, virtualization providers, test frameworks and testing scenarios. Molecule encourages an approach that results in consistently developed roles that are well-written, easily understood and maintained.", - "stargazers_count": 0, - "watchers_count": 0, - "forks_count": 0, - "size": 12922, - "open_issues": 0, - "created_at": "2021-08-05T09:51:11Z", - "updated_at": "2021-08-25T08:40:30Z", - "pushed_at": "2021-08-25T08:40:26Z", - "git_url": "git://github.com/Be-Secure/molekule.git", - "clone_url": "https://github.com/Be-Secure/molekule.git", - "html_url": "https://github.com/Be-Secure/molekule", - "homepage": "", - "owner": { - "login": "Be-Secure", - "id": 392989472, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/molekule/molekule", - "main_bes_url": "https://github.com/Be-Secure/molekule", - "all_projects": [{ - "name": "molekule", - "url": "https://github.com/molekule/molekule" - } - - ], - "all_bes_repos": [{ - "id": 392989472, - "name": "molekule", - "url": "https://github.com/Be-Secure/molekule" - } - - ] - }, - "license": { - "key": "mit", - "name": "MIT License", - "spdx_id": "MIT", - "url": "https://api.github.com/licenses/mit", - "node_id": "MDc6TGljZW5zZTEz" - }, - "language": [ - "Python" - ], - "tags": { - "IND": [ - "IND-ALL" - ], - - "COM": { - "COM-C": "ansible-community" - }, - "TD-U": [ - "TD-U-W" - ] - } - }, - { - "id": 59, - "bes_tracking_id": 59, - "name": "grafana", - "full_name": "Be-Secure/grafana", - "description": "The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more. ", - "stargazers_count": 0, - "watchers_count": 0, - "forks_count": 0, - "size": 421334, - "open_issues": 0, - "created_at": "2021-08-09T14:12:20Z", - "updated_at": "2021-08-09T14:12:22Z", - "pushed_at": "2021-08-09T14:08:49Z", - "git_url": "git://github.com/Be-Secure/grafana.git", - "clone_url": "https://github.com/Be-Secure/grafana.git", - "html_url": "https://github.com/Be-Secure", - "homepage": "https://grafana.com", - "owner": { - "login": "Be-Secure", - "id": 394317027, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - "count": 6, - "year": 2021, - "bes_cve_details_id": "", - "cvedetails_product_id": "47055", - "cvedetails_vendor_id": "18548" - }, - "project_repos": { - "main_github_url": "https://github.com/grafana/grafana", - "main_bes_url": "https://github.com/Be-Secure/grafana", - "all_projects": [{ - "name": "grafana", - "url": "https://github.com/grafana/grafana" - }], - "all_bes_repos": [{ - "id": 394317027, - "name": "grafana", - "url": "https://github.com/Be-Secure/grafana" - } - - ] - }, - "license": { - "key": "agpl-3.0", - "name": "GNU Affero General Public License v3.0", - "spdx_id": "AGPL-3.0", - "url": "https://api.github.com/licenses/agpl-3.0", - "node_id": "MDc6TGljZW5zZTE=" - }, - "language": [ - "TypeScript", - "Go", - "HTML", - "JavaScript" - ], - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "SD-SOC" - ], - "COM": { - "COM-C": "GrafanaLabs" - }, - "TD-U": [ - "TD-U-DAA" - ] - } - }, - { - "id": 99, - "bes_tracking_id": 99, - "name": "drupal", - "full_name": "Be-Secure/drupal", - "description": "Verbatim mirror of the git.drupal.org repository for Drupal core. Please see the https://github.com/drupal/drupal#contributing. PRs are not accepted on GitHub.", - "stargazers_count": 0, - "watchers_count": 0, - "forks_count": 0, - "size": 589321, - "open_issues": 0, - "created_at": "2021-09-04T08:24:41Z", - "updated_at": "2021-10-27T03:54:47Z", - "pushed_at": "2021-10-27T03:53:52Z", - "git_url": "git://github.com/Be-Secure/drupal.git", - "clone_url": "https://github.com/Be-Secure/drupal.git", - "html_url": "https://github.com/Be-Secure/drupal", - "homepage": "https://drupal.org/project/drupal", - "owner": { - "login": "Be-Secure", - "id": 416246472, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 3, - "year": 2021, - "bes_cve_details_id": "", - "cvedetails_product_id": "575", - "cvedetails_vendor_id": "86" - }, - "project_repos": { - "main_github_url": "https://github.com/drupal/drupal", - "main_bes_url": "https://github.com/Be-Secure/drupal", - "all_projects": [{ - "name": "drupal", - "url": "https://github.com/drupal/drupal" - } - - ], - - - "all_bes_repos": [{ - "id": 403003757, - "name": "drupal", - "url": "https://github.com/Be-Secure/drupal" - } - - ] - }, - "license": { - "key": "gpl-2.0", - "name": "GNU General Public License v2.0", - "spdx_id": "GPL-2.0", - "url": "https://api.github.com/licenses/gpl-2.0", - "node_id": "MDc6TGljZW5zZTg=" - }, - "language": [ - - "PHP", - "JavaScript" - - ], - "tags": { - "IND": [ - "ALL" - ], - - "COM-C": { - "Community": "Drupal" - }, - "TD-U": [ - "TD-U-W" - ] - - } - - - }, - - - - { - "id": 297, - "bes_tracking_id": 297, - "name": "appflowy", - "full_name": "Be-Secure/appflowy", - "description": "AppFlowy is an open-source alternative to Notion. You are in charge of your data and customizations. Built with Flutter and Rust. ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 24619, - "open_issues": 0, - "created_at": "2021-11-18T16:56:30Z", - "updated_at": "2022-08-26T01:42:52Z", - "pushed_at": "2022-08-26T01:42:43Z", - "git_url": "git://github.com/Be-Secure/appflowy.git", - "clone_url": "https://github.com/Be-Secure/appflowy.git", - "html_url": "https://github.com/Be-Secure/appflowy", - "homepage": "https://www.appflowy.io", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/AppFlowy-IO/appflowy", - "main_bes_url": "https://github.com/Be-Secure/appflowy", - "all_projects": { - "appflowy": "https://github.com/AppFlowy-IO/appflowy" - - }, - "all_bes_repos": [{ - "id": 429510465, - "name": "appflowy", - "url": "https://github.com/Be-Secure/appflowy" - } - - ] - }, - "license": { - "key": "agpl-3.0", - "name": "GNU Affero General Public License v3.0", - "spdx_id": "AGPL-3.0", - "url": "https://api.github.com/licenses/agpl-3.0", - "node_id": "MDc6TGljZW5zZTE=" - - }, - "language": [ - - "Dart", "Rust", "CMake", "C++", "swift", "Ruby" - ], - - "tags": { - "IND": ["ALL"], - "SD": [""], - "COM": ["COM"], - "TD-U": ["TD-U-DAA"] - } - }, - - - - - { - "id": 296, - "bes_tracking_id": 296, - "name": "windster-tailwind-dashboard", - "full_name": "Be-Secure/windster-tailwind-dashboard", - "description": " Free and open-source admin dashboard interface built on top of Tailwind CSS and Flowbite ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 5205, - "open_issues": 0, - "created_at": "2021-11-26T08:56:43Z", - "updated_at": "2021-11-26T08:56:44Z", - "pushed_at": "2021-11-22T17:32:24Z", - "git_url": "git://github.com/Be-Secure/windster-tailwind-dashboard.git", - "clone_url": "https://github.com/Be-Secure/windster-tailwind-dashboard.git", - "html_url": "https://github.com/Be-Secure/windster-tailwind-dashboard", - "homepage": "https://demo.themesberg.com/windster/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/themesberg/windster-tailwind-dashboard", - "main_bes_url": "https://github.com/Be-Secure/windster-tailwind-dashboard", - "all_projects": { - "windster-tailwind-dashboard": "https://github.com/themesberg/windster-tailwind-dashboard" - - }, - "all_bes_repos": [{ - "id": 432113184, - "name": "windster-tailwind-dashboard", - "url": "https://github.com/Be-Secure/windster-tailwind-dashboard" - } - - ] - }, - "license": { - "key": "mit", - "name": "MIT License ", - "spdx_id": "mit", - "url": "https://api.github.com/licenses/mit", - "node_id": "MDc6TGljZW5zZTEz" - - }, - "language": [ - - "Javascript", "CSS", "HTML" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "COM" - ], - - "TD-U": [ - "TD-U-DAA" - - ] - - - } - - - }, - - { - "id": 284, - "bes_tracking_id": 284, - "name": "druid", - "full_name": "Be-Secure/druid", - "description": " high performance real-time analytics database. Druid's main value add is to reduce time to insight and action. ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 237444, - "open_issues": 0, - "created_at": "2021-12-14T04:51:35Z", - "updated_at": "2021-12-14T04:51:36Z", - "pushed_at": "2021-12-14T03:06:01Z", - "git_url": "git://github.com/Be-Secure/druid.git", - "clone_url": "https://github.com/Be-Secure/druid.git", - "html_url": "https://github.com/Be-Secure/druid", - "homepage": "https://druid.apache.org/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 2, - "year": 2022, - "bes_cve_details_id": "", - "cvedetails_product_id": "81604", - "cvedetails_vendor_id": "45" - }, - "project_repos": { - "main_github_url": "https://github.com/apache/druid", - "main_bes_url": "https://github.com/Be-Secure/druid", - "all_projects": { - "druid": "https://github.com/apache/druid" - - }, - "all_bes_repos": [{ - "id": 438121602, - "name": "druid", - "url": "https://github.com/Be-Secure/druid" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Java", "Shell", "Python", "Typescript", "SCSS", "Tex" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "APACHE" - ], - - "TD-U": [ - "TD-U-DAA" - - ] - - - } - - - }, - { - "id": 285, - "bes_tracking_id": 285, - "name": "flink", - "full_name": "Be-Secure/flink", - "description": "Flink is an open source stream processing framework with powerful stream- and batch-processing capabilities. ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 462016, - "open_issues": 0, - "created_at": "2021-12-14T04:52:55Z", - "updated_at": "2022-08-26T01:33:55Z", - "pushed_at": "2022-08-26T01:32:46Z", - "git_url": "git://github.com/Be-Secure/flink.git", - "clone_url": "https://github.com/Be-Secure/flink.git", - "html_url": "https://github.com/Be-Secure/flink", - "homepage": null, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 2, - "year": 2021, - "bes_cve_details_id": "", - "cvedetails_product_id": "88972", - "cvedetails_vendor_id": "45" - }, - "project_repos": { - "main_github_url": "https://github.com/apache/flink", - "main_bes_url": "https://github.com/Be-Secure/flink ", - "all_projects": { - "flink": "https://github.com/apache/flink" - - }, - "all_bes_repos": [{ - "id": 438121874, - "name": "flink", - "url": "https://github.com/Be-Secure/flink" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Java", "Shell", "Python", "Typescript", "Scala", "HivaQL" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "APACHE" - ], - - "TD-U": [ - "TD-U-DAA" - - ] - - - } - - - }, - { - "id": 286, - "bes_tracking_id": 286, - "name": "solr", - "full_name": "Be-Secure/solr", - "description": "fast open source search platform for all your enterprise, e-commerce, and analytics needs ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 463806, - "open_issues": 0, - "created_at": "2021-12-14T04:51:09Z", - "updated_at": "2022-08-26T01:35:42Z", - "pushed_at": "2022-08-26T01:34:01Z", - "git_url": "git://github.com/Be-Secure/solr.git", - "clone_url": "https://github.com/Be-Secure/solr.git", - "html_url": "https://github.com/Be-Secure/solr", - "homepage": "https://solr.apache.org/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 7, - "year": 2021, - "bes_cve_details_id": "", - "cvedetails_product_id": "18263", - "cvedetails_vendor_id": "45" - }, - "project_repos": { - "main_github_url": "https://github.com/apache/solr", - "main_bes_url": "https://github.com/Be-Secure/solr", - "all_projects": { - "solr": "https://github.com/apache/solr" - - }, - "all_bes_repos": [{ - "id": 438121508, - "name": "solr", - "url": "https://github.com/Be-Secure/solr" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Java", "Shell", "Batchfile", "CSS", "HTML", "Python" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "APACHE" - ], - - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - { - "id": 287, - "bes_tracking_id": 287, - "name": "Nettacker", - "full_name": "Be-Secure/Nettacker", - "description": "THIS SOFTWARE WAS CREATED FOR AUTOMATED PENETRATION TESTING AND INFORMATION GATHERING. ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 8203, - "open_issues": 0, - "created_at": "2021-12-14T15:27:57Z", - "updated_at": "2022-08-26T01:35:02Z", - "pushed_at": "2022-08-26T01:34:56Z", - "git_url": "git://github.com/Be-Secure/Nettacker.git", - "clone_url": "https://github.com/Be-Secure/Nettacker.git", - "html_url": "https://github.com/Be-Secure/Nettacker", - "homepage": null, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/OWASP/Nettacker", - "main_bes_url": "https://github.com/Be-Secure/Nettacker", - "all_projects": { - "Nettacker": "https://github.com/OWASP/Nettacker" - - }, - "all_bes_repos": [{ - "id": 438304070, - "name": "Nettacker", - "url": "https://github.com/Be-Secure/Nettacker" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "HTML", "Python", "Javascript", "CSS" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "OWASP" - ], - - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - - { - "id": 288, - "bes_tracking_id": 288, - "name": "elasticsearch", - "full_name": "Be-Secure/elasticsearch", - "description": " use Elasticsearch to store, search, and manage data ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 989354, - "open_issues": 0, - "created_at": "2021-12-14T04:55:04Z", - "updated_at": "2022-08-26T01:37:39Z", - "pushed_at": "2022-08-26T01:36:06Z", - "git_url": "git://github.com/Be-Secure/elasticsearch.git", - "clone_url": "https://github.com/Be-Secure/elasticsearch.git", - "html_url": "https://github.com/Be-Secure/elasticsearch", - "homepage": "https://www.elastic.co/products/elasticsearch", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - "count": 2, - "year": 2022, - "bes_cve_details_id": "", - "cvedetails_product_id": "51138", - "cvedetails_vendor_id": "16559" - }, - "project_repos": { - "main_github_url": "https://github.com/elastic/elasticsearch", - "main_bes_url": "https://github.com/Be-Secure/elasticsearch", - "all_projects": { - "elasticsearch": "https://github.com/elastic/elasticsearch" - - }, - "all_bes_repos": [{ - "id": 438122324, - "name": "elasticsearch", - "url": "https://github.com/Be-Secure/elasticsearch" - } - - ] - }, - "license": { - "key": "other", - "name": "other", - "MIT": "NOASSERTION", - "url": null, - "node_id": "MDc6TGljZW5zZTA=" - - }, - "language": [ - - "Groovy", "Shell", "Java", "Python", "ANTLR", "Dockerfile" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "ELASTIC COMMUNITY" - ], - - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - { - "id": 289, - "bes_tracking_id": 289, - "name": "logstash", - "full_name": "Be-Secure/logstash", - "description": "is a server-side data processing pipeline that ingests data from a multitude of sources simultaneously, transforms it, and then sends it to your favorite stash ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 118312, - "open_issues": 0, - "created_at": "2021-12-14T04:54:57Z", - "updated_at": "2022-08-26T01:37:48Z", - "pushed_at": "2022-08-26T01:37:07Z", - "git_url": "git://github.com/Be-Secure/logstash.git", - "clone_url": "https://github.com/Be-Secure/logstash.git", - "html_url": "https://github.com/Be-Secure/logstash", - "homepage": "https://www.elastic.co/products/logstash", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2021, - "bes_cve_details_id": "", - "cvedetails_product_id": "61290", - "cvedetails_vendor_id": "16559" - }, - "project_repos": { - "main_github_url": "https://github.com/elastic/logstash", - "main_bes_url": "https://github.com/Be-Secure/logstash", - "all_projects": { - "logstash": "https://github.com/elastic/logstash" - - }, - "all_bes_repos": [{ - "id": 438122296, - "name": "logstash", - "url": "https://github.com/Be-Secure/logstash" - } - - ] - }, - "license": { - "key": "other", - "name": "other", - "MIT": "NOASSERTION", - "url": null, - "node_id": "MDc6TGljZW5zZTA=" - - }, - "language": [ - - "Java", "Shell", "Python", "Ruby", "HTML", "CSS" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "ELASTIC COMMUNITY" - ], - - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - { - "id": 290, - "bes_tracking_id": 290, - "name": "struts", - "full_name": "Be-Secure/struts", - "description": " free open-source solution for creating Java web applications. ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 77600, - "open_issues": 0, - "created_at": "2021-12-14T04:50:27Z", - "updated_at": "2021-12-14T04:50:28Z", - "pushed_at": "2021-12-12T12:24:40Z", - "git_url": "git://github.com/Be-Secure/struts.git", - "clone_url": "https://github.com/Be-Secure/struts.git", - "html_url": "https://github.com/Be-Secure/struts", - "homepage": null, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2022, - "bes_cve_details_id": "", - "cvedetails_product_id": "6117", - "cvedetails_vendor_id": "45" - }, - "project_repos": { - "main_github_url": "https://github.com/apache/struts", - "main_bes_url": "https://github.com/Be-Secure/struts", - "all_projects": { - "struts": "https://github.com/apache/struts" - - }, - "all_bes_repos": [{ - "id": 438121340, - "name": "struts", - "url": "https://github.com/Be-Secure/struts" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Java", "HTML", "FreeMarker" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "APACHE" - ], - - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - { - "id": 291, - "bes_tracking_id": 291, - "name": "primeng", - "full_name": "Be-Secure/primeng", - "description": "Angular UI Component Library ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 90552, - "open_issues": 0, - "created_at": "2021-12-09T05:55:05Z", - "updated_at": "2022-08-26T01:40:15Z", - "pushed_at": "2022-08-26T01:38:55Z", - "git_url": "git://github.com/Be-Secure/primeng.git", - "clone_url": "https://github.com/Be-Secure/primeng.git", - "html_url": "https://github.com/Be-Secure/primeng", - "homepage": "https://www.primefaces.org/angular", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/primefaces/primeng", - "main_bes_url": "https://github.com/Be-Secure/primeng", - "all_projects": { - "primeng": "https://github.com/primefaces/primeng" - - }, - "all_bes_repos": [{ - "id": 436499200, - "name": "primeng", - "url": "https://github.com/Be-Secure/primeng" - } - - ] - }, - "license": { - "key": "mit", - "name": "MIT License", - - "url": "https://api.github.com/licenses/mit", - "node_id": "MDc6TGljZW5zZTEz" - - }, - "language": [ - - "CSS", "HTML", "Typescript" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "COM" - ], - - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - { - "id": 292, - "bes_tracking_id": 292, - "name": "ThreatPlaybook", - "full_name": "Be-Secure/ThreatPlaybook", - "description": "unified DevSecOps Framework that allows you to go from iterative, collaborative Threat Modeling to Application Security Test Orchestration ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 3019, - "open_issues": 0, - "created_at": "2021-12-20T08:58:39Z", - "updated_at": "2021-12-20T08:58:40Z", - "pushed_at": "2021-12-04T00:11:26Z", - "git_url": "git://github.com/Be-Secure/ThreatPlaybook.git", - "clone_url": "https://github.com/Be-Secure/ThreatPlaybook.git", - "html_url": "https://github.com/Be-Secure/ThreatPlaybook", - "homepage": "https://threatplaybook.io", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/we45/ThreatPlaybook", - "main_bes_url": "https://github.com/Be-Secure/ThreatPlaybook", - "all_projects": { - "ThreatPlaybook": "https://github.com/we45/ThreatPlaybook" - - }, - "all_bes_repos": [{ - "id": 440103696, - "name": "ThreatPlaybook", - "url": "https://github.com/Be-Secure/ThreatPlaybook" - } - - ] - }, - "license": null - - , - "language": [ - - "Python", "Javascript", "Vue" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "SD-AS" - ], - "COM": [ - "COM" - ], - - "TD-U": [ - "" - - ] - - - } - - - }, - { - "id": 293, - "bes_tracking_id": 293, - "name": "toit", - "full_name": "Be-Secure/toit", - "description": "Program your microcontrollers in a fast and robust high-level language. ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 5122, - "open_issues": 0, - "created_at": "2021-11-26T08:55:57Z", - "updated_at": "2021-11-26T08:55:58Z", - "pushed_at": "2021-11-26T07:21:45Z", - "git_url": "git://github.com/Be-Secure/toit.git", - "clone_url": "https://github.com/Be-Secure/toit.git", - "html_url": "https://github.com/Be-Secure/toit", - "homepage": null, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/toitlang/toit", - "main_bes_url": "https://github.com/Be-Secure/toit", - "all_projects": { - "toit": "https://github.com/toitlang/toit" - - }, - "all_bes_repos": [{ - "id": 432112968, - "name": "toit", - "url": "https://github.com/Be-Secure/toit" - } - - ] - }, - "license": { - "key": "lgpl-2.1", - "name": "GNU Lesser General Public License v2.1", - "spdx_id": "LGPL-2.1", - "url": "https://api.github.com/licenses/lgpl-2.1", - "node_id": "MDc6TGljZW5zZTEx" - - }, - "language": [ - - "Go", "Cmake", "C++" - ], - - "tags": { - "IND": [ - "AM" - ], - "SD": [ - "" - ], - "COM": [ - "COM" - ], - - "TD-U": [ - "TD-U-IoT" - - ] - - - } - - - }, - { - "id": 274, - "bes_tracking_id": 274, - "name": "plexus-interop", - "full_name": "Be-Secure/plexus-interop", - "description": "enable development of extensible workflows connecting independent apps developed by different organizations in different technologies ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 9505, - "open_issues": 0, - "created_at": "2022-01-04T12:40:03Z", - "updated_at": "2022-01-04T12:40:04Z", - "pushed_at": "2021-12-02T12:46:39Z", - "git_url": "git://github.com/Be-Secure/plexus-interop.git", - "clone_url": "https://github.com/Be-Secure/plexus-interop.git", - "html_url": "https://github.com/Be-Secure/plexus-interop", - "homepage": "https://plexus.finos.org", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/finos/plexus-interop", - "main_bes_url": "https://github.com/Be-Secure/plexus-interop", - "all_projects": { - "plexus-interop": "https://github.com/finos/plexus-interop" - - }, - "all_bes_repos": [{ - "id": 444414166, - "name": "plexus-interop", - "url": "https://github.com/Be-Secure/plexus-interop" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Java", "Javascript", "C#", "HTML", "Xtend", "Typescript" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "FINOS" - ], - - "TD-U": [ - "TD-U-DKA" - - ] - - - } - - - }, - { - "id": 275, - "bes_tracking_id": 275, - "name": "scikit-learn", - "full_name": "Be-Secure/scikit-learn", - "description": " its a Python module for machine learning built on top of SciPy ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 127883, - "open_issues": 0, - "created_at": "2021-09-05T03:33:19Z", - "updated_at": "2021-09-22T10:32:23Z", - "pushed_at": "2021-09-22T10:31:40Z", - "git_url": "git://github.com/Be-Secure/scikit-learn.git", - "clone_url": "https://github.com/Be-Secure/scikit-learn.git", - "html_url": "https://github.com/Be-Secure/scikit-learn", - "homepage": "https://scikit-learn.org", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 2, - "year": 2020, - "bes_cve_details_id": "", - "cvedetails_product_id": "86232", - "cvedetails_vendor_id": "23349" - }, - "project_repos": { - "main_github_url": "https://github.com/scikit-learn/scikit-learn", - "main_bes_url": "https://github.com/Be-Secure/scikit-learn", - "all_projects": { - "scikit-learn": "https://github.com/scikit-learn/scikit-learn" - - }, - "all_bes_repos": [{ - "id": 403206631, - "name": "scikit-learn", - "url": "https://github.com/Be-Secure/scikit-learn" - } - - ] - }, - "license": { - "key": "bsd-3-clause", - "name": "BSD 3-Clause \"New\" or \"Revised\" License", - "spdx_id": "BSD-3-Clause", - "url": "https://api.github.com/licenses/bsd-3-clause", - "node_id": "MDc6TGljZW5zZTU=" - - }, - "language": [ - - "Python", "C++", "Cython" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "COM" - ], - - "TD-U": [ - "TU-U-AI/ML" - - ] - - - } - - - }, - { - "id": 276, - "bes_tracking_id": 276, - "name": "codepropertygraph", - "full_name": "Be-Secure/codepropertygraph", - "description": "its an extensible and language-agnostic representation of program code designed for incremental and distributed code analysis. ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 7811, - "open_issues": 0, - "created_at": "2022-01-05T06:51:40Z", - "updated_at": "2022-08-26T00:56:48Z", - "pushed_at": "2022-08-26T00:56:38Z", - "git_url": "git://github.com/Be-Secure/codepropertygraph.git", - "clone_url": "https://github.com/Be-Secure/codepropertygraph.git", - "html_url": "https://github.com/Be-Secure/codepropertygraph", - "homepage": null, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/ShiftLeftSecurity/codepropertygraph", - "main_bes_url": "https://github.com/Be-Secure/codepropertygraph", - "all_projects": { - "codepropertygraph": "https://github.com/ShiftLeftSecurity/codepropertygraph" - - }, - "all_bes_repos": [{ - "id": 444695414, - "name": "codepropertygraph", - "url": "https://github.com/Be-Secure/codepropertygraph" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Scala" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "SHIFTLEFT SECURITY" - ], - - "TD-U": [ - "TU-U-DA" - - ] - - - } - - - }, - - { - "id": 277, - "bes_tracking_id": 277, - "name": "skywalking", - "full_name": "Be-Secure/skywalking", - "description": "its an open source APM system, including monitoring, tracing, diagnosing capabilities for distributed system in Cloud Native architecture. ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 164398, - "open_issues": 0, - "created_at": "2021-12-21T16:16:14Z", - "updated_at": "2022-08-26T00:59:00Z", - "pushed_at": "2022-08-26T00:58:02Z", - "git_url": "git://github.com/Be-Secure/skywalking.git", - "clone_url": "https://github.com/Be-Secure/skywalking.git", - "html_url": "https://github.com/Be-Secure/skywalking", - "homepage": "https://skywalking.apache.org/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2022, - "bes_cve_details_id": "", - "cvedetails_product_id": "86699", - "cvedetails_vendor_id": "45" - }, - "project_repos": { - "main_github_url": "https://github.com/apache/skywalking", - "main_bes_url": "https://github.com/Be-Secure/skywalking", - "all_projects": { - "skywalking": "https://github.com/apache/skywalking" - - }, - "all_bes_repos": [{ - "id": 440578021, - "name": "skywalking", - "url": "https://github.com/Be-Secure/skywalking" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Python", "Shell", "Java", "Batchfile", "Freemarker", "ANTLR" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "APACHE" - ], - - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - { - "id": 278, - "bes_tracking_id": 278, - "name": "crowdsec", - "full_name": "Be-Secure/crowdsec", - "description": "open-source and participative IPS able to analyze visitor behavior & provide an adapted response to all kinds of attacks. ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 92648, - "open_issues": 0, - "created_at": "2021-12-20T09:01:06Z", - "updated_at": "2021-12-20T09:01:07Z", - "pushed_at": "2021-12-18T22:34:46Z", - "git_url": "git://github.com/Be-Secure/crowdsec.git", - "clone_url": "https://github.com/Be-Secure/crowdsec.git", - "html_url": "https://github.com/Be-Secure/crowdsec", - "homepage": "https://crowdsec.net", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/crowdsecurity/crowdsec", - "main_bes_url": "https://github.com/Be-Secure/crowdsec", - "all_projects": { - "crowdsec": "https://github.com/crowdsecurity/crowdsec" - - }, - "all_bes_repos": [{ - "id": 440104375, - "name": "crowdsec", - "url": "https://github.com/Be-Secure/crowdsec" - } - - ] - }, - "license": { - "key": "mit", - "name": "MIT License", - - "url": "https://api.github.com/licenses/mit", - "node_id": "MDc6TGljZW5zZTEz" - - }, - "language": [ - - "Go", "Shell", "Makefile" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "COM" - ], - - "TD-U": [ - "SD-NS" - - ] - - - } - - - }, - { - "id": 279, - "bes_tracking_id": 279, - "name": "swagger-codegen", - "full_name": "Be-Secure/swagger-codegen", - "description": " contains a template-driven engine to generate documentation, API clients and server stubs in different languages by parsing your OpenAPI ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 102044, - "open_issues": 0, - "created_at": "2021-12-20T09:01:32Z", - "updated_at": "2021-12-20T09:01:34Z", - "pushed_at": "2021-12-20T03:30:16Z", - "git_url": "git://github.com/Be-Secure/swagger-codegen.git", - "clone_url": "https://github.com/Be-Secure/swagger-codegen.git", - "html_url": "https://github.com/Be-Secure/swagger-codegen", - "homepage": "http://swagger.io", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 2, - "year": 2017, - "bes_cve_details_id": "", - "cvedetails_product_id": "41598", - "cvedetails_vendor_id": "17280" - }, - "project_repos": { - "main_github_url": "https://github.com/swagger-api/swagger-codegen", - "main_bes_url": "https://github.com/Be-Secure/swagger-codegen", - "all_projects": { - "swagger-codegen": "https://github.com/swagger-api/swagger-codegen" - - }, - "all_bes_repos": [{ - "id": 440104483, - "name": "swagger-codegen", - "url": "https://github.com/Be-Secure/swagger-codegen" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Shell", "Mustache", "Batchfile", "Java", "Typescript", "Apex" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "COM" - ], - - "TD-U": [ - "TD-U-APD" - - ] - - - } - - - }, - { - "id": 280, - "bes_tracking_id": 280, - "name": "SeleniumLibrary", - "full_name": "Be-Secure/SeleniumLibrary", - "description": " its a web testing library for Robot Framework that utilizes the Selenium tool internally. ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 113592, - "open_issues": 0, - "created_at": "2021-12-20T08:58:14Z", - "updated_at": "2022-08-26T01:24:48Z", - "pushed_at": "2022-08-26T01:24:42Z", - "git_url": "git://github.com/Be-Secure/SeleniumLibrary.git", - "clone_url": "https://github.com/Be-Secure/SeleniumLibrary.git", - "html_url": "https://github.com/Be-Secure/SeleniumLibrary", - "homepage": null, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/robotframework/SeleniumLibrary", - "main_bes_url": "https://github.com/Be-Secure/SeleniumLibrary", - "all_projects": { - "SeleniumLibrary": "https://github.com/robotframework/SeleniumLibrary" - - }, - "all_bes_repos": [{ - "id": 440103598, - "name": "SeleniumLibrary", - "url": "https://github.com/Be-Secure/SeleniumLibrary" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": ["Python", "HTML", "Robotframework"], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "COM" - ], - - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - { - "id": 281, - "bes_tracking_id": 281, - "name": "horusec", - "full_name": "Be-Secure/horusec", - "description": "improves identification of vulnerabilities in your project with just one command. ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 77392, - "open_issues": 0, - "created_at": "2021-11-16T08:38:13Z", - "updated_at": "2022-08-26T01:26:21Z", - "pushed_at": "2022-08-26T01:25:53Z", - "git_url": "git://github.com/Be-Secure/horusec.git", - "clone_url": "https://github.com/Be-Secure/horusec.git", - "html_url": "https://github.com/Be-Secure/horusec", - "homepage": "https://horusec.io/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/ZupIT/horusec", - "main_bes_url": "https://github.com/Be-Secure/horusec", - "all_projects": { - "horusec": "https://github.com/ZupIT/horusec" - - }, - "all_bes_repos": [{ - "id": 428577900, - "name": "horusec", - "url": "https://github.com/Be-Secure/horusec" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Go", "Shell" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "COM" - ], - - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - { - "id": 282, - "bes_tracking_id": 282, - "name": "opstrace", - "full_name": "Be-Secure/opstrace", - "description": " The Open Source Observability Distribution ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 53863, - "open_issues": 0, - "created_at": "2021-12-20T08:57:39Z", - "updated_at": "2021-12-20T08:57:40Z", - "pushed_at": "2021-12-15T00:15:32Z", - "git_url": "git://github.com/Be-Secure/opstrace.git", - "clone_url": "https://github.com/Be-Secure/opstrace.git", - "html_url": "https://github.com/Be-Secure/opstrace", - "homepage": "https://opstrace.com", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/opstrace/opstrace", - "main_bes_url": "https://github.com/Be-Secure/opstrace", - "all_projects": { - "opstrace": "https://github.com/opstrace/opstrace" - - }, - "all_bes_repos": [{ - "id": 440103445, - "name": "opstrace", - "url": "https://github.com/Be-Secure/opstrace" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Shell", "Typescript", "Javascript", "Markdown", "Go", "Makefile" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "COM" - ], - - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - { - "id": 283, - "bes_tracking_id": 283, - "name": "dubbo", - "full_name": "Be-Secure/dubbo", - "description": " Apache Dubbo is a high-performance, java based, open source RPC framework. ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 40757, - "open_issues": 0, - "created_at": "2021-12-14T04:54:10Z", - "updated_at": "2022-08-26T01:31:27Z", - "pushed_at": "2022-08-26T01:30:13Z", - "git_url": "git://github.com/Be-Secure/dubbo.git", - "clone_url": "https://github.com/Be-Secure/dubbo.git", - "html_url": "https://github.com/Be-Secure/dubbo", - "homepage": "https://dubbo.apache.org/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 2, - "year": 2022, - "bes_cve_details_id": "", - "cvedetails_product_id": "76651", - "cvedetails_vendor_id": "45" - }, - "project_repos": { - "main_github_url": "https://github.com/apache/dubbo", - "main_bes_url": "https://github.com/Be-Secure/dubbo", - "all_projects": { - "dubbo": "https://github.com/apache/dubbo" - - }, - "all_bes_repos": [{ - "id": 438122125, - "name": "dubbo", - "url": "https://github.com/Be-Secure/dubbo" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Java", "Shell", "Lex", "Mustache", "Batchfile", "Javascript" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "APACHE" - ], - - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - { - "id": 265, - "bes_tracking_id": 265, - "name": "VTK", - "full_name": "Be-Secure/VTK", - "description": "VTK is an open-source software system for image processing, 3D graphics, volume rendering and visualization. ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 267559, - "open_issues": 0, - "created_at": "2022-08-26T00:24:52Z", - "updated_at": "2022-08-25T03:35:16Z", - "pushed_at": "2022-08-25T19:33:15Z", - "git_url": "git://github.com/Be-Secure/VTK.git", - "clone_url": "https://github.com/Be-Secure/VTK.git", - "html_url": "https://github.com/Be-Secure/VTK", - "homepage": "https://gitlab.kitware.com/vtk/vtk", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/Kitware/VTK", - "main_bes_url": "https://github.com/Be-Secure/VTK", - "all_projects": { - "VTK": "https://github.com/Kitware/VTK" - - }, - "all_bes_repos": [{ - "id": 529059974, - "name": "VTK", - "url": "https://github.com/Be-Secure/VTK" - } - - ] - }, - "license": { - "key": "other", - "name": "other", - "spdx_id": "NOASSERTION", - "url": null, - "node_id": "MDc6TGljZW5zZTA=" - - }, - "language": [ - - "C", "C++", "Python", "Java", "Cmake", "GLSL" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "" - ], - - "TD-U": [ - "TD-U-DAA" - - ] - - - } - - - }, - { - "id": 266, - "bes_tracking_id": 266, - "name": "AarogyaSetu_Android", - "full_name": "Be-Secure/AarogyaSetu_Android", - "description": "aimed at augmenting the initiatives of the Government of India ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 727, - "open_issues": 0, - "created_at": "2022-01-04T12:30:56Z", - "updated_at": "2022-01-04T12:30:57Z", - "pushed_at": "2021-08-15T09:57:42Z", - "git_url": "git://github.com/Be-Secure/AarogyaSetu_Android.git", - "clone_url": "https://github.com/Be-Secure/AarogyaSetu_Android.git", - "html_url": "https://github.com/Be-Secure/AarogyaSetu_Android", - "homepage": "https://www.aarogyasetu.gov.in/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/nic-delhi/AarogyaSetu_Android", - "main_bes_url": "https://github.com/Be-Secure/AarogyaSetu_Android", - "all_projects": { - "AarogyaSetu_Android": "https://github.com/nic-delhi/AarogyaSetu_Android" - - }, - "all_bes_repos": [{ - "id": 444411461, - "name": "AarogyaSetu_Android", - "url": "https://github.com/Be-Secure/AarogyaSetu_Android" - } - - ] - }, - "license": { - "key": "other", - "name": "other", - "spdx_id": "NOASSERTION", - "url": null, - "node_id": "MDc6TGljZW5zZTA=" - - }, - "language": [ - - "Kotlin", "Java" - ], - - "tags": { - "IND": [ - "HLS" - ], - "SD": [ - "" - ], - "COM": [ - "" - ], - - "TD-U": [ - "TD-U-MoA" - - ] - - - } - - - }, - { - "id": 267, - "bes_tracking_id": 267, - "name": "grails-core", - "full_name": "Be-Secure/grails-core", - "description": "used to build web applications with the Groovy programming language. ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 353422, - "open_issues": 0, - "created_at": "2022-01-04T12:33:06Z", - "updated_at": "2022-01-04T12:33:08Z", - "pushed_at": "2022-01-04T09:51:04Z", - "git_url": "git://github.com/Be-Secure/grails-core.git", - "clone_url": "https://github.com/Be-Secure/grails-core.git", - "html_url": "https://github.com/Be-Secure/grails-core", - "homepage": "http://grails.org", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/grails/grails-core", - "main_bes_url": "https://github.com/Be-Secure/grails-core", - "all_projects": { - "grails-core": "https://github.com/grails/grails-core" - - }, - "all_bes_repos": [{ - "id": 444412095, - "name": "grails-core", - "url": "https://github.com/Be-Secure/grails-core" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "HTML", "Java", "Groovy" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "GRAIL" - ], - - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - { - "id": 268, - "bes_tracking_id": 268, - "name": "go-ethereum", - "full_name": "Be-Secure/go-ethereum", - "description": " Official Go implementation of the Ethereum protocol ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 175733, - "open_issues": 0, - "created_at": "2022-01-04T12:34:30Z", - "updated_at": "2022-01-04T12:34:32Z", - "pushed_at": "2022-01-04T10:15:37Z", - "git_url": "git://github.com/Be-Secure/go-ethereum.git", - "clone_url": "https://github.com/Be-Secure/go-ethereum.git", - "html_url": "https://github.com/Be-Secure/go-ethereum", - "homepage": "https://geth.ethereum.org", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/ethereum/go-ethereum", - "main_bes_url": "https://github.com/Be-Secure/go-ethereum", - "all_projects": { - "go-ethereum": "https://github.com/ethereum/go-ethereum" - - }, - "all_bes_repos": [{ - "id": 444412496, - "name": "go-ethereum", - "url": "https://github.com/Be-Secure/go-ethereum" - } - - ] - }, - "license": { - "key": "lgpl-3.0", - "name": "GNU Lesser General Public License v3.0", - "spdx_id": "LGPL-3.0", - "url": "https://api.github.com/licenses/lgpl-3.0", - "node_id": "MDc6TGljZW5zZTEy" - - }, - "language": [ - - "Go ", "C ", "Java ", "Javascript", "Assembly", "Sage" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "COM" - ], - - "TD-U": [ - "TD-U-BLN" - - ] - - - } - - - }, - { - "id": 269, - "bes_tracking_id": 269, - "name": "remix-plugin", - "full_name": "Be-Secure/remix-plugin", - "description": "It provides an extendable engine that simplifies communication between multiple internal or external sources. ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 5142, - "open_issues": 0, - "created_at": "2022-01-04T12:35:19Z", - "updated_at": "2022-01-04T12:35:21Z", - "pushed_at": "2021-12-16T22:04:27Z", - "git_url": "git://github.com/Be-Secure/remix-plugin.git", - "clone_url": "https://github.com/Be-Secure/remix-plugin.git", - "html_url": "https://github.com/Be-Secure/remix-plugin", - "homepage": null, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/ethereum/remix-plugin", - "main_bes_url": "https://github.com/Be-Secure/remix-plugin", - "all_projects": { - "remix-plugin": "https://github.com/ethereum/remix-plugin" - - }, - "all_bes_repos": [{ - "id": 444412714, - "name": "remix-plugin", - "url": "https://github.com/Be-Secure/remix-plugin" - } - - ] - }, - "license": null - - , - "language": [ - - "Javascript", "Typescript", "CSS" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "COM" - ], - - "TD-U": [ - "TD-U-BLN" - - ] - - - } - - - }, - { - "id": 270, - "bes_tracking_id": 270, - "name": "metamask-extension", - "full_name": "Be-Secure/metamask-extension", - "description": "The MetaMask browser extension enables browsing Ethereum blockchain enabled websites ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 169982, - "open_issues": 0, - "created_at": "2022-01-04T12:35:56Z", - "updated_at": "2022-01-04T12:35:58Z", - "pushed_at": "2022-01-04T12:03:53Z", - "git_url": "git://github.com/Be-Secure/metamask-extension.git", - "clone_url": "https://github.com/Be-Secure/metamask-extension.git", - "html_url": "https://github.com/Be-Secure/metamask-extension", - "homepage": "https://metamask.io", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/MetaMask/metamask-extension", - "main_bes_url": "https://github.com/Be-Secure/metamask-extension", - "all_projects": { - "metamask-extension": "https://github.com/MetaMask/metamask-extension" - - }, - "all_bes_repos": [{ - "id": 444412921, - "name": "metamask-extension", - "url": "https://github.com/Be-Secure/metamask-extension" - } - - ] - }, - "license": { - "key": "other", - "name": "other", - "spdx_id": "NOASSERTION", - "url": null, - "node_id": "MDc6TGljZW5zZTA=" - - }, - "language": [ - - "Javascript", "Shell", "Typescript", "HTML", "SCSS", "Awk" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "COM" - ], - - "TD-U": [ - "TD-U-BLN" - - ] - - - } - - - }, - - { - "id": 271, - "bes_tracking_id": 271, - "name": "corda", - "full_name": "Be-Secure/corda", - "description": "allows you to build interoperable blockchain networks that transact in strict privacy. ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 283475, - "open_issues": 0, - "created_at": "2022-01-04T12:38:24Z", - "updated_at": "2022-01-04T12:38:25Z", - "pushed_at": "2022-01-04T12:33:25Z", - "git_url": "git://github.com/Be-Secure/corda.git", - "clone_url": "https://github.com/Be-Secure/corda.git", - "html_url": "https://github.com/Be-Secure/corda", - "homepage": "https://www.corda.net", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2022, - "bes_cve_details_id": "", - "cvedetails_product_id": "109932", - "cvedetails_vendor_id": "26449" - }, - "project_repos": { - "main_github_url": "https://github.com/corda/corda", - "main_bes_url": "https://github.com/Be-Secure/corda", - "all_projects": { - "corda": "https://github.com/corda/corda" - - }, - "all_bes_repos": [{ - "id": 444413650, - "name": "corda", - "url": "https://github.com/Be-Secure/corda" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Python", "Shell", "Kotlin", "Java", "Groovy", "C++" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "COM" - ], - - "TD-U": [ - "TD-U-BLN" - - ] - - - } - - - }, - { - "id": 272, - "bes_tracking_id": 272, - "name": "ITK", - "full_name": "Be-Secure/ITK", - "description": " ITK builds on a proven, spatially-oriented architecture for processing, segmentation, and registration of scientific images in two, three, or more dimensions.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 188751, - "open_issues": 0, - "created_at": "2022-08-26T00:48:30Z", - "updated_at": "2022-08-25T06:10:33Z", - "pushed_at": "2022-08-25T20:40:41Z", - "git_url": "git://github.com/Be-Secure/ITK.git", - "clone_url": "https://github.com/Be-Secure/ITK.git", - "html_url": "https://github.com/Be-Secure/ITK", - "homepage": "https://itk.org", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/InsightSoftwareConsortium/ITK", - "main_bes_url": "https://github.com/Be-Secure/ITK", - "all_projects": { - "ITK": "https://github.com/InsightSoftwareConsortium/ITK" - - }, - "all_bes_repos": [{ - "id": 529064932, - "name": "ITK", - "url": "https://github.com/Be-Secure/ITK" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Python", "Shell", "C++", "CMake", "C", "SWIG" - ], - - "tags": { - "IND": [ - "HLS" - ], - "SD": [ - "" - ], - "COM": [ - "COM" - ], - - "TD-U": [ - "TD-U-DAA" - - ] - - - } - - - }, - { - "id": 273, - "bes_tracking_id": 273, - "name": "perspective", - "full_name": "Be-Secure/perspective", - "description": "A data visualization and analytics component, especially well-suited for large and/or streaming datasets. ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 80752, - "open_issues": 0, - "created_at": "2022-01-04T12:39:12Z", - "updated_at": "2022-08-26T00:59:56Z", - "pushed_at": "2022-08-26T00:59:13Z", - "git_url": "git://github.com/Be-Secure/perspective.git", - "clone_url": "https://github.com/Be-Secure/perspective.git", - "html_url": "https://github.com/Be-Secure/perspective", - "homepage": "https://perspective.finos.org/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2017, - "bes_cve_details_id": "", - "cvedetails_product_id": "42246", - "cvedetails_vendor_id": "17397" - }, - "project_repos": { - "main_github_url": "https://github.com/finos/perspective", - "main_bes_url": "https://github.com/Be-Secure/perspective", - "all_projects": { - "perspective": "https://github.com/finos/perspective" - - }, - "all_bes_repos": [{ - "id": 444413915, - "name": "perspective", - "url": "https://github.com/Be-Secure/perspective" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Python", "Javascript", "Typescript", "C++", "Rust", "Less" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "FINOS" - ], - - "TD-U": [ - "TD-U-DAA" - - ] - - - } - - - }, - { - "id": 255, - "bes_tracking_id": 255, - "name": "security_monkey", - "full_name": "Be-Secure/security_monkey", - "description": "monitors AWS, GCP, OpenStack, and GitHub orgs for assets and their changes over time. ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 14392, - "open_issues": 0, - "created_at": "2021-07-07T09:28:17Z", - "updated_at": "2021-07-07T09:28:18Z", - "pushed_at": "2021-02-11T02:32:12Z", - "git_url": "git://github.com/Be-Secure/security_monkey.git", - "clone_url": "https://github.com/Be-Secure/security_monkey.git", - "html_url": "https://github.com/Be-Secure/security_monkey", - "homepage": "", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2017, - "bes_cve_details_id": "", - "cvedetails_product_id": "36511", - "cvedetails_vendor_id": "16257" - }, - "project_repos": { - "main_github_url": "https://github.com/Netflix/security_monkey", - "main_bes_url": "https://github.com/Be-Secure/security_monkey", - "all_projects": { - "security_monkey": "https://github.com/Netflix/security_monkey" - - }, - "all_bes_repos": [{ - "id": 383743848, - "name": "security_monkey", - "url": "https://github.com/Be-Secure/security_monkey" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Javascript", "Shell", "CSS", "Python", "HTML", "Dart" - ], - - "tags": { - "IND": [ - "CYS" - ], - "SD": [ - "SD-CS" - ], - "COM": [ - "NETFLIX" - ], - - "TD-U": [ - "" - - ] - - - } - - - }, - { - "id": 256, - "bes_tracking_id": 256, - "name": "asciinema", - "full_name": "Be-Secure/asciinema", - "description": "lets you easily record terminal sessions and replay them in a terminal as well as in a web browser. ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 1827, - "open_issues": 0, - "created_at": "2021-08-11T10:26:32Z", - "updated_at": "2021-08-11T10:26:33Z", - "pushed_at": "2021-07-15T19:48:13Z", - "git_url": "git://github.com/Be-Secure/asciinema.git", - "clone_url": "https://github.com/Be-Secure/asciinema.git", - "html_url": "https://github.com/Be-Secure/asciinema", - "homepage": "https://asciinema.org", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/asciinema/asciinema", - "main_bes_url": "https://github.com/Be-Secure/asciinema", - "all_projects": { - "asciinema": "https://github.com/asciinema/asciinema" - - }, - "all_bes_repos": [{ - "id": 394949917, - "name": "asciinema", - "url": "https://github.com/Be-Secure/asciinema" - } - - ] - }, - "license": { - "key": "gpl-3.0", - "name": "GNU General Public License v3.0", - "spdx_id": "GPL-2.0", - "url": "https://api.github.com/licenses/gpl-3.0", - "node_id": "MDc6TGljZW5zZTk=" - - }, - "language": [ - - "Python", "Shell", "Dockerfile", "Makefile" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "" - ], - - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - { - "id": 257, - "bes_tracking_id": 257, - "name": "deployment", - "full_name": "Be-Secure/deployment", - "description": "platform for running software assurance tools on your code. ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 539149, - "open_issues": 0, - "created_at": "2021-08-12T03:22:02Z", - "updated_at": "2021-08-12T03:22:03Z", - "pushed_at": "2020-12-31T23:22:41Z", - "git_url": "git://github.com/Be-Secure/deployment.git", - "clone_url": "https://github.com/Be-Secure/deployment.git", - "html_url": "https://github.com/Be-Secure/deployment", - "homepage": "https://mir-swamp.org", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": null, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/mirswamp/deployment", - "main_bes_url": "https://github.com/Be-Secure/deployment", - "all_projects": { - "deployment": "https://github.com/mirswamp/deployment" - - }, - "all_bes_repos": [{ - "id": 395181702, - "name": "deployment", - "url": "https://github.com/Be-Secure/deployment" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Perl", "Python", "Shell", "HTML", "C", "Makefile" - ], - - "tags": { - "IND": [ - "CYS" - ], - "SD": [ - "SD-AS" - ], - "COM": [ - "" - ], - - "TD-U": [ - "" - - ] - - - } - - - }, - { - "id": 258, - "bes_tracking_id": 258, - "name": "mojaloop", - "full_name": "Be-Secure/mojaloop", - "description": "aims at creating payment platforms that are interoperable, connecting digital financial service providers and customers by providing specifications, standards and open-source software. ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 10879, - "open_issues": 0, - "created_at": "2022-08-26T00:04:17Z", - "updated_at": "2022-07-10T03:14:50Z", - "pushed_at": "2020-12-09T08:18:46Z", - "git_url": "git://github.com/Be-Secure/mojaloop.git", - "clone_url": "https://github.com/Be-Secure/mojaloop.git", - "html_url": "https://github.com/Be-Secure/mojaloop", - "homepage": "https://mojaloop.io", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": null, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/mojaloop/mojaloop", - "main_bes_url": "https://github.com/Be-Secure/mojaloop", - "all_projects": { - "mojaloop": "https://github.com/mojaloop/mojaloop" - - }, - "all_bes_repos": [{ - "id": 529056020, - "name": "mojaloop", - "url": "https://github.com/Be-Secure/mojaloop" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Javascript" - ], - - "tags": { - "IND": [ - "BFSI" - ], - "SD": [ - "" - ], - "COM": [ - "MOJALOOP" - ], - - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - { - "id": 259, - "bes_tracking_id": 259, - "name": "protocol-specifications", - "full_name": "Be-Secure/protocol-specifications", - "description": "core specification defines a generic, abstracted API that when implemented allows domain-agnostic interoperable e-commerce transactions between a buyer and seller irrespective of which platform they are on.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 948, - "open_issues": 0, - "created_at": "2021-12-09T08:56:07Z", - "updated_at": "2021-12-09T08:56:08Z", - "pushed_at": "2021-12-03T07:36:36Z", - "git_url": "git://github.com/Be-Secure/protocol-specifications.git", - "clone_url": "https://github.com/Be-Secure/protocol-specifications.git", - "html_url": "https://github.com/Be-Secure/protocol-specifications", - "homepage": "", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": null, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/beckn/protocol-specifications", - "main_bes_url": "https://github.com/Be-Secure/protocol-specifications", - "all_projects": { - "protocol-specifications": "https://github.com/beckn/protocol-specifications" - - }, - "all_bes_repos": [{ - "id": 436546129, - "name": "protocol-specifications", - "url": "https://github.com/Be-Secure/protocol-specifications" - } - - ] - }, - "license": { - "key": "other", - "name": "other", - "spdx_id": "NOASSERTION", - "url": null, - "node_id": "MDc6TGljZW5zZTA=" - - }, - "language": [ - - "Javascript", "Typescript", "Dockerfile" - ], - - "tags": { - "IND": [ - "NG" - ], - "SD": [ - "" - ], - "COM": [ - "BECKN" - ], - - "TD-U": [ - "TD-U-BLN" - - ] - - - } - - - }, - { - "id": 260, - "bes_tracking_id": 260, - "name": "Open-Vehicle-Monitoring-System-3", - "full_name": "Be-Secure/Open-Vehicle-Monitoring-System-3", - "description": "open source vehicle remote monitoring, diagnosis and control system.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 61994, - "open_issues": 0, - "created_at": "2022-01-04T12:20:38Z", - "updated_at": "2022-01-04T12:20:39Z", - "pushed_at": "2022-01-04T00:42:08Z", - "git_url": "git://github.com/Be-Secure/Open-Vehicle-Monitoring-System-3.git", - "clone_url": "https://github.com/Be-Secure/Open-Vehicle-Monitoring-System-3.git", - "html_url": "https://github.com/Be-Secure/Open-Vehicle-Monitoring-System-3", - "homepage": "http:///www.openvehicles.com/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": null, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/openvehicles/Open-Vehicle-Monitoring-System-3", - "main_bes_url": "https://github.com/Be-Secure/Open-Vehicle-Monitoring-System-3", - "all_projects": { - "Open-Vehicle-Monitoring-System-3": "https://github.com/openvehicles/Open-Vehicle-Monitoring-System-3" - - }, - "all_bes_repos": [{ - "id": 444408461, - "name": "Open-Vehicle-Monitoring-System-3", - "url": "https://github.com/Be-Secure/Open-Vehicle-Monitoring-System-3" - } - - ] - }, - "license": { - "key": "other", - "name": "other", - "spdx_id": "NOASSERTION", - "url": null, - "node_id": "MDc6TGljZW5zZTA=" - - }, - "language": [ - - "SWIG", "C", "C++", "Assembly", "Python", "M4" - ], - - "tags": { - "IND": [ - "AM" - ], - "SD": [ - "" - ], - "COM": [ - "OPEN VEHICLE MONITORING" - ], - - "TD-U": [ - "TD-U-IoT" - - ] - - - } - - - }, - { - "id": 261, - "bes_tracking_id": 261, - "name": "edx-platform", - "full_name": "Be-Secure/edx-platform", - "description": " The Open edX LMS & Studio, powering education sites around the world! ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 1634381, - "open_issues": 0, - "created_at": "2022-01-04T12:24:44Z", - "updated_at": "2022-01-04T12:24:47Z", - "pushed_at": "2022-01-04T12:06:26Z", - "git_url": "git://github.com/Be-Secure/edx-platform.git", - "clone_url": "https://github.com/Be-Secure/edx-platform.git", - "html_url": "https://github.com/Be-Secure/edx-platform", - "homepage": "https://open.edx.org", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2021, - "bes_cve_details_id": "", - "cvedetails_product_id": "43623", - "cvedetails_vendor_id": "15804" - }, - "project_repos": { - "main_github_url": "https://github.com/openedx/edx-platform", - "main_bes_url": "https://github.com/Be-Secure/edx-platform", - "all_projects": { - "edx-platform": "https://github.com/openedx/edx-platform" - - }, - "all_bes_repos": [{ - "id": 444409651, - "name": "edx-platform", - "url": "https://github.com/Be-Secure/edx-platform" - } - - ] - }, - "license": { - "key": "agpl-3.0", - "name": "GNU Affero General Public License v3.0", - "spdx_id": "AGPL-3.0", - "url": "https://api.github.com/licenses/agpl-3.0", - "node_id": "MDc6TGljZW5zZTE=" - - }, - "language": [ - - "Javascript", "Python", "CSS", "HTML", "SCSS", "Shell" - ], - - "tags": { - "IND": [ - "ED" - ], - "SD": [ - "" - ], - "COM": [ - "OPENEDX" - ], - - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - { - "id": 262, - "bes_tracking_id": 262, - "name": "openmrs-core", - "full_name": "Be-Secure/openmrs-core", - "description": "provides a free customizable electronic medical record system ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 233682, - "open_issues": 0, - "created_at": "2022-01-04T12:26:35Z", - "updated_at": "2022-01-04T12:26:37Z", - "pushed_at": "2022-01-03T05:54:51Z", - "git_url": "git://github.com/Be-Secure/openmrs-core.git", - "clone_url": "https://github.com/Be-Secure/openmrs-core.git", - "html_url": "https://github.com/Be-Secure/openmrs-core", - "homepage": "http://openmrs.org", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": null, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/openmrs/openmrs-core", - "main_bes_url": "https://github.com/Be-Secure/openmrs-core", - "all_projects": { - "openmrs-core": "https://github.com/openmrs/openmrs-core" - - }, - "all_bes_repos": [{ - "id": 444410196, - "name": "openmrs-core", - "url": "https://github.com/Be-Secure/openmrs-core" - } - - ] - }, - "license": { - "key": "other", - "name": "other", - "spdx_id": "NOASSERTION", - "url": null, - "node_id": "MDc6TGljZW5zZTA=" - - }, - "language": [ - - "Java", "CSS", "Shell", "XSLT", "HTML", "Javascript", "Dockerfile" - ], - - "tags": { - "IND": [ - "HLS" - ], - "SD": [ - "" - ], - "COM": [ - "OPENMRS" - ], - - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - { - "id": 263, - "bes_tracking_id": 263, - "name": "sdran-in-a-box", - "full_name": "Be-Secure/sdran-in-a-box", - "description": "It provides a development/test environment for developers/users in ONF SD-RAN community.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 1085, - "open_issues": 0, - "created_at": "2022-08-26T00:18:53Z", - "updated_at": "2022-08-21T15:27:19Z", - "pushed_at": "2022-05-30T19:53:39Z", - "git_url": "git://github.com/Be-Secure/sdran-in-a-box.git", - "clone_url": "https://github.com/Be-Secure/sdran-in-a-box.git", - "html_url": "https://github.com/Be-Secure/sdran-in-a-box", - "homepage": null, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/onosproject/sdran-in-a-box", - "main_bes_url": "https://github.com/Be-Secure/sdran-in-a-box", - "all_projects": { - "sdran-in-a-box": "https://github.com/onosproject/sdran-in-a-box" - - }, - "all_bes_repos": [{ - "id": 529058749, - "name": "sdran-in-a-box", - "url": "https://github.com/Be-Secure/sdran-in-a-box" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Makefile", "Shell" - ], - - "tags": { - "IND": [ - "TEL" - ], - "SD": [ - "" - ], - "COM": [ - "OPEN NETWORKING" - ], - - "TD-U": [ - "TD-U-IoT" - - ] - - - } - - - }, - { - "id": 264, - "bes_tracking_id": 264, - "name": "r-source", - "full_name": "Be-Secure/r-source", - "description": " allows branching and looping as well as modular programming using functions.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 407191, - "open_issues": 0, - "created_at": "2022-01-04T12:28:51Z", - "updated_at": "2022-02-02T12:53:26Z", - "pushed_at": "2022-08-26T01:23:38Z", - "git_url": "git://github.com/Be-Secure/r-source.git", - "clone_url": "https://github.com/Be-Secure/r-source.git", - "html_url": "https://github.com/Be-Secure/r-source", - "homepage": "https://github.com/wch/r-source/wiki/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": null, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/wch/r-source", - "main_bes_url": "https://github.com/Be-Secure/r-source", - "all_projects": { - "r-source": "https://github.com/wch/r-source" - - }, - "all_bes_repos": [{ - "id": 444410841, - "name": "r-source", - "url": "https://github.com/Be-Secure/r-source" - } - - ] - }, - "license": { - "key": "gpl-2.0", - "name": "GNU General Public License v2.0", - "spdx_id": "GPL-2.0", - "url": "https://api.github.com/licenses/gpl-2.0", - "node_id": "MDc6TGljZW5zZTg=" - - }, - "language": [ - - "R", "C", "Shell", "Fortran", "TeX", "M4" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "COM" - ], - - "TD-U": [ - "TD-U-DAA" - - ] - - - } - - - }, - { - "id": 114, - "bes_tracking_id": 114, - "name": "php-src", - "full_name": "Be-Secure/php-src", - "description": " scripting language that is especially suited to web development.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 468107, - "open_issues": 0, - "created_at": "2022-01-04T09:38:47Z", - "updated_at": "2022-02-02T12:54:11Z", - "pushed_at": "2022-02-02T12:53:21Z", - "git_url": "git://github.com/Be-Secure/php-src.git", - "clone_url": "https://github.com/Be-Secure/php-src.git", - "html_url": "https://github.com/Be-Secure/php-src", - "homepage": "https://github.com/php/php-src", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 1, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/php/php-src", - "main_bes_url": "https://github.com/Be-Secure/php-src", - "all_projects": { - "php-src": "https://github.com/php/php-src" - - }, - "all_bes_repos": [{ - "id": 444362389, - "name": "php-src", - "url": "https://github.com/Be-Secure/php-src" - } - - ] - }, - "license": { - "key": "other", - "name": "other", - "spdx_id": "NOASSERTION", - "url": null, - "node_id": "MDc6TGljZW5zZTA=" - - }, - "language": [ - - "C", "C++", "Shell", "PHP", "M4", "Lua" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "PHP" - ], - - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - { - "id": 247, - "bes_tracking_id": 247, - "name": "jdk", - "full_name": "Be-Secure/jdk", - "description": "JDK main-line development ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 1009007, - "open_issues": 0, - "created_at": "2022-01-04T09:45:52Z", - "updated_at": "2022-02-02T12:51:21Z", - "pushed_at": "2022-02-02T12:47:40Z", - "git_url": "git://github.com/Be-Secure/jdk.git", - "clone_url": "https://github.com/Be-Secure/jdk.git", - "html_url": "https://github.com/Be-Secure/jdk", - "homepage": "https://openjdk.java.net/projects/jdk/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 25, - "year": 2022, - "bes_cve_details_id": "", - "cvedetails_product_id": "19116", - "cvedetails_vendor_id": "93" - }, - "project_repos": { - "main_github_url": "https://github.com/openjdk/jdk", - "main_bes_url": "https://github.com/Be-Secure/jdk", - "all_projects": { - "jdk": "https://github.com/openjdk/jdk" - - }, - "all_bes_repos": [{ - "id": 407350552, - "name": "jdk", - "url": "https://github.com/Be-Secure/jdk" - } - - ] - }, - "license": { - "key": "gpl-2.0", - "name": "GNU General Public License v2.0", - "spdx_id": "GPL-2.0", - "url": "https://api.github.com/licenses/gpl-2.0", - "node_id": "MDc6TGljZW5zZTg=" - - }, - "language": [ - - "Java", "C", "C++", "Assembly", "HTML", "Objective-C" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "ORACLE" - ], - - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - { - "id": 248, - "bes_tracking_id": 248, - "name": "spring-framework", - "full_name": "Be-Secure/spring-framework", - "description": "provides everything required beyond the Java programming language for creating enterprise applications for a wide range of scenarios and architectures. ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 171335, - "open_issues": 0, - "created_at": "2022-01-04T09:47:16Z", - "updated_at": "2022-01-04T09:47:18Z", - "pushed_at": "2022-01-04T01:47:28Z", - "git_url": "git://github.com/Be-Secure/spring-framework.git", - "clone_url": "https://github.com/Be-Secure/spring-framework.git", - "html_url": "https://github.com/Be-Secure/spring-framework", - "homepage": "https://spring.io/projects/spring-framework", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 3, - "year": 2014, - "bes_cve_details_id": "", - "cvedetails_product_id": "17274", - "cvedetails_vendor_id": "9664" - }, - "project_repos": { - "main_github_url": "https://github.com/spring-projects/spring-framework", - "main_bes_url": "https://github.com/Be-Secure/spring-framework", - "all_projects": { - "spring-framework": "https://github.com/spring-projects/spring-framework" - - }, - "all_bes_repos": [{ - "id": 444364828, - "name": "spring-framework", - "url": "https://github.com/Be-Secure/spring-framework" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Java", "kotlin", "CSS", "Groovy", "FreeMarker", "AspectJ" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "SPRING CENTRAL" - ], - - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - { - "id": 249, - "bes_tracking_id": 249, - "name": "vue", - "full_name": "Be-Secure/vue", - "description": "incrementally-adoptable JavaScript framework for building UI on the web. ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 27658, - "open_issues": 0, - "created_at": "2022-01-04T09:58:33Z", - "updated_at": "2022-01-04T09:58:34Z", - "pushed_at": "2022-01-04T01:22:46Z", - "git_url": "git://github.com/Be-Secure/vue.git", - "clone_url": "https://github.com/Be-Secure/vue.git", - "html_url": "https://github.com/Be-Secure/vue", - "homepage": "", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/vuejs/vue", - "main_bes_url": "https://github.com/Be-Secure/vue", - "all_projects": { - "vue": "https://github.com/vuejs/vue" - - }, - "all_bes_repos": [{ - "id": 444368148, - "name": "vue", - "url": "https://github.com/Be-Secure/vue" - } - - ] - }, - "license": { - "key": "mit", - "name": "MIT License", - - "url": "https://api.github.com/licenses/mit", - "node_id": "MDc6TGljZW5zZTEz" - - }, - "language": [ - - "JavaScript", "Typescript" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "VUE" - ], - - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - { - "id": 48, - "bes_tracking_id": 48, - "name": "mongo", - "full_name": "Be-Secure/mongo", - "description": "The MongoDB Database ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 641618, - "open_issues": 0, - "created_at": "2021-08-11T12:07:05Z", - "updated_at": "2021-08-11T12:07:07Z", - "pushed_at": "2021-08-11T09:41:57Z", - "git_url": "git://github.com/Be-Secure/mongo.git", - "clone_url": "https://github.com/Be-Secure/mongo.git", - "html_url": "https://github.com/Be-Secure/mongo", - "homepage": "https://www.mongodb.com/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/mongodb/mongo", - "main_bes_url": "https://github.com/Be-Secure/mongo", - "all_projects": { - "mongo": "https://github.com/mongodb/mongo" - - }, - "all_bes_repos": [{ - "id": 394975368, - "name": "mongo", - "url": "https://github.com/Be-Secure/mongo" - } - - ] - }, - "license": { - "key": "other", - "name": "other", - "spdx_id": "NOASSERTION", - "url": null, - "node_id": "MDc6TGljZW5zZTA=" - - }, - "language": [ - - "JavaScript", "Python", "C", "C++", "Shell", "TLA" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "MONGO" - ], - - "TD-U": [ - "TD-U-Db" - - ] - - - } - - - }, - { - "id": 250, - "bes_tracking_id": 250, - "name": "server", - "full_name": "Be-Secure/server", - "description": "deliver the most featureful, stable, and sanely licensed open SQL server in the industry. ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 897905, - "open_issues": 0, - "created_at": "2021-08-18T11:30:48Z", - "updated_at": "2021-08-18T11:30:50Z", - "pushed_at": "2021-08-18T11:21:57Z", - "git_url": "git://github.com/Be-Secure/server.git", - "clone_url": "https://github.com/Be-Secure/server.git", - "html_url": "https://github.com/Be-Secure/server", - "homepage": "", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/MariaDB/server", - "main_bes_url": "https://github.com/Be-Secure/server", - "all_projects": { - "server": "https://github.com/MariaDB/server" - - }, - "all_bes_repos": [{ - "id": 397576714, - "name": "server", - "url": "https://github.com/Be-Secure/server" - } - - ] - }, - "license": { - "key": "gpl-2.0", - "name": "GNU General Public License v2.0", - "spdx_id": "GPL-2.0", - "url": "https://api.github.com/licenses/gpl-2.0", - "node_id": "MDc6TGljZW5zZTg=" - - }, - "language": [ - - "C", "C++", "Shell", "Perl", "Yacc", "Cmake" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "MARIADB" - ], - - "TD-U": [ - "TD-U-Db" - - ] - - - } - - - }, - { - "id": 251, - "bes_tracking_id": 251, - "name": "mariadb-docker", - "full_name": "Be-Secure/mariadb-docker", - "description": "Docker Official Image packaging for MariaDB ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 456, - "open_issues": 0, - "created_at": "2022-01-04T11:14:21Z", - "updated_at": "2022-01-04T11:14:22Z", - "pushed_at": "2021-12-27T06:48:51Z", - "git_url": "git://github.com/Be-Secure/mariadb-docker.git", - "clone_url": "https://github.com/Be-Secure/mariadb-docker.git", - "html_url": "https://github.com/Be-Secure/mariadb-docker", - "homepage": "https://mariadb.com/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/mariaDB/mariadb-docker", - "main_bes_url": "https://github.com/Be-Secure/mariadb-docker", - "all_projects": { - "mariadb-docker": "https://github.com/mariaDB/mariadb-docker" - - }, - "all_bes_repos": [{ - "id": 444389778, - "name": "mariadb-docker", - "url": "https://github.com/Be-Secure/mariadb-docker" - } - - ] - }, - "license": { - "key": "gpl-2.0", - "name": "GNU General Public License v2.0", - "spdx_id": "GPL-2.0", - "url": "https://api.github.com/licenses/gpl-2.0", - "node_id": "MDc6TGljZW5zZTg=" - - }, - "language": [ - - "Shell", "Dockerfile" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "MARIADB" - ], - - "TD-U": [ - "TD-U-Db" - - ] - - - } - - - }, - { - "id": 252, - "bes_tracking_id": 252, - "name": "diaspora", - "full_name": "Be-Secure/diaspora", - "description": "A privacy-aware, distributed, open source social network. ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 114075, - "open_issues": 0, - "created_at": "2021-08-05T09:57:53Z", - "updated_at": "2021-08-05T09:57:54Z", - "pushed_at": "2021-07-31T21:34:41Z", - "git_url": "git://github.com/Be-Secure/diaspora.git", - "clone_url": "https://github.com/Be-Secure/diaspora.git", - "html_url": "https://github.com/Be-Secure/diaspora", - "homepage": "https://diasporafoundation.org/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/diaspora/diaspora", - "main_bes_url": "https://github.com/Be-Secure/diaspora", - "all_projects": { - "diaspora": "https://github.com/diaspora/diaspora" - - }, - "all_bes_repos": [{ - "id": 392991393, - "name": "diaspora", - "url": "https://github.com/Be-Secure/diaspora" - } - - ] - }, - "license": { - "key": "agpl-3.0", - "name": "GNU Affero General Public License v3.0", - "spdx_id": "AGPL-3.0", - "url": "https://api.github.com/licenses/agpl-3.0", - "node_id": "MDc6TGljZW5zZTE=" - - }, - "language": [ - - "JavaScript", "Ruby", "Haml", "Gherkin", "Handlebars", "SCSS" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "DIASPORA" - ], - - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - { - "id": 253, - "bes_tracking_id": 253, - "name": "aries", - "full_name": "Be-Secure/aries", - "description": "Hyperledger Aries is infrastructure for blockchain-rooted, peer-to-peer interactions ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 471, - "open_issues": 0, - "created_at": "2021-07-02T02:46:17Z", - "updated_at": "2021-07-02T02:46:18Z", - "pushed_at": "2021-06-03T18:58:19Z", - "git_url": "git://github.com/Be-Secure/aries.git", - "clone_url": "https://github.com/Be-Secure/aries.git", - "html_url": "https://github.com/Be-Secure/aries", - "homepage": "https://wiki.hyperledger.org/display/ARIES/Hyperledger+Aries", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/hyperledger/aries", - "main_bes_url": "https://github.com/Be-Secure/aries", - "all_projects": { - "aries": "https://github.com/hyperledger/aries" - - }, - "all_bes_repos": [{ - "id": 382212034, - "name": "aries", - "url": "https://github.com/Be-Secure/aries" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Python" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "HYPERLEDGER" - ], - - "TD-U": [ - "TD-U-Bln" - - ] - - - } - - - }, - { - "id": 254, - "bes_tracking_id": 254, - "name": "syncope", - "full_name": "Be-Secure/syncope", - "description": "Open Source system for managing digital identities in enterprise environments, implemented in Java EE technology ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 58566, - "open_issues": 0, - "created_at": "2021-07-07T12:05:18Z", - "updated_at": "2021-07-07T12:05:19Z", - "pushed_at": "2021-07-05T13:04:15Z", - "git_url": "git://github.com/Be-Secure/syncope.git", - "clone_url": "https://github.com/Be-Secure/syncope.git", - "html_url": "https://github.com/Be-Secure/syncope", - "homepage": "https://syncope.apache.org/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 4, - "year": 2020, - "bes_cve_details_id": "", - "cvedetails_product_id": "27458", - "cvedetails_vendor_id": "45" - }, - "project_repos": { - "main_github_url": "https://github.com/apache/syncope", - "main_bes_url": "https://github.com/Be-Secure/syncope", - "all_projects": { - "syncope": "https://github.com/apache/syncope" - - }, - "all_bes_repos": [{ - "id": 383784733, - "name": "syncope", - "url": "https://github.com/Be-Secure/syncope" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "JavaScript", "Java", "HTML", "CSS", "Groovy", "SCSS" - ], - - "tags": { - "IND": [ - "CYS" - ], - "SD": [ - "SD-AS" - ], - "COM": [ - "APACHE" - ], - - "TD-U": [ - "" - - ] - - - } - - - }, - { - "id": 294, - "bes_tracking_id": 294, - "name": "spiderfoot", - "full_name": "Be-Secure/spiderfoot", - "description": "SpiderFoot automates OSINT for threat intelligence and mapping your attack surface. ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 15528, - "open_issues": 0, - "created_at": "2021-09-17T00:13:12Z", - "updated_at": "2021-09-22T10:31:18Z", - "pushed_at": "2021-09-22T10:31:08Z", - "git_url": "git://github.com/Be-Secure/spiderfoot.git", - "clone_url": "https://github.com/Be-Secure/spiderfoot.git", - "html_url": "https://github.com/Be-Secure/spiderfoot", - "homepage": "http://www.spiderfoot.net", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/smicallef/spiderfoot", - "main_bes_url": "https://github.com/Be-Secure/spiderfoot", - "all_projects": { - "spiderfoot": "https://github.com/smicallef/spiderfoot" - - }, - "all_bes_repos": [{ - "id": 407350552, - "name": "spiderfoot", - "url": "https://github.com/Be-Secure/spiderfoot" - } - - ] - }, - "license": { - "key": "gpl-2.0", - "name": "GNU General Public License v2.0", - "spdx_id": "GPL-2.0", - "url": "https://api.github.com/licenses/gpl-2.0", - "node_id": "MDc6TGljZW5zZTg=" - - }, - "language": [ - - "JavaScript", "Python" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "Organization-Spiderfoot" - ], - - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - { - "id": 295, - "bes_tracking_id": 295, - "name": "codeclimate", - "full_name": "Be-Secure/codeclimate", - "description": "It allows you to run Code Climate engines on your local machine inside of Docker containers.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 1554, - "open_issues": 0, - "created_at": "2021-10-06T12:53:37Z", - "updated_at": "2021-10-06T12:53:39Z", - "pushed_at": "2021-09-21T16:33:52Z", - "git_url": "git://github.com/Be-Secure/codeclimate.git", - "clone_url": "https://github.com/Be-Secure/codeclimate.git", - "html_url": "https://github.com/Be-Secure/codeclimate", - "homepage": "https://codeclimate.com/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/codeclimate/codeclimate", - "main_bes_url": "https://github.com/Be-Secure/codeclimate", - "all_projects": { - "codeclimate": "https://github.com/codeclimate/codeclimate" - - }, - "all_bes_repos": [{ - "id": 414211115, - "name": "codeclimate", - "url": "https://github.com/Be-Secure/codeclimate" - } - - ] - }, - "license": { - "key": "agpl-3.0", - "name": "GNU Affero General Public License v3.0", - "spdx_id": "AGPL-3.0", - "url": "https://api.github.com/licenses/agpl-3.0", - "node_id": "MDc6TGljZW5zZTE=" - - }, - "language": [ - - "Shell", "HTML", "Ruby" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "" - ], - - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - - { - "id": 246, - "bes_tracking_id": 246, - "name": "cosign", - "full_name": "Be-Secure/cosign", - "description": "Cosign aims to make signatures invisible infrastructure.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 17140, - "open_issues": 0, - "created_at": "2022-01-18T04:30:50Z", - "updated_at": "2022-02-02T07:42:32Z", - "pushed_at": "2022-02-02T07:42:25Z", - "git_url": "git://github.com/Be-Secure/cosign.git", - "clone_url": "https://github.com/Be-Secure/cosign.git", - "html_url": "https://github.com/Be-Secure/cosign", - "homepage": null, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 2, - "year": 2007, - "bes_cve_details_id": "", - "cvedetails_product_id": "10949", - "cvedetails_vendor_id": "6486" - }, - "project_repos": { - "main_github_url": "https://github.com/sigstore/cosign", - "main_bes_url": "https://github.com/Be-Secure/cosign", - "all_projects": { - "cosign": "https://github.com/sigstore/cosign" - - }, - "all_bes_repos": [{ - "id": 449140216, - "name": "cosign", - "url": "https://github.com/Be-Secure/cosign" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Go", "Shell" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "community led" - ], - - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - - { - "id": 121, - "bes_tracking_id": 121, - "name": "kedro", - "full_name": "Be-Secure/kedro", - "description": "A Python framework for creating reproducible, maintainable and modular data science code.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 90683, - "open_issues": 0, - "created_at": "2022-01-24T03:32:33Z", - "updated_at": "2022-02-02T07:42:16Z", - "pushed_at": "2022-02-02T07:42:10Z", - "git_url": "git://github.com/Be-Secure/kedro.git", - "clone_url": "https://github.com/Be-Secure/kedro.git", - "html_url": "https://github.com/Be-Secure/kedro", - "homepage": "https://kedro.readthedocs.io/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/kedro-org/kedro", - "main_bes_url": "https://github.com/Be-Secure/kedro", - "all_projects": { - "kedro": "https://github.com/kedro-org/kedro" - - }, - "all_bes_repos": [{ - "id": 451304037, - "name": "kedro", - "url": "https://github.com/Be-Secure/kedro" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Python" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "community led" - ], - - "TD-U": [ - "TD-U-DAA" - - ] - - - } - - - }, - - { - "id": 112, - "bes_tracking_id": 112, - "name": "cpython", - "full_name": "Be-Secure/cpython", - "description": "The Python programming language ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 442673, - "open_issues": 0, - "created_at": "2022-01-04T09:31:48Z", - "updated_at": "2022-02-02T12:44:26Z", - "pushed_at": "2022-02-02T12:43:31Z", - "git_url": "git://github.com/Be-Secure/cpython.git", - "clone_url": "https://github.com/Be-Secure/cpython.git", - "html_url": "https://github.com/Be-Secure/cpython", - "homepage": "https://www.python.org/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/python/cpython", - "main_bes_url": "https://github.com/Be-Secure/cpython", - "all_projects": { - "cpython": "https://github.com/python/cpython" - - }, - "all_bes_repos": [{ - "id": 444360323, - "name": "cpython", - "url": "https://github.com/Be-Secure/cpython" - } - - ] - }, - "license": { - "key": "other", - "name": "other", - "spdx_id": "NOASSERTION", - "url": null, - "node_id": "MDc6TGljZW5zZTA=" - - }, - "language": [ - - "Python ", "C", "C++", "M4", "HTML", "Batchfile" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "PYTHON" - ], - - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - - { - "id": 93, - "bes_tracking_id": 93, - "name": "ThreatMapper", - "full_name": "Be-Secure/ThreatMapper", - "description": "Identify vulnerabilities in running containers, images, hosts and repositories", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 56008, - "open_issues": 0, - "created_at": "2021-12-20T09:04:33Z", - "updated_at": "2021-12-20T09:04:35Z", - "pushed_at": "2021-12-20T09:03:11Z", - "git_url": "git://github.com/Be-Secure/ThreatMapper.git", - "clone_url": "https://github.com/Be-Secure/ThreatMapper.git", - "html_url": "https://github.com/Be-Secure/ThreatMapper", - "homepage": "https://www.deepfence.io", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/deepfence/ThreatMapper", - "main_bes_url": "https://github.com/Be-Secure/ThreatMapper", - "all_projects": { - "ThreatMapper": "https://github.com/deepfence/ThreatMapper" - - }, - "all_bes_repos": [{ - "id": 440105336, - "name": "ThreatMapper", - "url": "https://github.com/Be-Secure/ThreatMapper" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Go", "JavaScript", "Shell", "Python" - ], - - "tags": { - "IND": [ - "Cys" - ], - "SD": [ - "" - ], - "COM": [ - "DEEPFENCE community led" - ], - - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - - - { - "id": 90, - "bes_tracking_id": 90, - "name": "weave", - "full_name": "Be-Secure/weave", - "description": "enables you to get started with Docker clusters and portable apps in a fraction of the time required by other solutions.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 24097, - "open_issues": 0, - "created_at": "2021-12-20T09:04:07Z", - "updated_at": "2021-12-20T09:04:08Z", - "pushed_at": "2021-10-11T13:39:01Z", - "git_url": "git://github.com/Be-Secure/weave.git", - "clone_url": "https://github.com/Be-Secure/weave.git", - "html_url": "https://github.com/Be-Secure/weave", - "homepage": "https://www.weave.works", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2021, - "bes_cve_details_id": "", - "cvedetails_product_id": "89522", - "cvedetails_vendor_id": "23301" - }, - "project_repos": { - "main_github_url": "https://github.com/weaveworks/weave", - "main_bes_url": "https://github.com/Be-Secure/weave", - "all_projects": { - "weave": "https://github.com/weaveworks/weave" - - }, - "all_bes_repos": [{ - "id": 440105205, - "name": "weave", - "url": "https://github.com/Be-Secure/weave" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Go", "Shell", "Makefile" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "community led" - ], - - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - - { - "id": 92, - "bes_tracking_id": 92, - "name": "DependencyCheck", - "full_name": "Be-Secure/DependencyCheck", - "description": " tool that attempts to detect publicly disclosed vulnerabilities contained within a project's dependencies.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 156217, - "open_issues": 0, - "created_at": "2021-12-20T09:04:57Z", - "updated_at": "2021-12-20T09:04:58Z", - "pushed_at": "2021-12-20T01:22:14Z", - "git_url": "git://github.com/Be-Secure/DependencyCheck.git", - "clone_url": "https://github.com/Be-Secure/DependencyCheck.git", - "html_url": "https://github.com/Be-Secure/DependencyCheck", - "homepage": "https://www.owasp.org/index.php/OWASP_Dependency_Check", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/jeremylong/DependencyCheck", - "main_bes_url": "https://github.com/Be-Secure/DependencyCheck", - "all_projects": { - "DependencyCheck": "https://github.com/jeremylong/DependencyCheck" - - }, - "all_bes_repos": [{ - "id": 440105458, - "name": "DependencyCheck", - "url": "https://github.com/Be-Secure/DependencyCheck" - } - - ] - }, - "license": { - "key": "lgpl-3.0", - "name": "GNU Lesser General Public License v3.0", - "spdx_id": "LGPL-3.0", - "url": "https://api.github.com/licenses/lgpl-3.0", - "node_id": "MDc6TGljZW5zZTEy" - - }, - "language": [ - - "Java", "JavaScript", "CMake", "M4", "Ruby" - ], - - "tags": { - "IND": [ - "cys" - ], - "SD": [ - "" - ], - "COM": [ - "community led" - ], - - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - - - { - "id": 89, - "bes_tracking_id": 89, - "name": "Ignite", - "full_name": "Be-Secure/Ignite", - "description": "Combines Firecracker MicroVMs with Docker / OCI images to unify containers and VMs.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 21413, - "open_issues": 0, - "created_at": "2021-12-20T09:03:31Z", - "updated_at": "2021-12-20T09:03:33Z", - "pushed_at": "2021-12-14T23:06:38Z", - "git_url": "git://github.com/Be-Secure/Ignite.git", - "clone_url": "https://github.com/Be-Secure/Ignite.git", - "html_url": "https://github.com/Be-Secure/Ignite", - "homepage": "https://ignite.readthedocs.org", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2021, - "bes_cve_details_id": "", - "cvedetails_product_id": "36964", - "cvedetails_vendor_id": "45" - }, - "project_repos": { - "main_github_url": "https://github.com/weaveworks/Ignite", - "main_bes_url": "https://github.com/Be-Secure/Ignite", - "all_projects": { - "Ignite": "https://github.com/weaveworks/Ignite" - - }, - "all_bes_repos": [{ - "id": 440105045, - "name": "Ignite", - "url": "https://github.com/Be-Secure/Ignite" - } - - ] - }, - "license": { - "key": "lgpl-3.0", - "name": "GNU Lesser General Public License v3.0", - "spdx_id": "LGPL-3.0", - "url": "https://api.github.com/licenses/lgpl-3.0", - "node_id": "MDc6TGljZW5zZTEy" - - }, - "language": [ - - "Go", "Roff", "Shell" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "community led" - ], - - "TD-U": [ - "TD-U-W" - - ] - - - } - - - }, - - { - "id": 245, - "bes_tracking_id": 245, - "name": "Quorum", - "full_name": "Be-Secure/Quorum", - "description": "Its a Ethereum-based distributed ledger protocol with transaction/contract privacy and new consensus mechanisms.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 178095, - "open_issues": 0, - "created_at": "2022-01-04T12:37:32Z", - "updated_at": "2022-01-04T12:37:33Z", - "pushed_at": "2021-12-22T14:55:26Z", - "git_url": "git://github.com/Be-Secure/Quorum.git", - "clone_url": "https://github.com/Be-Secure/Quorum.git", - "html_url": "https://github.com/Be-Secure/Quorum", - "homepage": "https://www.goquorum.com/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 8, - "year": 2021, - "bes_cve_details_id": "", - "cvedetails_product_id": "98517", - "cvedetails_vendor_id": "12230" - }, - "project_repos": { - "main_github_url": "https://github.com/ConsenSys/Quorum", - "main_bes_url": "https://github.com/Be-Secure/Quorum", - "all_projects": { - "Quorum": "https://github.com/ConsenSys/Quorum" - - }, - "all_bes_repos": [{ - "id": 444413406, - "name": "Quorum", - "url": "https://github.com/Be-Secure/Quorum" - } - - ] - }, - "license": { - "key": "lgpl-3.0", - "name": "GNU Lesser General Public License v3.0", - "spdx_id": "LGPL-3.0", - "url": "https://api.github.com/licenses/lgpl-3.0", - "node_id": "MDc6TGljZW5zZTEy" - - }, - "language": [ - - "Go", "C", "Java", "Javascript", "Assembly", "Solidity" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "community led" - ], - - "TD-U": [ - "TU-U-Bln" - - ] - - - } - - - }, - - { - "id": 244, - "bes_tracking_id": 244, - "name": "gradle", - "full_name": "Be-Secure/gradle", - "description": "Gradle is a build tool with a focus on build automation and support for multi-language development.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 404312, - "open_issues": 0, - "created_at": "2022-01-04T12:33:52Z", - "updated_at": "2022-01-04T12:33:53Z", - "pushed_at": "2022-01-04T12:27:53Z", - "git_url": "git://github.com/Be-Secure/gradle.git", - "clone_url": "https://github.com/Be-Secure/gradle.git", - "html_url": "https://github.com/Be-Secure/gradle", - "homepage": "https://gradle.org", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 3, - "year": 2022, - "bes_cve_details_id": "", - "cvedetails_product_id": "35781", - "cvedetails_vendor_id": "16071" - }, - "project_repos": { - "main_github_url": "https://github.com/gradle/gradle", - "main_bes_url": "https://github.com/Be-Secure/gradle", - "all_projects": { - "gradle": "https://github.com/gradle/gradle" - - }, - "all_bes_repos": [{ - "id": 444412316, - "name": "gradle", - "url": "https://github.com/Be-Secure/gradle" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "C", "C++", "Java", "Groovy", "Kotlin", "CSS" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "community led" - ], - - "TD-U": [ - "TU-U-W" - - ] - - - } - - - }, - - { - "id": 243, - "bes_tracking_id": 243, - "name": "groovy", - "full_name": "Be-Secure/groovy", - "description": "powerful multi-faceted programming language for the JVM platform. It supports a spectrum of programming styles similar to or greater than Java through its extensible static type checker.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 198212, - "open_issues": 0, - "created_at": "2022-01-04T12:32:13Z", - "updated_at": "2022-01-04T12:32:14Z", - "pushed_at": "2022-01-04T12:11:08Z", - "git_url": "git://github.com/Be-Secure/groovy.git", - "clone_url": "https://github.com/Be-Secure/groovy.git", - "html_url": "https://github.com/Be-Secure/groovy", - "homepage": "https://groovy-lang.org", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2020, - "bes_cve_details_id": "", - "cvedetails_product_id": "32232", - "cvedetails_vendor_id": "45" - }, - "project_repos": { - "main_github_url": "https://github.com/apache/groovy", - "main_bes_url": "https://github.com/Be-Secure/groovy", - "all_projects": { - "groovy": "https://github.com/apache/groovy" - - }, - "all_bes_repos": [{ - "id": 444411862, - "name": "groovy", - "url": "https://github.com/Be-Secure/groovy" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Java", "HTML", "CSS", "Shell", "Groovy", "ANTLR" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "other" - ], - - "TD-U": [ - "TU-U-W" - - ] - - - } - - - }, - - { - "id": 242, - "bes_tracking_id": 242, - "name": "Octave", - "full_name": "Be-Secure/Octave", - "description": "Octave is a high-level interpreted language, primarily intended for numerical computations", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 94788, - "open_issues": 0, - "created_at": "2022-01-04T12:29:34Z", - "updated_at": "2022-01-04T12:29:35Z", - "pushed_at": "2022-01-03T21:05:26Z", - "git_url": "git://github.com/Be-Secure/Octave.git", - "clone_url": "https://github.com/Be-Secure/Octave.git", - "html_url": "https://github.com/Be-Secure/Octave", - "homepage": "", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/gnu-octave/Octave", - "main_bes_url": "https://github.com/Be-Secure/Octave", - "all_projects": { - "Octave": "https://github.com/gnu-octave/Octave" - - }, - "all_bes_repos": [{ - "id": 444411042, - "name": "Octave", - "url": "https://github.com/Be-Secure/Octave" - } - - ] - }, - "license": { - "key": "gpl-3.0", - "name": "GNU General Public License v3.0", - "spdx_id": "GPL-3.0", - "url": "https://api.github.com/licenses/gpl-3.0", - "node_id": "MDc6TGljZW5zZTk=" - - }, - "language": [ - - "C", "C++", "MATLAB", "Roff", "Scilab", "Jupyter Notebook" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "Community led" - ], - - "TD-U": [ - "TU-U-DAA" - - ] - - - } - - - }, - - { - "id": 241, - "bes_tracking_id": 241, - "name": "Openboxes", - "full_name": "Be-Secure/Openboxes", - "description": "Its a open-source supply chain management system used to manage supplies and medications for healthcare facilities and disaster relief efforts.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 71866, - "open_issues": 0, - "created_at": "2022-01-04T12:27:55Z", - "updated_at": "2022-02-02T12:54:51Z", - "pushed_at": "2022-02-02T12:54:28Z", - "git_url": "git://github.com/Be-Secure/Openboxes.git", - "clone_url": "https://github.com/Be-Secure/Openboxes.git", - "html_url": "https://github.com/Be-Secure/Openboxes", - "homepage": "https://openboxes.com", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/Openboxes/Openboxes", - "main_bes_url": "https://github.com/Be-Secure/Openboxes", - "all_projects": { - "Openboxes": "https://github.com/Openboxes/Openboxes" - - }, - "all_bes_repos": [{ - "id": 444410575, - "name": "Openboxes", - "url": "https://github.com/Be-Secure/Openboxes" - } - - ] - }, - "license": { - "key": "epl-1.0", - "name": "Eclipse Public License 1.0", - "spdx_id": "EPL-1.0", - "url": "https://api.github.com/licenses/epl-1.0", - "node_id": "MDc6TGljZW5zZTc=" - - }, - "language": [ - - "HTML", "CSS", "Javascript", "Groovy", "SCSS", "Batchfile" - ], - - "tags": { - "IND": [ - "HLS" - ], - "SD": [ - "" - ], - "COM": [ - "Community led" - ], - - "TD-U": [ - "TU-U-W" - - ] - - - } - - - }, - - { - "id": 240, - "bes_tracking_id": 240, - "name": "Openemr", - "full_name": "Be-Secure/Openemr", - "description": "OpenEMR is the most popular open source electronic health records and medical practice management solution.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 495825, - "open_issues": 0, - "created_at": "2022-01-04T12:25:47Z", - "updated_at": "2022-02-02T12:53:56Z", - "pushed_at": "2022-02-02T12:53:30Z", - "git_url": "git://github.com/Be-Secure/Openemr.git", - "clone_url": "https://github.com/Be-Secure/Openemr.git", - "html_url": "https://github.com/Be-Secure/Openemr", - "homepage": "https://open-emr.org/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 2, - "year": 2012, - "bes_cve_details_id": "", - "cvedetails_product_id": "7987", - "cvedetails_vendor_id": "4650" - }, - "project_repos": { - "main_github_url": "https://github.com/Openemr/Openemr", - "main_bes_url": "https://github.com/Be-Secure/Openemr", - "all_projects": { - "Openemr": "https://github.com/Openemr/Openemr" - - }, - "all_bes_repos": [{ - "id": 444409960, - "name": "Openemr", - "url": "https://github.com/Be-Secure/Openemr" - } - - ] - }, - "license": { - "key": "gpl-3.0", - "name": "GNU General Public License v3.0", - "spdx_id": "GPL-3.0", - "url": "https://api.github.com/licenses/gpl-3.0", - "node_id": "MDc6TGljZW5zZTk=" - - }, - "language": [ - - "HTML", "CSS", "Javascript", "XSLT", "PHP", "SCSS" - ], - - "tags": { - "IND": [ - "HLS" - ], - "SD": [ - "" - ], - "COM": [ - "Community led" - ], - - "TD-U": [ - "TU-U-W" - - ] - - - } - - - }, - - { - "id": 239, - "bes_tracking_id": 239, - "name": "learninglocker", - "full_name": "Be-Secure/learninglocker", - "description": "It is a data warehouse that offers seamless source of analysis to make learning measurable.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 25659, - "open_issues": 0, - "created_at": "2021-08-11T14:40:33Z", - "updated_at": "2021-08-11T14:40:34Z", - "pushed_at": "2021-08-03T13:07:22Z", - "git_url": "git://github.com/Be-Secure/learninglocker.git", - "clone_url": "https://github.com/Be-Secure/learninglocker.git", - "html_url": "https://github.com/Be-Secure/learninglocker", - "homepage": "https://learningpool.com/solutions/learning-record-store-learning-locker/learning-locker-community-overview/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/learninglocker/learninglocker", - "main_bes_url": "https://github.com/Be-Secure/learninglocker", - "all_projects": { - "learninglocker": "https://github.com/learninglocker/learninglocker" - - }, - "all_bes_repos": [{ - "id": 395020900, - "name": "learninglocker", - "url": "https://github.com/Be-Secure/learninglocker" - } - - ] - }, - "license": { - "key": "gpl-3.0", - "name": "GNU General Public License v3.0", - "spdx_id": "GPL-3.0", - "url": "https://api.github.com/licenses/gpl-3.0", - "node_id": "MDc6TGljZW5zZTk=" - - }, - "language": [ - - "Javascript", "CSS" - ], - - "tags": { - "IND": [ - "ED" - ], - "SD": [ - "" - ], - "COM": [ - "HT2 Community led" - ], - - "TD-U": [ - "" - - ] - - - } - - - }, - - { - "id": 238, - "bes_tracking_id": 238, - "name": "Openxc-python", - "full_name": "Be-Secure/Openxc-python", - "description": "It's a combination of open source hardware and software that lets you extend your vehicle with custom applications and pluggable modules. It uses standard, well-known tools to open up a wealth of data from the vehicle to developers.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 1429, - "open_issues": 0, - "created_at": "2022-01-04T12:21:59Z", - "updated_at": "2022-01-04T12:22:00Z", - "pushed_at": "2021-08-19T18:34:01Z", - "git_url": "git://github.com/Be-Secure/Openxc-python.git", - "clone_url": "https://github.com/Be-Secure/Openxc-python.git", - "html_url": "https://github.com/Be-Secure/Openxc-python", - "homepage": "http://python.openxcplatform.com", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/openxc/Openxc-python", - "main_bes_url": "https://github.com/Be-Secure/Openxc-python", - "all_projects": { - "Openxc-python": "https://github.com/openxc/Openxc-python" - - }, - "all_bes_repos": [{ - "id": 444408863, - "name": "Openxc-python", - "url": "https://github.com/Be-Secure/Openxc-python" - } - - ] - }, - "license": { - "key": "bsd-3-clause", - "name": "BSD 3-Clause \"New\" or \"Revised\" License", - "spdx_id": "BSD-3-Clause", - "url": "https://api.github.com/licenses/bsd-3-clause", - "node_id": "MDc6TGljZW5zZTU=" - - }, - "language": [ - - "Javascript", "Python", "HTML", "CSS" - ], - - "tags": { - "IND": [ - "AM" - ], - "SD": [ - "" - ], - "COM": [ - "Community led" - ], - "TD-U": [ - "TD-U-MoA" - - ] - - - } - - - }, - - { - "id": 237, - "bes_tracking_id": 237, - "name": "DKAN", - "full_name": "Be-Secure/DKAN", - "description": "community-driven, free and open source open data platform that gives organizations and individuals ultimate freedom to publish and consume structured information.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 34819, - "open_issues": 0, - "created_at": "2022-01-04T12:13:07Z", - "updated_at": "2022-02-02T12:53:54Z", - "pushed_at": "2022-02-02T12:53:48Z", - "git_url": "git://github.com/Be-Secure/DKAN.git", - "clone_url": "https://github.com/Be-Secure/DKAN.git", - "html_url": "https://github.com/Be-Secure/DKAN", - "homepage": "https://getdkan.org", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/GetDKAN/DKAN", - "main_bes_url": "https://github.com/Be-Secure/DKAN", - "all_projects": { - "DKAN": "https://github.com/GetDKAN/DKAN" - - }, - "all_bes_repos": [{ - "id": 444406377, - "name": "DKAN", - "url": "https://github.com/Be-Secure/DKAN" - } - - ] - }, - "license": { - "key": "gpl-2.0", - "name": "GNU General Public License v2.0", - "spdx_id": "GPL-2.0", - "url": "https://api.github.com/licenses/gpl-2.0", - "node_id": "MDc6TGljZW5zZTg=" - - }, - "language": [ - - "PHP", "Javascript" - ], - - "tags": { - "IND": [ - "Non Profit Govt." - ], - "SD": [ - "" - ], - "COM": [ - "Organization led" - ], - "TD-U": [ - "TD-U-Db" - - ] - - - } - - - }, - - { - "id": 236, - "bes_tracking_id": 236, - "name": "trillian", - "full_name": "Be-Secure/trillian", - "description": "A transparent, highly scalable and cryptographically verifiable data store", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 16431, - "open_issues": 0, - "created_at": "2021-08-12T03:26:45Z", - "updated_at": "2021-08-12T03:26:46Z", - "pushed_at": "2021-08-09T21:19:45Z", - "git_url": "git://github.com/Be-Secure/trillian.git", - "clone_url": "https://github.com/Be-Secure/trillian.git", - "html_url": "https://github.com/Be-Secure/trillian", - "homepage": "", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2012, - "bes_cve_details_id": "", - "cvedetails_product_id": "1608", - "cvedetails_vendor_id": "938" - }, - "project_repos": { - "main_github_url": "https://github.com/google/trillian", - "main_bes_url": "https://github.com/Be-Secure/trillian", - "all_projects": { - "trillian": "https://github.com/google/trillian" - - }, - "all_bes_repos": [{ - "id": 395182684, - "name": "trillian", - "url": "https://github.com/Be-Secure/trillian" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Go", "Shell" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-BS" - ], - "COM": [ - "Community led" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - { - "id": 235, - "bes_tracking_id": 235, - "name": "oyente", - "full_name": "Be-Secure/oyente", - "description": "An Analysis Tool for Smart Contracts.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 67340, - "open_issues": 0, - "created_at": "2021-08-11T12:19:28Z", - "updated_at": "2021-08-11T12:19:29Z", - "pushed_at": "2021-08-10T22:47:29Z", - "git_url": "git://github.com/Be-Secure/oyente.git", - "clone_url": "https://github.com/Be-Secure/oyente.git", - "html_url": "https://github.com/Be-Secure/oyente", - "homepage": "https://oyente.melonport.com", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/enzymefinance/oyente", - "main_bes_url": "https://github.com/Be-Secure/oyente", - "all_projects": { - "oyente": "https://github.com/enzymefinance/oyente" - - }, - "all_bes_repos": [{ - "id": 394978646, - "name": "oyente", - "url": "https://github.com/Be-Secure/oyente" - } - - ] - }, - "license": { - "key": "gpl-3.0", - "name": "GNU General Public License v3.0", - "spdx_id": "GPL-3.0", - "url": "https://api.github.com/licenses/gpl-3.0", - "node_id": "MDc6TGljZW5zZTk=" - - }, - "language": [ - - "Python", "CSS", "HTML", "Ruby", "SCSS", "Javascript" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-BS" - ], - "COM": [ - "Independent Project" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - - { - "id": 234, - "bes_tracking_id": 234, - "name": "mythril", - "full_name": "Be-Secure/mythril", - "description": "Security analysis tool for EVM bytecode. Supports smart contracts built for Ethereum, Hedera, Quorum, Vechain, Roostock, Tron and other EVM-compatible blockchains.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 49310, - "open_issues": 0, - "created_at": "2021-08-11T12:15:25Z", - "updated_at": "2021-08-11T12:15:26Z", - "pushed_at": "2021-08-11T10:32:57Z", - "git_url": "git://github.com/Be-Secure/mythril.git", - "clone_url": "https://github.com/Be-Secure/mythril.git", - "html_url": "https://github.com/Be-Secure/mythril", - "homepage": "https://mythx.io/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/ConsenSys/mythril", - "main_bes_url": "https://github.com/Be-Secure/mythril", - "all_projects": { - "mythril": "https://github.com/ConsenSys/mythril" - - }, - "all_bes_repos": [{ - "id": 394977557, - "name": "mythril", - "url": "https://github.com/Be-Secure/mythril" - } - - ] - }, - "license": { - "key": "mit", - "name": "MIT License", - "spdx_id": "mit", - "url": "https://api.github.com/licenses/mit", - "node_id": "MDc6TGljZW5zZTEz" - - }, - "language": [ - - "Python", "Solidity" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-BS" - ], - "COM": [ - "Community led" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - - { - "id": 233, - "bes_tracking_id": 233, - "name": "Codeql-container", - "full_name": "Be-Secure/Codeql-container", - "description": "Prepackaged and precompiled github codeql container for rapid analysis, deployment and development.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 51, - "open_issues": 0, - "created_at": "2021-08-11T10:24:35Z", - "updated_at": "2021-08-11T10:24:36Z", - "pushed_at": "2021-06-29T18:25:14Z", - "git_url": "git://github.com/Be-Secure/Codeql-container.git", - "clone_url": "https://github.com/Be-Secure/Codeql-container.git", - "html_url": "https://github.com/Be-Secure/Codeql-container", - "homepage": "https://hub.docker.com/_/microsoft-cstsectools-codeql-container", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/microsoft/Codeql-container", - "main_bes_url": "https://github.com/Be-Secure/Codeql-container", - "all_projects": { - "Codeql-container": "https://github.com/microsoft/Codeql-container" - - }, - "all_bes_repos": [{ - "id": 394949391, - "name": "Codeql-container", - "url": "https://github.com/Be-Secure/Codeql-container" - } - - ] - }, - "license": { - "key": "mit", - "name": "MIT License", - "spdx_id": "mit", - "url": "https://api.github.com/licenses/mit", - "node_id": "MDc6TGljZW5zZTEz" - - }, - "language": [ - - "Python", "Shell", "Dockerfile", "Batchfile" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-AS" - ], - "COM": [ - "Organization led" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - - { - "id": 232, - "bes_tracking_id": 232, - "name": "Phpcs-security-audit", - "full_name": "Be-Secure/Phpcs-security-audit", - "description": "phpcs-security-audit is a set of PHP_CodeSniffer rules that finds vulnerabilities and weaknesses related to security in PHP code", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 219, - "open_issues": 0, - "created_at": "2021-08-11T10:23:42Z", - "updated_at": "2021-08-11T10:23:43Z", - "pushed_at": "2021-03-21T12:25:50Z", - "git_url": "git://github.com/Be-Secure/Phpcs-security-audit.git", - "clone_url": "https://github.com/Be-Secure/Phpcs-security-audit.git", - "html_url": "https://github.com/Be-Secure/Phpcs-security-audit", - "homepage": "", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/FloeDesignTechnologies/Phpcs-security-audit", - "main_bes_url": "https://github.com/Be-Secure/Phpcs-security-audit", - "all_projects": { - "Phpcs-security-audit": "https://github.com/FloeDesignTechnologies/Phpcs-security-audit" - - }, - "all_bes_repos": [{ - "id": 394949176, - "name": "Phpcs-security-audit", - "url": "https://github.com/Be-Secure/Phpcs-security-audit" - } - - ] - }, - "license": { - "key": "gpl-3.0", - "name": "GNU General Public License v3.0", - "spdx_id": "GPL-3.0", - "url": "https://api.github.com/licenses/gpl-3.0", - "node_id": "MDc6TGljZW5zZTk=" - - }, - "language": [ - - "PHP", "Dockerfile" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-AS" - ], - "COM": [ - "Independent Project" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - { - "id": 231, - "bes_tracking_id": 231, - "name": "osmedeus", - "full_name": "Be-Secure/osmedeus", - "description": "Fully automated offensive security framework for reconnaissance and vulnerability scanning.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 32879, - "open_issues": 0, - "created_at": "2021-08-11T10:22:41Z", - "updated_at": "2021-08-11T10:22:42Z", - "pushed_at": "2021-06-10T18:51:36Z", - "git_url": "git://github.com/Be-Secure/osmedeus.git", - "clone_url": "https://github.com/Be-Secure/osmedeus.git", - "html_url": "https://github.com/Be-Secure/osmedeus", - "homepage": "https://j3ssie.github.io/Osmedeus/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/j3ssie/osmedeus", - "main_bes_url": "https://github.com/Be-Secure/osmedeus", - "all_projects": { - "osmedeus": "https://github.com/j3ssie/osmedeus" - - }, - "all_bes_repos": [{ - "id": 394948899, - "name": "osmedeus", - "url": "https://github.com/Be-Secure/osmedeus" - } - - ] - }, - "license": { - "key": "mit", - "name": "MIT License", - "spdx_id": "mit", - "url": "https://api.github.com/licenses/mit", - "node_id": "MDc6TGljZW5zZTEz" - - }, - "language": [ - - "Go", "Makefile" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-SOC" - ], - "COM": [ - "Independent Project" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - - { - "id": 230, - "bes_tracking_id": 230, - "name": "govready-q", - "full_name": "Be-Secure/govready-q", - "description": "An open source, self-service GRC tool to automate security assessments and compliance.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 27355, - "open_issues": 0, - "created_at": "2021-08-06T01:54:09Z", - "updated_at": "2021-08-06T01:54:09Z", - "pushed_at": "2021-08-06T00:19:18Z", - "git_url": "git://github.com/Be-Secure/govready-q.git", - "clone_url": "https://github.com/Be-Secure/govready-q.git", - "html_url": "https://github.com/Be-Secure/govready-q", - "homepage": "https://q.govready.com", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/govready/govready-q", - "main_bes_url": "https://github.com/Be-Secure/govready-q", - "all_projects": { - "govready-q": "https://github.com/govready/govready-q" - - }, - "all_bes_repos": [{ - "id": 393217907, - "name": "govready-q", - "url": "https://github.com/Be-Secure/govready-q" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Python", "Shell", "Javascript", "HTML" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-SRM" - ], - "COM": [ - "Independent Project" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - - { - "id": 229, - "bes_tracking_id": 229, - "name": "Lockdoor-Framework", - "full_name": "Be-Secure/Lockdoor-Framework ", - "description": "A Penetration Testing framework with Cyber Security Resources", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 144145, - "open_issues": 0, - "created_at": "2021-08-05T04:13:41Z", - "updated_at": "2021-08-05T04:13:41Z", - "pushed_at": "2021-07-03T07:35:13Z", - "git_url": "git://github.com/Be-Secure/Lockdoor-Framework.git", - "clone_url": "https://github.com/Be-Secure/Lockdoor-Framework.git", - "html_url": "https://github.com/Be-Secure/Lockdoor-Framework", - "homepage": "https://lockdoor.sofianehamlaoui.fr", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/SofianeHamlaoui/Lockdoor-Framework", - "main_bes_url": "https://github.com/Be-Secure/Lockdoor-Framework", - "all_projects": { - "Lockdoor-Framework": "https://github.com/SofianeHamlaoui/Lockdoor-Framework" - - }, - "all_bes_repos": [{ - "id": 392898908, - "name": "Lockdoor-Framework", - "url": "https://github.com/Be-Secure/Lockdoor-Framework" - } - - ] - }, - "license": { - "key": "agpl-3.0", - "name": "GNU Affero General Public License v3.0", - "spdx_id": "AGPL-3.0", - "url": "https://api.github.com/licenses/agpl-3.0", - "node_id": "MDc6TGljZW5zZTE=" - - }, - "language": [ - - "Python", "Shell", "Lex", "Makefile", "Batchfile", "Roff" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-AS" - ], - "COM": [ - "Inndependent Project" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - - { - "id": 228, - "bes_tracking_id": 228, - "name": "walkoff", - "full_name": "Be-Secure/walkoff ", - "description": "A flexible, easy to use, automation framework allowing users to integrate their capabilities and devices to cut through the repetitive, tedious tasks slowing them down.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 273005, - "open_issues": 0, - "created_at": "2021-08-05T04:12:06Z", - "updated_at": "2021-08-05T04:12:07Z", - "pushed_at": "2021-06-30T18:59:18Z", - "git_url": "git://github.com/Be-Secure/walkoff.git", - "clone_url": "https://github.com/Be-Secure/walkoff.git", - "html_url": "https://github.com/Be-Secure/walkoff", - "homepage": "https://nsacyber.github.io/WALKOFF/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/nsacyber/walkoff", - "main_bes_url": "https://github.com/Be-Secure/walkoff", - "all_projects": { - "walkoff": "https://github.com/nsacyber/walkoff" - - }, - "all_bes_repos": [{ - "id": 392898680, - "name": "walkoff", - "url": "https://github.com/Be-Secure/walkoff" - } - - ] - }, - "license": { - "key": "other", - "name": "other", - "spdx_id": "NOASSERTION", - "url": null, - "node_id": "MDc6TGljZW5zZTA=" - - }, - "language": [ - - "Python", "Powershell", "HTML", "Dockerfile", "Typescript", "SCSS" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-AS" - ], - "COM": [ - "Community led" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - - { - "id": 227, - "bes_tracking_id": 227, - "name": "shuffle", - "full_name": "Be-Secure/shuffle ", - "description": "A general purpose security automation platform with a focus on accessibility for all.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 40003, - "open_issues": 0, - "created_at": "2021-08-05T04:11:36Z", - "updated_at": "2021-08-05T04:11:37Z", - "pushed_at": "2021-08-02T22:34:04Z", - "git_url": "git://github.com/Be-Secure/shuffle.git", - "clone_url": "https://github.com/Be-Secure/shuffle.git", - "html_url": "https://github.com/Be-Secure/shuffle", - "homepage": "https://shuffler.io", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/shuffle/shuffle", - "main_bes_url": "https://github.com/Be-Secure/shuffle", - "all_projects": { - "shuffle": "https://github.com/shuffle/shuffle" - - }, - "all_bes_repos": [{ - "id": 392898611, - "name": "shuffle", - "url": "https://github.com/Be-Secure/shuffle" - } - - ] - }, - "license": { - "key": "agpl-3.0", - "name": "GNU Affero General Public License v3.0", - "spdx_id": "AGPL-3.0", - "url": "https://api.github.com/licenses/agpl-3.0", - "node_id": "MDc6TGljZW5zZTE=" - - }, - "language": [ - - "Javascript", "HTML", "Shell", " Python", " Go", "Rich Text format" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-AS" - ], - "COM": [ - "Independent Project" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - - { - "id": 226, - "bes_tracking_id": 226, - "name": "TheHive", - "full_name": "Be-Secure/TheHive ", - "description": "It is a Scalable, Open Source and Free Security Incident Response Platform", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 39599, - "open_issues": 0, - "created_at": "2021-08-05T04:10:42Z", - "updated_at": "2021-08-05T04:10:42Z", - "pushed_at": "2021-07-31T07:06:03Z", - "git_url": "git://github.com/Be-Secure/TheHive.git", - "clone_url": "https://github.com/Be-Secure/TheHive.git", - "html_url": "https://github.com/Be-Secure/TheHive", - "homepage": "https://thehive-project.org/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2019, - "bes_cve_details_id": "", - "cvedetails_product_id": "55337", - "cvedetails_vendor_id": "19919" - }, - "project_repos": { - "main_github_url": "https://github.com/TheHive-Project/TheHive", - "main_bes_url": "https://github.com/Be-Secure/TheHive", - "all_projects": { - "TheHive": "https://github.com/TheHive-Project/TheHive" - - }, - "all_bes_repos": [{ - "id": 392898461, - "name": "TheHive", - "url": "https://github.com/Be-Secure/TheHive" - } - - ] - }, - "license": { - "key": "agpl-3.0", - "name": "GNU Affero General Public License v3.0", - "spdx_id": "AGPL-3.0", - "url": "https://api.github.com/licenses/agpl-3.0", - "node_id": "MDc6TGljZW5zZTE=" - - }, - "language": [ - - "Javascript", "HTML", "Shell", "Scala" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-SOC" - ], - "COM": [ - "Community led" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - { - "id": 225, - "bes_tracking_id": 225, - "name": "Openc2-oif-orchestrator", - "full_name": "Be-Secure/Openc2-oif-orchestrator ", - "description": "Supports development OpenC2 Integration Framework (OIF) Orchestrator", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 20829, - "open_issues": 0, - "created_at": "2021-08-05T09:16:04Z", - "updated_at": "2021-08-05T09:16:05Z", - "pushed_at": "2021-08-04T04:23:50Z", - "git_url": "git://github.com/Be-Secure/Openc2-oif-orchestrator.git", - "clone_url": "https://github.com/Be-Secure/Openc2-oif-orchestrator.git", - "html_url": "https://github.com/Be-Secure/Openc2-oif-orchestrator", - "homepage": "https://github.com/oasis-open/Openc2-oif-orchestrator", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/oasis-open/Openc2-oif-orchestrator", - "main_bes_url": "https://github.com/Be-Secure/Openc2-oif-orchestrator", - "all_projects": { - "Openc2-oif-orchestrator": "https://github.com/oasis-open/Openc2-oif-orchestrator" - - }, - "all_bes_repos": [{ - "id": 392979198, - "name": "Openc2-oif-orchestrator", - "url": "https://github.com/Be-Secure/Openc2-oif-orchestrator" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Python", "Javascript", "Typescript", "HTML", "CSS", "SCSS" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-DS" - ], - "COM": [ - "OCA" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - { - "id": 224, - "bes_tracking_id": 224, - "name": "openc2-jadn-software", - "full_name": "Be-Secure/openc2-jadn-software ", - "description": "Development and maintenance of JADN (JSON Abstract Data Notation), a JSON document format for defining abstract schemas.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 1554, - "open_issues": 0, - "created_at": "2021-08-05T09:08:31Z", - "updated_at": "2021-08-05T09:08:32Z", - "pushed_at": "2021-03-31T22:00:57Z", - "git_url": "git://github.com/Be-Secure/openc2-jadn-software.git", - "clone_url": "https://github.com/Be-Secure/openc2-jadn-software.git", - "html_url": "https://github.com/Be-Secure/openc2-jadn-software", - "homepage": "https://github.com/oasis-open/openc2-jadn-software", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/oasis-open/openc2-jadn-software", - "main_bes_url": "https://github.com/Be-Secure/openc2-jadn-software", - "all_projects": { - "openc2-jadn-software": "https://github.com/oasis-open/openc2-jadn-software" - - }, - "all_bes_repos": [{ - "id": 392976860, - "name": "openc2-jadn-software", - "url": "https://github.com/Be-Secure/openc2-jadn-software" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Python" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-DS" - ], - "COM": [ - "OCA" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - { - "id": 223, - "bes_tracking_id": 223, - "name": "openc2-lycan-python", - "full_name": "Be-Secure/openc2-lycan-python ", - "description": "A GitHub public repository for development of a python library to transform between data-interchange formats (such as JSON) and python language objects", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 221, - "open_issues": 0, - "created_at": "2021-08-05T09:08:18Z", - "updated_at": "2021-08-05T09:08:18Z", - "pushed_at": "2020-04-08T15:41:37Z", - "git_url": "git://github.com/Be-Secure/openc2-lycan-python.git", - "clone_url": "https://github.com/Be-Secure/openc2-lycan-python.git", - "html_url": "https://github.com/Be-Secure/openc2-lycan-python", - "homepage": "https://github.com/oasis-open/openc2-lycan-python", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/oasis-open/openc2-lycan-python", - "main_bes_url": "https://github.com/Be-Secure/openc2-lycan-python", - "all_projects": { - "openc2-lycan-python": "https://github.com/oasis-open/openc2-lycan-python" - - }, - "all_bes_repos": [{ - "id": 392976790, - "name": "openc2-lycan-python", - "url": "https://github.com/Be-Secure/openc2-lycan-python" - } - - ] - }, - "license": { - "key": "mit", - "name": "MIT License 2.0", - "spdx_id": "mit", - "url": "https://api.github.com/licenses/mit", - "node_id": "MDc6TGljZW5zZTEz" - - }, - "language": [ - - "Python" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-DS" - ], - "COM": [ - "OCA" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - - { - "id": 222, - "bes_tracking_id": 222, - "name": "jackhammer", - "full_name": "Be-Secure/jackhammer ", - "description": "One Security vulnerability assessment/management tool to solve all the security team problems.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 66842, - "open_issues": 0, - "created_at": "2021-08-02T12:24:14Z", - "updated_at": "2021-08-02T12:24:15Z", - "pushed_at": "2020-07-01T22:47:39Z", - "git_url": "git://github.com/Be-Secure/jackhammer.git", - "clone_url": "https://github.com/Be-Secure/jackhammer.git", - "html_url": "https://github.com/Be-Secure/jackhammer", - "homepage": "https://jch.olacabs.com/userguide", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/olacabs/jackhammer", - "main_bes_url": "https://github.com/Be-Secure/jackhammer", - "all_projects": { - "jackhammer": "https://github.com/olacabs/jackhammer" - - }, - "all_bes_repos": [{ - "id": 391939032, - "name": "jackhammer", - "url": "https://github.com/Be-Secure/jackhammer" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Java" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-AS" - ], - "COM": [ - "Community led" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - { - "id": 221, - "bes_tracking_id": 221, - "name": "zaproxy", - "full_name": "Be-Secure/zaproxy ", - "description": "The OWASP ZAP core project", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 183650, - "open_issues": 0, - "created_at": "2020-07-09T06:33:45Z", - "updated_at": "2020-07-09T06:33:47Z", - "pushed_at": "2020-07-08T15:24:18Z", - "git_url": "git://github.com/Be-Secure/zaproxy.git", - "clone_url": "https://github.com/Be-Secure/zaproxy.git", - "html_url": "https://github.com/Be-Secure/zaproxy", - "homepage": "https://www.zaproxy.org", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/zaproxy/zaproxy", - "main_bes_url": "https://github.com/Be-Secure/zaproxy", - "all_projects": { - "zaproxy": "https://github.com/zaproxy/zaproxy" - - }, - "all_bes_repos": [{ - "id": 278282827, - "name": "zaproxy", - "url": "https://github.com/Be-Secure/zaproxy" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Shell", "Javascript", "HTML", "Kotlin", "Python", "Java" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-AS" - ], - "COM": [ - "Community led" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - - { - "id": 220, - "bes_tracking_id": 220, - "name": "beef", - "full_name": "Be-Secure/beef ", - "description": "The Browser Exploitation Framework Project", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 20823, - "open_issues": 0, - "created_at": "2020-07-09T06:31:53Z", - "updated_at": "2020-07-09T06:31:55Z", - "pushed_at": "2020-07-09T00:45:54Z", - "git_url": "git://github.com/Be-Secure/beef.git", - "clone_url": "https://github.com/Be-Secure/beef.git", - "html_url": "https://github.com/Be-Secure/beef", - "homepage": "https://beefproject.com", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2021, - "bes_cve_details_id": "", - "cvedetails_product_id": "99237", - "cvedetails_vendor_id": "25157" - }, - "project_repos": { - "main_github_url": "https://github.com/panickervinod/beef", - "main_bes_url": "https://github.com/Be-Secure/beef", - "all_projects": { - "beef": "https://github.com/panickervinod/beef" - - }, - "all_bes_repos": [{ - "id": 278282453, - "name": "beef", - "url": "https://github.com/Be-Secure/beef" - } - - ] - }, - "license": null - - , - "language": [ - - "Actionscript", "Javascript", "HTML", "CSS", "Ruby", "Assembly" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-AS" - ], - "COM": [ - "Community led" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - { - "id": 219, - "bes_tracking_id": 219, - "name": "syft", - "full_name": "Be-Secure/syft ", - "description": "CLI tool and library for generating a Software Bill of Materials from container images and filesystems", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 3843, - "open_issues": 0, - "created_at": "2020-11-20T03:01:28Z", - "updated_at": "2021-09-22T04:55:20Z", - "pushed_at": "2021-09-22T04:54:52Z", - "git_url": "git://github.com/Be-Secure/syft.git", - "clone_url": "https://github.com/Be-Secure/syft.git", - "html_url": "https://github.com/Be-Secure/syft", - "homepage": null, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": null, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/anchore/syft", - "main_bes_url": "https://github.com/Be-Secure/syft", - "all_projects": { - "syft": "https://github.com/anchore/syft" - - }, - "all_bes_repos": [{ - "id": 314431378, - "name": "grype", - "url": "https://github.com/Be-Secure/syft" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Go", "Shell", "Python", "Ruby", "Makefile", "Dockerfile" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-AS" - ], - "COM": [ - "Community led" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - - { - "id": 218, - "bes_tracking_id": 218, - "name": "grype", - "full_name": "Be-Secure/grype ", - "description": "A vulnerability scanner for container images and filesystems", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 1524, - "open_issues": 0, - "created_at": "2020-11-20T03:01:38Z", - "updated_at": "2021-09-08T11:41:04Z", - "pushed_at": "2021-09-08T11:40:46Z", - "git_url": "git://github.com/Be-Secure/grype.git", - "clone_url": "https://github.com/Be-Secure/grype.git", - "html_url": "https://github.com/Be-Secure/grype", - "homepage": null, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": null, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/anchore/grype", - "main_bes_url": "https://github.com/Be-Secure/grype", - "all_projects": { - "grype": "https://github.com/anchore/grype" - - }, - "all_bes_repos": [{ - "id": 314431413, - "name": "grype", - "url": "https://github.com/Be-Secure/grype" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Go", "Shell", "Python", "Ruby", "Makefile", "Dockerfile" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-AS" - ], - "COM": [ - "Community led" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - { - "id": 217, - "bes_tracking_id": 217, - "name": "emmy", - "full_name": "Be-Secure/emmy ", - "description": "Library for zero-knowledge proof based applications (like anonymous credentials)", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 1134, - "open_issues": 0, - "created_at": "2021-07-07T12:06:15Z", - "updated_at": "2021-07-07T12:06:16Z", - "pushed_at": "2020-12-04T14:48:01Z", - "git_url": "git://github.com/Be-Secure/emmy.git", - "clone_url": "https://github.com/Be-Secure/emmy.git", - "html_url": "https://github.com/Be-Secure/emmy", - "homepage": null, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": null, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/xlab-si/emmy", - "main_bes_url": "https://github.com/Be-Secure/emmy", - "all_projects": { - "emmy": "https://github.com/xlab-si/emmy" - - }, - "all_bes_repos": [{ - "id": 383785006, - "name": "emmy", - "url": "https://github.com/Be-Secure/emmy" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Go" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-IAM" - ], - "COM": [ - "Community led" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - { - "id": 216, - "bes_tracking_id": 216, - "name": "scorecard", - "full_name": "Be-Secure/scorecard ", - "description": "Security Scorecards - Security health metrics for Open Source", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 608, - "open_issues": 0, - "created_at": "2020-12-17T03:37:30Z", - "updated_at": "2020-12-17T03:37:31Z", - "pushed_at": "2020-12-15T18:30:27Z", - "git_url": "git://github.com/Be-Secure/scorecard.git", - "clone_url": "https://github.com/Be-Secure/scorecard.git", - "html_url": "https://github.com/Be-Secure/scorecard", - "homepage": null, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": null, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/ossf/scorecard", - "main_bes_url": "https://github.com/Be-Secure/scorecard", - "all_projects": { - "scorecard": "https://github.com/ossf/scorecard" - - }, - "all_bes_repos": [{ - "id": 322170920, - "name": "scorecard", - "url": "https://github.com/Be-Secure/scorecard" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Makefile", "Go" - ], - - "tags": { - "IND": [ - "All" - ], - "SD": [ - "SD-AS" - ], - "COM": [ - "Open SSF" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - - { - "id": 35, - "bes_tracking_id": 35, - "name": "rabbitmq-server", - "full_name": "Be-Secure/rabbitmq-server ", - "description": "RabbitMQ is a feature rich, multi-protocol messaging broker", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 165627, - "open_issues": 0, - "created_at": "2021-08-09T14:20:39Z", - "updated_at": "2021-08-09T14:20:40Z", - "pushed_at": "2021-08-09T12:18:38Z", - "git_url": "git://github.com/Be-Secure/rabbitmq-server.git", - "clone_url": "https://github.com/Be-Secure/rabbitmq-server.git", - "html_url": "https://github.com/Be-Secure/rabbitmq-server", - "homepage": "https://www.rabbitmq.com/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": null, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/rabbitmq/rabbitmq-server", - "main_bes_url": "https://github.com/Be-Secure/rabbitmq-server", - "all_projects": { - "rabbitmq-server": "https://github.com/rabbitmq/rabbitmq-server" - - }, - "all_bes_repos": [{ - "id": 394319862, - "name": "rabbitmq-server", - "url": "https://github.com/Be-Secure/rabbitmq-server" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "Makefile", "Dockerfile", "Erlang", "Shell", "Batchfile", "Starlark" - ], - - "tags": { - "IND": [ - "All" - ], - "SD": [ - "" - ], - "COM": [ - "Community led" - ], - "TD-U": [ - "TD-U-MsG" - - ] - - - } - - - }, - - - { - "id": 215, - "bes_tracking_id": 215, - "name": "Fuzzbench", - "full_name": "Be-Secure/Fuzzbench ", - "description": "FuzzBench - Fuzzer benchmarking as a service.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 29855, - "open_issues": 0, - "created_at": "2020-12-17T03:43:31Z", - "updated_at": "2022-01-12T10:18:59Z", - "pushed_at": "2022-07-23T04:04:54Z", - "git_url": "git://github.com/Be-Secure/Fuzzbench.git", - "clone_url": "https://github.com/Be-Secure/Fuzzbench.git", - "html_url": "https://github.com/Be-Secure/Fuzzbench", - "homepage": "https://google.github.io/fuzzbench/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": null, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/google/Fuzzbench", - "main_bes_url": "https://github.com/Be-Secure/Fuzzbench", - "all_projects": { - "Fuzzbench": "https://github.com/google/Fuzzbench" - - }, - "all_bes_repos": [{ - "id": 322172046, - "name": "Fuzzbench", - "url": "https://github.com/Be-Secure/Fuzzbench" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - "HTML", "C++", "Dockerfile", "Shell", " Python", "Jupyter Notebook" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-AS" - ], - "COM": [ - "Community led" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - { - "id": 214, - "bes_tracking_id": 214, - "name": "Opendxl-ontology", - "full_name": "Be-Secure/ Opendxl-ontology ", - "description": "The OpenDXL Ontology project is focused on the development of an open and interoperable cybersecurity messaging format for use with the OpenDXL messaging bus", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 278, - "open_issues": 0, - "created_at": "2021-07-02T02:54:54Z", - "updated_at": "2021-07-02T02:54:55Z", - "pushed_at": "2021-03-22T17:47:45Z", - "git_url": "git://github.com/Be-Secure/Opendxl-ontology.git", - "clone_url": "https://github.com/Be-Secure/Opendxl-ontology.git", - "html_url": "https://github.com/Be-Secure/Opendxl-ontology", - "homepage": null, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": null, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/opencybersecurityalliance/Opendxl-ontology", - "main_bes_url": "https://github.com/Be-Secure/Opendxl-ontology", - "all_projects": { - "Opendxl-ontology": "https://github.com/opencybersecurityalliance/Opendxl-ontology" - - }, - "all_bes_repos": [{ - "id": 382213585, - "name": "Opendxl-ontology", - "url": "https://github.com/Be-Secure/Opendxl-ontology" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - - }, - "language": [ - - " Shell", "Python", "Javascript", "Dockerfile" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-SRM" - ], - "COM": [ - "OCA" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - - - { - "id": 213, - "bes_tracking_id": 213, - "name": "croc", - "full_name": "Be-Secure/ croc ", - "description": "It is a tool that allows any two computers to simply and securely transfer files and folders", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 24287, - "open_issues": 0, - "created_at": "2021-03-25T03:48:36Z", - "updated_at": "2021-03-25T03:48:37Z", - "pushed_at": "2021-03-23T16:14:12Z", - "git_url": "git://github.com/Be-Secure/croc.git", - "clone_url": "https://github.com/Be-Secure/croc.git", - "html_url": "https://github.com/Be-Secure/croc", - "homepage": "https://schollz.com/software/croc6", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": null, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/schollz/croc", - "main_bes_url": "https://github.com/Be-Secure/croc", - "all_projects": { - "croc": "https://github.com/schollz/croc" - - }, - "all_bes_repos": [{ - "id": 351301229, - "name": "croc", - "url": "https://github.com/Be-Secure/croc" - } - - ] - }, - "license": { - "key": "mit", - "name": "MIT License ", - "spdx_id": "mit", - "url": "https://api.github.com/licenses/mit", - "node_id": "MDc6TGljZW5zZTEz" - }, - "language": [ - - "Go", "Shell" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-IS" - ], - "COM": [ - "Community led" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - - - { - "id": 212, - "bes_tracking_id": 212, - "name": "opencti", - "full_name": "Be-Secure/ opencti ", - "description": "OpenCTI is an open source platform allowing organizations to manage their cyber threat intelligence knowledge and observables.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 31388, - "open_issues": 0, - "created_at": "2021-04-29T08:36:00Z", - "updated_at": "2021-10-21T03:00:33Z", - "pushed_at": "2021-10-21T03:51:21Z", - "git_url": "git://github.com/Be-Secure/opencti.git", - "clone_url": "https://github.com/Be-Secure/opencti.git", - "html_url": "https://github.com/Be-Secure/opencti", - "homepage": "https://www.opencti.io", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 2, - "year": 2022, - "bes_cve_details_id": "", - "cvedetails_product_id": "117190", - "cvedetails_vendor_id": "27625" - }, - "project_repos": { - "main_github_url": "https://github.com/OpenCTI-Platform/opencti", - "main_bes_url": "https://github.com/Be-Secure/opencti", - "all_projects": { - "opencti": "https://github.com/OpenCTI-Platform/opencti" - - }, - "all_bes_repos": [{ - "id": 362747173, - "name": "opencti", - "url": "https://github.com/Be-Secure/opencti" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - " Javascript", "Typescript", "Python", " CSS", "HTML", "Dockerfile" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-SRM" - ], - "COM": [ - "Organization led" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - - { - "id": 211, - "bes_tracking_id": 211, - "name": "Securityonion", - "full_name": "Be-Secure/ Securityonion ", - "description": "Security Onion 2 - Linux distro for threat hunting, enterprise security monitoring, and log management", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 19498, - "open_issues": 0, - "created_at": "2021-06-17T07:28:58Z", - "updated_at": "2022-02-20T08:20:25Z", - "pushed_at": "2022-02-20T08:19:04Z", - "git_url": "git://github.com/Be-Secure/Securityonion.git", - "clone_url": "https://github.com/Be-Secure/Securityonion.git", - "html_url": "https://github.com/Be-Secure/Securityonion", - "homepage": null, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2020, - "bes_cve_details_id": "", - "cvedetails_product_id": "90742", - "cvedetails_vendor_id": "24051" - }, - "project_repos": { - "main_github_url": "https://github.com/Security-Onion-Solutions/Securityonion", - "main_bes_url": "https://github.com/Be-Secure/Securityonion", - "all_projects": { - "Securityonion": "https://github.com/Security-Onion-Solutions/Securityonion" - - }, - "all_bes_repos": [{ - "id": 377742973, - "name": "Securityonion", - "url": "https://github.com/Be-Secure/Securityonion" - } - - ] - }, - "license": { - "key": "", - "name": "", - "spdx_id": "", - "url": "", - "node_id": "" - }, - "language": [ - - "Shell", "Salt stack", "YARA", "jinja", "python", "zeek" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-IoTS" - ], - "COM": [ - "Community led" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - { - "id": 210, - "bes_tracking_id": 210, - "name": "patton", - "full_name": "Be-Secure/ patton ", - "description": "The clever vulnerability dependency finder", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 3184, - "open_issues": 0, - "created_at": "2021-08-02T12:21:14Z", - "updated_at": "2021-08-02T12:21:15Z", - "pushed_at": "2021-04-29T08:28:42Z", - "git_url": "git://github.com/Be-Secure/patton.git", - "clone_url": "https://github.com/Be-Secure/patton.git", - "html_url": "https://github.com/Be-Secure/patton", - "homepage": "https://owasp.org/www-project-patton/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/BBVA/patton", - "main_bes_url": "https://github.com/Be-Secure/patton", - "all_projects": { - "patton": "https://github.com/BBVA/patton" - - }, - "all_bes_repos": [{ - "id": 391938093, - "name": "patton", - "url": "https://github.com/Be-Secure/patton" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "Go", "Python", "Dockerfile", "Shell", "Makefile", "Gherkin" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-AS" - ], - "COM": ["Community led"], - "TD-U": [ - "" - - ] - - - } - - - }, - - { - "id": 209, - "bes_tracking_id": 209, - "name": "zeek", - "full_name": "Be-Secure/ zeek ", - "description": "Zeek is a powerful network analysis framework", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 113514, - "open_issues": 0, - "created_at": "2021-06-17T08:29:28Z", - "updated_at": "2021-06-17T08:29:30Z", - "pushed_at": "2021-06-17T07:25:11Z", - "git_url": "git://github.com/Be-Secure/zeek.git", - "clone_url": "https://github.com/Be-Secure/zeek.git", - "html_url": "https://github.com/Be-Secure/zeek", - "homepage": "https://www.zeek.org", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2021, - "bes_cve_details_id": "", - "cvedetails_product_id": "57109", - "cvedetails_vendor_id": "20112" - }, - "project_repos": { - "main_github_url": "https://github.com/zeek/zeek", - "main_bes_url": "https://github.com/Be-Secure/zeek", - "all_projects": { - "zeek": "https://github.com/zeek/zeek" - - }, - "all_bes_repos": [{ - "id": 377759115, - "name": "zeek", - "url": "https://github.com/Be-Secure/zeek" - } - - ] - }, - "license": { - "key": "other", - "name": "other", - "spdx_id": "NOASSERTION", - "url": null, - "node_id": "MDc6TGljZW5zZTA=" - }, - "language": [ - - "C++", "Cmake", "Shell", "zeek", "Lex", "Yacc" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-NS" - ], - "COM": [ - "Community led" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - { - "id": 208, - "bes_tracking_id": 208, - "name": "ossec-hids", - "full_name": "Be-Secure/ ossec-hids ", - "description": "OSSEC is an Open Source Host-based Intrusion Detection System that performs log analysis, file integrity checking, policy monitoring, rootkit detection, real-time alerting and active response.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 20403, - "open_issues": 0, - "created_at": "2021-07-07T09:27:43Z", - "updated_at": "2021-07-07T09:27:44Z", - "pushed_at": "2021-06-24T15:28:23Z", - "git_url": "git://github.com/Be-Secure/ossec-hids.git", - "clone_url": "https://github.com/Be-Secure/ossec-hids.git", - "html_url": "https://github.com/Be-Secure/ossec-hids", - "homepage": "http://www.ossec.net", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/ossec/ossec-hids", - "main_bes_url": "https://github.com/Be-Secure/ossec-hids", - "all_projects": { - "ossec-hids": "https://github.com/ossec/ossec-hids" - - }, - "all_bes_repos": [{ - "id": 383743694, - "name": "ossec-hids", - "url": "https://github.com/Be-Secure/ossec-hids" - } - - ] - }, - "license": { - "key": "other", - "name": "other", - "spdx_id": "NOASSERTION", - "url": null, - "node_id": "MDc6TGljZW5zZTA=" - }, - "language": [ - - "Python", "Shell", "Makefile", "C", "Perl" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-NS" - ], - "COM": [ - "Community led" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - { - "id": 207, - "bes_tracking_id": 207, - "name": "malcolm", - "full_name": "Be-Secure/ malcolm ", - "description": "Malcolm is a powerful, easily deployable network traffic analysis tool suite for full packet capture artifacts (PCAP files) and Zeek logs", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 39896, - "open_issues": 0, - "created_at": "2021-07-01T06:58:03Z", - "updated_at": "2021-07-01T06:58:04Z", - "pushed_at": "2021-06-28T16:03:01Z", - "git_url": "git://github.com/Be-Secure/malcolm.git", - "clone_url": "https://github.com/Be-Secure/malcolm.git", - "html_url": "https://github.com/Be-Secure/malcolm", - "homepage": null, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/cisagov/malcolm", - "main_bes_url": "https://github.com/Be-Secure/malcolm", - "all_projects": { - "malcolm": "https://github.com/cisagov/malcolm" - - }, - "all_bes_repos": [{ - "id": 381939268, - "name": "malcolm", - "url": "https://github.com/Be-Secure/malcolm" - } - - ] - }, - "license": { - "key": "other", - "name": "other", - "spdx_id": "NOASSERTION", - "url": null, - "node_id": "MDc6TGljZW5zZTA=" - }, - "language": [ - - "Python", "Shell", "Zeek", "Javascript", "CSS", "Dockerfile" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-NS" - ], - "COM": [ - "Organization led" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - { - "id": 206, - "bes_tracking_id": 206, - "name": "stix-shifter", - "full_name": "Be-Secure/stix-shifter", - "description": "This project consists of an open source library allowing software to connect to data repositories using STIX Patterning, and return results as STIX Observations.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 6247, - "open_issues": 0, - "created_at": "2021-07-02T02:53:16Z", - "updated_at": "2021-07-02T02:53:17Z", - "pushed_at": "2021-06-29T23:04:06Z", - "git_url": "git://github.com/Be-Secure/stix-shifter.git", - "clone_url": "https://github.com/Be-Secure/stix-shifter.git", - "html_url": "https://github.com/Be-Secure/stix-shifter", - "homepage": null, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/opencybersecurityalliance/stix-shifter", - "main_bes_url": "https://github.com/Be-Secure/stix-shifter", - "all_projects": { - "stix-shifter": "https://github.com/opencybersecurityalliance/stix-shifter" - - }, - "all_bes_repos": [{ - "id": 382213306, - "name": "stix-shifter", - "url": "https://github.com/Be-Secure/stix-shifter" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "Python" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-SRM" - ], - "COM": [ - "OCA" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - { - "id": 205, - "bes_tracking_id": 205, - "name": "cset", - "full_name": "Be-Secure/cset", - "description": "Cybersecurity Evaluation Tool", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 1073405, - "open_issues": 0, - "created_at": "2021-07-01T07:05:34Z", - "updated_at": "2021-07-01T07:05:35Z", - "pushed_at": "2021-06-29T23:05:31Z", - "git_url": "git://github.com/Be-Secure/cset.git", - "clone_url": "https://github.com/Be-Secure/cset.git", - "html_url": "https://github.com/Be-Secure/cset", - "homepage": null, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/cisagov/cset", - "main_bes_url": "https://github.com/Be-Secure/cset", - "all_projects": { - "cset": "https://github.com/cisagov/cset" - - }, - "all_bes_repos": [{ - "id": 381941208, - "name": "cset", - "url": "https://github.com/Be-Secure/cset" - } - - ] - }, - "license": { - "key": "mit", - "name": "MIT license", - "spdx_id": "mit", - "url": "https://api.github.com/licenses/mit", - "node_id": "MDc6TGljZW5zZTEz" - }, - "language": [ - - "HTML", "C#", "SCSS", "Javascript", "Typescript", "TSQL" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-AS" - ], - "COM": [ - "Organization-led" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - { - "id": 204, - "bes_tracking_id": 204, - "name": "snort3", - "full_name": "Be-Secure/snort3", - "description": "Snort 3 is the next generation Snort IPS (Intrusion Prevention System)", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 76268, - "open_issues": 0, - "created_at": "2021-07-07T12:46:18Z", - "updated_at": "2021-07-07T12:46:20Z", - "pushed_at": "2021-06-30T15:41:50Z", - "git_url": "git://github.com/Be-Secure/snort3.git", - "clone_url": "https://github.com/Be-Secure/snort3.git", - "html_url": "https://github.com/Be-Secure/snort3", - "homepage": null, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/snort3/snort3", - "main_bes_url": "https://github.com/Be-Secure/snort3", - "all_projects": { - "snort3": "https://github.com/snort3/snort3" - - }, - "all_bes_repos": [{ - "id": 383795987, - "name": "snort3", - "url": "https://github.com/Be-Secure/snort3" - } - - ] - }, - "license": { - "key": "other", - "name": "other", - "spdx_id": "NOASSERTION", - "url": null, - "node_id": "MDc6TGljZW5zZTA=" - }, - "language": [ - - "C", "C++" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-NS" - ], - "COM": [ - "Community-led" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - { - "id": 203, - "bes_tracking_id": 203, - "name": "Kestrel-lang", - "full_name": "Be-Secure/Kestrel-lang", - "description": "Kestrel Threat Hunting Language", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 1060, - "open_issues": 0, - "created_at": "2021-07-07T09:42:05Z", - "updated_at": "2021-07-07T09:42:06Z", - "pushed_at": "2021-07-01T20:34:12Z", - "git_url": "git://github.com/Be-Secure/Kestrel-lang.git", - "clone_url": "https://github.com/Be-Secure/Kestrel-lang.git", - "html_url": "https://github.com/Be-Secure/Kestrel-lang", - "homepage": null, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/opencybersecurityalliance/Kestrel-lang", - "main_bes_url": "https://github.com/Be-Secure/Kestrel-lang", - "all_projects": { - "Kestrel-lang": "https://github.com/opencybersecurityalliance/Kestrel-lang" - - }, - "all_bes_repos": [{ - "id": 383747406, - "name": "Kestrel-lang", - "url": "https://github.com/Be-Secure/Kestrel-lang" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "Python", "Shell" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-SRM" - ], - "COM": [ - "OCA" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - - { - "id": 202, - "bes_tracking_id": 202, - "name": "trasa", - "full_name": "Be-Secure/trasa", - "description": "Zero Trust Service Access", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 120953, - "open_issues": 0, - "created_at": "2021-07-07T12:08:00Z", - "updated_at": "2021-07-07T12:08:01Z", - "pushed_at": "2021-07-02T09:09:34Z", - "git_url": "git://github.com/Be-Secure/trasa.git", - "clone_url": "https://github.com/Be-Secure/trasa.git", - "html_url": "https://github.com/Be-Secure/trasa", - "homepage": "https://www.trasa.io", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/seknox/trasa", - "main_bes_url": "https://github.com/Be-Secure/trasa", - "all_projects": { - "trasa": "https://github.com/seknox/trasa" - - }, - "all_bes_repos": [{ - "id": 383785509, - "name": "trasa", - "url": "https://github.com/Be-Secure/trasa" - } - - ] - }, - "license": { - "key": "mpl-2.0", - "name": "Mozilla Public License 2.0", - "spdx_id": "MPL-2.0", - "url": "https://api.github.com/licenses/mpl-2.0", - "node_id": "MDc6TGljZW5zZTE0" - }, - "language": [ - - "Go", " Typescript", "CSS", "Javascript", "C#", "C++" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-IAM" - ], - "COM": [ - "Community LED" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - { - "id": 201, - "bes_tracking_id": 201, - "name": "nmap", - "full_name": "Be-Secure/nmap", - "description": "This is the Network Mapper", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 93524, - "open_issues": 0, - "created_at": "2021-07-07T12:47:05Z", - "updated_at": "2021-07-07T12:47:06Z", - "pushed_at": "2021-07-02T20:09:07Z", - "git_url": "git://github.com/Be-Secure/nmap.git", - "clone_url": "https://github.com/Be-Secure/nmap.git", - "html_url": "https://github.com/Be-Secure/nmap", - "homepage": "https://svn.nmap.org/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2019, - "bes_cve_details_id": "", - "cvedetails_product_id": "26385", - "cvedetails_vendor_id": "12932" - }, - "project_repos": { - "main_github_url": "https://github.com/nmap/nmap", - "main_bes_url": "https://github.com/Be-Secure/nmap", - "all_projects": { - "nmap": "https://github.com/nmap/nmap" - - }, - "all_bes_repos": [{ - "id": 383796216, - "name": "nmap", - "url": "https://github.com/Be-Secure/nmap" - } - - ] - }, - "license": { - "key": "other", - "name": "other", - "spdx_id": "NOASSERTION", - "url": null, - "node_id": "MDc6TGljZW5zZTA=" - }, - "language": [ - - "C", "C++", "Makefile", "Python", "Shell", "Lua" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-NS" - ], - "COM": [ - "Community LED" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - { - "id": 199, - "bes_tracking_id": 199, - "name": "pacu", - "full_name": "Be-Secure/pacu", - "description": "Pacu is an open-source AWS exploitation framework, designed for offensive security testing against cloud environments.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 26420, - "open_issues": 0, - "created_at": "2021-07-07T09:29:35Z", - "updated_at": "2021-07-07T09:29:36Z", - "pushed_at": "2021-07-03T16:21:01Z", - "git_url": "git://github.com/Be-Secure/pacu.git", - "clone_url": "https://github.com/Be-Secure/pacu.git", - "html_url": "https://github.com/Be-Secure/pacu", - "homepage": "https://rhinosecuritylabs.com/aws/pacu-open-source-aws-exploitation-framework/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/RhinoSecurityLabs/pacu", - "main_bes_url": "https://github.com/Be-Secure/pacu", - "all_projects": { - "pacu": "https://github.com/RhinoSecurityLabs/pacu" - - }, - "all_bes_repos": [{ - "id": 383744199, - "name": "pacu", - "url": "https://github.com/Be-Secure/pacu" - } - - ] - }, - "license": { - "key": "bsd-3-clause", - "name": "BSD 3-Clause \"New\" or \"Revised\" License", - "spdx_id": "BSD-3-Clause", - "url": "https://api.github.com/licenses/bsd-3-clause", - "node_id": "MDc6TGljZW5zZTU=" - }, - "language": [ - - " Python" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-CS" - ], - "COM": [ - "Community LED" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - { - "id": 198, - "bes_tracking_id": 198, - "name": "pritunl-zero", - "full_name": "Be-Secure/pritunl-zero", - "description": "Its a zero trust system that provides secure authenticated access to internal services from untrusted networks without the use of a VPN.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 52442, - "open_issues": 0, - "created_at": "2021-07-07T12:07:24Z", - "updated_at": "2021-07-07T12:07:25Z", - "pushed_at": "2021-07-04T20:23:36Z", - "git_url": "git://github.com/Be-Secure/pritunl-zero.git", - "clone_url": "https://github.com/Be-Secure/pritunl-zero.git", - "html_url": "https://github.com/Be-Secure/pritunl-zero", - "homepage": "https://zero.pritunl.com/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/pritunl/pritunl-zero", - "main_bes_url": "https://github.com/Be-Secure/pritunl-zero", - "all_projects": { - "pritunl-zero": "https://github.com/pritunl/pritunl-zero" - - }, - "all_bes_repos": [{ - "id": 383785324, - "name": "pritunl-zero", - "url": "https://github.com/Be-Secure/pritunl-zero" - } - - ] - }, - "license": { - "key": "other", - "name": "other", - "spdx_id": "NOASSERTION", - "url": null, - "node_id": "MDc6TGljZW5zZTA=" - }, - "language": [ - - "Go", " Typescript", " Shell", " Python" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-IAM" - ], - "COM": [ - "Community LED" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - { - "id": 197, - "bes_tracking_id": 197, - "name": "Ghidra", - "full_name": "Be-Secure/Ghidra", - "description": "enable users to analyze compiled code on a variety of platforms including Windows, macOS, and Linux", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 129035, - "open_issues": 0, - "created_at": "2021-07-07T12:51:25Z", - "updated_at": "2021-07-07T12:51:26Z", - "pushed_at": "2021-07-07T08:55:43Z", - "git_url": "git://github.com/Be-Secure/Ghidra.git", - "clone_url": "https://github.com/Be-Secure/Ghidra.git", - "html_url": "https://github.com/Be-Secure/Ghidra", - "homepage": "https://ghidra-sre.org/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 5, - "year": 2019, - "bes_cve_details_id": "", - "cvedetails_product_id": "57094", - "cvedetails_vendor_id": "662" - }, - "project_repos": { - "main_github_url": "https://github.com/NationalSecurityAgency/Ghidra", - "main_bes_url": "https://github.com/Be-Secure/Ghidra", - "all_projects": { - "Ghidra": "https://github.com/NationalSecurityAgency/Ghidra" - - }, - "all_bes_repos": [{ - "id": 383797406, - "name": "Ghidra", - "url": "https://github.com/Be-Secure/Ghidra" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "Java", " HTML", " Shell", " C++", " C", " Python" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-AS" - ], - "COM": [ - "Community LED" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - { - "id": 196, - "bes_tracking_id": 196, - "name": "openscap", - "full_name": "Be-Secure/openscap", - "description": "The oscap program is a command line tool that allows users to load, scan, validate, edit, and export SCAP documents", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 28563, - "open_issues": 0, - "created_at": "2021-07-11T04:36:58Z", - "updated_at": "2021-07-11T04:36:58Z", - "pushed_at": "2021-07-08T12:37:29Z", - "git_url": "git://github.com/Be-Secure/openscap.git", - "clone_url": "https://github.com/Be-Secure/openscap.git", - "html_url": "https://github.com/Be-Secure/openscap", - "homepage": "https://www.open-scap.org/tools/openscap-base/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2022, - "bes_cve_details_id": "", - "cvedetails_product_id": "112030", - "cvedetails_vendor_id": "12780" - }, - "project_repos": { - "main_github_url": "https://github.com/openSCAP/openscap", - "main_bes_url": "https://github.com/Be-Secure/openscap", - "all_projects": { - "openscap": "https://github.com/openSCAP/openscap" - - }, - "all_bes_repos": [{ - "id": 384860470, - "name": "openscap", - "url": "https://github.com/Be-Secure/openscap" - } - - ] - }, - "license": { - "key": "lgpl-2.1", - "name": "GNU Lesser General Public License v2.1", - "spdx_id": "LGPL-2.1", - "url": "https://api.github.com/licenses/lgpl-2.1", - "node_id": "MDc6TGljZW5zZTEx" - }, - "language": [ - - "C", " Cmake", " Shell", "Python", " Roff", " XSLT" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-SRM" - ], - "COM": [ - "Community LED" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - { - "id": 195, - "bes_tracking_id": 195, - "name": "glue", - "full_name": "Be-Secure/glue", - "description": "Glue is a framework for running a series of tools.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 8922, - "open_issues": 0, - "created_at": "2021-08-02T12:18:33Z", - "updated_at": "2021-08-02T12:18:34Z", - "pushed_at": "2021-07-12T22:27:12Z", - "git_url": "git://github.com/Be-Secure/glue.git", - "clone_url": "https://github.com/Be-Secure/glue.git", - "html_url": "https://github.com/Be-Secure/glue", - "homepage": "", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/OWASP/glue", - "main_bes_url": "https://github.com/Be-Secure/glue", - "all_projects": { - "glue": "https://github.com/OWASP/glue" - - }, - "all_bes_repos": [{ - "id": 391937281, - "name": "glue", - "url": "https://github.com/Be-Secure/glue" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "HTML", " Ruby", "Shell", "Dockerfile", " Groovy", " Javascript" - ], - - "tags": { - "IND": [ - "Cyber security" - ], - "SD": [ - "SD-AS" - ], - "COM": [ - "Community LED" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - - { - "id": 194, - "bes_tracking_id": 194, - "name": "alerta", - "full_name": "Be-Secure/alerta", - "description": "The Alerta monitoring tool ", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 11130, - "open_issues": 0, - "created_at": "2021-08-02T12:22:15Z", - "updated_at": "2021-08-02T12:22:16Z", - "pushed_at": "2021-07-26T17:01:04Z", - "git_url": "git://github.com/Be-Secure/alerta.git", - "clone_url": "https://github.com/Be-Secure/alerta.git", - "html_url": "https://github.com/Be-Secure/alerta", - "homepage": "https://alerta.io", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2020, - "bes_cve_details_id": "", - "cvedetails_product_id": "88727", - "cvedetails_vendor_id": "23737" - }, - "project_repos": { - "main_github_url": "https://github.com/alerta/alerta", - "main_bes_url": "https://github.com/Be-Secure/alerta", - "all_projects": { - "alerta": "https://github.com/alerta/alerta" - - }, - "all_bes_repos": [{ - "id": 391938375, - "name": "alerta", - "url": "https://github.com/Be-Secure/alerta" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "Python" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "SD-NS" - ], - "COM": [ - "Independent LED" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - - - { - "id": 193, - "bes_tracking_id": 193, - "name": "cs-suite", - "full_name": "Be-Secure/cs-suite", - "description": "Cloud Security Suite - One stop tool for auditing the security posture of AWS/GCP/Azure infrastructure.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 3407, - "open_issues": 0, - "created_at": "2020-10-07T08:26:44Z", - "updated_at": "2020-10-07T08:26:46Z", - "pushed_at": "2021-12-04T08:48:48Z", - "git_url": "git://github.com/Be-Secure/cs-suite.git", - "clone_url": "https://github.com/Be-Secure/cs-suite.git", - "html_url": "https://github.com/Be-Secure/cs-suite", - "homepage": "", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/securityFTW/cs-suite", - "main_bes_url": "https://github.com/Be-Secure/cs-suite", - "all_projects": { - "cs-suite": "https://github.com/securityFTW/cs-suite" - - }, - "all_bes_repos": [{ - "id": 301972280, - "name": "cs-suite", - "url": "https://github.com/Be-Secure/cs-suite" - } - - ] - }, - "license": { - "key": "gpl-3.0", - "name": "GNU General Public License v3.0", - "spdx_id": "GPL-3.0", - "url": "https://api.github.com/licenses/gpl-3.0", - "node_id": "MDc6TGljZW5zZTk=" - }, - "language": [ - - "shell", " python", " HTML", " powershell", " javascript", " CSS" - ], - - "tags": { - "IND": [ - "open source security tool" - ], - "SD": [ - "SD-CS" - ], - "COM": [ - "COMMUNITY LED" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - { - "id": 192, - "bes_tracking_id": 192, - "name": "trivy", - "full_name": "Be-Secure/trivy", - "description": "scanners that look for different security issues, and different targets where it can find those issues.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 696921, - "open_issues": 0, - "created_at": "2021-08-02T12:28:22Z", - "updated_at": "2021-09-22T10:32:33Z", - "pushed_at": "2021-09-22T10:32:28Z", - "git_url": "git://github.com/Be-Secure/trivy.git", - "clone_url": "https://github.com/Be-Secure/trivy.git", - "html_url": "https://github.com/Be-Secure/trivy", - "homepage": "https://aquasecurity.github.io/trivy/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/aquasecurity/trivy", - "main_bes_url": "https://github.com/Be-Secure/trivy", - "all_projects": { - "trivy": "https://github.com/aquasecurity/trivy" - - }, - "all_bes_repos": [{ - "id": 391940347, - "name": "trivy", - "url": "https://github.com/Be-Secure/trivy" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - " go", "shell", "makefile", "smarty", "mustache", "open policy agent" - ], - - "tags": { - "IND": [ - "open source security tool" - ], - "SD": [ - "SD-AS" - ], - "COM": [ - "COMMUNITY LED" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - - { - "id": 191, - "bes_tracking_id": 191, - "name": "anchore-engine", - "full_name": "Be-Secure/anchore-engine", - "description": "provides a centralized service for inspection, analysis, and certification of container images.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 186069, - "open_issues": 0, - "created_at": "2021-08-02T12:26:40Z", - "updated_at": "2021-09-09T09:34:31Z", - "pushed_at": "2021-11-08T07:22:17Z", - "git_url": "git://github.com/Be-Secure/anchore-engine.git", - "clone_url": "https://github.com/Be-Secure/anchore-engine.git", - "html_url": "https://github.com/Be-Secure/anchore-engine", - "homepage": "", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/anchore/anchore-engine", - "main_bes_url": "https://github.com/Be-Secure/anchore-engine", - "all_projects": { - "anchore-engine": "https://github.com/anchore/anchore-engine" - - }, - "all_bes_repos": [{ - "id": 391939809, - "name": "anchore-engine", - "url": "https://github.com/Be-Secure/anchore-engine" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "Python" - ], - - "tags": { - "IND": [ - "open source security tool" - ], - "SD": [ - "SD-AS" - ], - "COM": [ - "COMMUNITY LED" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - - - { - "id": 190, - "bes_tracking_id": 190, - "name": "clair", - "full_name": "Be-Secure/clair", - "description": "Clair is an open source project for the static analysis of vulnerabilities in application containers", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 31978, - "open_issues": 0, - "created_at": "2021-08-02T12:26:29Z", - "updated_at": "2021-09-22T10:30:52Z", - "pushed_at": "2021-09-22T10:30:47Z", - "git_url": "git://github.com/Be-Secure/clair.git", - "clone_url": "https://github.com/Be-Secure/clair.git", - "html_url": "https://github.com/Be-Secure/clair", - "homepage": "", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/quay/clair", - "main_bes_url": "https://github.com/Be-Secure/clair", - "all_projects": { - "clair": "https://github.com/quay/clair" - - }, - "all_bes_repos": [{ - "id": 391939745, - "name": "clair", - "url": "https://github.com/Be-Secure/clair" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "Go" - ], - - "tags": { - "IND": [ - "open source security tool" - ], - "SD": [ - "SD-AS" - ], - "COM": [ - "COMMUNITY LED" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - { - "id": 189, - "bes_tracking_id": 189, - "name": "archerysec", - "full_name": "Be-Secure/archerysec", - "description": "Archery is an opensource vulnerability assessment and management tool which helps developers and pentesters to perform scans and manage vulnerabilities.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 66952, - "open_issues": 0, - "created_at": "2021-08-02T12:28:43Z", - "updated_at": "2021-08-02T12:28:44Z", - "pushed_at": "2021-08-01T09:08:52Z", - "git_url": "git://github.com/Be-Secure/archerysec.git", - "clone_url": "https://github.com/Be-Secure/archerysec.git", - "html_url": "https://github.com/Be-Secure/archerysec", - "homepage": "https://www.archerysec.com/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/archerysec/archerysec", - "main_bes_url": "https://github.com/Be-Secure/archerysec", - "all_projects": { - "archerysec": "https://github.com/archerysec/archerysec" - - }, - "all_bes_repos": [{ - "id": 391940458, - "name": "archerysec", - "url": "https://github.com/Be-Secure/archerysec" - } - - ] - }, - "license": { - "key": "gpl-3.0", - "name": "GNU General Public License v3.0", - "spdx_id": "GPL-3.0", - "url": "https://api.github.com/licenses/gpl-3.0", - "node_id": "MDc6TGljZW5zZTk=" - }, - "language": [ - - "Python", " HTML", " Shell", " Javascript", " CSS", " Lua" - ], - - "tags": { - "IND": [ - "open source security tool" - ], - "SD": [ - "SD-AS" - ], - "COM": [ - "COMMUNITY LED" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - - { - "id": 188, - "bes_tracking_id": 188, - "name": "threat-dragon", - "full_name": "Be-Secure/threat-dragon", - "description": "Threat Dragon is a free, open-source, cross-platform threat modeling application.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 123963, - "open_issues": 0, - "created_at": "2021-08-02T12:17:22Z", - "updated_at": "2021-08-02T12:17:23Z", - "pushed_at": "2021-08-02T08:16:54Z", - "git_url": "git://github.com/Be-Secure/threat-dragon.git", - "clone_url": "https://github.com/Be-Secure/threat-dragon.git", - "html_url": "https://github.com/Be-Secure/threat-dragon", - "homepage": "http://docs.threatdragon.org/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/OWASP/threat-dragon", - "main_bes_url": "https://github.com/Be-Secure/threat-dragon", - "all_projects": { - "threat-dragon": "https://github.com/OWASP/threat-dragon" - - }, - "all_bes_repos": [{ - "id": 391936908, - "name": "threat-dragon", - "url": "https://github.com/Be-Secure/threat-dragon" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "javascript", " shell", " python", " HTML", " vue", " dockerfile", " SCSS" - ], - - "tags": { - "IND": [ - "open source security tool" - ], - "SD": [ - "SD-SRM" - ], - "COM": [ - "COMMUNITY LED" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - - { - "id": 187, - "bes_tracking_id": 187, - "name": "modsecurity", - "full_name": "Be-Secure/modsecurity", - "description": "Open source web application firewall", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 73924, - "open_issues": 0, - "created_at": "2021-08-02T12:23:34Z", - "updated_at": "2021-08-02T12:23:35Z", - "pushed_at": "2021-08-02T12:10:40Z", - "git_url": "git://github.com/Be-Secure/modsecurity.git", - "clone_url": "https://github.com/Be-Secure/modsecurity.git", - "html_url": "https://github.com/Be-Secure/modsecurity", - "homepage": "https://www.modsecurity.org", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "17488", - "cvedetails_vendor_id": "9781" - }, - "project_repos": { - "main_github_url": "https://github.com/spiderlabs/modsecurity", - "main_bes_url": "https://github.com/Be-Secure/modsecurity", - "all_projects": { - "modsecurity": "https://github.com/spiderlabs/modsecurity" - - }, - "all_bes_repos": [{ - "id": 391938789, - "name": "modsecurity", - "url": "https://github.com/Be-Secure/modsecurity" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "C++", "M4", "C", "makefile" - ], - - "tags": { - "IND": [ - "open source security tool" - ], - "SD": [ - "SD-IS" - ], - "COM": [ - "COMMUNITY LED" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - - { - "id": 186, - "bes_tracking_id": 186, - "name": "differential-privacy", - "full_name": "Be-Secure/differential-privacy", - "description": "This repository contains libraries to generate ε- and (ε, δ)-differentially private statistics over datasets.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 4124, - "open_issues": 0, - "created_at": "2021-07-07T12:09:15Z", - "updated_at": "2021-07-07T12:09:16Z", - "pushed_at": "2021-07-05T13:10:29Z", - "git_url": "git://github.com/Be-Secure/differential-privacy.git", - "clone_url": "https://github.com/Be-Secure/differential-privacy.git", - "html_url": "https://github.com/Be-Secure/differential-privacy", - "homepage": "", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/google/differential-privacy", - "main_bes_url": "https://github.com/Be-Secure/differential-privacy", - "all_projects": { - "differential-privacy": "https://github.com/google/differential-privacy" - - }, - "all_bes_repos": [{ - "id": 383785872, - "name": "differential-privacy", - "url": "https://github.com/Be-Secure/differential-privacy" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "C++", " Java", "Go", " python", " starlark", " jupyter notebook" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "community-led" - ], - "TD-U": [ - "" - - ] - - - } - - - }, - - { - "id": 185, - "bes_tracking_id": 185, - "name": "ursa", - "full_name": "Be-Secure/ursa", - "description": "Ursa was created because people in the Hyperledger community realized that it would save time and effort and improve security if we all collaborated on our cryptographic code.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 4737, - "open_issues": 0, - "created_at": "2021-07-04T05:21:03Z", - "updated_at": "2021-07-04T05:21:03Z", - "pushed_at": "2021-07-01T10:18:29Z", - "git_url": "git://github.com/Be-Secure/ursa.git", - "clone_url": "https://github.com/Be-Secure/ursa.git", - "html_url": "https://github.com/Be-Secure/ursa", - "homepage": "https://www.hyperledger.org/display/ursa", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/hyperledger/ursa", - "main_bes_url": "https://github.com/Be-Secure/ursa", - "all_projects": { - "ursa": "https://github.com/hyperledger/ursa" - - }, - "all_bes_repos": [{ - "id": 382769726, - "name": "ursa", - "url": "https://github.com/Be-Secure/ursa" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "Rust", "Python", "C", "Sage", "Dockerfile", " Perl" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "Hyperledger" - ], - "TD-U": [ - "TD-U-Bln" - - ] - - - } - - - }, - - - { - "id": 184, - "bes_tracking_id": 184, - "name": "cello", - "full_name": "Be-Secure/cello", - "description": "Cello is a blockchain provision and operation system, which helps manage blockchain networks in an efficient way.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 47468, - "open_issues": 0, - "created_at": "2021-07-02T02:44:14Z", - "updated_at": "2021-07-02T02:44:14Z", - "pushed_at": "2021-07-01T19:35:30Z", - "git_url": "git://github.com/Be-Secure/cello.git", - "clone_url": "https://github.com/Be-Secure/cello.git", - "html_url": "https://github.com/Be-Secure/cello", - "homepage": "https://www.hyperledger.org/display/cello", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/hyperledger/cello", - "main_bes_url": "https://github.com/Be-Secure/cello", - "all_projects": { - "cello": "https://github.com/hyperledger/cello" - - }, - "all_bes_repos": [{ - "id": 382211627, - "name": "cello", - "url": "https://github.com/Be-Secure/cello" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "javascript", "shell", "python", "go", "less", "jinja" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "Hyperledger" - ], - "TD-U": [ - "TD-U-Bln" - - ] - - - } - - - }, - - { - "id": 183, - "bes_tracking_id": 183, - "name": "cactus", - "full_name": "Be-Secure/cactus", - "description": "Cactus aims to provide Decentralized, Secure and Adaptable Integration between Blockchain Networks.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 37663, - "open_issues": 0, - "created_at": "2021-07-02T02:39:49Z", - "updated_at": "2021-07-02T02:39:49Z", - "pushed_at": "2021-07-02T02:17:10Z", - "git_url": "git://github.com/Be-Secure/cactus.git", - "clone_url": "https://github.com/Be-Secure/cactus.git", - "html_url": "https://github.com/Be-Secure/cactus", - "homepage": "https://www.hyperledger.org/display/cactus", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/hyperledger/cactus", - "main_bes_url": "https://github.com/Be-Secure/cactus", - "all_projects": { - "cactus": "https://github.com/hyperledger/cactus" - - }, - "all_bes_repos": [{ - "id": 382210837, - "name": "cactus", - "url": "https://github.com/Be-Secure/cactus" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "rust", "javascript", "solidity", - "kotlin", "shell", "typescript" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "Hyperledger" - ], - "TD-U": [ - "TD-U-Bln" - - ] - - - } - - - }, - - - { - "id": 182, - "bes_tracking_id": 182, - "name": "iroha", - "full_name": "Be-Secure/iroha", - "description": "Iroha is a straightforward distributed ledger technology", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 11443, - "open_issues": 0, - "created_at": "2021-07-04T05:20:09Z", - "updated_at": "2021-07-04T05:20:10Z", - "pushed_at": "2021-07-03T21:13:45Z", - "git_url": "git://github.com/Be-Secure/iroha.git", - "clone_url": "https://github.com/Be-Secure/iroha.git", - "html_url": "https://github.com/Be-Secure/iroha", - "homepage": "https://www.hyperledger.org/display/iroha", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2018, - "bes_cve_details_id": "", - "cvedetails_product_id": "46790", - "cvedetails_vendor_id": "18415" - }, - "project_repos": { - "main_github_url": "https://github.com/hyperledger/iroha", - "main_bes_url": "https://github.com/Be-Secure/iroha", - "all_projects": { - "iroha": "https://github.com/hyperledger/iroha" - - }, - "all_bes_repos": [{ - "id": 382769564, - "name": "iroha", - "url": "https://github.com/Be-Secure/iroha" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "C++", "Python", "Cmake", "Go", "Shell", "Solidity" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "Hyperledger" - ], - "TD-U": [ - "TD-U-Bln" - - ] - - - } - - - }, - - - - { - "id": 181, - "bes_tracking_id": 181, - "name": "besu", - "full_name": "Be-Secure/besu", - "description": "Besu is an Apache 2.0 licensed, MainNet compatible, Ethereum client written in Java.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 37276, - "open_issues": 0, - "created_at": "2021-07-02T02:47:54Z", - "updated_at": "2021-07-02T02:47:55Z", - "pushed_at": "2021-07-01T20:50:08Z", - "git_url": "git://github.com/Be-Secure/besu.git", - "clone_url": "https://github.com/Be-Secure/besu.git", - "html_url": "https://github.com/Be-Secure/besu", - "homepage": "https://www.hyperledger.org/projects/besu", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/hyperledger/besu", - "main_bes_url": "https://github.com/Be-Secure/besu", - "all_projects": { - "besu": "https://github.com/hyperledger/besu" - - }, - "all_bes_repos": [{ - "id": 382212362, - "name": "besu", - "url": "https://github.com/Be-Secure/besu" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "Java" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "Hyperledger" - ], - "TD-U": [ - "TD-U-Bln" - - ] - - - } - - - }, - - - { - "id": 180, - "bes_tracking_id": 180, - "name": "burrow", - "full_name": "Be-Secure/burrow", - "description": "fully fledged blockchain node and smart contract execution engine", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 46407, - "open_issues": 0, - "created_at": "2021-07-02T02:48:29Z", - "updated_at": "2021-07-02T02:48:30Z", - "pushed_at": "2021-06-12T14:46:17Z", - "git_url": "git://github.com/Be-Secure/burrow.git", - "clone_url": "https://github.com/Be-Secure/burrow.git", - "html_url": "https://github.com/Be-Secure/burrow", - "homepage": "https://hyperledger.github.io/burrow/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/hyperledger/burrow", - "main_bes_url": "https://github.com/Be-Secure/burrow", - "all_projects": { - "burrow": "https://github.com/hyperledger/burrow" - - }, - "all_bes_repos": [{ - "id": 382212452, - "name": "burrow", - "url": "https://github.com/Be-Secure/burrow" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "Go", "Typescript", "Shell", "Solidity", "Makefile", "Javascript" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "Hyperledger" - ], - "TD-U": [ - "TD-U-Bln" - - ] - - - } - - - }, - - { - "id": 179, - "bes_tracking_id": 179, - "name": "caliper", - "full_name": "Be-Secure/caliper", - "description": "blockchain performance benchmark framework, which allows users to test different blockchain solutions with predefined use cases, and get a set of performance test results.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 23065, - "open_issues": 0, - "created_at": "2021-07-02T02:44:19Z", - "updated_at": "2021-07-02T02:44:20Z", - "pushed_at": "2021-04-29T17:15:12Z", - "git_url": "git://github.com/Be-Secure/caliper.git", - "clone_url": "https://github.com/Be-Secure/caliper.git", - "html_url": "https://github.com/Be-Secure/caliper", - "homepage": "https://hyperledger.github.io/caliper/", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/hyperledger/caliper", - "main_bes_url": "https://github.com/Be-Secure/caliper", - "all_projects": { - "caliper": "https://github.com/hyperledger/caliper" - - }, - "all_bes_repos": [{ - "id": 382211645, - "name": "caliper", - "url": "https://github.com/Be-Secure/caliper" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "Javascript", "CSS", "SCSS", "Go", "Shell", "HTML" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "Hyperledger" - ], - "TD-U": [ - "TD-U-Bln" - - ] - - - } - - - }, - - - { - "id": 178, - "bes_tracking_id": 178, - "name": "sawtooth", - "full_name": "Be-Secure/sawtooth", - "description": "enterprise solution for building, deploying, and running distributed ledgers (also called blockchains).", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 31381, - "open_issues": 0, - "created_at": "2021-07-04T05:19:45Z", - "updated_at": "2021-07-04T05:19:46Z", - "pushed_at": "2021-06-26T13:55:48Z", - "git_url": "git://github.com/Be-Secure/sawtooth.git", - "clone_url": "https://github.com/Be-Secure/sawtooth.git", - "html_url": "https://github.com/Be-Secure/sawtooth", - "homepage": "https://wiki.hyperledger.org/display/sawtooth", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/hyperledger/sawtooth", - "main_bes_url": "https://github.com/Be-Secure/sawtooth", - "all_projects": { - "sawtooth": "https://github.com/hyperledger/sawtooth" - - }, - "all_bes_repos": [{ - "id": 382769509, - "name": "sawtooth", - "url": "https://github.com/Be-Secure/sawtooth" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "Rust", "Python", "Shell", "Dockerfile" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "Hyperledger" - ], - "TD-U": [ - "TD-U-Bln" - - ] - - - } - - - }, - - - { - "id": 177, - "bes_tracking_id": 177, - "name": "indy-sdk", - "full_name": "Be-Secure/indy-sdk", - "description": "provides a software ecosystem for private, secure, and powerful identity, and the Indy SDK enables clients for it.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 280653, - "open_issues": 0, - "created_at": "2021-07-04T05:19:08Z", - "updated_at": "2021-07-04T05:19:09Z", - "pushed_at": "2021-06-29T14:19:33Z", - "git_url": "git://github.com/Be-Secure/indy-sdk.git", - "clone_url": "https://github.com/Be-Secure/indy-sdk.git", - "html_url": "https://github.com/Be-Secure/indy-sdk", - "homepage": "https://wiki.hyperledger.org/display/indy-sdk", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": null, - "bes_cve_details_id": "", - "cvedetails_product_id": "", - "cvedetails_vendor_id": "" - }, - "project_repos": { - "main_github_url": "https://github.com/hyperledger/indy-sdk", - "main_bes_url": "https://github.com/Be-Secure/indy-sdk", - "all_projects": { - "indy-sdk": "https://github.com/hyperledger/indy-sdk" - - }, - "all_bes_repos": [{ - "id": 382769410, - "name": "indy-sdk", - "url": "https://github.com/Be-Secure/indy-sdk" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "Rust", "Java", "HTML", "Python", "C#", "Objective-C++" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "Hyperledger" - ], - "TD-U": [ - "TD-U-Bln" - - ] - - - } - - - }, - - - - { - "id": 176, - "bes_tracking_id": 176, - "name": "fabric", - "full_name": "Be-Secure/fabric", - "description": "It is a platform for distributed ledger solutions, underpinned by a modular architecture delivering high degrees of confidentiality, resiliency, flexibility and scalability.", - "watchers_count": 0, - "forks_count": 0, - "stargazers_count": 0, - "size": 124024, - "open_issues": 0, - "created_at": "2021-07-02T02:40:16Z", - "updated_at": "2021-07-02T02:40:17Z", - "pushed_at": "2021-07-02T01:37:16Z", - "git_url": "git://github.com/Be-Secure/fabric.git", - "clone_url": "https://github.com/Be-Secure/fabric.git", - "html_url": "https://github.com/Be-Secure/fabric", - "homepage": "https://wiki.hyperledger.org/display/fabric", - "owner": { - "login": "Be-Secure", - "id": 44028837, - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "html_url": "https://github.com/Be-Secure" - }, - "cvedetails": { - - "count": 0, - "year": 2022, - "bes_cve_details_id": "", - "cvedetails_product_id": "117539", - "cvedetails_vendor_id": "18415" - }, - "project_repos": { - "main_github_url": "https://github.com/hyperledger/fabric", - "main_bes_url": "https://github.com/Be-Secure/fabric", - "all_projects": { - "fabric": "https://github.com/hyperledger/fabric" - - }, - "all_bes_repos": [{ - "id": 382210912, - "name": "fabric", - "url": "https://github.com/Be-Secure/fabric" - } - - ] - }, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "language": [ - - "Go" - ], - - "tags": { - "IND": [ - "ALL" - ], - "SD": [ - "" - ], - "COM": [ - "Hyperledger" - ], - "TD-U": [ - "TD-U-Bln" - - ] - - - } - - - } - - ] -}) diff --git a/bes_theme/assets/data/be-secure-repos.js b/bes_theme/assets/data/be-secure-repos.js deleted file mode 100644 index 2e3dfcf7..00000000 --- a/bes_theme/assets/data/be-secure-repos.js +++ /dev/null @@ -1,3145 +0,0 @@ -modelDataAvailable({ - "total_count": 157, - "incomplete_results": false, - "items": - [ - { - "id": 172482849, - "node_id": "MDEwOlJlcG9zaXRvcnkxNzI0ODI4NDk=", - "name": "Be-Secure", - "full_name": "Be-Secure/Be-Secure", - "private": false, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Be-Secure", - "html_url": "https://github.com/Be-Secure", - "followers_url": "https://api.github.com/users/Be-Secure/followers", - "following_url": "https://api.github.com/users/Be-Secure/following{/other_user}", - "gists_url": "https://api.github.com/users/Be-Secure/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Be-Secure/subscriptions", - "organizations_url": "https://api.github.com/users/Be-Secure/orgs", - "repos_url": "https://api.github.com/users/Be-Secure/repos", - "events_url": "https://api.github.com/users/Be-Secure/events{/privacy}", - "received_events_url": "https://api.github.com/users/Be-Secure/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Be-Secure/Be-Secure", - "description": "Be-Secure is an umbrella project of open source security projects, tools, sandbox environments to perform security assessments and secure open source technology stacks.", - "fork": false, - "url": "https://api.github.com/repos/Be-Secure/Be-Secure", - "forks_url": "https://api.github.com/repos/Be-Secure/Be-Secure/forks", - "keys_url": "https://api.github.com/repos/Be-Secure/Be-Secure/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Be-Secure/Be-Secure/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Be-Secure/Be-Secure/teams", - "hooks_url": "https://api.github.com/repos/Be-Secure/Be-Secure/hooks", - "issue_events_url": "https://api.github.com/repos/Be-Secure/Be-Secure/issues/events{/number}", - "events_url": "https://api.github.com/repos/Be-Secure/Be-Secure/events", - "assignees_url": "https://api.github.com/repos/Be-Secure/Be-Secure/assignees{/user}", - "branches_url": "https://api.github.com/repos/Be-Secure/Be-Secure/branches{/branch}", - "tags_url": "https://api.github.com/repos/Be-Secure/Be-Secure/tags", - "blobs_url": "https://api.github.com/repos/Be-Secure/Be-Secure/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Be-Secure/Be-Secure/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Be-Secure/Be-Secure/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Be-Secure/Be-Secure/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Be-Secure/Be-Secure/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Be-Secure/Be-Secure/languages", - "stargazers_url": "https://api.github.com/repos/Be-Secure/Be-Secure/stargazers", - "contributors_url": "https://api.github.com/repos/Be-Secure/Be-Secure/contributors", - "subscribers_url": "https://api.github.com/repos/Be-Secure/Be-Secure/subscribers", - "subscription_url": "https://api.github.com/repos/Be-Secure/Be-Secure/subscription", - "commits_url": "https://api.github.com/repos/Be-Secure/Be-Secure/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Be-Secure/Be-Secure/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Be-Secure/Be-Secure/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Be-Secure/Be-Secure/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Be-Secure/Be-Secure/contents/{+path}", - "compare_url": "https://api.github.com/repos/Be-Secure/Be-Secure/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Be-Secure/Be-Secure/merges", - "archive_url": "https://api.github.com/repos/Be-Secure/Be-Secure/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Be-Secure/Be-Secure/downloads", - "issues_url": "https://api.github.com/repos/Be-Secure/Be-Secure/issues{/number}", - "pulls_url": "https://api.github.com/repos/Be-Secure/Be-Secure/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Be-Secure/Be-Secure/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Be-Secure/Be-Secure/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Be-Secure/Be-Secure/labels{/name}", - "releases_url": "https://api.github.com/repos/Be-Secure/Be-Secure/releases{/id}", - "deployments_url": "https://api.github.com/repos/Be-Secure/Be-Secure/deployments", - "created_at": "2019-02-25T10:15:41Z", - "updated_at": "2021-08-24T08:18:09Z", - "pushed_at": "2021-08-24T10:50:13Z", - "git_url": "git://github.com/Be-Secure/Be-Secure.git", - "ssh_url": "git@github.com:Be-Secure/Be-Secure.git", - "clone_url": "https://github.com/Be-Secure/Be-Secure.git", - "svn_url": "https://github.com/Be-Secure/Be-Secure", - "homepage": "", - "size": 15033, - "stargazers_count": 4, - "watchers_count": 4, - "language": "TypeScript", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": true, - "forks_count": 3, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 4, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "forks": 3, - "open_issues": 4, - "watchers": 4, - "default_branch": "master", - "permissions": { - "admin": false, - "maintain": false, - "push": false, - "triage": false, - "pull": true - } - }, - { - "id": 278282453, - "node_id": "MDEwOlJlcG9zaXRvcnkyNzgyODI0NTM=", - "name": "beef", - "full_name": "Be-Secure/beef", - "private": false, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Be-Secure", - "html_url": "https://github.com/Be-Secure", - "followers_url": "https://api.github.com/users/Be-Secure/followers", - "following_url": "https://api.github.com/users/Be-Secure/following{/other_user}", - "gists_url": "https://api.github.com/users/Be-Secure/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Be-Secure/subscriptions", - "organizations_url": "https://api.github.com/users/Be-Secure/orgs", - "repos_url": "https://api.github.com/users/Be-Secure/repos", - "events_url": "https://api.github.com/users/Be-Secure/events{/privacy}", - "received_events_url": "https://api.github.com/users/Be-Secure/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Be-Secure/beef", - "description": "The Browser Exploitation Framework Project", - "fork": true, - "url": "https://api.github.com/repos/Be-Secure/beef", - "forks_url": "https://api.github.com/repos/Be-Secure/beef/forks", - "keys_url": "https://api.github.com/repos/Be-Secure/beef/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Be-Secure/beef/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Be-Secure/beef/teams", - "hooks_url": "https://api.github.com/repos/Be-Secure/beef/hooks", - "issue_events_url": "https://api.github.com/repos/Be-Secure/beef/issues/events{/number}", - "events_url": "https://api.github.com/repos/Be-Secure/beef/events", - "assignees_url": "https://api.github.com/repos/Be-Secure/beef/assignees{/user}", - "branches_url": "https://api.github.com/repos/Be-Secure/beef/branches{/branch}", - "tags_url": "https://api.github.com/repos/Be-Secure/beef/tags", - "blobs_url": "https://api.github.com/repos/Be-Secure/beef/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Be-Secure/beef/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Be-Secure/beef/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Be-Secure/beef/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Be-Secure/beef/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Be-Secure/beef/languages", - "stargazers_url": "https://api.github.com/repos/Be-Secure/beef/stargazers", - "contributors_url": "https://api.github.com/repos/Be-Secure/beef/contributors", - "subscribers_url": "https://api.github.com/repos/Be-Secure/beef/subscribers", - "subscription_url": "https://api.github.com/repos/Be-Secure/beef/subscription", - "commits_url": "https://api.github.com/repos/Be-Secure/beef/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Be-Secure/beef/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Be-Secure/beef/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Be-Secure/beef/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Be-Secure/beef/contents/{+path}", - "compare_url": "https://api.github.com/repos/Be-Secure/beef/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Be-Secure/beef/merges", - "archive_url": "https://api.github.com/repos/Be-Secure/beef/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Be-Secure/beef/downloads", - "issues_url": "https://api.github.com/repos/Be-Secure/beef/issues{/number}", - "pulls_url": "https://api.github.com/repos/Be-Secure/beef/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Be-Secure/beef/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Be-Secure/beef/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Be-Secure/beef/labels{/name}", - "releases_url": "https://api.github.com/repos/Be-Secure/beef/releases{/id}", - "deployments_url": "https://api.github.com/repos/Be-Secure/beef/deployments", - "created_at": "2020-07-09T06:31:53Z", - "updated_at": "2020-07-09T06:31:55Z", - "pushed_at": "2020-07-09T00:45:54Z", - "git_url": "git://github.com/Be-Secure/beef.git", - "ssh_url": "git@github.com:Be-Secure/beef.git", - "clone_url": "https://github.com/Be-Secure/beef.git", - "svn_url": "https://github.com/Be-Secure/beef", - "homepage": "https://beefproject.com", - "size": 20823, - "stargazers_count": 0, - "watchers_count": 0, - "language": null, - "has_issues": false, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 0, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 0, - "license": null, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master", - "permissions": { - "admin": false, - "maintain": false, - "push": false, - "triage": false, - "pull": true - } - }, - { - "id": 278282827, - "node_id": "MDEwOlJlcG9zaXRvcnkyNzgyODI4Mjc=", - "name": "zaproxy", - "full_name": "Be-Secure/zaproxy", - "private": false, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Be-Secure", - "html_url": "https://github.com/Be-Secure", - "followers_url": "https://api.github.com/users/Be-Secure/followers", - "following_url": "https://api.github.com/users/Be-Secure/following{/other_user}", - "gists_url": "https://api.github.com/users/Be-Secure/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Be-Secure/subscriptions", - "organizations_url": "https://api.github.com/users/Be-Secure/orgs", - "repos_url": "https://api.github.com/users/Be-Secure/repos", - "events_url": "https://api.github.com/users/Be-Secure/events{/privacy}", - "received_events_url": "https://api.github.com/users/Be-Secure/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Be-Secure/zaproxy", - "description": "The OWASP ZAP core project", - "fork": true, - "url": "https://api.github.com/repos/Be-Secure/zaproxy", - "forks_url": "https://api.github.com/repos/Be-Secure/zaproxy/forks", - "keys_url": "https://api.github.com/repos/Be-Secure/zaproxy/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Be-Secure/zaproxy/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Be-Secure/zaproxy/teams", - "hooks_url": "https://api.github.com/repos/Be-Secure/zaproxy/hooks", - "issue_events_url": "https://api.github.com/repos/Be-Secure/zaproxy/issues/events{/number}", - "events_url": "https://api.github.com/repos/Be-Secure/zaproxy/events", - "assignees_url": "https://api.github.com/repos/Be-Secure/zaproxy/assignees{/user}", - "branches_url": "https://api.github.com/repos/Be-Secure/zaproxy/branches{/branch}", - "tags_url": "https://api.github.com/repos/Be-Secure/zaproxy/tags", - "blobs_url": "https://api.github.com/repos/Be-Secure/zaproxy/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Be-Secure/zaproxy/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Be-Secure/zaproxy/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Be-Secure/zaproxy/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Be-Secure/zaproxy/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Be-Secure/zaproxy/languages", - "stargazers_url": "https://api.github.com/repos/Be-Secure/zaproxy/stargazers", - "contributors_url": "https://api.github.com/repos/Be-Secure/zaproxy/contributors", - "subscribers_url": "https://api.github.com/repos/Be-Secure/zaproxy/subscribers", - "subscription_url": "https://api.github.com/repos/Be-Secure/zaproxy/subscription", - "commits_url": "https://api.github.com/repos/Be-Secure/zaproxy/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Be-Secure/zaproxy/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Be-Secure/zaproxy/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Be-Secure/zaproxy/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Be-Secure/zaproxy/contents/{+path}", - "compare_url": "https://api.github.com/repos/Be-Secure/zaproxy/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Be-Secure/zaproxy/merges", - "archive_url": "https://api.github.com/repos/Be-Secure/zaproxy/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Be-Secure/zaproxy/downloads", - "issues_url": "https://api.github.com/repos/Be-Secure/zaproxy/issues{/number}", - "pulls_url": "https://api.github.com/repos/Be-Secure/zaproxy/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Be-Secure/zaproxy/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Be-Secure/zaproxy/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Be-Secure/zaproxy/labels{/name}", - "releases_url": "https://api.github.com/repos/Be-Secure/zaproxy/releases{/id}", - "deployments_url": "https://api.github.com/repos/Be-Secure/zaproxy/deployments", - "created_at": "2020-07-09T06:33:45Z", - "updated_at": "2020-07-09T06:33:47Z", - "pushed_at": "2020-07-08T15:24:18Z", - "git_url": "git://github.com/Be-Secure/zaproxy.git", - "ssh_url": "git@github.com:Be-Secure/zaproxy.git", - "clone_url": "https://github.com/Be-Secure/zaproxy.git", - "svn_url": "https://github.com/Be-Secure/zaproxy", - "homepage": "https://www.zaproxy.org", - "size": 183650, - "stargazers_count": 0, - "watchers_count": 0, - "language": null, - "has_issues": false, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 0, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 0, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "develop", - "permissions": { - "admin": false, - "maintain": false, - "push": false, - "triage": false, - "pull": true - } - }, - { - "id": 286279035, - "node_id": "MDEwOlJlcG9zaXRvcnkyODYyNzkwMzU=", - "name": "BeSman", - "full_name": "Be-Secure/BeSman", - "private": false, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Be-Secure", - "html_url": "https://github.com/Be-Secure", - "followers_url": "https://api.github.com/users/Be-Secure/followers", - "following_url": "https://api.github.com/users/Be-Secure/following{/other_user}", - "gists_url": "https://api.github.com/users/Be-Secure/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Be-Secure/subscriptions", - "organizations_url": "https://api.github.com/users/Be-Secure/orgs", - "repos_url": "https://api.github.com/users/Be-Secure/repos", - "events_url": "https://api.github.com/users/Be-Secure/events{/privacy}", - "received_events_url": "https://api.github.com/users/Be-Secure/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Be-Secure/BeSman", - "description": "BeSecure Manager Community Edition", - "fork": false, - "url": "https://api.github.com/repos/Be-Secure/BeSman", - "forks_url": "https://api.github.com/repos/Be-Secure/BeSman/forks", - "keys_url": "https://api.github.com/repos/Be-Secure/BeSman/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Be-Secure/BeSman/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Be-Secure/BeSman/teams", - "hooks_url": "https://api.github.com/repos/Be-Secure/BeSman/hooks", - "issue_events_url": "https://api.github.com/repos/Be-Secure/BeSman/issues/events{/number}", - "events_url": "https://api.github.com/repos/Be-Secure/BeSman/events", - "assignees_url": "https://api.github.com/repos/Be-Secure/BeSman/assignees{/user}", - "branches_url": "https://api.github.com/repos/Be-Secure/BeSman/branches{/branch}", - "tags_url": "https://api.github.com/repos/Be-Secure/BeSman/tags", - "blobs_url": "https://api.github.com/repos/Be-Secure/BeSman/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Be-Secure/BeSman/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Be-Secure/BeSman/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Be-Secure/BeSman/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Be-Secure/BeSman/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Be-Secure/BeSman/languages", - "stargazers_url": "https://api.github.com/repos/Be-Secure/BeSman/stargazers", - "contributors_url": "https://api.github.com/repos/Be-Secure/BeSman/contributors", - "subscribers_url": "https://api.github.com/repos/Be-Secure/BeSman/subscribers", - "subscription_url": "https://api.github.com/repos/Be-Secure/BeSman/subscription", - "commits_url": "https://api.github.com/repos/Be-Secure/BeSman/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Be-Secure/BeSman/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Be-Secure/BeSman/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Be-Secure/BeSman/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Be-Secure/BeSman/contents/{+path}", - "compare_url": "https://api.github.com/repos/Be-Secure/BeSman/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Be-Secure/BeSman/merges", - "archive_url": "https://api.github.com/repos/Be-Secure/BeSman/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Be-Secure/BeSman/downloads", - "issues_url": "https://api.github.com/repos/Be-Secure/BeSman/issues{/number}", - "pulls_url": "https://api.github.com/repos/Be-Secure/BeSman/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Be-Secure/BeSman/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Be-Secure/BeSman/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Be-Secure/BeSman/labels{/name}", - "releases_url": "https://api.github.com/repos/Be-Secure/BeSman/releases{/id}", - "deployments_url": "https://api.github.com/repos/Be-Secure/BeSman/deployments", - "created_at": "2020-08-09T16:55:36Z", - "updated_at": "2021-07-30T05:07:45Z", - "pushed_at": "2021-08-14T08:05:00Z", - "git_url": "git://github.com/Be-Secure/BeSman.git", - "ssh_url": "git@github.com:Be-Secure/BeSman.git", - "clone_url": "https://github.com/Be-Secure/BeSman.git", - "svn_url": "https://github.com/Be-Secure/BeSman", - "homepage": null, - "size": 3877, - "stargazers_count": 2, - "watchers_count": 2, - "language": "Shell", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 8, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 4, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "forks": 8, - "open_issues": 4, - "watchers": 2, - "default_branch": "master", - "permissions": { - "admin": false, - "maintain": false, - "push": false, - "triage": false, - "pull": true - } - }, - { - "id": 301972280, - "node_id": "MDEwOlJlcG9zaXRvcnkzMDE5NzIyODA=", - "name": "cs-suite", - "full_name": "Be-Secure/cs-suite", - "private": false, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Be-Secure", - "html_url": "https://github.com/Be-Secure", - "followers_url": "https://api.github.com/users/Be-Secure/followers", - "following_url": "https://api.github.com/users/Be-Secure/following{/other_user}", - "gists_url": "https://api.github.com/users/Be-Secure/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Be-Secure/subscriptions", - "organizations_url": "https://api.github.com/users/Be-Secure/orgs", - "repos_url": "https://api.github.com/users/Be-Secure/repos", - "events_url": "https://api.github.com/users/Be-Secure/events{/privacy}", - "received_events_url": "https://api.github.com/users/Be-Secure/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Be-Secure/cs-suite", - "description": "Cloud Security Suite - One stop tool for auditing the security posture of AWS/GCP/Azure infrastructure.", - "fork": true, - "url": "https://api.github.com/repos/Be-Secure/cs-suite", - "forks_url": "https://api.github.com/repos/Be-Secure/cs-suite/forks", - "keys_url": "https://api.github.com/repos/Be-Secure/cs-suite/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Be-Secure/cs-suite/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Be-Secure/cs-suite/teams", - "hooks_url": "https://api.github.com/repos/Be-Secure/cs-suite/hooks", - "issue_events_url": "https://api.github.com/repos/Be-Secure/cs-suite/issues/events{/number}", - "events_url": "https://api.github.com/repos/Be-Secure/cs-suite/events", - "assignees_url": "https://api.github.com/repos/Be-Secure/cs-suite/assignees{/user}", - "branches_url": "https://api.github.com/repos/Be-Secure/cs-suite/branches{/branch}", - "tags_url": "https://api.github.com/repos/Be-Secure/cs-suite/tags", - "blobs_url": "https://api.github.com/repos/Be-Secure/cs-suite/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Be-Secure/cs-suite/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Be-Secure/cs-suite/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Be-Secure/cs-suite/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Be-Secure/cs-suite/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Be-Secure/cs-suite/languages", - "stargazers_url": "https://api.github.com/repos/Be-Secure/cs-suite/stargazers", - "contributors_url": "https://api.github.com/repos/Be-Secure/cs-suite/contributors", - "subscribers_url": "https://api.github.com/repos/Be-Secure/cs-suite/subscribers", - "subscription_url": "https://api.github.com/repos/Be-Secure/cs-suite/subscription", - "commits_url": "https://api.github.com/repos/Be-Secure/cs-suite/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Be-Secure/cs-suite/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Be-Secure/cs-suite/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Be-Secure/cs-suite/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Be-Secure/cs-suite/contents/{+path}", - "compare_url": "https://api.github.com/repos/Be-Secure/cs-suite/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Be-Secure/cs-suite/merges", - "archive_url": "https://api.github.com/repos/Be-Secure/cs-suite/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Be-Secure/cs-suite/downloads", - "issues_url": "https://api.github.com/repos/Be-Secure/cs-suite/issues{/number}", - "pulls_url": "https://api.github.com/repos/Be-Secure/cs-suite/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Be-Secure/cs-suite/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Be-Secure/cs-suite/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Be-Secure/cs-suite/labels{/name}", - "releases_url": "https://api.github.com/repos/Be-Secure/cs-suite/releases{/id}", - "deployments_url": "https://api.github.com/repos/Be-Secure/cs-suite/deployments", - "created_at": "2020-10-07T08:26:44Z", - "updated_at": "2020-10-07T08:26:46Z", - "pushed_at": "2021-07-28T04:48:29Z", - "git_url": "git://github.com/Be-Secure/cs-suite.git", - "ssh_url": "git@github.com:Be-Secure/cs-suite.git", - "clone_url": "https://github.com/Be-Secure/cs-suite.git", - "svn_url": "https://github.com/Be-Secure/cs-suite", - "homepage": "", - "size": 3401, - "stargazers_count": 0, - "watchers_count": 0, - "language": null, - "has_issues": false, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 0, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 1, - "license": { - "key": "gpl-3.0", - "name": "GNU General Public License v3.0", - "spdx_id": "GPL-3.0", - "url": "https://api.github.com/licenses/gpl-3.0", - "node_id": "MDc6TGljZW5zZTk=" - }, - "forks": 0, - "open_issues": 1, - "watchers": 0, - "default_branch": "master", - "permissions": { - "admin": false, - "maintain": false, - "push": false, - "triage": false, - "pull": true - } - }, - { - "id": 306240483, - "node_id": "MDEwOlJlcG9zaXRvcnkzMDYyNDA0ODM=", - "name": "Hygieia", - "full_name": "Be-Secure/Hygieia", - "private": false, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Be-Secure", - "html_url": "https://github.com/Be-Secure", - "followers_url": "https://api.github.com/users/Be-Secure/followers", - "following_url": "https://api.github.com/users/Be-Secure/following{/other_user}", - "gists_url": "https://api.github.com/users/Be-Secure/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Be-Secure/subscriptions", - "organizations_url": "https://api.github.com/users/Be-Secure/orgs", - "repos_url": "https://api.github.com/users/Be-Secure/repos", - "events_url": "https://api.github.com/users/Be-Secure/events{/privacy}", - "received_events_url": "https://api.github.com/users/Be-Secure/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Be-Secure/Hygieia", - "description": "CapitalOne DevOps Dashboard", - "fork": true, - "url": "https://api.github.com/repos/Be-Secure/Hygieia", - "forks_url": "https://api.github.com/repos/Be-Secure/Hygieia/forks", - "keys_url": "https://api.github.com/repos/Be-Secure/Hygieia/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Be-Secure/Hygieia/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Be-Secure/Hygieia/teams", - "hooks_url": "https://api.github.com/repos/Be-Secure/Hygieia/hooks", - "issue_events_url": "https://api.github.com/repos/Be-Secure/Hygieia/issues/events{/number}", - "events_url": "https://api.github.com/repos/Be-Secure/Hygieia/events", - "assignees_url": "https://api.github.com/repos/Be-Secure/Hygieia/assignees{/user}", - "branches_url": "https://api.github.com/repos/Be-Secure/Hygieia/branches{/branch}", - "tags_url": "https://api.github.com/repos/Be-Secure/Hygieia/tags", - "blobs_url": "https://api.github.com/repos/Be-Secure/Hygieia/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Be-Secure/Hygieia/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Be-Secure/Hygieia/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Be-Secure/Hygieia/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Be-Secure/Hygieia/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Be-Secure/Hygieia/languages", - "stargazers_url": "https://api.github.com/repos/Be-Secure/Hygieia/stargazers", - "contributors_url": "https://api.github.com/repos/Be-Secure/Hygieia/contributors", - "subscribers_url": "https://api.github.com/repos/Be-Secure/Hygieia/subscribers", - "subscription_url": "https://api.github.com/repos/Be-Secure/Hygieia/subscription", - "commits_url": "https://api.github.com/repos/Be-Secure/Hygieia/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Be-Secure/Hygieia/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Be-Secure/Hygieia/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Be-Secure/Hygieia/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Be-Secure/Hygieia/contents/{+path}", - "compare_url": "https://api.github.com/repos/Be-Secure/Hygieia/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Be-Secure/Hygieia/merges", - "archive_url": "https://api.github.com/repos/Be-Secure/Hygieia/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Be-Secure/Hygieia/downloads", - "issues_url": "https://api.github.com/repos/Be-Secure/Hygieia/issues{/number}", - "pulls_url": "https://api.github.com/repos/Be-Secure/Hygieia/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Be-Secure/Hygieia/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Be-Secure/Hygieia/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Be-Secure/Hygieia/labels{/name}", - "releases_url": "https://api.github.com/repos/Be-Secure/Hygieia/releases{/id}", - "deployments_url": "https://api.github.com/repos/Be-Secure/Hygieia/deployments", - "created_at": "2020-10-22T06:14:23Z", - "updated_at": "2020-10-22T06:14:25Z", - "pushed_at": "2021-08-20T02:08:02Z", - "git_url": "git://github.com/Be-Secure/Hygieia.git", - "ssh_url": "git@github.com:Be-Secure/Hygieia.git", - "clone_url": "https://github.com/Be-Secure/Hygieia.git", - "svn_url": "https://github.com/Be-Secure/Hygieia", - "homepage": "http://hygieia.github.io/Hygieia", - "size": 75563, - "stargazers_count": 0, - "watchers_count": 0, - "language": null, - "has_issues": false, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 0, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 17, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "forks": 0, - "open_issues": 17, - "watchers": 0, - "default_branch": "master", - "permissions": { - "admin": false, - "maintain": false, - "push": false, - "triage": false, - "pull": true - } - }, - { - "id": 306609986, - "node_id": "MDEwOlJlcG9zaXRvcnkzMDY2MDk5ODY=", - "name": "oah-bes-vm", - "full_name": "Be-Secure/oah-bes-vm", - "private": false, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Be-Secure", - "html_url": "https://github.com/Be-Secure", - "followers_url": "https://api.github.com/users/Be-Secure/followers", - "following_url": "https://api.github.com/users/Be-Secure/following{/other_user}", - "gists_url": "https://api.github.com/users/Be-Secure/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Be-Secure/subscriptions", - "organizations_url": "https://api.github.com/users/Be-Secure/orgs", - "repos_url": "https://api.github.com/users/Be-Secure/repos", - "events_url": "https://api.github.com/users/Be-Secure/events{/privacy}", - "received_events_url": "https://api.github.com/users/Be-Secure/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Be-Secure/oah-bes-vm", - "description": "OAH vm for BeS", - "fork": true, - "url": "https://api.github.com/repos/Be-Secure/oah-bes-vm", - "forks_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/forks", - "keys_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/teams", - "hooks_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/hooks", - "issue_events_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/issues/events{/number}", - "events_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/events", - "assignees_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/assignees{/user}", - "branches_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/branches{/branch}", - "tags_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/tags", - "blobs_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/languages", - "stargazers_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/stargazers", - "contributors_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/contributors", - "subscribers_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/subscribers", - "subscription_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/subscription", - "commits_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/contents/{+path}", - "compare_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/merges", - "archive_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/downloads", - "issues_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/issues{/number}", - "pulls_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/labels{/name}", - "releases_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/releases{/id}", - "deployments_url": "https://api.github.com/repos/Be-Secure/oah-bes-vm/deployments", - "created_at": "2020-10-23T11:01:04Z", - "updated_at": "2021-08-02T09:27:32Z", - "pushed_at": "2021-08-08T08:22:47Z", - "git_url": "git://github.com/Be-Secure/oah-bes-vm.git", - "ssh_url": "git@github.com:Be-Secure/oah-bes-vm.git", - "clone_url": "https://github.com/Be-Secure/oah-bes-vm.git", - "svn_url": "https://github.com/Be-Secure/oah-bes-vm", - "homepage": null, - "size": 113, - "stargazers_count": 0, - "watchers_count": 0, - "language": "Jinja", - "has_issues": false, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 3, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 1, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "forks": 3, - "open_issues": 1, - "watchers": 0, - "default_branch": "main", - "permissions": { - "admin": false, - "maintain": false, - "push": false, - "triage": false, - "pull": true - } - }, - { - "id": 314431378, - "node_id": "MDEwOlJlcG9zaXRvcnkzMTQ0MzEzNzg=", - "name": "syft", - "full_name": "Be-Secure/syft", - "private": false, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Be-Secure", - "html_url": "https://github.com/Be-Secure", - "followers_url": "https://api.github.com/users/Be-Secure/followers", - "following_url": "https://api.github.com/users/Be-Secure/following{/other_user}", - "gists_url": "https://api.github.com/users/Be-Secure/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Be-Secure/subscriptions", - "organizations_url": "https://api.github.com/users/Be-Secure/orgs", - "repos_url": "https://api.github.com/users/Be-Secure/repos", - "events_url": "https://api.github.com/users/Be-Secure/events{/privacy}", - "received_events_url": "https://api.github.com/users/Be-Secure/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Be-Secure/syft", - "description": "CLI tool and library for generating a Software Bill of Materials from container images and filesystems", - "fork": true, - "url": "https://api.github.com/repos/Be-Secure/syft", - "forks_url": "https://api.github.com/repos/Be-Secure/syft/forks", - "keys_url": "https://api.github.com/repos/Be-Secure/syft/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Be-Secure/syft/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Be-Secure/syft/teams", - "hooks_url": "https://api.github.com/repos/Be-Secure/syft/hooks", - "issue_events_url": "https://api.github.com/repos/Be-Secure/syft/issues/events{/number}", - "events_url": "https://api.github.com/repos/Be-Secure/syft/events", - "assignees_url": "https://api.github.com/repos/Be-Secure/syft/assignees{/user}", - "branches_url": "https://api.github.com/repos/Be-Secure/syft/branches{/branch}", - "tags_url": "https://api.github.com/repos/Be-Secure/syft/tags", - "blobs_url": "https://api.github.com/repos/Be-Secure/syft/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Be-Secure/syft/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Be-Secure/syft/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Be-Secure/syft/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Be-Secure/syft/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Be-Secure/syft/languages", - "stargazers_url": "https://api.github.com/repos/Be-Secure/syft/stargazers", - "contributors_url": "https://api.github.com/repos/Be-Secure/syft/contributors", - "subscribers_url": "https://api.github.com/repos/Be-Secure/syft/subscribers", - "subscription_url": "https://api.github.com/repos/Be-Secure/syft/subscription", - "commits_url": "https://api.github.com/repos/Be-Secure/syft/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Be-Secure/syft/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Be-Secure/syft/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Be-Secure/syft/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Be-Secure/syft/contents/{+path}", - "compare_url": "https://api.github.com/repos/Be-Secure/syft/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Be-Secure/syft/merges", - "archive_url": "https://api.github.com/repos/Be-Secure/syft/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Be-Secure/syft/downloads", - "issues_url": "https://api.github.com/repos/Be-Secure/syft/issues{/number}", - "pulls_url": "https://api.github.com/repos/Be-Secure/syft/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Be-Secure/syft/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Be-Secure/syft/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Be-Secure/syft/labels{/name}", - "releases_url": "https://api.github.com/repos/Be-Secure/syft/releases{/id}", - "deployments_url": "https://api.github.com/repos/Be-Secure/syft/deployments", - "created_at": "2020-11-20T03:01:28Z", - "updated_at": "2020-11-20T03:01:29Z", - "pushed_at": "2021-08-05T18:42:07Z", - "git_url": "git://github.com/Be-Secure/syft.git", - "ssh_url": "git@github.com:Be-Secure/syft.git", - "clone_url": "https://github.com/Be-Secure/syft.git", - "svn_url": "https://github.com/Be-Secure/syft", - "homepage": "", - "size": 1571, - "stargazers_count": 0, - "watchers_count": 0, - "language": null, - "has_issues": false, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 0, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 1, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "forks": 0, - "open_issues": 1, - "watchers": 0, - "default_branch": "main", - "permissions": { - "admin": false, - "maintain": false, - "push": false, - "triage": false, - "pull": true - } - }, - { - "id": 314431413, - "node_id": "MDEwOlJlcG9zaXRvcnkzMTQ0MzE0MTM=", - "name": "grype", - "full_name": "Be-Secure/grype", - "private": false, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Be-Secure", - "html_url": "https://github.com/Be-Secure", - "followers_url": "https://api.github.com/users/Be-Secure/followers", - "following_url": "https://api.github.com/users/Be-Secure/following{/other_user}", - "gists_url": "https://api.github.com/users/Be-Secure/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Be-Secure/subscriptions", - "organizations_url": "https://api.github.com/users/Be-Secure/orgs", - "repos_url": "https://api.github.com/users/Be-Secure/repos", - "events_url": "https://api.github.com/users/Be-Secure/events{/privacy}", - "received_events_url": "https://api.github.com/users/Be-Secure/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Be-Secure/grype", - "description": "A vulnerability scanner for container images and filesystems", - "fork": true, - "url": "https://api.github.com/repos/Be-Secure/grype", - "forks_url": "https://api.github.com/repos/Be-Secure/grype/forks", - "keys_url": "https://api.github.com/repos/Be-Secure/grype/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Be-Secure/grype/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Be-Secure/grype/teams", - "hooks_url": "https://api.github.com/repos/Be-Secure/grype/hooks", - "issue_events_url": "https://api.github.com/repos/Be-Secure/grype/issues/events{/number}", - "events_url": "https://api.github.com/repos/Be-Secure/grype/events", - "assignees_url": "https://api.github.com/repos/Be-Secure/grype/assignees{/user}", - "branches_url": "https://api.github.com/repos/Be-Secure/grype/branches{/branch}", - "tags_url": "https://api.github.com/repos/Be-Secure/grype/tags", - "blobs_url": "https://api.github.com/repos/Be-Secure/grype/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Be-Secure/grype/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Be-Secure/grype/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Be-Secure/grype/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Be-Secure/grype/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Be-Secure/grype/languages", - "stargazers_url": "https://api.github.com/repos/Be-Secure/grype/stargazers", - "contributors_url": "https://api.github.com/repos/Be-Secure/grype/contributors", - "subscribers_url": "https://api.github.com/repos/Be-Secure/grype/subscribers", - "subscription_url": "https://api.github.com/repos/Be-Secure/grype/subscription", - "commits_url": "https://api.github.com/repos/Be-Secure/grype/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Be-Secure/grype/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Be-Secure/grype/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Be-Secure/grype/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Be-Secure/grype/contents/{+path}", - "compare_url": "https://api.github.com/repos/Be-Secure/grype/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Be-Secure/grype/merges", - "archive_url": "https://api.github.com/repos/Be-Secure/grype/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Be-Secure/grype/downloads", - "issues_url": "https://api.github.com/repos/Be-Secure/grype/issues{/number}", - "pulls_url": "https://api.github.com/repos/Be-Secure/grype/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Be-Secure/grype/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Be-Secure/grype/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Be-Secure/grype/labels{/name}", - "releases_url": "https://api.github.com/repos/Be-Secure/grype/releases{/id}", - "deployments_url": "https://api.github.com/repos/Be-Secure/grype/deployments", - "created_at": "2020-11-20T03:01:38Z", - "updated_at": "2020-11-20T03:01:40Z", - "pushed_at": "2020-11-19T20:06:44Z", - "git_url": "git://github.com/Be-Secure/grype.git", - "ssh_url": "git@github.com:Be-Secure/grype.git", - "clone_url": "https://github.com/Be-Secure/grype.git", - "svn_url": "https://github.com/Be-Secure/grype", - "homepage": "", - "size": 1328, - "stargazers_count": 0, - "watchers_count": 0, - "language": null, - "has_issues": false, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 0, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 0, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "main", - "permissions": { - "admin": false, - "maintain": false, - "push": false, - "triage": false, - "pull": true - } - }, - { - "id": 322170920, - "node_id": "MDEwOlJlcG9zaXRvcnkzMjIxNzA5MjA=", - "name": "scorecard", - "full_name": "Be-Secure/scorecard", - "private": false, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Be-Secure", - "html_url": "https://github.com/Be-Secure", - "followers_url": "https://api.github.com/users/Be-Secure/followers", - "following_url": "https://api.github.com/users/Be-Secure/following{/other_user}", - "gists_url": "https://api.github.com/users/Be-Secure/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Be-Secure/subscriptions", - "organizations_url": "https://api.github.com/users/Be-Secure/orgs", - "repos_url": "https://api.github.com/users/Be-Secure/repos", - "events_url": "https://api.github.com/users/Be-Secure/events{/privacy}", - "received_events_url": "https://api.github.com/users/Be-Secure/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Be-Secure/scorecard", - "description": "OSS Security Scorecards", - "fork": true, - "url": "https://api.github.com/repos/Be-Secure/scorecard", - "forks_url": "https://api.github.com/repos/Be-Secure/scorecard/forks", - "keys_url": "https://api.github.com/repos/Be-Secure/scorecard/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Be-Secure/scorecard/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Be-Secure/scorecard/teams", - "hooks_url": "https://api.github.com/repos/Be-Secure/scorecard/hooks", - "issue_events_url": "https://api.github.com/repos/Be-Secure/scorecard/issues/events{/number}", - "events_url": "https://api.github.com/repos/Be-Secure/scorecard/events", - "assignees_url": "https://api.github.com/repos/Be-Secure/scorecard/assignees{/user}", - "branches_url": "https://api.github.com/repos/Be-Secure/scorecard/branches{/branch}", - "tags_url": "https://api.github.com/repos/Be-Secure/scorecard/tags", - "blobs_url": "https://api.github.com/repos/Be-Secure/scorecard/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Be-Secure/scorecard/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Be-Secure/scorecard/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Be-Secure/scorecard/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Be-Secure/scorecard/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Be-Secure/scorecard/languages", - "stargazers_url": "https://api.github.com/repos/Be-Secure/scorecard/stargazers", - "contributors_url": "https://api.github.com/repos/Be-Secure/scorecard/contributors", - "subscribers_url": "https://api.github.com/repos/Be-Secure/scorecard/subscribers", - "subscription_url": "https://api.github.com/repos/Be-Secure/scorecard/subscription", - "commits_url": "https://api.github.com/repos/Be-Secure/scorecard/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Be-Secure/scorecard/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Be-Secure/scorecard/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Be-Secure/scorecard/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Be-Secure/scorecard/contents/{+path}", - "compare_url": "https://api.github.com/repos/Be-Secure/scorecard/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Be-Secure/scorecard/merges", - "archive_url": "https://api.github.com/repos/Be-Secure/scorecard/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Be-Secure/scorecard/downloads", - "issues_url": "https://api.github.com/repos/Be-Secure/scorecard/issues{/number}", - "pulls_url": "https://api.github.com/repos/Be-Secure/scorecard/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Be-Secure/scorecard/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Be-Secure/scorecard/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Be-Secure/scorecard/labels{/name}", - "releases_url": "https://api.github.com/repos/Be-Secure/scorecard/releases{/id}", - "deployments_url": "https://api.github.com/repos/Be-Secure/scorecard/deployments", - "created_at": "2020-12-17T03:37:30Z", - "updated_at": "2020-12-17T03:37:31Z", - "pushed_at": "2020-12-15T18:30:27Z", - "git_url": "git://github.com/Be-Secure/scorecard.git", - "ssh_url": "git@github.com:Be-Secure/scorecard.git", - "clone_url": "https://github.com/Be-Secure/scorecard.git", - "svn_url": "https://github.com/Be-Secure/scorecard", - "homepage": "", - "size": 608, - "stargazers_count": 0, - "watchers_count": 0, - "language": null, - "has_issues": false, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 0, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 0, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "main", - "permissions": { - "admin": false, - "maintain": false, - "push": false, - "triage": false, - "pull": true - } - }, - { - "id": 322172046, - "node_id": "MDEwOlJlcG9zaXRvcnkzMjIxNzIwNDY=", - "name": "fuzzbench", - "full_name": "Be-Secure/fuzzbench", - "private": false, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Be-Secure", - "html_url": "https://github.com/Be-Secure", - "followers_url": "https://api.github.com/users/Be-Secure/followers", - "following_url": "https://api.github.com/users/Be-Secure/following{/other_user}", - "gists_url": "https://api.github.com/users/Be-Secure/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Be-Secure/subscriptions", - "organizations_url": "https://api.github.com/users/Be-Secure/orgs", - "repos_url": "https://api.github.com/users/Be-Secure/repos", - "events_url": "https://api.github.com/users/Be-Secure/events{/privacy}", - "received_events_url": "https://api.github.com/users/Be-Secure/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Be-Secure/fuzzbench", - "description": "FuzzBench - Fuzzer benchmarking as a service.", - "fork": true, - "url": "https://api.github.com/repos/Be-Secure/fuzzbench", - "forks_url": "https://api.github.com/repos/Be-Secure/fuzzbench/forks", - "keys_url": "https://api.github.com/repos/Be-Secure/fuzzbench/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Be-Secure/fuzzbench/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Be-Secure/fuzzbench/teams", - "hooks_url": "https://api.github.com/repos/Be-Secure/fuzzbench/hooks", - "issue_events_url": "https://api.github.com/repos/Be-Secure/fuzzbench/issues/events{/number}", - "events_url": "https://api.github.com/repos/Be-Secure/fuzzbench/events", - "assignees_url": "https://api.github.com/repos/Be-Secure/fuzzbench/assignees{/user}", - "branches_url": "https://api.github.com/repos/Be-Secure/fuzzbench/branches{/branch}", - "tags_url": "https://api.github.com/repos/Be-Secure/fuzzbench/tags", - "blobs_url": "https://api.github.com/repos/Be-Secure/fuzzbench/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Be-Secure/fuzzbench/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Be-Secure/fuzzbench/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Be-Secure/fuzzbench/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Be-Secure/fuzzbench/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Be-Secure/fuzzbench/languages", - "stargazers_url": "https://api.github.com/repos/Be-Secure/fuzzbench/stargazers", - "contributors_url": "https://api.github.com/repos/Be-Secure/fuzzbench/contributors", - "subscribers_url": "https://api.github.com/repos/Be-Secure/fuzzbench/subscribers", - "subscription_url": "https://api.github.com/repos/Be-Secure/fuzzbench/subscription", - "commits_url": "https://api.github.com/repos/Be-Secure/fuzzbench/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Be-Secure/fuzzbench/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Be-Secure/fuzzbench/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Be-Secure/fuzzbench/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Be-Secure/fuzzbench/contents/{+path}", - "compare_url": "https://api.github.com/repos/Be-Secure/fuzzbench/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Be-Secure/fuzzbench/merges", - "archive_url": "https://api.github.com/repos/Be-Secure/fuzzbench/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Be-Secure/fuzzbench/downloads", - "issues_url": "https://api.github.com/repos/Be-Secure/fuzzbench/issues{/number}", - "pulls_url": "https://api.github.com/repos/Be-Secure/fuzzbench/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Be-Secure/fuzzbench/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Be-Secure/fuzzbench/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Be-Secure/fuzzbench/labels{/name}", - "releases_url": "https://api.github.com/repos/Be-Secure/fuzzbench/releases{/id}", - "deployments_url": "https://api.github.com/repos/Be-Secure/fuzzbench/deployments", - "created_at": "2020-12-17T03:43:31Z", - "updated_at": "2020-12-17T03:43:32Z", - "pushed_at": "2021-08-24T05:00:27Z", - "git_url": "git://github.com/Be-Secure/fuzzbench.git", - "ssh_url": "git@github.com:Be-Secure/fuzzbench.git", - "clone_url": "https://github.com/Be-Secure/fuzzbench.git", - "svn_url": "https://github.com/Be-Secure/fuzzbench", - "homepage": "https://google.github.io/fuzzbench/", - "size": 28958, - "stargazers_count": 0, - "watchers_count": 0, - "language": null, - "has_issues": false, - "has_projects": true, - "has_downloads": true, - "has_wiki": false, - "has_pages": false, - "forks_count": 0, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 5, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "forks": 0, - "open_issues": 5, - "watchers": 0, - "default_branch": "master", - "permissions": { - "admin": false, - "maintain": false, - "push": false, - "triage": false, - "pull": true - } - }, - { - "id": 348609094, - "node_id": "MDEwOlJlcG9zaXRvcnkzNDg2MDkwOTQ=", - "name": "besecure-ce-env-repo", - "full_name": "Be-Secure/besecure-ce-env-repo", - "private": false, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Be-Secure", - "html_url": "https://github.com/Be-Secure", - "followers_url": "https://api.github.com/users/Be-Secure/followers", - "following_url": "https://api.github.com/users/Be-Secure/following{/other_user}", - "gists_url": "https://api.github.com/users/Be-Secure/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Be-Secure/subscriptions", - "organizations_url": "https://api.github.com/users/Be-Secure/orgs", - "repos_url": "https://api.github.com/users/Be-Secure/repos", - "events_url": "https://api.github.com/users/Be-Secure/events{/privacy}", - "received_events_url": "https://api.github.com/users/Be-Secure/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Be-Secure/besecure-ce-env-repo", - "description": "Public Be-Secure Environment scripts repo.", - "fork": false, - "url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo", - "forks_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/forks", - "keys_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/teams", - "hooks_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/hooks", - "issue_events_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/issues/events{/number}", - "events_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/events", - "assignees_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/assignees{/user}", - "branches_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/branches{/branch}", - "tags_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/tags", - "blobs_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/languages", - "stargazers_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/stargazers", - "contributors_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/contributors", - "subscribers_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/subscribers", - "subscription_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/subscription", - "commits_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/contents/{+path}", - "compare_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/merges", - "archive_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/downloads", - "issues_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/issues{/number}", - "pulls_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/labels{/name}", - "releases_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/releases{/id}", - "deployments_url": "https://api.github.com/repos/Be-Secure/besecure-ce-env-repo/deployments", - "created_at": "2021-03-17T06:53:45Z", - "updated_at": "2021-08-04T07:17:37Z", - "pushed_at": "2021-08-04T06:29:45Z", - "git_url": "git://github.com/Be-Secure/besecure-ce-env-repo.git", - "ssh_url": "git@github.com:Be-Secure/besecure-ce-env-repo.git", - "clone_url": "https://github.com/Be-Secure/besecure-ce-env-repo.git", - "svn_url": "https://github.com/Be-Secure/besecure-ce-env-repo", - "homepage": "", - "size": 10, - "stargazers_count": 0, - "watchers_count": 0, - "language": "Shell", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 8, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 2, - "license": null, - "forks": 8, - "open_issues": 2, - "watchers": 0, - "default_branch": "master", - "permissions": { - "admin": false, - "maintain": false, - "push": false, - "triage": false, - "pull": true - } - }, - { - "id": 351301229, - "node_id": "MDEwOlJlcG9zaXRvcnkzNTEzMDEyMjk=", - "name": "croc", - "full_name": "Be-Secure/croc", - "private": false, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Be-Secure", - "html_url": "https://github.com/Be-Secure", - "followers_url": "https://api.github.com/users/Be-Secure/followers", - "following_url": "https://api.github.com/users/Be-Secure/following{/other_user}", - "gists_url": "https://api.github.com/users/Be-Secure/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Be-Secure/subscriptions", - "organizations_url": "https://api.github.com/users/Be-Secure/orgs", - "repos_url": "https://api.github.com/users/Be-Secure/repos", - "events_url": "https://api.github.com/users/Be-Secure/events{/privacy}", - "received_events_url": "https://api.github.com/users/Be-Secure/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Be-Secure/croc", - "description": "Easily and securely send things from one computer to another :crocodile: :package:", - "fork": true, - "url": "https://api.github.com/repos/Be-Secure/croc", - "forks_url": "https://api.github.com/repos/Be-Secure/croc/forks", - "keys_url": "https://api.github.com/repos/Be-Secure/croc/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Be-Secure/croc/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Be-Secure/croc/teams", - "hooks_url": "https://api.github.com/repos/Be-Secure/croc/hooks", - "issue_events_url": "https://api.github.com/repos/Be-Secure/croc/issues/events{/number}", - "events_url": "https://api.github.com/repos/Be-Secure/croc/events", - "assignees_url": "https://api.github.com/repos/Be-Secure/croc/assignees{/user}", - "branches_url": "https://api.github.com/repos/Be-Secure/croc/branches{/branch}", - "tags_url": "https://api.github.com/repos/Be-Secure/croc/tags", - "blobs_url": "https://api.github.com/repos/Be-Secure/croc/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Be-Secure/croc/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Be-Secure/croc/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Be-Secure/croc/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Be-Secure/croc/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Be-Secure/croc/languages", - "stargazers_url": "https://api.github.com/repos/Be-Secure/croc/stargazers", - "contributors_url": "https://api.github.com/repos/Be-Secure/croc/contributors", - "subscribers_url": "https://api.github.com/repos/Be-Secure/croc/subscribers", - "subscription_url": "https://api.github.com/repos/Be-Secure/croc/subscription", - "commits_url": "https://api.github.com/repos/Be-Secure/croc/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Be-Secure/croc/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Be-Secure/croc/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Be-Secure/croc/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Be-Secure/croc/contents/{+path}", - "compare_url": "https://api.github.com/repos/Be-Secure/croc/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Be-Secure/croc/merges", - "archive_url": "https://api.github.com/repos/Be-Secure/croc/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Be-Secure/croc/downloads", - "issues_url": "https://api.github.com/repos/Be-Secure/croc/issues{/number}", - "pulls_url": "https://api.github.com/repos/Be-Secure/croc/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Be-Secure/croc/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Be-Secure/croc/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Be-Secure/croc/labels{/name}", - "releases_url": "https://api.github.com/repos/Be-Secure/croc/releases{/id}", - "deployments_url": "https://api.github.com/repos/Be-Secure/croc/deployments", - "created_at": "2021-03-25T03:48:36Z", - "updated_at": "2021-03-25T03:48:37Z", - "pushed_at": "2021-03-23T16:14:12Z", - "git_url": "git://github.com/Be-Secure/croc.git", - "ssh_url": "git@github.com:Be-Secure/croc.git", - "clone_url": "https://github.com/Be-Secure/croc.git", - "svn_url": "https://github.com/Be-Secure/croc", - "homepage": "https://schollz.com/software/croc6", - "size": 24287, - "stargazers_count": 0, - "watchers_count": 0, - "language": null, - "has_issues": false, - "has_projects": true, - "has_downloads": true, - "has_wiki": false, - "has_pages": false, - "forks_count": 0, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 0, - "license": { - "key": "mit", - "name": "MIT License", - "spdx_id": "MIT", - "url": "https://api.github.com/licenses/mit", - "node_id": "MDc6TGljZW5zZTEz" - }, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master", - "permissions": { - "admin": false, - "maintain": false, - "push": false, - "triage": false, - "pull": true - } - }, - { - "id": 354722493, - "node_id": "MDEwOlJlcG9zaXRvcnkzNTQ3MjI0OTM=", - "name": "oah-installer", - "full_name": "Be-Secure/oah-installer", - "private": false, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Be-Secure", - "html_url": "https://github.com/Be-Secure", - "followers_url": "https://api.github.com/users/Be-Secure/followers", - "following_url": "https://api.github.com/users/Be-Secure/following{/other_user}", - "gists_url": "https://api.github.com/users/Be-Secure/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Be-Secure/subscriptions", - "organizations_url": "https://api.github.com/users/Be-Secure/orgs", - "repos_url": "https://api.github.com/users/Be-Secure/repos", - "events_url": "https://api.github.com/users/Be-Secure/events{/privacy}", - "received_events_url": "https://api.github.com/users/Be-Secure/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Be-Secure/oah-installer", - "description": "This is where it all starts.. The oah-installer.. Lets start by installing the oah-shell.", - "fork": true, - "url": "https://api.github.com/repos/Be-Secure/oah-installer", - "forks_url": "https://api.github.com/repos/Be-Secure/oah-installer/forks", - "keys_url": "https://api.github.com/repos/Be-Secure/oah-installer/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Be-Secure/oah-installer/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Be-Secure/oah-installer/teams", - "hooks_url": "https://api.github.com/repos/Be-Secure/oah-installer/hooks", - "issue_events_url": "https://api.github.com/repos/Be-Secure/oah-installer/issues/events{/number}", - "events_url": "https://api.github.com/repos/Be-Secure/oah-installer/events", - "assignees_url": "https://api.github.com/repos/Be-Secure/oah-installer/assignees{/user}", - "branches_url": "https://api.github.com/repos/Be-Secure/oah-installer/branches{/branch}", - "tags_url": "https://api.github.com/repos/Be-Secure/oah-installer/tags", - "blobs_url": "https://api.github.com/repos/Be-Secure/oah-installer/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Be-Secure/oah-installer/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Be-Secure/oah-installer/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Be-Secure/oah-installer/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Be-Secure/oah-installer/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Be-Secure/oah-installer/languages", - "stargazers_url": "https://api.github.com/repos/Be-Secure/oah-installer/stargazers", - "contributors_url": "https://api.github.com/repos/Be-Secure/oah-installer/contributors", - "subscribers_url": "https://api.github.com/repos/Be-Secure/oah-installer/subscribers", - "subscription_url": "https://api.github.com/repos/Be-Secure/oah-installer/subscription", - "commits_url": "https://api.github.com/repos/Be-Secure/oah-installer/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Be-Secure/oah-installer/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Be-Secure/oah-installer/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Be-Secure/oah-installer/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Be-Secure/oah-installer/contents/{+path}", - "compare_url": "https://api.github.com/repos/Be-Secure/oah-installer/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Be-Secure/oah-installer/merges", - "archive_url": "https://api.github.com/repos/Be-Secure/oah-installer/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Be-Secure/oah-installer/downloads", - "issues_url": "https://api.github.com/repos/Be-Secure/oah-installer/issues{/number}", - "pulls_url": "https://api.github.com/repos/Be-Secure/oah-installer/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Be-Secure/oah-installer/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Be-Secure/oah-installer/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Be-Secure/oah-installer/labels{/name}", - "releases_url": "https://api.github.com/repos/Be-Secure/oah-installer/releases{/id}", - "deployments_url": "https://api.github.com/repos/Be-Secure/oah-installer/deployments", - "created_at": "2021-04-05T04:56:55Z", - "updated_at": "2021-05-28T07:10:00Z", - "pushed_at": "2021-05-28T07:09:57Z", - "git_url": "git://github.com/Be-Secure/oah-installer.git", - "ssh_url": "git@github.com:Be-Secure/oah-installer.git", - "clone_url": "https://github.com/Be-Secure/oah-installer.git", - "svn_url": "https://github.com/Be-Secure/oah-installer", - "homepage": null, - "size": 470, - "stargazers_count": 0, - "watchers_count": 0, - "language": "Shell", - "has_issues": false, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 1, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 0, - "license": null, - "forks": 1, - "open_issues": 0, - "watchers": 0, - "default_branch": "master", - "permissions": { - "admin": false, - "maintain": false, - "push": false, - "triage": false, - "pull": true - } - }, - { - "id": 354722536, - "node_id": "MDEwOlJlcG9zaXRvcnkzNTQ3MjI1MzY=", - "name": "oah-vm", - "full_name": "Be-Secure/oah-vm", - "private": false, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Be-Secure", - "html_url": "https://github.com/Be-Secure", - "followers_url": "https://api.github.com/users/Be-Secure/followers", - "following_url": "https://api.github.com/users/Be-Secure/following{/other_user}", - "gists_url": "https://api.github.com/users/Be-Secure/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Be-Secure/subscriptions", - "organizations_url": "https://api.github.com/users/Be-Secure/orgs", - "repos_url": "https://api.github.com/users/Be-Secure/repos", - "events_url": "https://api.github.com/users/Be-Secure/events{/privacy}", - "received_events_url": "https://api.github.com/users/Be-Secure/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Be-Secure/oah-vm", - "description": "Default Base vm for OpenAppHack(OAH)", - "fork": true, - "url": "https://api.github.com/repos/Be-Secure/oah-vm", - "forks_url": "https://api.github.com/repos/Be-Secure/oah-vm/forks", - "keys_url": "https://api.github.com/repos/Be-Secure/oah-vm/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Be-Secure/oah-vm/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Be-Secure/oah-vm/teams", - "hooks_url": "https://api.github.com/repos/Be-Secure/oah-vm/hooks", - "issue_events_url": "https://api.github.com/repos/Be-Secure/oah-vm/issues/events{/number}", - "events_url": "https://api.github.com/repos/Be-Secure/oah-vm/events", - "assignees_url": "https://api.github.com/repos/Be-Secure/oah-vm/assignees{/user}", - "branches_url": "https://api.github.com/repos/Be-Secure/oah-vm/branches{/branch}", - "tags_url": "https://api.github.com/repos/Be-Secure/oah-vm/tags", - "blobs_url": "https://api.github.com/repos/Be-Secure/oah-vm/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Be-Secure/oah-vm/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Be-Secure/oah-vm/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Be-Secure/oah-vm/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Be-Secure/oah-vm/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Be-Secure/oah-vm/languages", - "stargazers_url": "https://api.github.com/repos/Be-Secure/oah-vm/stargazers", - "contributors_url": "https://api.github.com/repos/Be-Secure/oah-vm/contributors", - "subscribers_url": "https://api.github.com/repos/Be-Secure/oah-vm/subscribers", - "subscription_url": "https://api.github.com/repos/Be-Secure/oah-vm/subscription", - "commits_url": "https://api.github.com/repos/Be-Secure/oah-vm/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Be-Secure/oah-vm/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Be-Secure/oah-vm/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Be-Secure/oah-vm/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Be-Secure/oah-vm/contents/{+path}", - "compare_url": "https://api.github.com/repos/Be-Secure/oah-vm/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Be-Secure/oah-vm/merges", - "archive_url": "https://api.github.com/repos/Be-Secure/oah-vm/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Be-Secure/oah-vm/downloads", - "issues_url": "https://api.github.com/repos/Be-Secure/oah-vm/issues{/number}", - "pulls_url": "https://api.github.com/repos/Be-Secure/oah-vm/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Be-Secure/oah-vm/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Be-Secure/oah-vm/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Be-Secure/oah-vm/labels{/name}", - "releases_url": "https://api.github.com/repos/Be-Secure/oah-vm/releases{/id}", - "deployments_url": "https://api.github.com/repos/Be-Secure/oah-vm/deployments", - "created_at": "2021-04-05T04:57:08Z", - "updated_at": "2021-04-05T04:57:08Z", - "pushed_at": "2020-04-03T13:31:17Z", - "git_url": "git://github.com/Be-Secure/oah-vm.git", - "ssh_url": "git@github.com:Be-Secure/oah-vm.git", - "clone_url": "https://github.com/Be-Secure/oah-vm.git", - "svn_url": "https://github.com/Be-Secure/oah-vm", - "homepage": null, - "size": 35, - "stargazers_count": 0, - "watchers_count": 0, - "language": null, - "has_issues": false, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 2, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 0, - "license": { - "key": "mit", - "name": "MIT License", - "spdx_id": "MIT", - "url": "https://api.github.com/licenses/mit", - "node_id": "MDc6TGljZW5zZTEz" - }, - "forks": 2, - "open_issues": 0, - "watchers": 0, - "default_branch": "master", - "permissions": { - "admin": false, - "maintain": false, - "push": false, - "triage": false, - "pull": true - } - }, - { - "id": 358574941, - "node_id": "MDEwOlJlcG9zaXRvcnkzNTg1NzQ5NDE=", - "name": "oah-shell", - "full_name": "Be-Secure/oah-shell", - "private": false, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Be-Secure", - "html_url": "https://github.com/Be-Secure", - "followers_url": "https://api.github.com/users/Be-Secure/followers", - "following_url": "https://api.github.com/users/Be-Secure/following{/other_user}", - "gists_url": "https://api.github.com/users/Be-Secure/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Be-Secure/subscriptions", - "organizations_url": "https://api.github.com/users/Be-Secure/orgs", - "repos_url": "https://api.github.com/users/Be-Secure/repos", - "events_url": "https://api.github.com/users/Be-Secure/events{/privacy}", - "received_events_url": "https://api.github.com/users/Be-Secure/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Be-Secure/oah-shell", - "description": "The OAH Shell for OpenAppHack ", - "fork": true, - "url": "https://api.github.com/repos/Be-Secure/oah-shell", - "forks_url": "https://api.github.com/repos/Be-Secure/oah-shell/forks", - "keys_url": "https://api.github.com/repos/Be-Secure/oah-shell/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Be-Secure/oah-shell/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Be-Secure/oah-shell/teams", - "hooks_url": "https://api.github.com/repos/Be-Secure/oah-shell/hooks", - "issue_events_url": "https://api.github.com/repos/Be-Secure/oah-shell/issues/events{/number}", - "events_url": "https://api.github.com/repos/Be-Secure/oah-shell/events", - "assignees_url": "https://api.github.com/repos/Be-Secure/oah-shell/assignees{/user}", - "branches_url": "https://api.github.com/repos/Be-Secure/oah-shell/branches{/branch}", - "tags_url": "https://api.github.com/repos/Be-Secure/oah-shell/tags", - "blobs_url": "https://api.github.com/repos/Be-Secure/oah-shell/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Be-Secure/oah-shell/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Be-Secure/oah-shell/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Be-Secure/oah-shell/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Be-Secure/oah-shell/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Be-Secure/oah-shell/languages", - "stargazers_url": "https://api.github.com/repos/Be-Secure/oah-shell/stargazers", - "contributors_url": "https://api.github.com/repos/Be-Secure/oah-shell/contributors", - "subscribers_url": "https://api.github.com/repos/Be-Secure/oah-shell/subscribers", - "subscription_url": "https://api.github.com/repos/Be-Secure/oah-shell/subscription", - "commits_url": "https://api.github.com/repos/Be-Secure/oah-shell/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Be-Secure/oah-shell/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Be-Secure/oah-shell/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Be-Secure/oah-shell/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Be-Secure/oah-shell/contents/{+path}", - "compare_url": "https://api.github.com/repos/Be-Secure/oah-shell/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Be-Secure/oah-shell/merges", - "archive_url": "https://api.github.com/repos/Be-Secure/oah-shell/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Be-Secure/oah-shell/downloads", - "issues_url": "https://api.github.com/repos/Be-Secure/oah-shell/issues{/number}", - "pulls_url": "https://api.github.com/repos/Be-Secure/oah-shell/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Be-Secure/oah-shell/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Be-Secure/oah-shell/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Be-Secure/oah-shell/labels{/name}", - "releases_url": "https://api.github.com/repos/Be-Secure/oah-shell/releases{/id}", - "deployments_url": "https://api.github.com/repos/Be-Secure/oah-shell/deployments", - "created_at": "2021-04-16T11:20:48Z", - "updated_at": "2021-05-31T01:51:18Z", - "pushed_at": "2021-05-31T01:51:15Z", - "git_url": "git://github.com/Be-Secure/oah-shell.git", - "ssh_url": "git@github.com:Be-Secure/oah-shell.git", - "clone_url": "https://github.com/Be-Secure/oah-shell.git", - "svn_url": "https://github.com/Be-Secure/oah-shell", - "homepage": null, - "size": 173, - "stargazers_count": 0, - "watchers_count": 0, - "language": "Shell", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 1, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 1, - "license": null, - "forks": 1, - "open_issues": 1, - "watchers": 0, - "default_branch": "master", - "permissions": { - "admin": false, - "maintain": false, - "push": false, - "triage": false, - "pull": true - } - }, - { - "id": 361173022, - "node_id": "MDEwOlJlcG9zaXRvcnkzNjExNzMwMjI=", - "name": "ansible-role-oah-users", - "full_name": "Be-Secure/ansible-role-oah-users", - "private": false, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Be-Secure", - "html_url": "https://github.com/Be-Secure", - "followers_url": "https://api.github.com/users/Be-Secure/followers", - "following_url": "https://api.github.com/users/Be-Secure/following{/other_user}", - "gists_url": "https://api.github.com/users/Be-Secure/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Be-Secure/subscriptions", - "organizations_url": "https://api.github.com/users/Be-Secure/orgs", - "repos_url": "https://api.github.com/users/Be-Secure/repos", - "events_url": "https://api.github.com/users/Be-Secure/events{/privacy}", - "received_events_url": "https://api.github.com/users/Be-Secure/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Be-Secure/ansible-role-oah-users", - "description": "Role to Manage OAH user on OAH environments.", - "fork": true, - "url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users", - "forks_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/forks", - "keys_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/teams", - "hooks_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/hooks", - "issue_events_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/issues/events{/number}", - "events_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/events", - "assignees_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/assignees{/user}", - "branches_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/branches{/branch}", - "tags_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/tags", - "blobs_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/languages", - "stargazers_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/stargazers", - "contributors_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/contributors", - "subscribers_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/subscribers", - "subscription_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/subscription", - "commits_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/contents/{+path}", - "compare_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/merges", - "archive_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/downloads", - "issues_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/issues{/number}", - "pulls_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/labels{/name}", - "releases_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/releases{/id}", - "deployments_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-users/deployments", - "created_at": "2021-04-24T13:46:09Z", - "updated_at": "2021-04-24T13:46:10Z", - "pushed_at": "2017-06-04T18:54:16Z", - "git_url": "git://github.com/Be-Secure/ansible-role-oah-users.git", - "ssh_url": "git@github.com:Be-Secure/ansible-role-oah-users.git", - "clone_url": "https://github.com/Be-Secure/ansible-role-oah-users.git", - "svn_url": "https://github.com/Be-Secure/ansible-role-oah-users", - "homepage": null, - "size": 7, - "stargazers_count": 0, - "watchers_count": 0, - "language": null, - "has_issues": false, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 0, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 0, - "license": null, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master", - "permissions": { - "admin": false, - "maintain": false, - "push": false, - "triage": false, - "pull": true - } - }, - { - "id": 362747173, - "node_id": "MDEwOlJlcG9zaXRvcnkzNjI3NDcxNzM=", - "name": "opencti", - "full_name": "Be-Secure/opencti", - "private": false, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Be-Secure", - "html_url": "https://github.com/Be-Secure", - "followers_url": "https://api.github.com/users/Be-Secure/followers", - "following_url": "https://api.github.com/users/Be-Secure/following{/other_user}", - "gists_url": "https://api.github.com/users/Be-Secure/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Be-Secure/subscriptions", - "organizations_url": "https://api.github.com/users/Be-Secure/orgs", - "repos_url": "https://api.github.com/users/Be-Secure/repos", - "events_url": "https://api.github.com/users/Be-Secure/events{/privacy}", - "received_events_url": "https://api.github.com/users/Be-Secure/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Be-Secure/opencti", - "description": "Open Cyber Threat Intelligence Platform", - "fork": true, - "url": "https://api.github.com/repos/Be-Secure/opencti", - "forks_url": "https://api.github.com/repos/Be-Secure/opencti/forks", - "keys_url": "https://api.github.com/repos/Be-Secure/opencti/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Be-Secure/opencti/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Be-Secure/opencti/teams", - "hooks_url": "https://api.github.com/repos/Be-Secure/opencti/hooks", - "issue_events_url": "https://api.github.com/repos/Be-Secure/opencti/issues/events{/number}", - "events_url": "https://api.github.com/repos/Be-Secure/opencti/events", - "assignees_url": "https://api.github.com/repos/Be-Secure/opencti/assignees{/user}", - "branches_url": "https://api.github.com/repos/Be-Secure/opencti/branches{/branch}", - "tags_url": "https://api.github.com/repos/Be-Secure/opencti/tags", - "blobs_url": "https://api.github.com/repos/Be-Secure/opencti/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Be-Secure/opencti/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Be-Secure/opencti/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Be-Secure/opencti/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Be-Secure/opencti/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Be-Secure/opencti/languages", - "stargazers_url": "https://api.github.com/repos/Be-Secure/opencti/stargazers", - "contributors_url": "https://api.github.com/repos/Be-Secure/opencti/contributors", - "subscribers_url": "https://api.github.com/repos/Be-Secure/opencti/subscribers", - "subscription_url": "https://api.github.com/repos/Be-Secure/opencti/subscription", - "commits_url": "https://api.github.com/repos/Be-Secure/opencti/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Be-Secure/opencti/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Be-Secure/opencti/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Be-Secure/opencti/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Be-Secure/opencti/contents/{+path}", - "compare_url": "https://api.github.com/repos/Be-Secure/opencti/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Be-Secure/opencti/merges", - "archive_url": "https://api.github.com/repos/Be-Secure/opencti/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Be-Secure/opencti/downloads", - "issues_url": "https://api.github.com/repos/Be-Secure/opencti/issues{/number}", - "pulls_url": "https://api.github.com/repos/Be-Secure/opencti/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Be-Secure/opencti/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Be-Secure/opencti/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Be-Secure/opencti/labels{/name}", - "releases_url": "https://api.github.com/repos/Be-Secure/opencti/releases{/id}", - "deployments_url": "https://api.github.com/repos/Be-Secure/opencti/deployments", - "created_at": "2021-04-29T08:36:00Z", - "updated_at": "2021-04-29T08:36:01Z", - "pushed_at": "2021-04-29T08:20:05Z", - "git_url": "git://github.com/Be-Secure/opencti.git", - "ssh_url": "git@github.com:Be-Secure/opencti.git", - "clone_url": "https://github.com/Be-Secure/opencti.git", - "svn_url": "https://github.com/Be-Secure/opencti", - "homepage": "https://www.opencti.io", - "size": 24241, - "stargazers_count": 0, - "watchers_count": 0, - "language": null, - "has_issues": false, - "has_projects": true, - "has_downloads": true, - "has_wiki": false, - "has_pages": false, - "forks_count": 0, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 0, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master", - "permissions": { - "admin": false, - "maintain": false, - "push": false, - "triage": false, - "pull": true - } - }, - { - "id": 371246459, - "node_id": "MDEwOlJlcG9zaXRvcnkzNzEyNDY0NTk=", - "name": "ansible-role-oah-desktop", - "full_name": "Be-Secure/ansible-role-oah-desktop", - "private": false, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Be-Secure", - "html_url": "https://github.com/Be-Secure", - "followers_url": "https://api.github.com/users/Be-Secure/followers", - "following_url": "https://api.github.com/users/Be-Secure/following{/other_user}", - "gists_url": "https://api.github.com/users/Be-Secure/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Be-Secure/subscriptions", - "organizations_url": "https://api.github.com/users/Be-Secure/orgs", - "repos_url": "https://api.github.com/users/Be-Secure/repos", - "events_url": "https://api.github.com/users/Be-Secure/events{/privacy}", - "received_events_url": "https://api.github.com/users/Be-Secure/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Be-Secure/ansible-role-oah-desktop", - "description": "Ansible role to enable Graphical user inter-phase for virtual machine", - "fork": false, - "url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop", - "forks_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/forks", - "keys_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/teams", - "hooks_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/hooks", - "issue_events_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/issues/events{/number}", - "events_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/events", - "assignees_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/assignees{/user}", - "branches_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/branches{/branch}", - "tags_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/tags", - "blobs_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/languages", - "stargazers_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/stargazers", - "contributors_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/contributors", - "subscribers_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/subscribers", - "subscription_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/subscription", - "commits_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/contents/{+path}", - "compare_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/merges", - "archive_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/downloads", - "issues_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/issues{/number}", - "pulls_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/labels{/name}", - "releases_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/releases{/id}", - "deployments_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-desktop/deployments", - "created_at": "2021-05-27T04:30:37Z", - "updated_at": "2021-07-27T08:42:33Z", - "pushed_at": "2021-07-27T08:42:29Z", - "git_url": "git://github.com/Be-Secure/ansible-role-oah-desktop.git", - "ssh_url": "git@github.com:Be-Secure/ansible-role-oah-desktop.git", - "clone_url": "https://github.com/Be-Secure/ansible-role-oah-desktop.git", - "svn_url": "https://github.com/Be-Secure/ansible-role-oah-desktop", - "homepage": null, - "size": 3, - "stargazers_count": 0, - "watchers_count": 0, - "language": null, - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 1, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 0, - "license": null, - "forks": 1, - "open_issues": 0, - "watchers": 0, - "default_branch": "main", - "permissions": { - "admin": false, - "maintain": false, - "push": false, - "triage": false, - "pull": true - } - }, - { - "id": 371251717, - "node_id": "MDEwOlJlcG9zaXRvcnkzNzEyNTE3MTc=", - "name": "ansible-role-oah-bes", - "full_name": "Be-Secure/ansible-role-oah-bes", - "private": false, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Be-Secure", - "html_url": "https://github.com/Be-Secure", - "followers_url": "https://api.github.com/users/Be-Secure/followers", - "following_url": "https://api.github.com/users/Be-Secure/following{/other_user}", - "gists_url": "https://api.github.com/users/Be-Secure/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Be-Secure/subscriptions", - "organizations_url": "https://api.github.com/users/Be-Secure/orgs", - "repos_url": "https://api.github.com/users/Be-Secure/repos", - "events_url": "https://api.github.com/users/Be-Secure/events{/privacy}", - "received_events_url": "https://api.github.com/users/Be-Secure/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Be-Secure/ansible-role-oah-bes", - "description": "Ansible role for setting up bes environment. ", - "fork": false, - "url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes", - "forks_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/forks", - "keys_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/teams", - "hooks_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/hooks", - "issue_events_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/issues/events{/number}", - "events_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/events", - "assignees_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/assignees{/user}", - "branches_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/branches{/branch}", - "tags_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/tags", - "blobs_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/languages", - "stargazers_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/stargazers", - "contributors_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/contributors", - "subscribers_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/subscribers", - "subscription_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/subscription", - "commits_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/contents/{+path}", - "compare_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/merges", - "archive_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/downloads", - "issues_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/issues{/number}", - "pulls_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/labels{/name}", - "releases_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/releases{/id}", - "deployments_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-bes/deployments", - "created_at": "2021-05-27T05:00:51Z", - "updated_at": "2021-05-27T05:03:33Z", - "pushed_at": "2021-05-27T05:03:30Z", - "git_url": "git://github.com/Be-Secure/ansible-role-oah-bes.git", - "ssh_url": "git@github.com:Be-Secure/ansible-role-oah-bes.git", - "clone_url": "https://github.com/Be-Secure/ansible-role-oah-bes.git", - "svn_url": "https://github.com/Be-Secure/ansible-role-oah-bes", - "homepage": null, - "size": 2, - "stargazers_count": 0, - "watchers_count": 0, - "language": null, - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 1, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 0, - "license": null, - "forks": 1, - "open_issues": 0, - "watchers": 0, - "default_branch": "main", - "permissions": { - "admin": false, - "maintain": false, - "push": false, - "triage": false, - "pull": true - } - }, - { - "id": 371252803, - "node_id": "MDEwOlJlcG9zaXRvcnkzNzEyNTI4MDM=", - "name": "ansible-role-oah-vscode", - "full_name": "Be-Secure/ansible-role-oah-vscode", - "private": false, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Be-Secure", - "html_url": "https://github.com/Be-Secure", - "followers_url": "https://api.github.com/users/Be-Secure/followers", - "following_url": "https://api.github.com/users/Be-Secure/following{/other_user}", - "gists_url": "https://api.github.com/users/Be-Secure/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Be-Secure/subscriptions", - "organizations_url": "https://api.github.com/users/Be-Secure/orgs", - "repos_url": "https://api.github.com/users/Be-Secure/repos", - "events_url": "https://api.github.com/users/Be-Secure/events{/privacy}", - "received_events_url": "https://api.github.com/users/Be-Secure/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Be-Secure/ansible-role-oah-vscode", - "description": "Ansible role for installing Visual Studio Code application. ", - "fork": false, - "url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode", - "forks_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/forks", - "keys_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/teams", - "hooks_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/hooks", - "issue_events_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/issues/events{/number}", - "events_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/events", - "assignees_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/assignees{/user}", - "branches_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/branches{/branch}", - "tags_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/tags", - "blobs_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/languages", - "stargazers_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/stargazers", - "contributors_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/contributors", - "subscribers_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/subscribers", - "subscription_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/subscription", - "commits_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/contents/{+path}", - "compare_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/merges", - "archive_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/downloads", - "issues_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/issues{/number}", - "pulls_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/labels{/name}", - "releases_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/releases{/id}", - "deployments_url": "https://api.github.com/repos/Be-Secure/ansible-role-oah-vscode/deployments", - "created_at": "2021-05-27T05:06:57Z", - "updated_at": "2021-05-27T05:09:25Z", - "pushed_at": "2021-05-27T05:09:23Z", - "git_url": "git://github.com/Be-Secure/ansible-role-oah-vscode.git", - "ssh_url": "git@github.com:Be-Secure/ansible-role-oah-vscode.git", - "clone_url": "https://github.com/Be-Secure/ansible-role-oah-vscode.git", - "svn_url": "https://github.com/Be-Secure/ansible-role-oah-vscode", - "homepage": null, - "size": 4, - "stargazers_count": 0, - "watchers_count": 0, - "language": "Jinja", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 1, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 0, - "license": null, - "forks": 1, - "open_issues": 0, - "watchers": 0, - "default_branch": "main", - "permissions": { - "admin": false, - "maintain": false, - "push": false, - "triage": false, - "pull": true - } - }, - { - "id": 371327739, - "node_id": "MDEwOlJlcG9zaXRvcnkzNzEzMjc3Mzk=", - "name": "bes-ansibledev-env", - "full_name": "Be-Secure/bes-ansibledev-env", - "private": false, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Be-Secure", - "html_url": "https://github.com/Be-Secure", - "followers_url": "https://api.github.com/users/Be-Secure/followers", - "following_url": "https://api.github.com/users/Be-Secure/following{/other_user}", - "gists_url": "https://api.github.com/users/Be-Secure/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Be-Secure/subscriptions", - "organizations_url": "https://api.github.com/users/Be-Secure/orgs", - "repos_url": "https://api.github.com/users/Be-Secure/repos", - "events_url": "https://api.github.com/users/Be-Secure/events{/privacy}", - "received_events_url": "https://api.github.com/users/Be-Secure/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Be-Secure/bes-ansibledev-env", - "description": "Bes environment for ansilble tool development. ", - "fork": false, - "url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env", - "forks_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/forks", - "keys_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/teams", - "hooks_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/hooks", - "issue_events_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/issues/events{/number}", - "events_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/events", - "assignees_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/assignees{/user}", - "branches_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/branches{/branch}", - "tags_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/tags", - "blobs_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/languages", - "stargazers_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/stargazers", - "contributors_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/contributors", - "subscribers_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/subscribers", - "subscription_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/subscription", - "commits_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/contents/{+path}", - "compare_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/merges", - "archive_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/downloads", - "issues_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/issues{/number}", - "pulls_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/labels{/name}", - "releases_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/releases{/id}", - "deployments_url": "https://api.github.com/repos/Be-Secure/bes-ansibledev-env/deployments", - "created_at": "2021-05-27T10:03:48Z", - "updated_at": "2021-05-27T10:08:54Z", - "pushed_at": "2021-05-27T10:08:52Z", - "git_url": "git://github.com/Be-Secure/bes-ansibledev-env.git", - "ssh_url": "git@github.com:Be-Secure/bes-ansibledev-env.git", - "clone_url": "https://github.com/Be-Secure/bes-ansibledev-env.git", - "svn_url": "https://github.com/Be-Secure/bes-ansibledev-env", - "homepage": null, - "size": 5, - "stargazers_count": 0, - "watchers_count": 0, - "language": "Shell", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 0, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 0, - "license": null, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "main", - "permissions": { - "admin": false, - "maintain": false, - "push": false, - "triage": false, - "pull": true - } - }, - { - "id": 373043626, - "node_id": "MDEwOlJlcG9zaXRvcnkzNzMwNDM2MjY=", - "name": "secure-pipeline-java-demo", - "full_name": "Be-Secure/secure-pipeline-java-demo", - "private": false, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Be-Secure", - "html_url": "https://github.com/Be-Secure", - "followers_url": "https://api.github.com/users/Be-Secure/followers", - "following_url": "https://api.github.com/users/Be-Secure/following{/other_user}", - "gists_url": "https://api.github.com/users/Be-Secure/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Be-Secure/subscriptions", - "organizations_url": "https://api.github.com/users/Be-Secure/orgs", - "repos_url": "https://api.github.com/users/Be-Secure/repos", - "events_url": "https://api.github.com/users/Be-Secure/events{/privacy}", - "received_events_url": "https://api.github.com/users/Be-Secure/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Be-Secure/secure-pipeline-java-demo", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo", - "forks_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/forks", - "keys_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/teams", - "hooks_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/hooks", - "issue_events_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/issues/events{/number}", - "events_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/events", - "assignees_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/assignees{/user}", - "branches_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/branches{/branch}", - "tags_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/tags", - "blobs_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/languages", - "stargazers_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/stargazers", - "contributors_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/contributors", - "subscribers_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/subscribers", - "subscription_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/subscription", - "commits_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/contents/{+path}", - "compare_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/merges", - "archive_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/downloads", - "issues_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/issues{/number}", - "pulls_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/labels{/name}", - "releases_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/releases{/id}", - "deployments_url": "https://api.github.com/repos/Be-Secure/secure-pipeline-java-demo/deployments", - "created_at": "2021-06-02T04:54:50Z", - "updated_at": "2021-06-02T04:54:51Z", - "pushed_at": "2021-03-12T17:50:57Z", - "git_url": "git://github.com/Be-Secure/secure-pipeline-java-demo.git", - "ssh_url": "git@github.com:Be-Secure/secure-pipeline-java-demo.git", - "clone_url": "https://github.com/Be-Secure/secure-pipeline-java-demo.git", - "svn_url": "https://github.com/Be-Secure/secure-pipeline-java-demo", - "homepage": "", - "size": 1875, - "stargazers_count": 0, - "watchers_count": 0, - "language": null, - "has_issues": false, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 0, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 0, - "license": { - "key": "mit", - "name": "MIT License", - "spdx_id": "MIT", - "url": "https://api.github.com/licenses/mit", - "node_id": "MDc6TGljZW5zZTEz" - }, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "main", - "permissions": { - "admin": false, - "maintain": false, - "push": false, - "triage": false, - "pull": true - } - }, - { - "id": 373791464, - "node_id": "MDEwOlJlcG9zaXRvcnkzNzM3OTE0NjQ=", - "name": "bes-tool-scripts", - "full_name": "Be-Secure/bes-tool-scripts", - "private": false, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Be-Secure", - "html_url": "https://github.com/Be-Secure", - "followers_url": "https://api.github.com/users/Be-Secure/followers", - "following_url": "https://api.github.com/users/Be-Secure/following{/other_user}", - "gists_url": "https://api.github.com/users/Be-Secure/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Be-Secure/subscriptions", - "organizations_url": "https://api.github.com/users/Be-Secure/orgs", - "repos_url": "https://api.github.com/users/Be-Secure/repos", - "events_url": "https://api.github.com/users/Be-Secure/events{/privacy}", - "received_events_url": "https://api.github.com/users/Be-Secure/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Be-Secure/bes-tool-scripts", - "description": null, - "fork": false, - "url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts", - "forks_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/forks", - "keys_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/teams", - "hooks_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/hooks", - "issue_events_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/issues/events{/number}", - "events_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/events", - "assignees_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/assignees{/user}", - "branches_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/branches{/branch}", - "tags_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/tags", - "blobs_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/languages", - "stargazers_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/stargazers", - "contributors_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/contributors", - "subscribers_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/subscribers", - "subscription_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/subscription", - "commits_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/contents/{+path}", - "compare_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/merges", - "archive_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/downloads", - "issues_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/issues{/number}", - "pulls_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/labels{/name}", - "releases_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/releases{/id}", - "deployments_url": "https://api.github.com/repos/Be-Secure/bes-tool-scripts/deployments", - "created_at": "2021-06-04T09:34:07Z", - "updated_at": "2021-06-29T09:07:44Z", - "pushed_at": "2021-07-30T15:18:33Z", - "git_url": "git://github.com/Be-Secure/bes-tool-scripts.git", - "ssh_url": "git@github.com:Be-Secure/bes-tool-scripts.git", - "clone_url": "https://github.com/Be-Secure/bes-tool-scripts.git", - "svn_url": "https://github.com/Be-Secure/bes-tool-scripts", - "homepage": null, - "size": 39, - "stargazers_count": 0, - "watchers_count": 0, - "language": "Shell", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 3, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 1, - "license": { - "key": "apache-2.0", - "name": "Apache License 2.0", - "spdx_id": "Apache-2.0", - "url": "https://api.github.com/licenses/apache-2.0", - "node_id": "MDc6TGljZW5zZTI=" - }, - "forks": 3, - "open_issues": 1, - "watchers": 0, - "default_branch": "main", - "permissions": { - "admin": false, - "maintain": false, - "push": false, - "triage": false, - "pull": true - } - }, - { - "id": 377742973, - "node_id": "MDEwOlJlcG9zaXRvcnkzNzc3NDI5NzM=", - "name": "securityonion", - "full_name": "Be-Secure/securityonion", - "private": false, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Be-Secure", - "html_url": "https://github.com/Be-Secure", - "followers_url": "https://api.github.com/users/Be-Secure/followers", - "following_url": "https://api.github.com/users/Be-Secure/following{/other_user}", - "gists_url": "https://api.github.com/users/Be-Secure/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Be-Secure/subscriptions", - "organizations_url": "https://api.github.com/users/Be-Secure/orgs", - "repos_url": "https://api.github.com/users/Be-Secure/repos", - "events_url": "https://api.github.com/users/Be-Secure/events{/privacy}", - "received_events_url": "https://api.github.com/users/Be-Secure/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Be-Secure/securityonion", - "description": "Security Onion 2 - Linux distro for threat hunting, enterprise security monitoring, and log management", - "fork": true, - "url": "https://api.github.com/repos/Be-Secure/securityonion", - "forks_url": "https://api.github.com/repos/Be-Secure/securityonion/forks", - "keys_url": "https://api.github.com/repos/Be-Secure/securityonion/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Be-Secure/securityonion/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Be-Secure/securityonion/teams", - "hooks_url": "https://api.github.com/repos/Be-Secure/securityonion/hooks", - "issue_events_url": "https://api.github.com/repos/Be-Secure/securityonion/issues/events{/number}", - "events_url": "https://api.github.com/repos/Be-Secure/securityonion/events", - "assignees_url": "https://api.github.com/repos/Be-Secure/securityonion/assignees{/user}", - "branches_url": "https://api.github.com/repos/Be-Secure/securityonion/branches{/branch}", - "tags_url": "https://api.github.com/repos/Be-Secure/securityonion/tags", - "blobs_url": "https://api.github.com/repos/Be-Secure/securityonion/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Be-Secure/securityonion/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Be-Secure/securityonion/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Be-Secure/securityonion/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Be-Secure/securityonion/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Be-Secure/securityonion/languages", - "stargazers_url": "https://api.github.com/repos/Be-Secure/securityonion/stargazers", - "contributors_url": "https://api.github.com/repos/Be-Secure/securityonion/contributors", - "subscribers_url": "https://api.github.com/repos/Be-Secure/securityonion/subscribers", - "subscription_url": "https://api.github.com/repos/Be-Secure/securityonion/subscription", - "commits_url": "https://api.github.com/repos/Be-Secure/securityonion/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Be-Secure/securityonion/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Be-Secure/securityonion/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Be-Secure/securityonion/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Be-Secure/securityonion/contents/{+path}", - "compare_url": "https://api.github.com/repos/Be-Secure/securityonion/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Be-Secure/securityonion/merges", - "archive_url": "https://api.github.com/repos/Be-Secure/securityonion/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Be-Secure/securityonion/downloads", - "issues_url": "https://api.github.com/repos/Be-Secure/securityonion/issues{/number}", - "pulls_url": "https://api.github.com/repos/Be-Secure/securityonion/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Be-Secure/securityonion/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Be-Secure/securityonion/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Be-Secure/securityonion/labels{/name}", - "releases_url": "https://api.github.com/repos/Be-Secure/securityonion/releases{/id}", - "deployments_url": "https://api.github.com/repos/Be-Secure/securityonion/deployments", - "created_at": "2021-06-17T07:28:58Z", - "updated_at": "2021-06-17T07:28:59Z", - "pushed_at": "2021-06-17T01:49:47Z", - "git_url": "git://github.com/Be-Secure/securityonion.git", - "ssh_url": "git@github.com:Be-Secure/securityonion.git", - "clone_url": "https://github.com/Be-Secure/securityonion.git", - "svn_url": "https://github.com/Be-Secure/securityonion", - "homepage": "", - "size": 13761, - "stargazers_count": 0, - "watchers_count": 0, - "language": null, - "has_issues": false, - "has_projects": true, - "has_downloads": true, - "has_wiki": false, - "has_pages": false, - "forks_count": 0, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 0, - "license": null, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master", - "permissions": { - "admin": false, - "maintain": false, - "push": false, - "triage": false, - "pull": true - } - }, - { - "id": 377743356, - "node_id": "MDEwOlJlcG9zaXRvcnkzNzc3NDMzNTY=", - "name": "securityonion-image", - "full_name": "Be-Secure/securityonion-image", - "private": false, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Be-Secure", - "html_url": "https://github.com/Be-Secure", - "followers_url": "https://api.github.com/users/Be-Secure/followers", - "following_url": "https://api.github.com/users/Be-Secure/following{/other_user}", - "gists_url": "https://api.github.com/users/Be-Secure/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Be-Secure/subscriptions", - "organizations_url": "https://api.github.com/users/Be-Secure/orgs", - "repos_url": "https://api.github.com/users/Be-Secure/repos", - "events_url": "https://api.github.com/users/Be-Secure/events{/privacy}", - "received_events_url": "https://api.github.com/users/Be-Secure/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Be-Secure/securityonion-image", - "description": null, - "fork": true, - "url": "https://api.github.com/repos/Be-Secure/securityonion-image", - "forks_url": "https://api.github.com/repos/Be-Secure/securityonion-image/forks", - "keys_url": "https://api.github.com/repos/Be-Secure/securityonion-image/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Be-Secure/securityonion-image/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Be-Secure/securityonion-image/teams", - "hooks_url": "https://api.github.com/repos/Be-Secure/securityonion-image/hooks", - "issue_events_url": "https://api.github.com/repos/Be-Secure/securityonion-image/issues/events{/number}", - "events_url": "https://api.github.com/repos/Be-Secure/securityonion-image/events", - "assignees_url": "https://api.github.com/repos/Be-Secure/securityonion-image/assignees{/user}", - "branches_url": "https://api.github.com/repos/Be-Secure/securityonion-image/branches{/branch}", - "tags_url": "https://api.github.com/repos/Be-Secure/securityonion-image/tags", - "blobs_url": "https://api.github.com/repos/Be-Secure/securityonion-image/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Be-Secure/securityonion-image/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Be-Secure/securityonion-image/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Be-Secure/securityonion-image/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Be-Secure/securityonion-image/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Be-Secure/securityonion-image/languages", - "stargazers_url": "https://api.github.com/repos/Be-Secure/securityonion-image/stargazers", - "contributors_url": "https://api.github.com/repos/Be-Secure/securityonion-image/contributors", - "subscribers_url": "https://api.github.com/repos/Be-Secure/securityonion-image/subscribers", - "subscription_url": "https://api.github.com/repos/Be-Secure/securityonion-image/subscription", - "commits_url": "https://api.github.com/repos/Be-Secure/securityonion-image/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Be-Secure/securityonion-image/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Be-Secure/securityonion-image/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Be-Secure/securityonion-image/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Be-Secure/securityonion-image/contents/{+path}", - "compare_url": "https://api.github.com/repos/Be-Secure/securityonion-image/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Be-Secure/securityonion-image/merges", - "archive_url": "https://api.github.com/repos/Be-Secure/securityonion-image/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Be-Secure/securityonion-image/downloads", - "issues_url": "https://api.github.com/repos/Be-Secure/securityonion-image/issues{/number}", - "pulls_url": "https://api.github.com/repos/Be-Secure/securityonion-image/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Be-Secure/securityonion-image/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Be-Secure/securityonion-image/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Be-Secure/securityonion-image/labels{/name}", - "releases_url": "https://api.github.com/repos/Be-Secure/securityonion-image/releases{/id}", - "deployments_url": "https://api.github.com/repos/Be-Secure/securityonion-image/deployments", - "created_at": "2021-06-17T07:30:23Z", - "updated_at": "2021-06-17T07:30:24Z", - "pushed_at": "2021-06-16T22:10:19Z", - "git_url": "git://github.com/Be-Secure/securityonion-image.git", - "ssh_url": "git@github.com:Be-Secure/securityonion-image.git", - "clone_url": "https://github.com/Be-Secure/securityonion-image.git", - "svn_url": "https://github.com/Be-Secure/securityonion-image", - "homepage": null, - "size": 884, - "stargazers_count": 0, - "watchers_count": 0, - "language": null, - "has_issues": false, - "has_projects": true, - "has_downloads": true, - "has_wiki": false, - "has_pages": false, - "forks_count": 0, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 0, - "license": null, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master", - "permissions": { - "admin": false, - "maintain": false, - "push": false, - "triage": false, - "pull": true - } - }, - { - "id": 377759115, - "node_id": "MDEwOlJlcG9zaXRvcnkzNzc3NTkxMTU=", - "name": "zeek", - "full_name": "Be-Secure/zeek", - "private": false, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Be-Secure", - "html_url": "https://github.com/Be-Secure", - "followers_url": "https://api.github.com/users/Be-Secure/followers", - "following_url": "https://api.github.com/users/Be-Secure/following{/other_user}", - "gists_url": "https://api.github.com/users/Be-Secure/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Be-Secure/subscriptions", - "organizations_url": "https://api.github.com/users/Be-Secure/orgs", - "repos_url": "https://api.github.com/users/Be-Secure/repos", - "events_url": "https://api.github.com/users/Be-Secure/events{/privacy}", - "received_events_url": "https://api.github.com/users/Be-Secure/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Be-Secure/zeek", - "description": "Zeek is a powerful network analysis framework that is much different from the typical IDS you may know.", - "fork": true, - "url": "https://api.github.com/repos/Be-Secure/zeek", - "forks_url": "https://api.github.com/repos/Be-Secure/zeek/forks", - "keys_url": "https://api.github.com/repos/Be-Secure/zeek/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Be-Secure/zeek/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Be-Secure/zeek/teams", - "hooks_url": "https://api.github.com/repos/Be-Secure/zeek/hooks", - "issue_events_url": "https://api.github.com/repos/Be-Secure/zeek/issues/events{/number}", - "events_url": "https://api.github.com/repos/Be-Secure/zeek/events", - "assignees_url": "https://api.github.com/repos/Be-Secure/zeek/assignees{/user}", - "branches_url": "https://api.github.com/repos/Be-Secure/zeek/branches{/branch}", - "tags_url": "https://api.github.com/repos/Be-Secure/zeek/tags", - "blobs_url": "https://api.github.com/repos/Be-Secure/zeek/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Be-Secure/zeek/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Be-Secure/zeek/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Be-Secure/zeek/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Be-Secure/zeek/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Be-Secure/zeek/languages", - "stargazers_url": "https://api.github.com/repos/Be-Secure/zeek/stargazers", - "contributors_url": "https://api.github.com/repos/Be-Secure/zeek/contributors", - "subscribers_url": "https://api.github.com/repos/Be-Secure/zeek/subscribers", - "subscription_url": "https://api.github.com/repos/Be-Secure/zeek/subscription", - "commits_url": "https://api.github.com/repos/Be-Secure/zeek/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Be-Secure/zeek/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Be-Secure/zeek/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Be-Secure/zeek/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Be-Secure/zeek/contents/{+path}", - "compare_url": "https://api.github.com/repos/Be-Secure/zeek/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Be-Secure/zeek/merges", - "archive_url": "https://api.github.com/repos/Be-Secure/zeek/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Be-Secure/zeek/downloads", - "issues_url": "https://api.github.com/repos/Be-Secure/zeek/issues{/number}", - "pulls_url": "https://api.github.com/repos/Be-Secure/zeek/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Be-Secure/zeek/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Be-Secure/zeek/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Be-Secure/zeek/labels{/name}", - "releases_url": "https://api.github.com/repos/Be-Secure/zeek/releases{/id}", - "deployments_url": "https://api.github.com/repos/Be-Secure/zeek/deployments", - "created_at": "2021-06-17T08:29:28Z", - "updated_at": "2021-06-17T08:29:30Z", - "pushed_at": "2021-06-17T07:25:11Z", - "git_url": "git://github.com/Be-Secure/zeek.git", - "ssh_url": "git@github.com:Be-Secure/zeek.git", - "clone_url": "https://github.com/Be-Secure/zeek.git", - "svn_url": "https://github.com/Be-Secure/zeek", - "homepage": "https://www.zeek.org", - "size": 113514, - "stargazers_count": 0, - "watchers_count": 0, - "language": null, - "has_issues": false, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 0, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 0, - "license": { - "key": "other", - "name": "Other", - "spdx_id": "NOASSERTION", - "url": null, - "node_id": "MDc6TGljZW5zZTA=" - }, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master", - "permissions": { - "admin": false, - "maintain": false, - "push": false, - "triage": false, - "pull": true - } - }, - { - "id": 378665325, - "node_id": "MDEwOlJlcG9zaXRvcnkzNzg2NjUzMjU=", - "name": "Be-Secure-webpage-archive", - "full_name": "Be-Secure/Be-Secure-webpage-archive", - "private": false, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Be-Secure", - "html_url": "https://github.com/Be-Secure", - "followers_url": "https://api.github.com/users/Be-Secure/followers", - "following_url": "https://api.github.com/users/Be-Secure/following{/other_user}", - "gists_url": "https://api.github.com/users/Be-Secure/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Be-Secure/subscriptions", - "organizations_url": "https://api.github.com/users/Be-Secure/orgs", - "repos_url": "https://api.github.com/users/Be-Secure/repos", - "events_url": "https://api.github.com/users/Be-Secure/events{/privacy}", - "received_events_url": "https://api.github.com/users/Be-Secure/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Be-Secure/Be-Secure-webpage-archive", - "description": "Github webpage for Be-Secure projects", - "fork": false, - "url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive", - "forks_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/forks", - "keys_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/teams", - "hooks_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/hooks", - "issue_events_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/issues/events{/number}", - "events_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/events", - "assignees_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/assignees{/user}", - "branches_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/branches{/branch}", - "tags_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/tags", - "blobs_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/languages", - "stargazers_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/stargazers", - "contributors_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/contributors", - "subscribers_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/subscribers", - "subscription_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/subscription", - "commits_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/contents/{+path}", - "compare_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/merges", - "archive_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/downloads", - "issues_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/issues{/number}", - "pulls_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/labels{/name}", - "releases_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/releases{/id}", - "deployments_url": "https://api.github.com/repos/Be-Secure/Be-Secure-webpage-archive/deployments", - "created_at": "2021-06-20T14:29:03Z", - "updated_at": "2021-07-28T11:42:20Z", - "pushed_at": "2021-07-28T10:49:48Z", - "git_url": "git://github.com/Be-Secure/Be-Secure-webpage-archive.git", - "ssh_url": "git@github.com:Be-Secure/Be-Secure-webpage-archive.git", - "clone_url": "https://github.com/Be-Secure/Be-Secure-webpage-archive.git", - "svn_url": "https://github.com/Be-Secure/Be-Secure-webpage-archive", - "homepage": null, - "size": 1799, - "stargazers_count": 0, - "watchers_count": 0, - "language": "CSS", - "has_issues": true, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 1, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 1, - "license": null, - "forks": 1, - "open_issues": 1, - "watchers": 0, - "default_branch": "main", - "permissions": { - "admin": false, - "maintain": false, - "push": false, - "triage": false, - "pull": true - } - }, - { - "id": 380881845, - "node_id": "MDEwOlJlcG9zaXRvcnkzODA4ODE4NDU=", - "name": "cti", - "full_name": "Be-Secure/cti", - "private": false, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Be-Secure", - "html_url": "https://github.com/Be-Secure", - "followers_url": "https://api.github.com/users/Be-Secure/followers", - "following_url": "https://api.github.com/users/Be-Secure/following{/other_user}", - "gists_url": "https://api.github.com/users/Be-Secure/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Be-Secure/subscriptions", - "organizations_url": "https://api.github.com/users/Be-Secure/orgs", - "repos_url": "https://api.github.com/users/Be-Secure/repos", - "events_url": "https://api.github.com/users/Be-Secure/events{/privacy}", - "received_events_url": "https://api.github.com/users/Be-Secure/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Be-Secure/cti", - "description": "Cyber Threat Intelligence Repository expressed in STIX 2.0", - "fork": true, - "url": "https://api.github.com/repos/Be-Secure/cti", - "forks_url": "https://api.github.com/repos/Be-Secure/cti/forks", - "keys_url": "https://api.github.com/repos/Be-Secure/cti/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Be-Secure/cti/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Be-Secure/cti/teams", - "hooks_url": "https://api.github.com/repos/Be-Secure/cti/hooks", - "issue_events_url": "https://api.github.com/repos/Be-Secure/cti/issues/events{/number}", - "events_url": "https://api.github.com/repos/Be-Secure/cti/events", - "assignees_url": "https://api.github.com/repos/Be-Secure/cti/assignees{/user}", - "branches_url": "https://api.github.com/repos/Be-Secure/cti/branches{/branch}", - "tags_url": "https://api.github.com/repos/Be-Secure/cti/tags", - "blobs_url": "https://api.github.com/repos/Be-Secure/cti/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Be-Secure/cti/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Be-Secure/cti/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Be-Secure/cti/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Be-Secure/cti/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Be-Secure/cti/languages", - "stargazers_url": "https://api.github.com/repos/Be-Secure/cti/stargazers", - "contributors_url": "https://api.github.com/repos/Be-Secure/cti/contributors", - "subscribers_url": "https://api.github.com/repos/Be-Secure/cti/subscribers", - "subscription_url": "https://api.github.com/repos/Be-Secure/cti/subscription", - "commits_url": "https://api.github.com/repos/Be-Secure/cti/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Be-Secure/cti/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Be-Secure/cti/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Be-Secure/cti/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Be-Secure/cti/contents/{+path}", - "compare_url": "https://api.github.com/repos/Be-Secure/cti/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Be-Secure/cti/merges", - "archive_url": "https://api.github.com/repos/Be-Secure/cti/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Be-Secure/cti/downloads", - "issues_url": "https://api.github.com/repos/Be-Secure/cti/issues{/number}", - "pulls_url": "https://api.github.com/repos/Be-Secure/cti/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Be-Secure/cti/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Be-Secure/cti/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Be-Secure/cti/labels{/name}", - "releases_url": "https://api.github.com/repos/Be-Secure/cti/releases{/id}", - "deployments_url": "https://api.github.com/repos/Be-Secure/cti/deployments", - "created_at": "2021-06-28T02:18:08Z", - "updated_at": "2021-06-28T02:18:09Z", - "pushed_at": "2021-06-25T12:14:09Z", - "git_url": "git://github.com/Be-Secure/cti.git", - "ssh_url": "git@github.com:Be-Secure/cti.git", - "clone_url": "https://github.com/Be-Secure/cti.git", - "svn_url": "https://github.com/Be-Secure/cti", - "homepage": "", - "size": 80739, - "stargazers_count": 0, - "watchers_count": 0, - "language": null, - "has_issues": false, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 0, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 0, - "license": { - "key": "other", - "name": "Other", - "spdx_id": "NOASSERTION", - "url": null, - "node_id": "MDc6TGljZW5zZTA=" - }, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master", - "permissions": { - "admin": false, - "maintain": false, - "push": false, - "triage": false, - "pull": true - } - }, - { - "id": 381939268, - "node_id": "MDEwOlJlcG9zaXRvcnkzODE5MzkyNjg=", - "name": "Malcolm", - "full_name": "Be-Secure/Malcolm", - "private": false, - "owner": { - "login": "Be-Secure", - "id": 44028837, - "node_id": "MDEyOk9yZ2FuaXphdGlvbjQ0MDI4ODM3", - "avatar_url": "https://avatars.githubusercontent.com/u/44028837?v=4", - "gravatar_id": "", - "url": "https://api.github.com/users/Be-Secure", - "html_url": "https://github.com/Be-Secure", - "followers_url": "https://api.github.com/users/Be-Secure/followers", - "following_url": "https://api.github.com/users/Be-Secure/following{/other_user}", - "gists_url": "https://api.github.com/users/Be-Secure/gists{/gist_id}", - "starred_url": "https://api.github.com/users/Be-Secure/starred{/owner}{/repo}", - "subscriptions_url": "https://api.github.com/users/Be-Secure/subscriptions", - "organizations_url": "https://api.github.com/users/Be-Secure/orgs", - "repos_url": "https://api.github.com/users/Be-Secure/repos", - "events_url": "https://api.github.com/users/Be-Secure/events{/privacy}", - "received_events_url": "https://api.github.com/users/Be-Secure/received_events", - "type": "Organization", - "site_admin": false - }, - "html_url": "https://github.com/Be-Secure/Malcolm", - "description": "Malcolm is a powerful, easily deployable network traffic analysis tool suite for full packet capture artifacts (PCAP files) and Zeek logs.", - "fork": true, - "url": "https://api.github.com/repos/Be-Secure/Malcolm", - "forks_url": "https://api.github.com/repos/Be-Secure/Malcolm/forks", - "keys_url": "https://api.github.com/repos/Be-Secure/Malcolm/keys{/key_id}", - "collaborators_url": "https://api.github.com/repos/Be-Secure/Malcolm/collaborators{/collaborator}", - "teams_url": "https://api.github.com/repos/Be-Secure/Malcolm/teams", - "hooks_url": "https://api.github.com/repos/Be-Secure/Malcolm/hooks", - "issue_events_url": "https://api.github.com/repos/Be-Secure/Malcolm/issues/events{/number}", - "events_url": "https://api.github.com/repos/Be-Secure/Malcolm/events", - "assignees_url": "https://api.github.com/repos/Be-Secure/Malcolm/assignees{/user}", - "branches_url": "https://api.github.com/repos/Be-Secure/Malcolm/branches{/branch}", - "tags_url": "https://api.github.com/repos/Be-Secure/Malcolm/tags", - "blobs_url": "https://api.github.com/repos/Be-Secure/Malcolm/git/blobs{/sha}", - "git_tags_url": "https://api.github.com/repos/Be-Secure/Malcolm/git/tags{/sha}", - "git_refs_url": "https://api.github.com/repos/Be-Secure/Malcolm/git/refs{/sha}", - "trees_url": "https://api.github.com/repos/Be-Secure/Malcolm/git/trees{/sha}", - "statuses_url": "https://api.github.com/repos/Be-Secure/Malcolm/statuses/{sha}", - "languages_url": "https://api.github.com/repos/Be-Secure/Malcolm/languages", - "stargazers_url": "https://api.github.com/repos/Be-Secure/Malcolm/stargazers", - "contributors_url": "https://api.github.com/repos/Be-Secure/Malcolm/contributors", - "subscribers_url": "https://api.github.com/repos/Be-Secure/Malcolm/subscribers", - "subscription_url": "https://api.github.com/repos/Be-Secure/Malcolm/subscription", - "commits_url": "https://api.github.com/repos/Be-Secure/Malcolm/commits{/sha}", - "git_commits_url": "https://api.github.com/repos/Be-Secure/Malcolm/git/commits{/sha}", - "comments_url": "https://api.github.com/repos/Be-Secure/Malcolm/comments{/number}", - "issue_comment_url": "https://api.github.com/repos/Be-Secure/Malcolm/issues/comments{/number}", - "contents_url": "https://api.github.com/repos/Be-Secure/Malcolm/contents/{+path}", - "compare_url": "https://api.github.com/repos/Be-Secure/Malcolm/compare/{base}...{head}", - "merges_url": "https://api.github.com/repos/Be-Secure/Malcolm/merges", - "archive_url": "https://api.github.com/repos/Be-Secure/Malcolm/{archive_format}{/ref}", - "downloads_url": "https://api.github.com/repos/Be-Secure/Malcolm/downloads", - "issues_url": "https://api.github.com/repos/Be-Secure/Malcolm/issues{/number}", - "pulls_url": "https://api.github.com/repos/Be-Secure/Malcolm/pulls{/number}", - "milestones_url": "https://api.github.com/repos/Be-Secure/Malcolm/milestones{/number}", - "notifications_url": "https://api.github.com/repos/Be-Secure/Malcolm/notifications{?since,all,participating}", - "labels_url": "https://api.github.com/repos/Be-Secure/Malcolm/labels{/name}", - "releases_url": "https://api.github.com/repos/Be-Secure/Malcolm/releases{/id}", - "deployments_url": "https://api.github.com/repos/Be-Secure/Malcolm/deployments", - "created_at": "2021-07-01T06:58:03Z", - "updated_at": "2021-07-01T06:58:04Z", - "pushed_at": "2021-06-28T16:03:01Z", - "git_url": "git://github.com/Be-Secure/Malcolm.git", - "ssh_url": "git@github.com:Be-Secure/Malcolm.git", - "clone_url": "https://github.com/Be-Secure/Malcolm.git", - "svn_url": "https://github.com/Be-Secure/Malcolm", - "homepage": "", - "size": 39896, - "stargazers_count": 0, - "watchers_count": 0, - "language": null, - "has_issues": false, - "has_projects": true, - "has_downloads": true, - "has_wiki": true, - "has_pages": false, - "forks_count": 0, - "mirror_url": null, - "archived": false, - "disabled": false, - "open_issues_count": 0, - "license": { - "key": "other", - "name": "Other", - "spdx_id": "NOASSERTION", - "url": null, - "node_id": "MDc6TGljZW5zZTA=" - }, - "forks": 0, - "open_issues": 0, - "watchers": 0, - "default_branch": "master", - "permissions": { - "admin": false, - "maintain": false, - "push": false, - "triage": false, - "pull": true - } - } - ] -}); \ No newline at end of file diff --git a/bes_theme/assets/data/color.js b/bes_theme/assets/data/color.js deleted file mode 100644 index 0e37b8cd..00000000 --- a/bes_theme/assets/data/color.js +++ /dev/null @@ -1,204 +0,0 @@ -const colorForLanguages = { - "Mercury": "#ff2b2b", - "TypeScript": "#2b7489", - "PureBasic": "#5a6986", - "C++": "#6866fb", - "C#": "#178600", - "Cmark": "#eb8131", - "Cmake": "#DA3434", - "Self": "#0579aa", - "edn": "#db5855", - "NewLisp": "#87AED7", - "Jupyter Notebook": "#DA5B0B", - "Rebol": "#358a5b", - "Frege": "#00cafe", - "Dart": "#00B4AB", - "AspectJ": "#a957b0", - "Shell": "#89e051", - "Web Ontology Language": "#9cc9dd", - "xBase": "#403a40", - "Eiffel": "#946d57", - "Nix": "#7e7eff", - "RAML": "#77d9fb", - "MTML": "#b7e1f4", - "Racket": "#22228f", - "Elixir": "#6e4a7e", - "SAS": "#B34936", - "Agda": "#315665", - "wisp": "#7582D1", - "D": "#ba595e", - "Kotlin": "#F18E33", - "Opal": "#f7ede0", - "Crystal": "#776791", - "C": "#438eff", - "ColdFusion CFC": "#ed2cd6", - "Oz": "#fab738", - "Mirah": "#c7a938", - "Objective-J": "#ff0c5a", - "Gosu": "#82937f", - "FreeMarker": "#0050b2", - "Ruby": "#701516", - "Component Pascal": "#b0ce4e", - "Arc": "#aa2afe", - "Brainfuck": "#2F2530", - "Nit": "#009917", - "APL": "#5A8164", - "Go": "#375eab", - "Visual Basic": "#945db7", - "PHP": "#4F5D95", - "Cirru": "#ccccff", - "SQF": "#3F3F3F", - "Glyph": "#e4cc98", - "Java": "#b07219", - "MAXScript": "#00a6a6", - "Scala": "#DC322F", - "Makefile": "#427819", - "ColdFusion": "#ed2cd6", - "Perl": "#0298c3", - "Lua": "#000080", - "Vue": "#2c3e50", - "Verilog": "#b2b7f8", - "Factor": "#636746", - "Haxe": "#df7900", - "Pure Data": "#91de79", - "Forth": "#341708", - "Red": "#ee0000", - "Hy": "#7790B2", - "Volt": "#1F1F1F", - "LSL": "#3d9970", - "eC": "#913960", - "CoffeeScript": "#244776", - "HTML": "#e44b23", - "Lex": "#DBCA00", - "API Blueprint": "#2ACCA8", - "Swift": "#ffac45", - "C": "#555555", - "AutoHotkey": "#6594b9", - "Isabelle": "#FEFE00", - "Metal": "#8f14e9", - "Clarion": "#db901e", - "JSONiq": "#40d47e", - "Boo": "#d4bec1", - "AutoIt": "#1C3552", - "Clojure": "#db5855", - "Rust": "#dea584", - "Prolog": "#74283c", - "SourcePawn": "#5c7611", - "AMPL": "#E6EFBB", - "FORTRAN": "#4d41b1", - "ANTLR": "#9DC3FF", - "Harbour": "#0e60e3", - "Tcl": "#e4cc98", - "BlitzMax": "#cd6400", - "PigLatin": "#fcd7de", - "Lasso": "#999999", - "ECL": "#8a1267", - "VHDL": "#adb2cb", - "Elm": "#60B5CC", - "Propeller Spin": "#7fa2a7", - "X10": "#4B6BEF", - "IDL": "#a3522f", - "ATS": "#1ac620", - "Ada": "#02f88c", - "Unity3D Asset": "#ab69a1", - "Nu": "#c9df40", - "LFE": "#004200", - "SuperCollider": "#46390b", - "Oxygene": "#cdd0e3", - "ASP": "#6a40fd", - "Assembly": "#6E4C13", - "Gnuplot": "#f0a9f0", - "JFlex": "#DBCA00", - "NetLinx": "#0aa0ff", - "Turing": "#45f715", - "Vala": "#fbe5cd", - "Processing": "#0096D8", - "Arduino": "#bd79d1", - "FLUX": "#88ccff", - "NetLogo": "#ff6375", - "C Sharp": "#178600", - "CSS": "#563d7c", - "Emacs Lisp": "#c065db", - "Stan": "#b2011d", - "SaltStack": "#646464", - "QML": "#44a51c", - "Pike": "#005390", - "LOLCODE": "#cc9900", - "ooc": "#b0b77e", - "Handlebars": "#01a9d6", - "J": "#9EEDFF", - "Mask": "#f97732", - "EmberScript": "#FFF4F3", - "TeX": "#3D6117", - "Nemerle": "#3d3c6e", - "KRL": "#28431f", - "Ren'Py": "#ff7f7f", - "Unified Parallel C": "#4e3617", - "Golo": "#88562A", - "Fancy": "#7b9db4", - "OCaml": "#3be133", - "Shen": "#120F14", - "Pascal": "#b0ce4e", - "F#": "#b845fc", - "Puppet": "#302B6D", - "ActionScript": "#882B0F", - "Diff": "#88dddd", - "Ragel in Ruby Host": "#9d5200", - "Fantom": "#dbded5", - "Zephir": "#118f9e", - "Click": "#E4E6F3", - "Smalltalk": "#596706", - "DM": "#447265", - "Ioke": "#078193", - "PogoScript": "#d80074", - "LiveScript": "#499886", - "JavaScript": "#f1e05a", - "VimL": "#199f4b", - "PureScript": "#1D222D", - "ABAP": "#E8274B", - "Matlab": "#bb92ac", - "Slash": "#007eff", - "R": "#198ce7", - "Erlang": "#B83998", - "Pan": "#cc0000", - "LookML": "#652B81", - "Eagle": "#814C05", - "Scheme": "#1e4aec", - "PLSQL": "#dad8d8", - "Python": "#3572A5", - "Max": "#c4a79c", - "Common Lisp": "#3fb68b", - "Latte": "#A8FF97", - "XQuery": "#5232e7", - "Omgrofl": "#cabbff", - "XC": "#99DA07", - "Nimrod": "#37775b", - "SystemVerilog": "#DAE1C2", - "Chapel": "#8dc63f", - "Groovy": "#e69f56", - "Dylan": "#6c616e", - "E": "#ccce35", - "Parrot": "#f3ca0a", - "Grammatical Framework": "#79aa7a", - "Game Maker Language": "#8fb200", - "Papyrus": "#6600cc", - "NetLinx+ERB": "#747faa", - "Clean": "#3F85AF", - "Alloy": "#64C800", - "Squirrel": "#800000", - "PAWN": "#dbb284", - "UnrealScript": "#a54c4d", - "Standard ML": "#dc566d", - "Slim": "#ff8f77", - "Perl6": "#0000fb", - "Julia": "#a270ba", - "Haskell": "#29b544", - "NCL": "#28431f", - "Io": "#a9188d", - "Rouge": "#cc0088", - "cpp": "#f34b7d", - "AGS Script": "#B9D9FF", - "Dogescript": "#cca760", - "nesC": "#94B0C7", - "GAP": "#0000cc" -} \ No newline at end of file diff --git a/bes_theme/assets/data/languages-support.js b/bes_theme/assets/data/languages-support.js deleted file mode 100644 index de9af227..00000000 --- a/bes_theme/assets/data/languages-support.js +++ /dev/null @@ -1,12 +0,0 @@ -let supportedLanguages = { - python: true, - java: true, - javascript: true, - c: true, - "c++": true, - ruby: true, - rust: true, - shell: true, - php: true, - html: true -} \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/136-fastjson-Versiondetails.json b/bes_theme/assets/data/version_details/136-fastjson-Versiondetails.json deleted file mode 100644 index 0e57a671..00000000 --- a/bes_theme/assets/data/version_details/136-fastjson-Versiondetails.json +++ /dev/null @@ -1,67 +0,0 @@ -[ - { - "version": "1.2.24", - "release_date": "19-Jan-2017", - "criticality_score": 0.35369, - "scorecard": 4.2, - "cve_details": - [ - - { - "Year": "2018", - "No_of_Vulnerabilities": 1, - "DoS": null, - "Code_Execution": 1, - "Overflow": null, - "Memory_Corruption": null, - "Sql_Injection": null, - "XSS": null, - "Directory_Traversal": null, - "Http_Response_Splitting": null, - "Bypass_something": null, - "Gain_Information": null, - "Gain_Privileges": null, - "CSRF": null, - "File_Inclusion": null, - "No_of_exploits": "" - }, - { - "Year": "2022", - "No_of_Vulnerabilities": 1, - "DoS": null, - "Code_Execution": null, - "Overflow": null, - "Memory_Corruption": null, - "Sql_Injection": null, - "XSS": null, - "Directory_Traversal": null, - "Http_Response_Splitting": null, - "Bypass_something": 1, - "Gain_Information": null, - "Gain_Privileges": null, - "CSRF": null, - "File_Inclusion": null, - "No_of_exploits": "" - }, - { - "Year": "Total", - "No_of_Vulnerabilities": 2, - "DoS": "", - "Code_Execution": 1, - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": "", - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": 1, - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - } - ] - } - -] diff --git a/bes_theme/assets/data/version_details/139-opencv-Versiondetails.json b/bes_theme/assets/data/version_details/139-opencv-Versiondetails.json deleted file mode 100644 index 8722e673..00000000 --- a/bes_theme/assets/data/version_details/139-opencv-Versiondetails.json +++ /dev/null @@ -1,103 +0,0 @@ -[ - { - "version": "4.6.0", - "release_date": "05-Jun-2022", - "criticality_score": 0.42453, - "scorecard": 4.4, - "cve_details": - [ - { - "Year": 2017, - "No_of_Vulnerabilities": 13, - "DoS": 5, - "Code_Execution": 3, - "Overflow": 5, - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": "", - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": 2018, - "No_of_Vulnerabilities": 1, - "DoS": 1, - "Code_Execution": 1, - "Overflow": 1, - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": "", - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": 2019, - "No_of_Vulnerabilities": 5, - "DoS": 2, - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": "", - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": 2020, - "No_of_Vulnerabilities": 1, - "DoS": "", - "Code_Execution": 1, - "Overflow": 1, - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": "", - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": "Total", - "No_of_Vulnerabilities": 20, - "DoS": 8, - "Code_Execution": 5, - "Overflow": 7, - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": "", - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - } - - ] - } - -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/145-ros-Versiondetails.json b/bes_theme/assets/data/version_details/145-ros-Versiondetails.json deleted file mode 100644 index 74559fa8..00000000 --- a/bes_theme/assets/data/version_details/145-ros-Versiondetails.json +++ /dev/null @@ -1,48 +0,0 @@ -[ - { - "version": "1.15.7", - "release_date": "29-Sep-2020", - "criticality_score": 0.41368, - "scorecard": 5.9, - "cve_details": - [ - { - "Year": "2012", - "of_ Vulnerabilities": 1, - "DoS": null, - "Code_Execution": null, - "Overflow": null, - "Memory_Corruption": null, - "Sql_Injection": null, - "XSS": null, - "Directory_Traversal": null, - "Http_Response_Splitting": null, - "Bypass_something": null, - "Gain_Information": 1, - "Gain_Privileges": null, - "CSRF": null, - "File_Inclusion": null, - "of_exploits": "" - }, - { - "Year": "Total", - "of_Vulnerabilities": 1, - "DoS": null, - "Code_Execution": null, - "Overflow": null, - "Memory_Corruption": null, - "Sql_Injection": null, - "XSS": null, - "Directory_Traversal": null, - "Http_Response_Splitting": null, - "Bypass_something": null, - "Gain_Information": 1, - "Gain Privileges": null, - "CSRF": null, - "File_Inclusion": null, - "of_exploits": "" - } - ] - } - -] diff --git a/bes_theme/assets/data/version_details/148-koha-Versiondetails.json b/bes_theme/assets/data/version_details/148-koha-Versiondetails.json deleted file mode 100644 index 0d47af11..00000000 --- a/bes_theme/assets/data/version_details/148-koha-Versiondetails.json +++ /dev/null @@ -1,10 +0,0 @@ -[ - { - "version": "v21.05.17", - "release_date": "26-Jul-2022", - "criticality_score": 0.4644, - "scorecard": 4.1, - "cve_details": "Not Available" - } - -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/150-wallabag-Versiondetails.json b/bes_theme/assets/data/version_details/150-wallabag-Versiondetails.json deleted file mode 100644 index 8ac5fb3d..00000000 --- a/bes_theme/assets/data/version_details/150-wallabag-Versiondetails.json +++ /dev/null @@ -1,67 +0,0 @@ -[ - { - "version": "2.5.1", - "release_date": "9-Jun-2022", - "criticality_score": "Not Available", - "scorecard": "4.6", - "cve_details": - [ - - { - "Year": 2018, - "No_of_Vulnerabilities": 1, - "DoS": "", - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": 1, - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": 2023, - "No_of_Vulnerabilities": 4, - "DoS": "", - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": 1, - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": 1, - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": "Total", - "No_of_Vulnerabilities": 5, - "DoS": "", - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": 2, - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": 1, - "File_Inclusion": "", - "No_of_exploits": "" - } - ] - } - -] diff --git a/bes_theme/assets/data/version_details/154-grav-Versiondetails.json b/bes_theme/assets/data/version_details/154-grav-Versiondetails.json deleted file mode 100644 index 4aa1b868..00000000 --- a/bes_theme/assets/data/version_details/154-grav-Versiondetails.json +++ /dev/null @@ -1,85 +0,0 @@ -[ - { - "version": "1.7.35", - "release_date": "5-Aug-2022", - "criticality_score": "Not Available", - "scorecard": "3.8", - "cve_details": - [ - - { - "Year": 2020, - "No_of_Vulnerabilities": 1, - "DoS": "", - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": "", - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": 2021, - "No_of_Vulnerabilities": 4, - "DoS": "", - "Code_Execution": 1, - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": 1, - "Directory_Traversal": 1, - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": 1, - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": 2022, - "No_of_Vulnerabilities": 5, - "DoS": "", - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": 4, - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": "Total", - "No_of_Vulnerabilities": 10, - "DoS": "", - "Code_Execution": 1, - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": 5, - "Directory_Traversal": 1, - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": 1, - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - } - ] - } - -] diff --git a/bes_theme/assets/data/version_details/156-php-pm-Versiondetails.json b/bes_theme/assets/data/version_details/156-php-pm-Versiondetails.json deleted file mode 100644 index 8237c636..00000000 --- a/bes_theme/assets/data/version_details/156-php-pm-Versiondetails.json +++ /dev/null @@ -1,11 +0,0 @@ -[ - { - "version": "2.4.0", - "release_date": "16-Mar-2022", - "criticality_score": "Not Available", - "scorecard": "4.7", - "cve_details": "Not Available" - - } - -] diff --git a/bes_theme/assets/data/version_details/158-portus-Versiondetails.json b/bes_theme/assets/data/version_details/158-portus-Versiondetails.json deleted file mode 100644 index 9a8eee43..00000000 --- a/bes_theme/assets/data/version_details/158-portus-Versiondetails.json +++ /dev/null @@ -1,49 +0,0 @@ -[ - { - "version": "2.4.3", - "release_date": "19-Mar-2019", - "criticality_score": "Not Available", - "scorecard": "4.5", - "cve_details": - [ - - { - "Year": 2018, - "No_of_Vulnerabilities": 1, - "DoS": "", - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": "", - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": "Total", - "No_of_Vulnerabilities": 1, - "DoS": "", - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": "", - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - } - ] - } - -] diff --git a/bes_theme/assets/data/version_details/159-spring-security-Versiondetails.json b/bes_theme/assets/data/version_details/159-spring-security-Versiondetails.json deleted file mode 100644 index 29a114a8..00000000 --- a/bes_theme/assets/data/version_details/159-spring-security-Versiondetails.json +++ /dev/null @@ -1,9 +0,0 @@ -[ - { - "version": "5.7.2", - "release_date": "20-Jun-2022", - "criticality_score": "0.46732", - "scorecard": "3.6", - "cve_details": "Not Available" - } -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/161-healthchecks-Versiondetails.json b/bes_theme/assets/data/version_details/161-healthchecks-Versiondetails.json deleted file mode 100644 index 6645c435..00000000 --- a/bes_theme/assets/data/version_details/161-healthchecks-Versiondetails.json +++ /dev/null @@ -1,50 +0,0 @@ -[ - { - "version": "2.2.1", - "release_date": "13-Jun-2020", - "criticality_score": "0.40455", - "scorecard": "3", - "cve_details": [ - - { - "Year": 2023, - "No_of_Vulnerabilities": 1, - "DoS": "", - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": "", - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": "Total", - "No_of_Vulnerabilities": 1, - "DoS": "", - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": "", - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - } - - ] - - } - -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/166-rdkcryptoapi-Versiondetails.json b/bes_theme/assets/data/version_details/166-rdkcryptoapi-Versiondetails.json deleted file mode 100644 index d7cc0321..00000000 --- a/bes_theme/assets/data/version_details/166-rdkcryptoapi-Versiondetails.json +++ /dev/null @@ -1,11 +0,0 @@ -[ - { - "version": "2.1", - "release_date": "Not Available", - "criticality_score": "Not Available", - "scorecard": 4.3, - "cve_details": "Not Available" - - } - -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/169-springfox-Versiondetails.json b/bes_theme/assets/data/version_details/169-springfox-Versiondetails.json deleted file mode 100644 index 9c53d13d..00000000 --- a/bes_theme/assets/data/version_details/169-springfox-Versiondetails.json +++ /dev/null @@ -1,11 +0,0 @@ -[ - { - "version": "3.0.0", - "release_date": "14-Jul-2020", - "criticality_score": "0.39155", - "scorecard": "4.2", - "cve_details": "Not Available" - - } - -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/171-saleor-Versiondetails.json b/bes_theme/assets/data/version_details/171-saleor-Versiondetails.json deleted file mode 100644 index 82c7090e..00000000 --- a/bes_theme/assets/data/version_details/171-saleor-Versiondetails.json +++ /dev/null @@ -1,49 +0,0 @@ -[ - { - "version": "3.0.0-b7", - "release_date": "04-Aug-2021", - "criticality_score": "0.46258", - "scorecard": "5.5", - "cve_details": - [ - { - "Year": 2022, - "No_of_Vulnerabilities": 2, - "DoS": "", - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": "", - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": "Total", - "No_of_Vulnerabilities": 2, - "DoS": "", - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": "", - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - } - - ] - } - -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/186-moodle-Versiondetails.json b/bes_theme/assets/data/version_details/186-moodle-Versiondetails.json deleted file mode 100644 index b78942f7..00000000 --- a/bes_theme/assets/data/version_details/186-moodle-Versiondetails.json +++ /dev/null @@ -1,319 +0,0 @@ -[ - { - "version": "v4.1.0", - "release_date": "26-Nov-2022", - "criticality_score": 0.51352, - "scorecard": 3.3, - "cve_details": - [ - { - "Year": 2006, - "No_of_Vulnerabilities": 12, - "DoS": "", - "Code_Execution": 1, - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": 1, - "XSS": 2, - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": 4, - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": 2007, - "No_of_Vulnerabilities": 1, - "DoS": "", - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": "", - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": 1, - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": 2008, - "No_of_Vulnerabilities": 4, - "DoS": "", - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": 3, - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": 1, - "Gain_Information": "", - "Gain_Privileges": 1, - "CSRF": 1, - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": 2009, - "No_of_Vulnerabilities": 2, - "DoS": "", - "Code_Execution": 1, - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": 1, - "XSS": "", - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": 1, - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": 2010, - "No_of_Vulnerabilities": 4, - "DoS": "", - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": 3, - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": 1, - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": 2012, - "No_of_Vulnerabilities": 1, - "DoS": "", - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": "", - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": 1, - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": 2013, - "No_of_Vulnerabilities": 8, - "DoS": "", - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": 1, - "XSS": 3, - "Directory_Traversal": 1, - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": 1, - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": 2014, - "No_of_Vulnerabilities": 43, - "DoS": 1, - "Code_Execution": 2, - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": 9, - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": 7, - "Gain_Information": 10, - "Gain_Privileges": "", - "CSRF": 5, - "File_Inclusion": "", - "No_of_exploits": 1 - }, - { - "Year": 2015, - "No_of_Vulnerabilities": 23, - "DoS": 2, - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": 5, - "Directory_Traversal": 1, - "Http_Response_Splitting": "", - "Bypass_something": 6, - "Gain_Information": 6, - "Gain_Privileges": "", - "CSRF": 2, - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": 2016, - "No_of_Vulnerabilities": 27, - "DoS": "", - "Code_Execution": 2, - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": 7, - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": 4, - "Gain_Information": 9, - "Gain_Privileges": "", - "CSRF": 3, - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": 2017, - "No_of_Vulnerabilities": 7, - "DoS": "", - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": "", - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": 1, - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": 2018, - "No_of_Vulnerabilities": 16, - "DoS": "", - "Code_Execution": 2, - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": 3, - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": 3, - "Gain_Privileges": "", - "CSRF": 1, - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": 2019, - "No_of_Vulnerabilities": 27, - "DoS": "", - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": 3, - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": 5, - "Gain_Privileges": "", - "CSRF": 1, - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": 2020, - "No_of_Vulnerabilities": 20, - "DoS": 1, - "Code_Execution": 1, - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": 1, - "XSS": 7, - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": 1, - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": 2021, - "No_of_Vulnerabilities": 19, - "DoS": 1, - "Code_Execution": 1, - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": 5, - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": 1, - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": 2022, - "No_of_Vulnerabilities": 44, - "DoS": 1, - "Code_Execution": 6, - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": 5, - "XSS": 9, - "Directory_Traversal": 1, - "Http_Response_Splitting": "", - "Bypass_something": 3, - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": 3, - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": "Total", - "No_of_Vulnerabilities": 258, - "DoS": 6, - "Code_Execution": 16, - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": 9, - "XSS": 59, - "Directory_Traversal": 3, - "Http_Response_Splitting": "", - "Bypass_something": 22, - "Gain_Information": 41, - "Gain_Privileges": 2, - "CSRF": 18, - "File_Inclusion": "", - "No_of_exploits": 1 - } - - ] - } - -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/187-odoo-Versiondetails.json b/bes_theme/assets/data/version_details/187-odoo-Versiondetails.json deleted file mode 100644 index ff24d066..00000000 --- a/bes_theme/assets/data/version_details/187-odoo-Versiondetails.json +++ /dev/null @@ -1,66 +0,0 @@ -[ - { - "version": "15.0", - "release_date": "Not Available", - "criticality_score": 0.47842, - "scorecard": 4.7, - "cve_details": - [ - { - "Year": 2019, - "No_of_Vulnerabilities": 4, - "DoS": "", - "Code Execution": 1, - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": 1, - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": 2020, - "No_of_Vulnerabilities": 12, - "DoS": "", - "Code Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": 4, - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": "Total", - "No_of_Vulnerabilities": 16, - "DoS": "", - "Code Execution": 1, - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": 5, - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - } - ] - } - -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/188-magento2-Versiondetails.json b/bes_theme/assets/data/version_details/188-magento2-Versiondetails.json deleted file mode 100644 index 37694436..00000000 --- a/bes_theme/assets/data/version_details/188-magento2-Versiondetails.json +++ /dev/null @@ -1,48 +0,0 @@ -[ - { - "version": "2.4.5", - "release_date": "01-Aug-2022", - "criticality_score": 0.50722, - "scorecard": 4.8, - "cve_details": - [ - { - "Year": 2017, - "No_of_Vulnerabilities": 1, - "DoS": "", - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": "", - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": "Total", - "No_of_Vulnerabilities": 1, - "DoS": "", - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": "", - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - } - ] - } - -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/189-canvas-lms-Versiondetails.json b/bes_theme/assets/data/version_details/189-canvas-lms-Versiondetails.json deleted file mode 100644 index 54718a23..00000000 --- a/bes_theme/assets/data/version_details/189-canvas-lms-Versiondetails.json +++ /dev/null @@ -1,11 +0,0 @@ -[ - { - "version": "release-2023-03-15.23", - "release_date": "15-Feb-2023", - "criticality_score": 0.53404, - "scorecard": 4.6, - "cve_details": "Not Available" - - } - -] diff --git a/bes_theme/assets/data/version_details/191-canvas-android-Versiondetails.json b/bes_theme/assets/data/version_details/191-canvas-android-Versiondetails.json deleted file mode 100644 index 7a2d2748..00000000 --- a/bes_theme/assets/data/version_details/191-canvas-android-Versiondetails.json +++ /dev/null @@ -1,11 +0,0 @@ -[ - { - "version": "teacher-1.19.0-52", - "release_date": "30-Jan-2023", - "criticality_score": 0.30071, - "scorecard": 3.9, - "cve_details": "Not Available" - - } - -] diff --git a/bes_theme/assets/data/version_details/192-kaa-Versiondetails.json b/bes_theme/assets/data/version_details/192-kaa-Versiondetails.json deleted file mode 100644 index 8795ef77..00000000 --- a/bes_theme/assets/data/version_details/192-kaa-Versiondetails.json +++ /dev/null @@ -1,49 +0,0 @@ -[ - { - "version": "1.4.13", - "release_date": "04-Aug-2021", - "criticality_score": 0.37326, - "scorecard": 4.4, - "cve_details": [ - { - "Year": "2020", - "of_Vulnerabilities": 1, - "DoS": null, - "Code_Execution": null, - "Overflow": null, - "Memory_Corruption": null, - "Sql_Injection": null, - "XSS": 1, - "Directory_Traversal": null, - "Http_Response_Splitting": null, - "Bypass_something": null, - "Gain_Information": null, - "Gain_Privileges": null, - "CSRF": null, - "File_Inclusion": null, - "of_exploits": "" - }, - { - "Year": "Total", - "of_Vulnerabilities": 1, - "DoS": null, - "Code_Execution": null, - "Overflow": null, - "Memory_Corruption": null, - "Sql_Injection": null, - "XSS": 1, - "Directory_Traversal": null, - "Http_Response_Splitting": null, - "Bypass_something": null, - "Gain_Information": null, - "Gain_Privileges": null, - "CSRF": null, - "File_Inclusion": null, - "of_exploits": "" - } - - ] - - } - -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/194-pimcore-Versiondetails.json b/bes_theme/assets/data/version_details/194-pimcore-Versiondetails.json deleted file mode 100644 index 894951bb..00000000 --- a/bes_theme/assets/data/version_details/194-pimcore-Versiondetails.json +++ /dev/null @@ -1,174 +0,0 @@ -[ - { - "version": "v10.1.0", - "release_date": "014-Aug-20221", - "criticality_score": 0.44032, - "scorecard": 3.9, - "cve_details": - [ - { - "Year": "2014", - "of_Vulnerabilities": 2, - "DoS": null, - "Code_Execution": 1, - "Overflow": null, - "Memory_Corruption": null, - "Sql_Injection": null, - "XSS": null, - "Directory_Traversal": null, - "Http_Response_Splitting": null, - "Bypass_something": null, - "Gain_Information": null, - "Gain_Privileges": null, - "CSRF": null, - "File_Inclusion": null, - "of_exploits": "" - }, - { - "Year": "2015", - "of_Vulnerabilities": 2, - "DoS": null, - "Code_Execution": 1, - "Overflow": null, - "Memory_Corruption": null, - "Sql_Injection": 1, - "XSS": null, - "Directory_Traversal": 1, - "Http_Response_Splitting": null, - "Bypass_something": null, - "Gain_Information": null, - "Gain_Privileges": null, - "CSRF": null, - "File_Inclusion": null, - "of_exploits": "" - }, - { - "Year": "2018", - "of_Vulnerabilities": 3, - "DoS": null, - "Code_Execution": null, - "Overflow": null, - "Memory_Corruption": null, - "Sql_Injection": 1, - "XSS": 1, - "Directory_Traversal": null, - "Http_Response_Splitting": null, - "Bypass_something": null, - "Gain_Information": null, - "Gain_Privileges": null, - "CSRF": 1, - "File_Inclusion": null, - "of_exploits": "" - }, - { - "Year": "2019", - "of_Vulnerabilities": 9, - "DoS": null, - "Code_Execution": null, - "Overflow": null, - "Memory_Corruption": null, - "Sql_Injection": 1, - "XSS": 2, - "Directory_Traversal": null, - "Http_Response_Splitting": null, - "Bypass_something": 1, - "Gain_Information": null, - "Gain_Privileges": null, - "CSRF": null, - "File_Inclusion": null, - "of_exploits": "" - }, - { - "Year": "2020", - "of_Vulnerabilities": 2, - "DoS": null, - "Code_Execution": null, - "Overflow": null, - "Memory_Corruption": null, - "Sql_Injection": 1, - "XSS": null, - "Directory_Traversal": null, - "Http_Response_Splitting": null, - "Bypass_something": null, - "Gain_Information": null, - "Gain_Privileges": null, - "CSRF": null, - "File_Inclusion": null, - "of_exploits": "" - }, - { - "Year": "2021", - "of_Vulnerabilities": 10, - "DoS": null, - "Code_Execution": null, - "Overflow": null, - "Memory_Corruption": null, - "Sql_Injection": 1, - "XSS": 5, - "Directory_Traversal": 1, - "Http_Response_Splitting": null, - "Bypass_something": null, - "Gain_Information": null, - "Gain_Privileges": null, - "CSRF": 1, - "File_Inclusion": 1, - "of_exploits": "" - }, - { - "Year": "2022", - "of_Vulnerabilities": 30, - "DoS": null, - "Code_Execution": 1, - "Overflow": null, - "Memory_Corruption": null, - "Sql_Injection": 5, - "XSS": 20, - "Directory_Traversal": 1, - "Http_Response_Splitting": null, - "Bypass_something": null, - "Gain_Information": 1, - "Gain_Privileges": null, - "CSRF": null, - "File_Inclusion": null, - "of_exploits": "" - }, - { - "Year": "2023", - "of_Vulnerabilities": 4, - "DoS": null, - "Code_Execution": 1, - "Overflow": null, - "Memory_Corruption": null, - "Sql_Injection": null, - "XSS": 2, - "Directory_Traversal": null, - "Http_Response_Splitting": null, - "Bypass_something": 1, - "Gain_Information": null, - "Gain_Privileges": null, - "CSRF": null, - "File_Inclusion": null, - "of_exploits": "" - }, - { - "Year": "Total", - "of_Vulnerabilities": 62, - "DoS": null, - "Code_Execution": 4, - "Overflow": null, - "Memory_Corruption": null, - "Sql_Injection": 10, - "XSS": 30, - "Directory_Traversal": 3, - "Http_Response_Splitting": null, - "Bypass_something": 2, - "Gain_Information": 1, - "Gain_Privileges": null, - "CSRF": 2, - "File_Inclusion": 1, - "of_exploits": "" - } - - ] - } -] diff --git a/bes_theme/assets/data/version_details/195-espocrm-Versiondetails.json b/bes_theme/assets/data/version_details/195-espocrm-Versiondetails.json deleted file mode 100644 index d91c3650..00000000 --- a/bes_theme/assets/data/version_details/195-espocrm-Versiondetails.json +++ /dev/null @@ -1,11 +0,0 @@ -[ - { - "version": "7.1.10", - "release_date": "02-Aug-2022", - "criticality_score": 0.41687, - "scorecard": 3.8, - "cve_details": "Not Available" - - } - -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/197-bit-Versiondetails.json b/bes_theme/assets/data/version_details/197-bit-Versiondetails.json deleted file mode 100644 index e1792fc1..00000000 --- a/bes_theme/assets/data/version_details/197-bit-Versiondetails.json +++ /dev/null @@ -1,10 +0,0 @@ -[ - { - "version": "v14.8.8", - "release_date": "13-Jul-2020", - "criticality_score": 0.36276, - "scorecard": 3.7, - "cve_details": "Not Available" - } - -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/198-joplin-Versiondetails.json b/bes_theme/assets/data/version_details/198-joplin-Versiondetails.json deleted file mode 100644 index 2b9a9609..00000000 --- a/bes_theme/assets/data/version_details/198-joplin-Versiondetails.json +++ /dev/null @@ -1,48 +0,0 @@ -[ - { - "version": "v2.8.8", - "release_date": "24-Jul-2021", - "criticality_score": 0.45912, - "scorecard": 3.4, - "cve_details": - [ - { - "Year": 2022, - "No_of_Vulnerabilities": 1, - "DoS": "", - "Code_Execution": 1, - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": 1, - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": "Total", - "No_of_Vulnerabilities": 1, - "DoS": "", - "Code_Execution": 1, - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": 1, - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - } - ] - } - -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/200-akaunting-Versiondetails.json b/bes_theme/assets/data/version_details/200-akaunting-Versiondetails.json deleted file mode 100644 index 62edbe7e..00000000 --- a/bes_theme/assets/data/version_details/200-akaunting-Versiondetails.json +++ /dev/null @@ -1,49 +0,0 @@ -[ - { - "version": "3.0.5", - "release_date": "29-Jul-2022", - "criticality_score": "Not Available", - "scorecard": "3.8", - "cve_details": - [ - - { - "Year": 2021, - "No_of_Vulnerabilities": 8, - "DoS": "", - "Code_Execution": 2, - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": 3, - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": 1, - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": "Total", - "No_of_Vulnerabilities": 8, - "DoS": "", - "Code_Execution": 2, - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": 3, - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": 1, - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - } - ] - } - -] diff --git a/bes_theme/assets/data/version_details/202-chatwoot-Versiondetails.json b/bes_theme/assets/data/version_details/202-chatwoot-Versiondetails.json deleted file mode 100644 index 293e483d..00000000 --- a/bes_theme/assets/data/version_details/202-chatwoot-Versiondetails.json +++ /dev/null @@ -1,66 +0,0 @@ -[ - { - "version": "2.7.0", - "release_date": "18-Jul-2022", - "criticality_score": "0.44494", - "scorecard": "3.3", - "cve_details": - [ - { - "Year": 2021, - "No_of_Vulnerabilities": 1, - "DoS": "", - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": "", - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_ exploits": "" - }, - { - "Year": 2022, - "No_of_Vulnerabilities": 8, - "DoS": "", - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": 5, - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_ exploits": "" - }, - { - "Year": "Total", - "No_of_Vulnerabilities": 9, - "DoS": "", - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": 5, - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "GainInformation": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - } - ] - } - -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/218-ros_tutorials-Versiondetails.json b/bes_theme/assets/data/version_details/218-ros_tutorials-Versiondetails.json deleted file mode 100644 index 96b33399..00000000 --- a/bes_theme/assets/data/version_details/218-ros_tutorials-Versiondetails.json +++ /dev/null @@ -1,9 +0,0 @@ -[ - { - "version": "1.5.0", - "release_date": "14-sep-2022", - "criticality_score": 0.3588, - "scorecard": 3.4, - "cve_details": "Not Available" - } -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/222-meta-ros-Versiondetails.json b/bes_theme/assets/data/version_details/222-meta-ros-Versiondetails.json deleted file mode 100644 index 3d86dcf7..00000000 --- a/bes_theme/assets/data/version_details/222-meta-ros-Versiondetails.json +++ /dev/null @@ -1,11 +0,0 @@ -[ - { - "version": "master-milestones-16", - "release_date": "24.6.2021", - "criticality_score": "Not Available", - "scorecard": 4.6, - "cve_details": "Not Available" - - } - -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/223-tomcat-Versiondetails.json b/bes_theme/assets/data/version_details/223-tomcat-Versiondetails.json deleted file mode 100644 index 4a7e0672..00000000 --- a/bes_theme/assets/data/version_details/223-tomcat-Versiondetails.json +++ /dev/null @@ -1,85 +0,0 @@ -[ - { - "version": "8.5.0", - "release_date": "17-Mar-2016", - "criticality_score": 0.37028, - "scorecard": 4.9, - "cve_details": - [ - { - "Year": 2016, - "No_of_Vulnerabilities": 1, - "DoS": 1, - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": "", - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": 2017, - "No_of_Vulnerabilities": 12, - "DoS": 1, - "Code_Execution": 2, - "Overflow": 1, - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": 1, - "Directory_Traversal": 1, - "Http_Response_Splitting": "", - "Bypass_something": 1, - "Gain_Information": 3, - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": 2020, - "No_of_Vulnerabilities": 1, - "DoS": "", - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": "", - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": "Total", - "No_of_Vulnerabilities": 14, - "DoS": 2, - "Code_Execution": 2, - "Overflow": 1, - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": 1, - "Directory_Traversal": 1, - "Http_Response_Splitting": "", - "Bypass_something": 1, - "Gain_Information": 3, - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - } - ] - - } - -] diff --git a/bes_theme/assets/data/version_details/225-rdkcryptoapi-Versiondetails.json b/bes_theme/assets/data/version_details/225-rdkcryptoapi-Versiondetails.json deleted file mode 100644 index 6a22002d..00000000 --- a/bes_theme/assets/data/version_details/225-rdkcryptoapi-Versiondetails.json +++ /dev/null @@ -1,11 +0,0 @@ -[ - { - "version": "2.1", - "release_date": "Not available", - "criticality_score": "Not available", - "scorecard": "4.3", - "cve_details": "Not Available" - - } - -] diff --git a/bes_theme/assets/data/version_details/229-spiderfoot-Versiondetails.json b/bes_theme/assets/data/version_details/229-spiderfoot-Versiondetails.json deleted file mode 100644 index 393336d0..00000000 --- a/bes_theme/assets/data/version_details/229-spiderfoot-Versiondetails.json +++ /dev/null @@ -1,11 +0,0 @@ -[ - { - "version": "3.5", - "release_date": "11-Nov-2021", - "criticality_score": 0.36052, - "scorecard": 3.6, - "cve_details": "Not Available" - - } - -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/230-toit-Versiondetails.json b/bes_theme/assets/data/version_details/230-toit-Versiondetails.json deleted file mode 100644 index 57c18d6e..00000000 --- a/bes_theme/assets/data/version_details/230-toit-Versiondetails.json +++ /dev/null @@ -1,11 +0,0 @@ -[ - { - "version": "1.6.15", - "release_date": "22-May-2022", - "criticality_score": 0.30243, - "scorecard": 3, - "cve_details": "Not Available" - - } - -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/231-ThreatPlaybook-Versiondetails.json b/bes_theme/assets/data/version_details/231-ThreatPlaybook-Versiondetails.json deleted file mode 100644 index 59c6cf48..00000000 --- a/bes_theme/assets/data/version_details/231-ThreatPlaybook-Versiondetails.json +++ /dev/null @@ -1,10 +0,0 @@ -[ - { - "version": "1.2.2", - "release_date": "19-Nov-2018", - "criticality_score": 0.23621, - "scorecard": 4.6, - "cve_details": "Not Available" - } - -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/232-primeng-Versiondetails.json b/bes_theme/assets/data/version_details/232-primeng-Versiondetails.json deleted file mode 100644 index 6af3bd86..00000000 --- a/bes_theme/assets/data/version_details/232-primeng-Versiondetails.json +++ /dev/null @@ -1,12 +0,0 @@ -[ - { - "version": "15.1.1", - "release_date": "20-Jan-2023", - "criticality_score": 0.49554, - "scorecard": 4.1, - "cve_details": "Not Available" - - } - -] - diff --git a/bes_theme/assets/data/version_details/233-tock-Versiondetails.json b/bes_theme/assets/data/version_details/233-tock-Versiondetails.json deleted file mode 100644 index cf5c5c58..00000000 --- a/bes_theme/assets/data/version_details/233-tock-Versiondetails.json +++ /dev/null @@ -1,49 +0,0 @@ -[ - { - "version": "release-2.1", - "release_date": "07-Sep-2022", - "criticality_score": 0.43438, - "scorecard": 5.3, - "cve_details": - [ - { - "Year": 2018, - "No_of_Vulnerabilities": 1, - "DoS": "", - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": "", - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": "Total", - "No_of_Vulnerabilities": 1, - "DoS": "", - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": "", - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - } - - ] - } - -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/234-struts-Versiondetails.json b/bes_theme/assets/data/version_details/234-struts-Versiondetails.json deleted file mode 100644 index b0dc6c3c..00000000 --- a/bes_theme/assets/data/version_details/234-struts-Versiondetails.json +++ /dev/null @@ -1,11 +0,0 @@ -[ - { - "version": "6.0.3", - "release_date": "12-Aug-2022", - "criticality_score": 0.3996, - "scorecard": 7.1, - "cve_details": "Not Available" - - } - -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/235-logstash-Versiondetails.json b/bes_theme/assets/data/version_details/235-logstash-Versiondetails.json deleted file mode 100644 index c10ed973..00000000 --- a/bes_theme/assets/data/version_details/235-logstash-Versiondetails.json +++ /dev/null @@ -1,10 +0,0 @@ -[ - { - "version": "8.6.1", - "release_date": "26-Jan-2023", - "criticality_score": 0.43434, - "scorecard": 3.9, - "cve_details": "Not Available" - } - -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/242-hexo-Versiondetails.json b/bes_theme/assets/data/version_details/242-hexo-Versiondetails.json deleted file mode 100644 index 7066eae4..00000000 --- a/bes_theme/assets/data/version_details/242-hexo-Versiondetails.json +++ /dev/null @@ -1,10 +0,0 @@ -[ - { - "version": "6.2.0", - "release_date": "11-May-2022", - "criticality_score": 0.41971, - "scorecard": 4.6, - "cve_details": "Not Available" - } - -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/247-swig-wx-Versiondetails.json b/bes_theme/assets/data/version_details/247-swig-wx-Versiondetails.json deleted file mode 100644 index 07683d47..00000000 --- a/bes_theme/assets/data/version_details/247-swig-wx-Versiondetails.json +++ /dev/null @@ -1,10 +0,0 @@ -[ - { - "version": "1.3.29_groovy", - "release_date": "05-Feb-2013", - "criticality_score": 0.2431, - "scorecard": 4.3, - "cve_details": "Not Available" - - } -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/252-rosdistro-Versiondetails.json b/bes_theme/assets/data/version_details/252-rosdistro-Versiondetails.json deleted file mode 100644 index 486d3e00..00000000 --- a/bes_theme/assets/data/version_details/252-rosdistro-Versiondetails.json +++ /dev/null @@ -1,9 +0,0 @@ -[ - { - "version": "humble/2022-05-23", - "release_date": "2022-may-23", - "criticality_score": 0.54543, - "scorecard": 5.4, - "cve_details": "Not Available" - } -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/266-lightning-Versiondetails.json b/bes_theme/assets/data/version_details/266-lightning-Versiondetails.json deleted file mode 100644 index 38bf9b11..00000000 --- a/bes_theme/assets/data/version_details/266-lightning-Versiondetails.json +++ /dev/null @@ -1,33 +0,0 @@ -[ - { - "version": "2.8.1", - "release_date": "31.10.2022", - "criticality_score": "Not Available", - "scorecard": 4.1, - "cve_details": - [ - { - "Year": 2020, - "No_of_Vulnerabilities": 1, - "DoS": "", - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": 1, - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - } - - - ] - - } - -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/274-catkin-Versiondetails.json b/bes_theme/assets/data/version_details/274-catkin-Versiondetails.json deleted file mode 100644 index d1b47598..00000000 --- a/bes_theme/assets/data/version_details/274-catkin-Versiondetails.json +++ /dev/null @@ -1,9 +0,0 @@ -[ - { - "version": "0.8.9", - "release_date": "14-Oct-2020", - "criticality_score": 0.09836, - "scorecard": 4.8, - "cve_details": "Not Available" - } -] diff --git a/bes_theme/assets/data/version_details/278-rdkservices-Versiondetails.json b/bes_theme/assets/data/version_details/278-rdkservices-Versiondetails.json deleted file mode 100644 index e78e0820..00000000 --- a/bes_theme/assets/data/version_details/278-rdkservices-Versiondetails.json +++ /dev/null @@ -1,11 +0,0 @@ -[ - { - "version": "sprint_2101", - "release_date": "08.12.2020", - "criticality_score": "Not Available", - "scorecard": 4.6, - "cve_details": "Not Available" - - } - -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/281-ros_comm-Versiondetails.json b/bes_theme/assets/data/version_details/281-ros_comm-Versiondetails.json deleted file mode 100644 index 790b1b1a..00000000 --- a/bes_theme/assets/data/version_details/281-ros_comm-Versiondetails.json +++ /dev/null @@ -1,67 +0,0 @@ -[ - { - "version":"1.15.14", - "release_date": "07.01.2022", - "criticality_score": "Not Available", - "scorecard": 5.8, - "cve_details": - [ - { - "Year": 2019, - "No_of_Vulnerabilities": 3, - "DoS": 2, - "Code_Execution": 1, - "Overflow": 2, - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": "", - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": "2020", - "No_of_Vulnerabilities": 1, - "DoS": "", - "Code_Execution": "", - "Overflow": 1, - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": "", - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": "2021", - "No_of_Vulnerabilities": 1, - "DoS": 1, - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": "", - "XSS": "", - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - } - ] - - } - -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/290-oneTBB-Versiondetails.json b/bes_theme/assets/data/version_details/290-oneTBB-Versiondetails.json deleted file mode 100644 index cde18df2..00000000 --- a/bes_theme/assets/data/version_details/290-oneTBB-Versiondetails.json +++ /dev/null @@ -1,9 +0,0 @@ -[ - { - "version": "v2021.7.0", - "release_date": "28-OCT-2022", - "criticality_score": "0.20354", - "scorecard": "3.6", - "cve_details": "Not Available" - } -] diff --git a/bes_theme/assets/data/version_details/71-visual-quality-inspection-Versiondetails.json b/bes_theme/assets/data/version_details/71-visual-quality-inspection-Versiondetails.json deleted file mode 100644 index cd2ae9ec..00000000 --- a/bes_theme/assets/data/version_details/71-visual-quality-inspection-Versiondetails.json +++ /dev/null @@ -1,9 +0,0 @@ -[ - { - "version": "refkit-1.0.2", - "release_date": "9-Jul-2022", - "criticality_score": "0.06436", - "scorecard": 4.9, - "cve_details": "Not Available" - } -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/72-unified-runtime-Versiondetails.json b/bes_theme/assets/data/version_details/72-unified-runtime-Versiondetails.json deleted file mode 100644 index fc114ef3..00000000 --- a/bes_theme/assets/data/version_details/72-unified-runtime-Versiondetails.json +++ /dev/null @@ -1,9 +0,0 @@ -[ - { - "version": "main", - "release_date": "Not Available", - "criticality_score": "0.24846", - "scorecard": 3.9, - "cve_details": "Not Available" - } -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/73-level-zero-spec-Versiondetails.json b/bes_theme/assets/data/version_details/73-level-zero-spec-Versiondetails.json deleted file mode 100644 index 1ff21a6a..00000000 --- a/bes_theme/assets/data/version_details/73-level-zero-spec-Versiondetails.json +++ /dev/null @@ -1,9 +0,0 @@ -[ - { - "version": "v1.5", - "release_date": "15-Dec-2022", - "criticality_score": "0.21208", - "scorecard": 4, - "cve_details": "Not Available" - } -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/74-level-zero-Versiondetails.json b/bes_theme/assets/data/version_details/74-level-zero-Versiondetails.json deleted file mode 100644 index 36fd65c8..00000000 --- a/bes_theme/assets/data/version_details/74-level-zero-Versiondetails.json +++ /dev/null @@ -1,9 +0,0 @@ -[ - { - "version": "v1.9", - "release_date": "06-Jan-2023", - "criticality_score": "0.29086", - "scorecard": 4, - "cve_details": "Not Available" - } -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/75-oneCCL-Versiondetails.json b/bes_theme/assets/data/version_details/75-oneCCL-Versiondetails.json deleted file mode 100644 index e8330652..00000000 --- a/bes_theme/assets/data/version_details/75-oneCCL-Versiondetails.json +++ /dev/null @@ -1,9 +0,0 @@ -[ - { - "version": "2021.7.1", - "release_date": "1-DEC-2022", - "criticality_score": "0.27331", - "scorecard": "2.9", - "cve_details": "Not Available" - } -] diff --git a/bes_theme/assets/data/version_details/76-oneVPL-Versiondetails.json b/bes_theme/assets/data/version_details/76-oneVPL-Versiondetails.json deleted file mode 100644 index aa4cf475..00000000 --- a/bes_theme/assets/data/version_details/76-oneVPL-Versiondetails.json +++ /dev/null @@ -1,9 +0,0 @@ -[ - { - "version": "v2023.1.1", - "release_date": "29-Dec-2022", - "criticality_score": "0.30545", - "scorecard": "4.4", - "cve_details": "Not Available" - } -] diff --git a/bes_theme/assets/data/version_details/82-gramine-Versiondetails.json b/bes_theme/assets/data/version_details/82-gramine-Versiondetails.json deleted file mode 100644 index 7e60ebe3..00000000 --- a/bes_theme/assets/data/version_details/82-gramine-Versiondetails.json +++ /dev/null @@ -1,10 +0,0 @@ -[ - { - "version": "1.3.1", - "release_date": "29-Sep-2022", - "criticality_score": 0.35758, - "scorecard": 4.6, - "cve_details": "Not Available" - } - -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/84-jena-Versiondetails.json b/bes_theme/assets/data/version_details/84-jena-Versiondetails.json deleted file mode 100644 index 081f56fd..00000000 --- a/bes_theme/assets/data/version_details/84-jena-Versiondetails.json +++ /dev/null @@ -1,67 +0,0 @@ -[ - { - "version": "4.0.0", - "release_date": "27-Mar-2021", - "criticality_score": 0.37664, - "scorecard": 4.3, - "cve_details": - [ - - { - "Year": "2021", - "No_of_Vulnerabilities": 1, - "DoS": null, - "Code_Execution": null, - "Overflow": null, - "Memory_Corruption": null, - "Sql_Injection": null, - "XSS": null, - "Directory_Traversal": null, - "Http_Response_Splitting": null, - "Bypass_something": null, - "Gain_Information": null, - "Gain_Privileges": null, - "CSRF": null, - "File_Inclusion": null, - "No_of_exploits": null - }, - { - "Year": "2022", - "No_of_Vulnerabilities": 1, - "DoS": null, - "Code_Execution": null, - "Overflow": null, - "Memory_Corruption": null, - "Sql_Injection": null, - "XSS": null, - "Directory_Traversal": null, - "Http_Response_Splitting": null, - "Bypass_something": 1, - "Gain_Information": null, - "Gain_Privileges": null, - "CSRF": null, - "File_Inclusion": null, - "No_of_exploits": null - }, - { - "Year": "Total", - "No_of_Vulnerabilities": 2, - "DoS": null, - "Code_Execution": null, - "Overflow": null, - "Memory_Corruption": null, - "Sql_Injection": null, - "XSS": null, - "Directory_Traversal": null, - "Http_Response_Splitting": null, - "Bypass_something": null, - "Gain_Information": null, - "Gain_Privileges": null, - "CSRF": null, - "File_Inclusion": null, - "No_of_exploits": null - } - ] - } - -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/85-spring-boot-Versiondetails.json b/bes_theme/assets/data/version_details/85-spring-boot-Versiondetails.json deleted file mode 100644 index 1dcb0968..00000000 --- a/bes_theme/assets/data/version_details/85-spring-boot-Versiondetails.json +++ /dev/null @@ -1,10 +0,0 @@ -[ - { - "version": "2.4.3", - "release_date": "18-feb-2021", - "criticality_score": 0.37664, - "scorecard": 2.8, - "cve_details": "Not Available" - } - -] \ No newline at end of file diff --git a/bes_theme/assets/data/version_details/86-security-analytics-export-tools-Versiondetails.json b/bes_theme/assets/data/version_details/86-security-analytics-export-tools-Versiondetails.json deleted file mode 100644 index 0a9bb181..00000000 --- a/bes_theme/assets/data/version_details/86-security-analytics-export-tools-Versiondetails.json +++ /dev/null @@ -1,10 +0,0 @@ -[ - { - "version": "alpha", - "release_date": "Not Available", - "criticality_score": 0.13614, - "scorecard": 4.3, - "cve_details": "Not Available" - } - -] diff --git a/bes_theme/assets/data/version_details/87-owlviewer-Versiondetails.json b/bes_theme/assets/data/version_details/87-owlviewer-Versiondetails.json deleted file mode 100644 index b77722c4..00000000 --- a/bes_theme/assets/data/version_details/87-owlviewer-Versiondetails.json +++ /dev/null @@ -1,11 +0,0 @@ -[ - { - "version": "alpha", - "release_date": "Not Available", - "criticality_score": 0.09836, - "scorecard": 4.3, - "cve_details": "Not Available" - - } - -] diff --git a/bes_theme/assets/data/version_details/94-skywalking-Versiondetails.json b/bes_theme/assets/data/version_details/94-skywalking-Versiondetails.json deleted file mode 100644 index 6393d327..00000000 --- a/bes_theme/assets/data/version_details/94-skywalking-Versiondetails.json +++ /dev/null @@ -1,48 +0,0 @@ -[ - { - "version": "6.0.0-GA", - "release_date": "29-Jan-2019", - "criticality_score": 0.39203, - "scorecard": 3.7, - "cve_details": - [ - { - "Year": 2020, - "No_of_Vulnerabilities": 1, - "DoS": "", - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": 1, - "XSS": "", - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - }, - { - "Year": "Total", - "No_of_Vulnerabilities": 1, - "DoS": "", - "Code_Execution": "", - "Overflow": "", - "Memory_Corruption": "", - "Sql_Injection": 1, - "XSS": "", - "Directory_Traversal": "", - "Http_Response_Splitting": "", - "Bypass_something": "", - "Gain_Information": "", - "Gain_Privileges": "", - "CSRF": "", - "File_Inclusion": "", - "No_of_exploits": "" - } - ] - } - -] diff --git a/bes_theme/assets/data/version_details/96-scikit-learn-Versiondetails.json b/bes_theme/assets/data/version_details/96-scikit-learn-Versiondetails.json deleted file mode 100644 index a180a4dd..00000000 --- a/bes_theme/assets/data/version_details/96-scikit-learn-Versiondetails.json +++ /dev/null @@ -1,9 +0,0 @@ -[ - { - "version": "1.1.2", - "release_date": "05-Aug-2022", - "criticality_score": 0.53993, - "scorecard": 4, - "cve_details": "Not Available" - } -] \ No newline at end of file diff --git a/bes_theme/assets/images/app_logo.png b/bes_theme/assets/images/app_logo.png deleted file mode 100644 index b7ddf8d7..00000000 Binary files a/bes_theme/assets/images/app_logo.png and /dev/null differ diff --git a/bes_theme/assets/images/devops_logo.png b/bes_theme/assets/images/devops_logo.png deleted file mode 100644 index 3a4b2eaf..00000000 Binary files a/bes_theme/assets/images/devops_logo.png and /dev/null differ diff --git a/bes_theme/assets/images/dist_app_logo.png b/bes_theme/assets/images/dist_app_logo.png deleted file mode 100644 index 1a6a4347..00000000 Binary files a/bes_theme/assets/images/dist_app_logo.png and /dev/null differ diff --git a/bes_theme/assets/images/eye.svg b/bes_theme/assets/images/eye.svg deleted file mode 100644 index 7d067dc5..00000000 --- a/bes_theme/assets/images/eye.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/bes_theme/assets/images/fork.svg b/bes_theme/assets/images/fork.svg deleted file mode 100644 index dbfaa09d..00000000 --- a/bes_theme/assets/images/fork.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/bes_theme/assets/images/github.png b/bes_theme/assets/images/github.png deleted file mode 100644 index f21ae410..00000000 Binary files a/bes_theme/assets/images/github.png and /dev/null differ diff --git a/bes_theme/assets/images/info.svg b/bes_theme/assets/images/info.svg deleted file mode 100644 index 8cf79902..00000000 --- a/bes_theme/assets/images/info.svg +++ /dev/null @@ -1,12 +0,0 @@ - - - F540CB57-A002-4BCA-9E10-9BAC3E8C4DE9 - - - - - - - - - \ No newline at end of file diff --git a/bes_theme/assets/images/lan_logo.png b/bes_theme/assets/images/lan_logo.png deleted file mode 100644 index a0101ac5..00000000 Binary files a/bes_theme/assets/images/lan_logo.png and /dev/null differ diff --git a/bes_theme/assets/images/sec_logo.png b/bes_theme/assets/images/sec_logo.png deleted file mode 100644 index 6d239e83..00000000 Binary files a/bes_theme/assets/images/sec_logo.png and /dev/null differ diff --git a/bes_theme/assets/images/star.svg b/bes_theme/assets/images/star.svg deleted file mode 100644 index 5e229193..00000000 --- a/bes_theme/assets/images/star.svg +++ /dev/null @@ -1 +0,0 @@ - diff --git a/bes_theme/assets/javascripts/assessment_reports.js b/bes_theme/assets/javascripts/assessment_reports.js deleted file mode 100644 index 6ba0514f..00000000 --- a/bes_theme/assets/javascripts/assessment_reports.js +++ /dev/null @@ -1,178 +0,0 @@ - -// This function is only used to print scorecard report. -function constructTable(selector, list) { - - - console.log("construct table container"); - // Getting the all column names - var cols = Headers(list, selector); - - // Traversing the JSON data - for (var i = 0; i < list.length; i++) { - var row = $(''); - for (var colIndex = 0; colIndex < cols.length; colIndex++) - { - // console.log("cols:"+cols) - - // if (cols[colIndex] == "documentation") { - // continue; - // } - var val = list[i][cols[colIndex]]; - - // console.log("var:" + val); - // If there is any key, which is matching - // with the column name - if (val == null) val = ""; - row.append($('').html(val)); - } - - // Adding each row to the table - $(selector).append(row); - } - return row; -} - -function download_pdf() -{ - window.print() -} - -function Headers(list, selector) { - var columns = []; - var header = $(''); - - for (var i = 0; i < list.length; i++) { - var row = list[i]; - for (var k in row) { - if ($.inArray(k, columns) == -1) { - console.log("k:"+k); - if (k == "documentation") { - continue; - - } - columns.push(k); - - // Creating the header - header.append($('').html(k)); - } - } - } - - // Appending the header to the table - $(selector).append(header); - return columns; -} - -function print_scorecard_summary(data) -{ - json_data = JSON.stringify(data); - // console.log(json_data); - json_object = JSON.parse(json_data); - var table = "" - table += "" - table += "" - table += "" - table += "" - table += "" - table += "
Date : " + json_object.date + "
Scorecard version : " + json_object.scorecard.version + "
OSSP : " + json_object.repo.name + "
Commit : " + json_object.repo.commit + "
Score : " + json_object.score + "
" - document.getElementById("reports").innerHTML = table; -} -function print_scorecard_report(data) -{ - print_scorecard_summary(data); - document.getElementById("checks_h3").innerHTML = "Checks" - - constructTable('#table', data.checks) -} - -function print_codeql_report(data) { - - - json_data = JSON.stringify(data); - // console.log(json_data); - json_object = JSON.parse(json_data); - var table = "" - table += "" - for (let i in json_object) { - table += "" - - } - - table += "
DescriptionSecurity Severity LevelEnvironmentMessagePathStart LineEnd Line
" + json_object[i].rule.description + "" + json_object[i].rule.security_severity_level + "" + json_object[i].most_recent_instance.environment + "" + json_object[i].most_recent_instance.message.text + "" + json_object[i].most_recent_instance.location.path + "" + json_object[i].most_recent_instance.location.start_line + "" + json_object[i].most_recent_instance.location.end_line + "
" - document.getElementById("reports").innerHTML = table; - -} - -function print_sonarqube_report(data) { - json_data = JSON.stringify(data); - json_object = JSON.parse(json_data); - print_issues = json_object.issues; // The report has to be printed from issues array. - console.log("issues:"+ print_issues); - var table = "" - table += "" - for (let i in print_issues){ - table += "" - } - table += "
ComponentTypeMessageLine
" + print_issues[i].component + "" + print_issues[i].type +"" + print_issues[i].message +"" + print_issues[i].line +"
" - document.getElementById("reports").innerHTML = table; -} - -function fetch_json() -{ - var url; - var version = localStorage["version"]; - var ossp_name = localStorage["ossp_name"]; - var report = localStorage["report"]; - console.log(ossp_name); - console.log("report:"+report); - if (report == "codeql" || report == "sonarqube") { // The sast reports(codeql, sonarqube, ...) are under sast dir. - url = 'https://raw.githubusercontent.com/Be-Secure/besecure-assessment-datastore/main/'+ ossp_name + '/' + version + '/sast' + '/' + ossp_name+ '-' + version + '-' + report + '-report.json'; - } - else { - url = 'https://raw.githubusercontent.com/Be-Secure/besecure-assessment-datastore/main/'+ ossp_name + '/' + version + '/' + report + '/' + ossp_name+ '-' + version + '-' + report + '-report.json'; - - } - - console.log("url:"+url); - - document.getElementById("report_name").innerHTML = report + " report - " + localStorage["ossp_name"]; - - fetch(url, { - method: 'GET', - headers: { - 'Accept': 'application/json', - }, -}) - .then(function (response) { - return response.json(); - }) - .then(function (data) { - // console.log(data); - console.log("report:"+report); - - if (report == "scorecard") { - - print_scorecard_report(data); - - } else if (report == "codeql") { - - print_codeql_report(data); - - } else if (report == "sonarqube"){ - - print_sonarqube_report(data); - } - - - }) - .catch(function (err) { - const p = document.createElement("p"); - const para = document.createTextNode("Assessment report not available at the moment"); - p.appendChild(para) - div_tag = document.getElementById("reports"); - div_tag.appendChild(p); - console.dir(err); - - }); - -} diff --git a/bes_theme/assets/javascripts/bessearch.foamtree.js b/bes_theme/assets/javascripts/bessearch.foamtree.js deleted file mode 100644 index 4ad17c55..00000000 --- a/bes_theme/assets/javascripts/bessearch.foamtree.js +++ /dev/null @@ -1,220 +0,0 @@ - -(function() {var v=function(){var e=window.navigator.userAgent,m;try{window.localStorage.setItem("ftap5caavc","ftap5caavc"),window.localStorage.removeItem("ftap5caavc"),m=!0}catch(g){m=!1}return{qf:function(){return/webkit/i.test(e)},oi:function(){return/Mac/.test(e)},of:function(){return/iPad|iPod|iPhone/.test(e)},lf:function(){return/Android/.test(e)},ki:function(){return"ontouchstart"in window||!!window.DocumentTouch&&document instanceof window.DocumentTouch},ji:function(){return m},ii:function(){var d=document.createElement("canvas"); -return!(!d.getContext||!d.getContext("2d"))},Gd:function(d,c){return[].forEach&&v.ii()?d&&d():c&&c()}}}();var ba=function(){function e(){return window.performance&&(window.performance.now||window.performance.mozNow||window.performance.msNow||window.performance.oNow||window.performance.webkitNow)||Date.now}var m=e();return{create:function(){return{now:function(){var g=e();return function(){return g.call(window.performance)}}()}},now:function(){return m.call(window.performance)}}}();function da(){function e(){if(!f)throw"AF0";var d=ba.now();0!==l&&(g.Nd=d-l);l=d;c=c.filter(function(a){return null!==a});g.frames++;for(var b=0;b=a.repeat&&(c[b]=null)))}c=c.filter(function(a){return null!==a});f=!1;m();d=ba.now()-d;0!==d&&(g.Md=d);g.totalTime+=d;g.Re=1E3*g.frames/g.totalTime;l=0===c.length?0:ba.now()}function m(){0a?16-a:0)}}()}(),c=[],f=!1,l=0;this.repeat=function(f,b,a){this.cancel(f);c.push({Be:f,Zg:a,repeat:b});m()};this.d=function(c,b){this.repeat(c, -1,b)};this.cancel=function(f){for(var b=0;b=f;f++)l=2*f*Math.PI/6,h.push({x:0+100*Math.sin(l),y:0+100*Math.cos(l)});f={polygonPlainFill:[m,function(a){a.fillStyle="rgb(255, 0, 0)";a.fill()}],polygonPlainStroke:[m,function(a){a.strokeStyle="rgb(128, 0, 0)";a.lineWidth=2;a.closePath();a.stroke()}], -polygonGradientFill:[m,function(a){var b=a.createRadialGradient(0,0,10,0,0,60);b.addColorStop(0,"rgb(255, 0, 0)");b.addColorStop(1,"rgb(255, 255, 0)");a.fillStyle=b;a.fill()}],polygonGradientStroke:[m,function(a){var b=a.createLinearGradient(-100,-100,100,100);b.addColorStop(0,"rgb(224, 0, 0)");b.addColorStop(1,"rgb(32, 0, 0)");a.strokeStyle=b;a.lineWidth=2;a.closePath();a.stroke()}],polygonExposureShadow:[m,function(a){a.shadowBlur=50;a.shadowColor="rgba(0, 0, 0, 1)";a.fillStyle="rgba(0, 0, 0, 1)"; -a.globalCompositeOperation="source-over";a.fill();a.shadowBlur=0;a.shadowColor="transparent";a.globalCompositeOperation="destination-out";a.fill()}],labelPlainFill:[function(a){a.fillStyle="#000";a.font="24px sans-serif";a.textAlign="center"},function(a){a.fillText("Some text",0,-16);a.fillText("for testing purposes",0,16)}]};var l=100/Object.keys(f).length,b=ba.now(),a={},k;for(k in f){var n=f[k],q=ba.now(),p,r=0;do{d.save();d.translate(Math.random()*c,Math.random()*g);p=3*Math.random()+0.5;d.scale(p, -p);for(p=0;pMath.abs(s))return!1;l.x=((a*f-b*c)*(d-e)-(a-c)*(d*k-g*e))/s;l.y=((a*f-b*c)*(g-k)-(b-f)*(d*k-g*e))/s;return!0}var c=1,f={x:0,y:0},l=1,h=1,b=1,a={x:0,y:0},k=1,n={x:0,y:0},q={x:0,y:0},p={x:0,y:0},r,s,w={x:0,y:0,f:0,i:0},u={x:0,y:0,f:0,i:0,scale:1},y=!0; -e.c.j("stage:initialized",function(a,b,c,f){r=c;s=f;w.x=0;w.y=0;w.f=c;w.i=f;u.x=0;u.y=0;u.f=c;u.i=f;u.scale=1});e.c.j("stage:resized",function(b,c,d,g){function e(a){a.x*=l;a.y*=h}function k(a){e(a);a.f*=l;a.i*=h}r=d;s=g;var l=d/b,h=g/c;e(f);e(n);e(a);e(q);e(p);k(w);k(u)});this.bc=function(b,c){return m(c,function(){g(b,a)},!0)};this.Z=function(b,c){if(1===Math.round(1E4*c)/1E4){var f=w.x-n.x,g=w.y-n.y;m(1,function(){},!0);return this.d(-f,-g)}return m(c,function(){for(var c=!1;!c;)var c=Math.random(), -f=Math.random(),g=Math.random(),e=Math.random(),c=d(b.x+c*b.f,b.y+f*b.i,w.x+c*w.f,w.y+f*w.i,b.x+g*b.f,b.y+e*b.i,w.x+g*w.f,w.y+e*w.i,a)},!0)};this.vc=function(b,c){var f,g,e,l;f=b.f/b.i;g=r/s;fg?(e=b.f,l=b.f*s/r,f=b.x,g=b.y-0.5*(l-b.i)):(f=b.x,g=b.y,e=b.f,l=b.i);f-=e*c;g-=l*c;e*=1+2*c;if(d(f,g,n.x,n.y,f+e,g,n.x+r/k,n.y,a))return m(r/k/e,D.sa,!1);y=!1;return this.d(k*(n.x-f),k*(n.y-g))};this.d=function(a,b){var c=Math.round(1E4*a)/1E4,f=Math.round(1E4*b)/ -1E4;p.x+=c/k;p.y+=f/k;return 0!==c||0!==f};this.reset=function(a){a&&this.content(0,0,r,s);return this.Z({x:w.x+n.x,y:w.y+n.y,f:w.f/k,i:w.i/k},b/l)};this.Tb=function(a){b=Math.min(1,Math.round(1E4*(a||l))/1E4)};this.k=function(){return n.xw.x+w.f?-(n.x+r/k-w.x-w.f)*k:0};this.A=function(){return n.yw.y+w.i?-(n.y+s/k-w.y-w.i)*k:0};this.update=function(b){var d=Math.abs(Math.log(h));6>d?d=2:(d/=4,d+=3*d*(1c&&(c+=1);1c?a:c<2/3? -b+(a-b)*(2/3-c)*6:b}if("rgb"==g.model||"rgba"==g.model)return Math.sqrt(g.r*g.r*0.241+g.g*g.g*0.691+g.b*g.b*0.068)/255;var c,f;c=g.l/100;var e=g.s/100;f=g.h/360;if(0==g.Vj)c=g=f=c;else{var e=0.5>c?c*(1+e):c+e-c*e,h=2*c-e;c=d(h,e,f+1/3);g=d(h,e,f);f=d(h,e,f-1/3)}return Math.sqrt(65025*c*c*0.241+65025*g*g*0.691+65025*f*f*0.068)/255};this.Ng=function(g){if(D.Vc(g))return g;if(D.Ib(g))switch(g.model){case "hsla":return S.Ig(g);case "hsl":return S.Cc(g);case "rgba":return S.Lg(g);case "rgb":return S.Kg(g); -default:return"#000"}else return"#000"};this.Lg=function(g){return"rgba("+(0.5+g.r|0)+","+(0.5+g.g|0)+","+(0.5+g.b|0)+","+g.a+")"};this.Kg=function(g){return"rgba("+(0.5+g.r|0)+","+(0.5+g.g|0)+","+(0.5+g.b|0)+")"};this.Ig=function(g){return"hsla("+(0.5+g.h|0)+","+(0.5+g.s|0)+"%,"+(0.5+g.l|0)+"%,"+g.a+")"};this.Cc=function(g){return"hsl("+(0.5+g.h|0)+","+(0.5+g.s|0)+"%,"+(0.5+g.l|0)+"%)"};this.Z=function(g,d,c){return"hsl("+(0.5+g|0)+","+(0.5+d|0)+"%,"+(0.5+c|0)+"%)"}};function V(){var e=!1,m,g=[],d=this,c=new function(){this.P=function(c){c&&(e?c.apply(d,m):g.push(c));return this};this.kh=function(c){d=c;return{then:this.P}}};this.J=function(){m=arguments;for(var c=0;cM.d(B,c)&&(window.clearTimeout(A),d(a,h),y=!0)},400)}}));f.addEventListener("mouseup",function(b){var c=d(b,a);C&&(H&&d(b,s),window.clearTimeout(u),y||H||!g(b)||(c={x:c.x,y:c.y},x&&100>M.d(c,x)?d(b,k):d(b,l),x=c,A=window.setTimeout(function(){x=null},350)),H=C=!1)});f.addEventListener("mousemove",function(a){var b=c(a,{});g(a)&&d(a,n,{type:"move"});B.x=b.x;B.y=b.y;C&&!H&&100(f*=2)?0.5*Math.pow(f,c):1-0.5*Math.abs(Math.pow(2-f,c))}}function d(c){return function(f){for(var d=0;de-m&&-1E-6a}}function c(a,b,f){this.jb=f;this.Ya=function(){a.call(b);return!1}}function f(a){var b;this.X=function(c,f){b=f+a};this.Ya=function(a,c){return c=f&&-1E-12<=f)&&(a=a-h,k=k-g,c=(a*n-c*k)/f,f=(a*d-b*k)/f,0<=f&&(e||1>=f)&&0<=c&&1>=c))return{x:h+b*c,y:g+d*c}};this.Jg=function(g,d,c,f){var e=g.x;g=g.y;var h=d.x-e;d=d.y-g;var b=c.x;c=c.y;var a=f.x-b;f=f.y- -c;var k=h*f-a*d;if(!(1E-12>=k&&-1E-12<=k)&&(f=((b-e)*f-a*(c-g))/k,0<=f&&1>=f))return{x:e+h*f,y:g+d*f}};this.Dc=function(g,d,c){for(var f=M.k(d,{}),e=M.k(c,{}),h,b=e.x-f.x,a=e.y-f.y,k=[],e=0;e(d.y-f.y)*(l.x-f.x)-(d.x-f.x)*(l.y-f.y))return!1}return!0};this.Mg=function(e,d,c){var f=e.x,l=d.x;e.x>d.x&&(f=d.x,l=e.x);l>c.x+c.f&&(l=c.x+c.f);fl)return!1;var h=e.y,b=d.y,a=d.x- -e.x;1E-7b&&(f=b,b=h,h=f);b>c.y+c.i&&(b=c.y+c.i);hb?-1:0f?-1:0r*(k.x-l.x)+s*(k.y-l.y)+h*(k.z-l.z)&&e.d(a,k);c=f.kb;g=c.length;for(b=0;br*(k.x-l.x)+s*(k.y-l.y)+h*(k.z-l.z)&&e.d(a,k)}var h,b,a,k,n=f.length;for(h=0;he*b.x+g*b.y+k*b.z?new m(b,c,d):new m(d,c,b)}function b(a,c,d,f){function e(a,b,c){a=a.ma;b=a[0]==b?0:a[1]==b?1:2;return a[(b+1)%3]!=c?(b+2)%3:b}c.C[e(c,d,f)]= -a;a.C[e(a,f,d)]=c}if(4>n)return 0;var c=f[0],d=f[1],g=f[2],k=f[3],l=a(c,d,g,k),h=a(c,g,k,d),r=a(c,d,k,g),s=a(d,g,k,c);b(l,h,g,c);b(l,r,c,d);b(l,s,d,g);b(h,r,k,c);b(h,s,g,k);b(r,s,k,d);q.push(l,h,r,s);for(c=4;cg;g++)k=q[g],l=k.ma[0],h=k.Oa,0>h.x*(d.x-l.x)+h.y*(d.y-l.y)+h.z*(d.z-l.z)&&e.d(k,d);return 4}())){for(;pb;b++)if(!0===w[b].visible){r= -k;s=b;break a}}k=[];var w=[],u=r,y=s;do if(k.push(u),w.push(y),y=(y+1)%3,!1===u.C[y].visible){do for(h=u.ma[y],u=u.C[y],b=0;3>b;b++)u.ma[b]==h&&(y=b);while(!1===u.C[y].visible&&(u!==r||y!==s))}while(u!==r||y!==s);var x=null,A=null;for(h=0;h(a.x-b.x)*(k.y-b.y)-(k.x-b.x)*(a.y-b.y))){c=void 0;break a}}f.shift();c=3>f.length?void 0:f}if(!c)a:{f=g.slice(0);for(c=0;c=-m&&(w=0);k.push(w);0w&&(n=!1)}if(p)f=[];else if(!n){s=[];for(r=0;rn||0>p&&0f.length){c=void 0;break a}}c=f}}return c};return this};var Aa=new function(){function e(e){for(var d=e[0].x,c=e[0].y,f=d,l=c,h=1;hf.Oa.z))for(var e=f.C,g=0;gk.Oa.z)){var l=f.ma,h=l[(g+1)%3].index,l=l[g].index;2m)if(u.ub&&E.ub){var I=[],J=[];for(k=0;km&&(w.push(q[k][0].ha),u.push(q[k][2]));r.o=w;r.C=u}r.o&&3>r.o.length&&(r.o=null,r.C=null)}}};this.Bc=function(g,d){var c,f,l=!1,h=g.length;for(f=0;fn&&(r=n,b=k);a.Tj=b;a.xf=Math.sqrt(r)}for(f=0;fh&&(h=f,d=c);return d; -default:d=g[0];f=c=M.d(e,d);for(l=g.length-1;1<=l;l--)h=g[l],c=M.d(e,h),cb.lineHeight&&(b.lineHeight=1);b=F.fontFamily;var T=F.fontStyle+" "+F.fontVariant+" "+F.fontWeight,N=F.sb,U=F.ad,t=T+" "+b;F.Qe=t;var z={la:!1,pc:0,fontSize:0};e.save();e.font=T+" "+x+"px "+b;e.textBaseline="middle";e.textAlign="center";m(e,F);k=k.trim();u.text=k;c(s,r,p,y);if(/[\u3000-\u303f\u3040-\u309f\u30a0-\u30ff\uff00-\uff9f\u4e00-\u9faf\u3400-\u4dbf]/.test(k))d(u),g(e,u,t),f(F,u,y,U,N,!0,z);else if(g(e,u,t),f(F,u,y,U,N,!1, -z),!z.la&&(w&&(d(u),g(e,u,t)),P||w))P&&(z.ic=!0),f(F,u,y,U,U,!0,z);if(z.la){var L="",E=0,I=Number.MAX_VALUE,J=Number.MIN_VALUE;l(F,u,z.pc,z.fontSize,y,z.ic,function(b,c){0b&&(I=b);J>>1;for(f=0;f=n)g.la=!1;else{r=d;f=Math.min(f,n);p=Math.min(1,n/Math.max(20,b.od.length));do{var w=(r+f)/2,u=Math.min(s.length,Math.floor((n+w*(k-1-2*h))/(w*k))),y=void 0;if(0Y)break}while(1)}void 0!==y?r=m=w:f=w}while(f-r>p);void 0=== -m?(g.la=!1,g.fontSize=0):(g.la=!0,g.fontSize=m,g.pc=q,g.ic=e&&w===r)}}function l(c,f,d,e,g,l,h,n){var p=c.pb,q=e*(c.lineHeight-1),m=c.verticalAlign,u=Math.max(c.eb,0.001);c=b[c.Qe];var y=f.od;f=f.mg;var z=g.o,L=g.yd,E=g.vf,I=g.wf,J;switch(m){case "top":g=L.y+e/2+e*u;J=1;break;case "bottom":g=L.y-(e*d+q*(d-1))+e/2-e*u;J=-1;break;default:g=L.y-(e*(d-1)/2+q*(d-1)/2),J=1}m=g;for(u=0;u=d-p&&"\n"!=z)L+=R," "===Z&&(L+=Y),h&&h(g,z);else{if(R>E&&(p!==d-1||!l))return!1;if(p+1>=d){if(l){d=E-L-J;if(d>J||R>J)d=Math.floor(g.length*d/R),0E&&(p!==d||!l))return!1}z=Z}n&&n(p,m,void 0,void 0,L);return!0}var h={sb:72,ad:0,lineHeight:1.05,pb:1,eb:0.5,tb:0.9,fontFamily:"sans-serif",fontStyle:"normal",fontWeight:"normal",fontVariant:"normal",verticalAlign:"center"}, -b={},a=" ",k="\u2026",n="\u2010",q="\u00ad",p="\u200b",r=[],s=[],w=[],u={text:"",od:void 0,mg:void 0},y={o:void 0,q:void 0,yd:void 0,vf:0,wf:0},x=100;return{Oe:e,Ae:function(a,b,c,d,f,g,k,l,h,n,r,s){var p,q=0,m=0;c=c.toString().trim();!s&&h.result&&c===h.tg&&Math.abs(n-h.we)/n<=r&&(p=h.result,p.la&&(q=g.x-h.Ag,m=g.y-h.Bg,r=h.ld,b.save(),b.translate(q,m),r.Ua(b),b.restore()));p||(r=h.ld,r.clear(),p=e(a,r,c,d,f,g,k,l),p.la&&r.Ua(b),h.we=n,h.Ag=g.x,h.Bg=g.y,h.result=p,h.tg=c);return p.la?{la:!0,pc:p.pc, -fontSize:p.fontSize,ea:{x:p.ea.x+q,y:p.ea.y+m,f:p.ea.f,i:p.ea.i},ic:p.ic}:{la:!1}},Ci:function(){return{we:0,Ag:0,Bg:0,result:void 0,ld:new ga,tg:void 0}},Da:h}}();var Ca=new function(){function e(d,c){return function(f,e,h,b){function a(b,d,f,e,l){if(0!=b.length){var n=b.shift(),r=g(n),p,s,q,m;if(c(e,l)){p=d;q=r/e;do{r=n.shift();s=r.yc;m=s/q;s=r;var P=f,F=q;s.x=p+m/2;s.y=P+F/2;h&&k(r,p,f,m,q);p+=m}while(0=h)if(e.yj)h=0.9*d;else continue;l=g(l,!0);l.T=h;l.index=f;l.parent=a;l.L=a.L+1;a.e.push(l);f++}}function g(a,b){var c=new Fa;d(a); -c.id=a.__id;c.group=a;b&&(n[a.__id]=c);return c}function d(a){D.K(a,"__id")||(Object.defineProperty(a,"__id",{enumerable:!1,configurable:!1,writable:!1,value:k}),k++)}function c(a){for(var b=Number.MAX_VALUE,c=0;cd&&(b=d)}b===Number.MAX_VALUE&&(b=1);return b}function f(a){if(!a.empty()){a=a.e;var b=0,c;for(c=a.length-1;0<=c;c--){var d=a[c].T;bb.T?-1:a.index-b.index});for(var b=0;bc?1-p.gi/100*c:1;b.va=0>c?1-p.hi/100*c:1;b.fa=0>c?1+0.5*c:1}function g(a){a=a.ka;return Math.max(0.001,0===a?1:1+a*(p.Xa-1))}function d(a,b){for(var c=a.reduce(function(a,b){a[b.id]=b;return a},{}),d=a.length-1;0<=d;d--)$.F(a[d],function(a){c[a.id]=void 0});var e=[];D.Fa(c,function(a){a&&$.Je(a,function(a){a.open||e.push(a)})});var f=[];D.Fa(c,function(a){a&&a.open&&f.push(a)});d=[];0!==e.length&&d.push(x.Nb({e:e,Ha:!0,Ga:!0},b,!0)); -return pa(d)}function c(c,d,g,n){var q=h();if(0===c.length&&!q)return(new V).J().N();var m=c.reduce(function(a,b){a[b.id]=!0;return a},{}),s=[];c=[];if(A.reduce(function(a,b){return a||m[b.id]&&(!b.U||1!==b.ka)||!m[b.id]&&!b.parent.U&&(b.U||-1!==b.ka)},!1)){var x=[],C={};A.forEach(function(b){m[b.id]&&(b.U||s.push(b),b.U=!0,$.Ea(b,function(b){x.push(a(b,1));C[b.id]=!0}))});0e&&(f=k,e=k.scale)}var h;f&&(h=b(a,f));return h||f||c}return c}for(var c=t.length, -d=t[0].scale,e=t[0].scale,f=0;fe&&(e=g)}if(d!==e)for(f=0;fc&&!1===g.open&&g.$&&I(g,a)&&(e=g,c=g.scale)}c=e}c&&c.description&&(c=c.parent);return c}function b(a){var b=void 0,c=0;$.Mc(x,function(d){!0===d.open&&d.$&&d.scale>c&&I(d,a)&&(b=d,c=d.scale)});return b}var a= -v.oi(),k=this,n=e.options,q,p,r,s,w,u,y,x,A=!1,B,K,C,H,Q,O,P,F,T,N,U;e.c.j("stage:initialized",function(a,b,c,d){q=b;N=c;U=d;g()});e.c.j("stage:resized",function(a,b,c,d){N=c;U=d});e.c.j("stage:disposed",function(){F.lb();E.lb();T.d()});e.c.j("expose:initialized",function(a){s=a});e.c.j("zoom:initialized",function(a){p=a});e.c.j("openclose:initialized",function(a){w=a});e.c.j("select:initialized",function(a){u=a});e.c.j("titlebar:initialized",function(a){y=a});e.c.j("timeline:initialized",function(a){r= -a});var t;e.c.j("model:loaded",function(a,b){x=a;t=b});e.c.j("model:childrenAttached",function(a){t=a});this.H=function(){};this.za=c(f("mousedown",!1,function(){p.zi()}));this.Aa=c(f("mouseup",!1,void 0));this.d=c(f("click",!0,function(a,b){if(!b.xb&&!b.shiftKey){var c=a.Gc;c&&(c.Ra&&n.ud?n.ud&&(document.location.href=n.ud):u.select({e:[c],Ha:!c.selected,Ga:b.metaKey||b.ctrlKey},!0))}}));this.k=c(f("doubleclick",!0,function(a,b){var c,d;if(b.xb||b.shiftKey){if(c=a.Gc)c.parent.U&&(c=c.parent),d={e:c.parent!== -x?[c.parent]:[],Ha:!0,Ga:!1},u.select(d,!0),s.jc(d,!0,!0,!1)}else if(c=a.Gc)d={e:[c],Ha:!0,Ga:!1},c.gb=!0,e.c.p("foamtree:attachChildren",[c]),s.jc(d,!0,!0,!1);c&&r.D.m({}).fb(n.Wa/2).call(function(){w.Nb({e:$.Oc(x,function(a){return a.Wd&&!$.ni(c,a)}),Ha:!1,Ga:!0},!0,!0);c.Wd=!0;w.Nb({e:[c],Ha:!(b.xb||b.shiftKey),Ga:!0},!0,!0)}).start()}));this.xa=c(f("hold",!0,function(a,b){var c=!(b.metaKey||b.ctrlKey||b.shiftKey)&&!b.xb,d;(d=c?a.Gc:a.Xg)&&d!==x&&w.Nb({e:[d],Ha:c,Ga:!0},!0,!1)}));this.Z=c(f("dragstart", -!1,function(a,b){B=b.x;K=b.y;C=Date.now();A=!0}));this.A=c(f("drag",!1,function(a,b){if(A){var c=Date.now();O=Math.min(1,c-C);C=c;var c=b.x-B,d=b.y-K;p.xi(c,d);H=c;Q=d;B=b.x;K=b.y}}));this.S=c(f("dragend",!1,function(){if(A){A=!1;var a=Math.sqrt(H*H+Q*Q)/O;4<=a?p.yi(a,H,Q):p.yf()}}));this.Va=c(f("transformstart",!1,function(a,b){P=1;B=b.x;K=b.y}));var z=1,L=!1;this.Ia=c(f("transform",!1,function(a,b){var c=b.scale-0.01;p.Qg(b,c/P,b.x-B,b.y-K);P=c;B=b.x;K=b.y;z=P;L=L||2z?e.c.p("interaction:reset"):d();L=!1}));this.Pa=c(f("mousewheel",!1,function(){var b=D.bh(function(){d()},300);return function(c,e){var f=n.Lj;1!==f&&(f=Math.pow(f,e.zd),a?(p.Rg(e,f),b()):p.bc(e,f,n.zc,X.oa(n.Ac)).P(d))}}()));this.ya=c(function(){var a=void 0,b={},c=!1,d,g=f("hover",!1,function(){a&&(a.Gb=!1,0=Math.max(g.Ye,5E-5)};this.Bd=function(c,b){for(var a=Math.pow(g.Sa,c.L),d=g.mb*a, -a=g.Dd*a,e=c.e,f=e.length-1;0<=f;f--){var m=e[f];l.ze(m,a);var r=m;r.ba=0a}function h(a){var b= -n.gc/(1+n.gc),c=M.q(a.u,{}),d={x:c.x,y:0},e=c.y,f=c.i,g=n.Fe*Math.pow(n.Sa,a.L-1),k=f*n.Ee,h=n.Kc;"bottom"==h||0<=h&&180>h?(h=Math.PI,e+=f,f=-1):(h=0,f=1);for(var l,m=a.u,p=h,q=0,P=1,F=M.k(m,{}),T=F.ja,b=T*b,N=0;qN++;){var U=(q+P)/2;d.y=c.y+c.i*U;l=M.$b(m,d,p);M.k(l[0],F);var t=F.ja-b;if(0.01>=Math.abs(t)/T)break;else 0<(0==p?1:-1)*t?P=U:q=U}M.q(l[0],c);if(c.ik)d.y=c.ic.M.ja,g=0;!(l(f(c))||e&&32k?(f.i=g-d,a.u=M.A(f),f.y+=g-d,f.i=d,b()):(f.i=d,b(),f.y+=d,f.i=g-d,a.u=M.A(f))}var d;"stab"== -h.hc&&0b?a.unshift(e):a.push(e);break}}}var l,h=e.options,b={squarified:Ca.ve,ordered:Ca.ac}; -e.c.j("model:loaded",function(a){l=a});this.step=function(a,b,c){this.complete(a);b&&h.Vd(1,!0,c);return!0};this.complete=function(a){for(var b=[l];0=q&&(s=u,x=B,b())}function f(){function a(b,c,d){b.Eb=Math.floor(1E3*b.scale)-d*c;0Math.abs(b.scale-a.scale)&&(a.scale=Math.min(a.scale,b.scale))}});a(z,0,"flattened"===t.yb?-1:1);e.sort(function(a,b){return a.Eb-b.Eb});if(l())b=e,d=null;else{var m={},p={},q="none"!=t.Fd&&t.mba?0:a}var d=[{type:"fill",pa:a("polygonPlainFill"),kd:function(a,c){c.fillStyle=S.Cc(b(a))}},{type:"fill",pa:a("polygonGradientFill"),kd:function(a,d){var e=a.M.Rb,f=b(a),e=d.createRadialGradient(a.x,a.y,0,a.x,a.y,e*t.vh);e.addColorStop(0,S.Z((f.h+t.sh)%360,c(f.s+t.uh),c(f.l+t.th)));e.addColorStop(1,S.Z((f.h+t.wh)%360,c(f.s+t.yh),c(f.l+t.xh)));a.ca.Ua(d);d.fillStyle=e}},{type:"stroke",pa:k(a("polygonPlainStroke"),function(){return 0< -t.nb}),kd:function(a,b){var d=a.ra,e=a.Gb,f=a.selected;b.strokeStyle=S.Z((d.h+t.df+(e?t.Ve:0)+(f?t.af:0))%360,c(d.s*a.va+t.ff+(e?t.Xe:0)+(f?t.cf:0)),c(d.l*a.ua+t.ef+(e?t.We:0)+(f?t.bf:0)));b.lineWidth=t.nb*Math.pow(t.Sa,a.L-1)}},{type:"stroke",pa:k(a("polygonGradientStroke"),function(){return 0=t.Rh,"auto"===a.Kd?!t.Ge&&a.description?a.rb=a.parent.rb:(b=a.Te,c=b.h+(b.s<<9)+(b.l<<16),a.Cd!==c&&(a.rb=S.Cg(b)>(0>a.ka?t.fi:t.Gh)?t.Hh:t.Qh,a.Cd=c)):a.rb=a.Kd)}},{$a:["custom"],pa:k(a("contentDecoration"),function(){return t.Rc}),X:function(){},Ca:function(){},d:function(){},ib:function(){},wb:function(a,b){!(0x&&(h=x);f.Fb=x;f.Qc=1}for(e=0;em.ka?u*(m.ka+1):u)*(1-m.Qc))*d(C,p,r,"l"),P=d(C,p,r,"a")): -(O=c.ra,H=O.h,Q=O.s,O=e(O.l,C,f.dj,f.ej),P=c.Se.a);F.h=H;F.s=Q;F.l=O;F.a=P;H=m.ra;m.Ra?(H.h=0,H.s=0,H.l="light"==f.Ug?90:10,H.a=1):(H.h=F.h,H.s=F.s,H.l=F.l,H.a=F.a);w&&(b.groupColor=H,b.labelColor="auto",l.Fc(s,m,b,function(a){a.ratio=C}),m.ra=S.Aa(b.groupColor),m.ra.a=D.K(b.groupColor,"a")?b.groupColor.a:1,"auto"!==b.labelColor&&(m.Kd=S.Ng(b.labelColor)))}c.Ma=!1}for(h=g.length-1;0<=h;h--)a(g[h])}}function e(a,b,c,d){var f=0>a+c*d?0:100a-c*(1-d)?0:100e.T?1:m.T=p||0>=r)){var s=a.Xc?a.qa.fontSize*a.scale*b.scale():0,w,u={titleBarText:a.Ld,titleBarTextColor:l.vg,titleBarBackgroundColor:l.ug,titleBarMaxFontSize:l.qe,titleBarShown:sf/2,e={x:g,y:a?e:f-m+e,f:r,i:p},g=M.A(e),d.fillStyle=l.ug,d.fillRect(0, -a?0:f-m,c,m),d.fillStyle=l.vg,G.Oe({fontFamily:l.Bj||l.Kh,fontStyle:l.Xj||l.Lh,fontWeight:l.Zj||l.Nh,fontVariant:l.Yj||l.Mh,sb:l.qe,ad:l.Cj,pb:0,eb:0,tb:1},d,w,g,e,{x:e.x+e.f/2,y:e.y+e.i/2},!0,!0).la||d.clearRect(0,0,c,f))}}}};function ab(e){function m(a,c,d){u=!0;k&&k.stop();q&&q.stop();return l(b.reset(a),c,d).P(function(){u=!1})}function g(a){b.update(a);s.I=!0;e.c.p("foamtree:dirty",!0)}function d(a,c){return b.d((0!==b.k()?0.35:1)*a,(0!==b.A()?0.35:1)*c)}function c(){if(1===a.Sb){var c=Math.round(1E4*b.k())/1E4;0!==c&&(n.ce=c,k=w.D.wc(n).ia({duration:500,G:{x:{start:c,end:0,R:X.Ub}},da:function(){b.d(n.x-n.ce,0);g(1);n.ce=n.x}}).start())}}function f(){if(1===a.Sb){var c=Math.round(1E4*b.A())/1E4;0!==c&&(p.de=c,q=w.D.wc(p).ia({duration:500, -G:{y:{start:c,end:0,R:X.Ub}},da:function(){b.d(0,p.y-p.de);g(1);p.de=p.y}}).start())}}function l(b,c,d){return b?w.D.wc(a).ia({duration:void 0===c?700:c,G:{Sb:{start:0,end:1,R:d||X.qg}},da:function(){g(a.Sb)}}).bb():(new V).J().N()}function h(a){return function(){return u?(new V).J().N():a.apply(this,arguments)}}var b=new oa(e),a={Sb:1},k,n={He:0,x:0,ce:0},q,p={Ie:0,y:0,de:0},r=this,s,w,u=!1;e.c.j("model:loaded",function(a){s=a;b.reset(!1);b.update(1)});e.c.j("timeline:initialized",function(a){w= -a});this.H=function(){e.c.p("zoom:initialized",this)};this.reset=function(a,c){b.Tb(1);return m(!0,a,c)};this.normalize=h(function(a,c){b.Jc(1)?m(!1,a,c):r.yf()});this.yf=function(){c();f()};this.k=h(function(a,b,c,d){return r.vc(a.q,b,c,d)});this.bc=h(function(a,c,d,e){return l(b.bc(a,c),d,e)});this.vc=h(function(a,c,d,e){return l(b.vc(a,c),d,e)});this.Fj=h(function(a,c){b.vc(a,c)&&g(1)});this.xi=h(function(b,c){1===a.Sb&&d(b,c)&&g(1)});this.Rg=h(function(a,c){b.bc(a,c)&&g(1)});this.Qg=h(function(a, -c,e,f){a=0|b.bc(a,c);(a|=d(e,f))&&g(1)});this.yi=h(function(e,h,l){1===a.Sb&&(k=w.D.wc(n).ia({duration:e/0.03,G:{He:{start:h,end:0,R:X.Ub}},da:function(){b.d(n.He,0)&&g(1);c()}}).start(),q=w.D.wc(p).ia({duration:e/0.03,G:{Ie:{start:l,end:0,R:X.Ub}},da:function(){d(0,p.Ie)&&g(1);f()}}).start())});this.zi=function(){k&&0===b.k()&&k.stop();q&&0===b.A()&&q.stop()};this.Lc=function(a,c){b.Lc(a,c)};this.Tb=function(a){return b.Tb(a)};this.Jc=function(a){return b.Jc(a)};this.Ud=function(){return b.Ud()}; -this.absolute=function(a,c){return b.absolute(a,c)};this.pd=function(a,c){return b.pd(a,c)};this.scale=function(){return b.scale()};this.d=function(a){return b.S(a)};this.content=function(a,c,d,e){b.content(a,c,d,e)}};function bb(e,m,g){function d(a){var b=[];$.F(q,function(c){a(c)&&b.push(c.group)});return{groups:b}}function c(a,b){var c=n.options,d=c.oj,e=c.nj,c=c.ie,f=0m.lj,b=A.step(function(b){b.Ba=!0;J.gf(b);E.d();H.d(b).P(E.k);E.d();c(b,function(){this.Qa= -!0;a()}).P(E.k)},!0,b)||b;f(!0);b&&(e=!1,E.k());return b}var e=!1,g;return{Bi:function(){A.complete(J.qb)},jd:a,fg:b,Jb:function(){return!E.A()},stop:function(){p.cancel(d);e=!1;E.clear()}}}(),J=function(){function a(b){var c=!b.empty();b.Ba=!0;if(c){for(var d=b.e,e=d.length-1;0<=e;e--){var f=d[e];f.f=f.uc}b.Ka=!0}return c}var b=[];return{gf:function(c){var d=n.options,e=d.Bh;0d&&(d=l.x);l.y>c&&(c=l.y)}return{x:m,y:g,w:d-m,h:c-g}}}}())},function(){window.BeSSearchFoamTree=function(){window.console.error("FoamTree is not supported on this browser.")};window.BeSSearchFoamTree.Wj=!1});})(); - diff --git a/bes_theme/assets/javascripts/bessearch.foamtree.util.loading.js b/bes_theme/assets/javascripts/bessearch.foamtree.util.loading.js deleted file mode 100644 index aa5313e5..00000000 --- a/bes_theme/assets/javascripts/bessearch.foamtree.util.loading.js +++ /dev/null @@ -1,149 +0,0 @@ -/** - - * - * - * A simple utility for attaching showing and hiding a - * data loading and preparation progress indicator. The utility - * will create and attach all the necessary HTML to the page. - * - * Please see demos/loading.html for the usage example. - * - * @param foamtree the FoamTree instance whose loading and - * layout preparation progress should be monitored - * @param indicatorHtml the HTML representing the loading message - */ -window.BeSSearchFoamTree.loader = function(foamtree, indicatorHtml) { - var deferDataObjectChange = false, dataObjectToSet = undefined; - var dataObjectToSetProvided = false; - - // Duration of the loading element CSS transition. You may - // need to modify this value if you modified the default CSS transitions. - var duration = 350; - - // On Webkit CSS transitions seem to continue running during JS processing. - // Other browsers need to wait for the transition to complete. - var waitForTransition = !/chrome|webkit/.test(navigator.userAgent.toLowerCase()); - - // Create the indicator element - var indicator = document.createElement("div"); - indicator.className = "visualization-loading fadeout"; - indicator.innerHTML = indicatorHtml; - foamtree.get("element").appendChild(indicator); - - // Hide the indicator when rollout starts - foamtree.on("rolloutStart", hideIndicator); - - return { - /** - * Call this method before data loading is initiated to - * show the loading indicator. - * - * If FoamTree is set to perform a pullback animation, - * the loading indicator will show after pullback is complete. - */ - started: function() { - dataObjectToSetProvided = false; - if (isPullbackEnabled()) { - // We'll defer setting of the new data object - // until pullback completes. FoamTree does that - // internally too, but we need to show the indicator - // before we set the new data object. If we didn't - // do that, the element would actually show after - // the diagram computation completes, which wouldn't - // make much sense. - deferDataObjectChange = true; - once("modelChanged", showIndicatorAndSetDataObject); - - // Set an empty data object to trigger a pullback - foamtree.set("dataObject", null); - } else { - deferDataObjectChange = false; - showIndicator(); - } - }, - - /** - * Call this method when data loading completes. This method - * will take care of setting the new data object on FoamTree - * and hiding the indicator when the diagram is ready to show. - * - * @param dataObject new data object to set - */ - complete: function (dataObject) { - dataObjectToSetProvided = true; - if (deferDataObjectChange) { - // Just remember the new data object, we'll set it - // after the pullback completes and the loading indicator - // is made visible. - dataObjectToSet = dataObject; - } else { - // Defer the update to give the browser a chance - // to show the loading indicator. - setTimeout(function() { - foamtree.set("dataObject", dataObject); - hideIndicatorIfDataObjectEmpty(dataObjectToSet); - }, 1 + (waitForTransition ? duration + 50 : 1)); - } - } - }; - - function showIndicatorAndSetDataObject() { - showIndicator(); - if (dataObjectToSetProvided && deferDataObjectChange) { - // Defer the update to give the browser a chance - // to show the loading indicator. - setTimeout(function() { - foamtree.set("dataObject", dataObjectToSet); - hideIndicatorIfDataObjectEmpty(dataObjectToSet); - }, 5 + (waitForTransition ? duration + 50 : 1)); - } - deferDataObjectChange = false; - } - - function hideIndicatorIfDataObjectEmpty(dataObject) { - if (!dataObject || !dataObject.groups || dataObject.groups.length == 0) { - hideIndicator(); - } - } - - function hideIndicator() { - addClass(indicator, "fadeout"); - } - - function showIndicator() { - // It would be good to defer showing of the indicator a bit - // so that it's not shown when the loading process completes - // very quickly. However, it's not currently possible to implement - // because FoamTree diagram computation is performed in one - // go and blocks until the computation completes. In the future, - // it would be good to split the computation into chunks between - // which FoamTree would yield to the UI thread to redraw the - // DOM updates. - removeClass(indicator, "fadeout"); - } - - function addClass(element, clazz) { - var classes = element.className.split(/\s+/); - if (classes.indexOf(clazz) < 0) { - classes.push(clazz); - element.className = classes.join(" "); - } - } - - function removeClass(element, clazz) { - element.className = element.className.split(/\s+/).filter(function (c) { - return c != clazz; - }).join(" "); - } - - function isPullbackEnabled() { - return foamtree.get("pullbackDuration") > 0 || foamtree.get("fadeDuration") > 0; - } - - function once(event, fn) { - foamtree.on(event, function() { - foamtree.off(event); - fn(); - }); - } -}; \ No newline at end of file diff --git a/bes_theme/assets/javascripts/bessearch.foamtree.util.relaxationprogress.js b/bes_theme/assets/javascripts/bessearch.foamtree.util.relaxationprogress.js deleted file mode 100644 index cbff7cb2..00000000 --- a/bes_theme/assets/javascripts/bessearch.foamtree.util.relaxationprogress.js +++ /dev/null @@ -1,73 +0,0 @@ -/** - - * - * - * A simple utility for attaching a visualization relaxation - * progress monitor to FoamTree. Currently, progress reporting - * works only with relaxationVisible option set to true. - * - * This utility varies the width of the provided element to - * reflect the progress of relaxation. Feel free to modify - * this utility to show progress in a different fashion. - * - * Please see demos/relaxation-progress.html for the usage example. - * - * @param foamtree the FoamTree instance whose relaxation progress - * should be monitored - * @param element the HTML element whose width will be modified - * from 0% to 100% to reflect the relaxation progress - */ -window.BeSSearchFoamTree.relaxationProgress = function(foamtree, element) { - // Initialize the element - var style = element.style; - var progressBarShowing = false; - var opacityTimeout; - - foamtree.on("modelChanged", start); - foamtree.on("relaxationStep", progress); - - function start() { - if (!foamtree.get("relaxationVisible")) { - style.display = "none"; - return; - } - progressBarShowing = true; - window.clearTimeout(opacityTimeout); - disableTransitions(); - style.display = "block"; - style.backgroundColor = "red"; - style.width = "0%"; - style.opacity = 1.0; - window.setTimeout(enableTransitions, 1); - } - - function progress(progress, complete, timeout) { - if (!progressBarShowing) { - start(); - } - - if (complete || timeout) { - style.backgroundColor = "green"; - style.width = "100%"; - opacityTimeout = window.setTimeout(function() { - style.opacity = 0; - progressBarShowing = false; - }, 2000); - } else { - // Bend the characteristics a bit so that - // values close to 1.0 take more space. - var width = 1 - Math.pow(1 - progress, 0.5); - style.width = (100 * width) + "%"; - } - } - - function enableTransitions() { - style.WebkitTransition = "width 0.5s, background-color 1s, opacity 0.5s"; - style.transition = "background-color 1s, opacity 0.5s"; - } - - function disableTransitions() { - style.WebkitTransition = ""; - style.transition = ""; - } -}; \ No newline at end of file diff --git a/bes_theme/assets/javascripts/bessearch.jsonp.js b/bes_theme/assets/javascripts/bessearch.jsonp.js deleted file mode 100644 index 11f9030d..00000000 --- a/bes_theme/assets/javascripts/bessearch.jsonp.js +++ /dev/null @@ -1,65 +0,0 @@ -/** - - * - * - * A simple non-XHR JSON-P loading utility. The only way to match requests with - * callbacks when the callback name is constant is to queue the requests and - * execute them sequentially. - */ -var JSONP = (function() { - var REMOTE_TIMEOUT = 20000; - var LOCAL_TIMEOUT = 500; - - var queue = []; - - var scriptElement; - var originalCallback; - var failedTimeout; - - function schedule(url, callbackName, callback, failed) { - var args = Array.prototype.slice.call(arguments, 0); - args.unshift(false); // request sent flag - queue.push(args); - if (queue.length === 1) { - advance(); - } - } - - function advance() { - if (queue.length > 0) { - queue[0][0] = true; // request sent - failedTimeout = setTimeout(failed, queue[0][1].indexOf("file://") === 0 ? LOCAL_TIMEOUT : REMOTE_TIMEOUT); - request.apply(this, queue[0].slice(1)); - } - } - - function request(url, callbackName) { - originalCallback = window[callbackName]; - window[callbackName] = loaded; - scriptElement = document.createElement('script'); - scriptElement.src = url; - document.getElementsByTagName('head')[0].appendChild(scriptElement); - } - - function loaded() { - clearTimeout(failedTimeout); - finish(3, arguments); - } - - function failed() { - finish(4, []); - } - - function finish(callbackIndex, data) { - var args = queue.shift(); - window[args[1]] = originalCallback; - document.getElementsByTagName('head')[0].removeChild(scriptElement); - args[callbackIndex] && args[callbackIndex].apply(this, data); - advance(); - } - - // Static methods only - return { - load: schedule - }; -})(); diff --git a/bes_theme/assets/javascripts/bessearch.template.js b/bes_theme/assets/javascripts/bessearch.template.js deleted file mode 100644 index 93a29a4b..00000000 --- a/bes_theme/assets/javascripts/bessearch.template.js +++ /dev/null @@ -1,130 +0,0 @@ -/** - * A simple JavaScript template utility, copied from underscore.js. - */ -var Template = (function() { - // By default, Underscore uses ERB-style template delimiters, change the - // following template settings to use alternative delimiters. - var templateSettings = { - evaluate : /<%([\s\S]+?)%>/g, - interpolate : /<%=([\s\S]+?)%>/g, - escape : /<%-([\s\S]+?)%>/g - }; - - // When customizing `templateSettings`, if you don't want to define an - // interpolation, evaluation or escaping regex, we need one that is - // guaranteed not to match. - var noMatch = /(.)^/; - - // Certain characters need to be escaped so that they can be put into a - // string literal. - var escapes = { - "'": "'", - '\\': '\\', - '\r': 'r', - '\n': 'n', - '\t': 't', - '\u2028': 'u2028', - '\u2029': 'u2029' - }; - - var escaper = /\\|'|\r|\n|\t|\u2028|\u2029/g; - - var escapeEntityMap = { - '&': '&', - '<': '<', - '>': '>', - '"': '"', - "'": ''' - }; - - var escapeEntityRegex = new RegExp('[' + Object.keys(escapeEntityMap).join('') + ']', 'g'); - - var escape = function(string) { - if (string == null) { - return ""; - } - - return ('' + string).replace(escapeEntityRegex, function(match) { - return escapeEntityMap[match]; - }); - }; - - var extend = function(obj) { - Array.prototype.slice.call(arguments, 1).forEach(function (source) { - if (source) { - for (var prop in source) { - if (source.hasOwnProperty(prop)) { - obj[prop] = source[prop]; - } - } - } - }); - return obj; - }; - - // JavaScript micro-templating, similar to John Resig's implementation. - // Underscore templating handles arbitrary delimiters, preserves whitespace, - // and correctly escapes quotes within interpolated code. - var template = function(text, data, settings) { - var render; - settings = extend({}, settings, templateSettings); - - // Combine delimiters into one regular expression via alternation. - var matcher = new RegExp([ - (settings.escape || noMatch).source, - (settings.interpolate || noMatch).source, - (settings.evaluate || noMatch).source - ].join('|') + '|$', 'g'); - - // Compile the template source, escaping string literals appropriately. - var index = 0; - var source = "__p+='"; - text.replace(matcher, function(match, escape, interpolate, evaluate, offset) { - source += text.slice(index, offset) - .replace(escaper, function(match) { return '\\' + escapes[match]; }); - - if (escape) { - source += "'+\n((__t=(" + escape + "))==null?'':Template.escape(__t))+\n'"; - } - if (interpolate) { - source += "'+\n((__t=(" + interpolate + "))==null?'':__t)+\n'"; - } - if (evaluate) { - source += "';\n" + evaluate + "\n__p+='"; - } - index = offset + match.length; - return match; - }); - source += "';\n"; - - // If a variable is not specified, place data values in local scope. - if (!settings.variable) source = 'with(obj||{}){\n' + source + '}\n'; - - source = "var __t,__p='',__j=Array.prototype.join," + - "print=function(){__p+=__j.call(arguments,'');};\n" + - source + "return __p;\n"; - - try { - render = new Function(settings.variable || 'obj', 'Template', source); - } catch (e) { - e.source = source; - throw e; - } - - if (data) return render(data, Template); - var template = function(data) { - return render.call(this, data, Template); - }; - - // Provide the compiled function source as a convenience for precompilation. - template.source = 'function(' + (settings.variable || 'obj') + '){\n' + source + '}'; - - return template; - }; - - // Static methods only - return { - make: template, - escape: escape - }; -})(); diff --git a/bes_theme/assets/javascripts/bundle.ddd52ceb.min.js b/bes_theme/assets/javascripts/bundle.ddd52ceb.min.js deleted file mode 100644 index 59dbaae7..00000000 --- a/bes_theme/assets/javascripts/bundle.ddd52ceb.min.js +++ /dev/null @@ -1,14 +0,0 @@ -(()=>{var Ji=Object.create;var bt=Object.defineProperty;var Yi=Object.getOwnPropertyDescriptor;var Gi=Object.getOwnPropertyNames,vt=Object.getOwnPropertySymbols,Xi=Object.getPrototypeOf,or=Object.prototype.hasOwnProperty,Dr=Object.prototype.propertyIsEnumerable;var Nr=(e,t,r)=>t in e?bt(e,t,{enumerable:!0,configurable:!0,writable:!0,value:r}):e[t]=r,$=(e,t)=>{for(var r in t||(t={}))or.call(t,r)&&Nr(e,r,t[r]);if(vt)for(var r of vt(t))Dr.call(t,r)&&Nr(e,r,t[r]);return e};var Zi=e=>bt(e,"__esModule",{value:!0});var zr=(e,t)=>{var r={};for(var o in e)or.call(e,o)&&t.indexOf(o)<0&&(r[o]=e[o]);if(e!=null&&vt)for(var o of vt(e))t.indexOf(o)<0&&Dr.call(e,o)&&(r[o]=e[o]);return r};var xt=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports);var ea=(e,t,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of Gi(t))!or.call(e,o)&&o!=="default"&&bt(e,o,{get:()=>t[o],enumerable:!(r=Yi(t,o))||r.enumerable});return e},ot=e=>ea(Zi(bt(e!=null?Ji(Xi(e)):{},"default",e&&e.__esModule&&"default"in e?{get:()=>e.default,enumerable:!0}:{value:e,enumerable:!0})),e);var Qr=xt((nr,qr)=>{(function(e,t){typeof nr=="object"&&typeof qr!="undefined"?t():typeof define=="function"&&define.amd?define(t):t()})(nr,function(){"use strict";function e(r){var o=!0,n=!1,i=null,a={text:!0,search:!0,url:!0,tel:!0,email:!0,password:!0,number:!0,date:!0,month:!0,week:!0,time:!0,datetime:!0,"datetime-local":!0};function s(w){return!!(w&&w!==document&&w.nodeName!=="HTML"&&w.nodeName!=="BODY"&&"classList"in w&&"contains"in w.classList)}function c(w){var Ie=w.type,Ee=w.tagName;return!!(Ee==="INPUT"&&a[Ie]&&!w.readOnly||Ee==="TEXTAREA"&&!w.readOnly||w.isContentEditable)}function l(w){w.classList.contains("focus-visible")||(w.classList.add("focus-visible"),w.setAttribute("data-focus-visible-added",""))}function p(w){!w.hasAttribute("data-focus-visible-added")||(w.classList.remove("focus-visible"),w.removeAttribute("data-focus-visible-added"))}function m(w){w.metaKey||w.altKey||w.ctrlKey||(s(r.activeElement)&&l(r.activeElement),o=!0)}function u(w){o=!1}function b(w){!s(w.target)||(o||c(w.target))&&l(w.target)}function x(w){!s(w.target)||(w.target.classList.contains("focus-visible")||w.target.hasAttribute("data-focus-visible-added"))&&(n=!0,window.clearTimeout(i),i=window.setTimeout(function(){n=!1},100),p(w.target))}function h(w){document.visibilityState==="hidden"&&(n&&(o=!0),U())}function U(){document.addEventListener("mousemove",j),document.addEventListener("mousedown",j),document.addEventListener("mouseup",j),document.addEventListener("pointermove",j),document.addEventListener("pointerdown",j),document.addEventListener("pointerup",j),document.addEventListener("touchmove",j),document.addEventListener("touchstart",j),document.addEventListener("touchend",j)}function q(){document.removeEventListener("mousemove",j),document.removeEventListener("mousedown",j),document.removeEventListener("mouseup",j),document.removeEventListener("pointermove",j),document.removeEventListener("pointerdown",j),document.removeEventListener("pointerup",j),document.removeEventListener("touchmove",j),document.removeEventListener("touchstart",j),document.removeEventListener("touchend",j)}function j(w){w.target.nodeName&&w.target.nodeName.toLowerCase()==="html"||(o=!1,q())}document.addEventListener("keydown",m,!0),document.addEventListener("mousedown",u,!0),document.addEventListener("pointerdown",u,!0),document.addEventListener("touchstart",u,!0),document.addEventListener("visibilitychange",h,!0),U(),r.addEventListener("focus",b,!0),r.addEventListener("blur",x,!0),r.nodeType===Node.DOCUMENT_FRAGMENT_NODE&&r.host?r.host.setAttribute("data-js-focus-visible",""):r.nodeType===Node.DOCUMENT_NODE&&(document.documentElement.classList.add("js-focus-visible"),document.documentElement.setAttribute("data-js-focus-visible",""))}if(typeof window!="undefined"&&typeof document!="undefined"){window.applyFocusVisiblePolyfill=e;var t;try{t=new CustomEvent("focus-visible-polyfill-ready")}catch(r){t=document.createEvent("CustomEvent"),t.initCustomEvent("focus-visible-polyfill-ready",!1,!1,{})}window.dispatchEvent(t)}typeof document!="undefined"&&e(document)})});var mo=xt((os,St)=>{var Kr,Br,Jr,Yr,Gr,Xr,Zr,eo,to,gt,ir,ro,oo,no,Ne,io,ao,so,co,lo,po,uo,fo,yt;(function(e){var t=typeof global=="object"?global:typeof self=="object"?self:typeof this=="object"?this:{};typeof define=="function"&&define.amd?define("tslib",["exports"],function(o){e(r(t,r(o)))}):typeof St=="object"&&typeof St.exports=="object"?e(r(t,r(St.exports))):e(r(t));function r(o,n){return o!==t&&(typeof Object.create=="function"?Object.defineProperty(o,"__esModule",{value:!0}):o.__esModule=!0),function(i,a){return o[i]=n?n(i,a):a}}})(function(e){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(o,n){o.__proto__=n}||function(o,n){for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(o[i]=n[i])};Kr=function(o,n){if(typeof n!="function"&&n!==null)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");t(o,n);function i(){this.constructor=o}o.prototype=n===null?Object.create(n):(i.prototype=n.prototype,new i)},Br=Object.assign||function(o){for(var n,i=1,a=arguments.length;i=0;p--)(l=o[p])&&(c=(s<3?l(c):s>3?l(n,i,c):l(n,i))||c);return s>3&&c&&Object.defineProperty(n,i,c),c},Gr=function(o,n){return function(i,a){n(i,a,o)}},Xr=function(o,n){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(o,n)},Zr=function(o,n,i,a){function s(c){return c instanceof i?c:new i(function(l){l(c)})}return new(i||(i=Promise))(function(c,l){function p(b){try{u(a.next(b))}catch(x){l(x)}}function m(b){try{u(a.throw(b))}catch(x){l(x)}}function u(b){b.done?c(b.value):s(b.value).then(p,m)}u((a=a.apply(o,n||[])).next())})},eo=function(o,n){var i={label:0,sent:function(){if(c[0]&1)throw c[1];return c[1]},trys:[],ops:[]},a,s,c,l;return l={next:p(0),throw:p(1),return:p(2)},typeof Symbol=="function"&&(l[Symbol.iterator]=function(){return this}),l;function p(u){return function(b){return m([u,b])}}function m(u){if(a)throw new TypeError("Generator is already executing.");for(;i;)try{if(a=1,s&&(c=u[0]&2?s.return:u[0]?s.throw||((c=s.return)&&c.call(s),0):s.next)&&!(c=c.call(s,u[1])).done)return c;switch(s=0,c&&(u=[u[0]&2,c.value]),u[0]){case 0:case 1:c=u;break;case 4:return i.label++,{value:u[1],done:!1};case 5:i.label++,s=u[1],u=[0];continue;case 7:u=i.ops.pop(),i.trys.pop();continue;default:if(c=i.trys,!(c=c.length>0&&c[c.length-1])&&(u[0]===6||u[0]===2)){i=0;continue}if(u[0]===3&&(!c||u[1]>c[0]&&u[1]=o.length&&(o=void 0),{value:o&&o[a++],done:!o}}};throw new TypeError(n?"Object is not iterable.":"Symbol.iterator is not defined.")},ir=function(o,n){var i=typeof Symbol=="function"&&o[Symbol.iterator];if(!i)return o;var a=i.call(o),s,c=[],l;try{for(;(n===void 0||n-- >0)&&!(s=a.next()).done;)c.push(s.value)}catch(p){l={error:p}}finally{try{s&&!s.done&&(i=a.return)&&i.call(a)}finally{if(l)throw l.error}}return c},ro=function(){for(var o=[],n=0;n1||p(h,U)})})}function p(h,U){try{m(a[h](U))}catch(q){x(c[0][3],q)}}function m(h){h.value instanceof Ne?Promise.resolve(h.value.v).then(u,b):x(c[0][2],h)}function u(h){p("next",h)}function b(h){p("throw",h)}function x(h,U){h(U),c.shift(),c.length&&p(c[0][0],c[0][1])}},ao=function(o){var n,i;return n={},a("next"),a("throw",function(s){throw s}),a("return"),n[Symbol.iterator]=function(){return this},n;function a(s,c){n[s]=o[s]?function(l){return(i=!i)?{value:Ne(o[s](l)),done:s==="return"}:c?c(l):l}:c}},so=function(o){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var n=o[Symbol.asyncIterator],i;return n?n.call(o):(o=typeof gt=="function"?gt(o):o[Symbol.iterator](),i={},a("next"),a("throw"),a("return"),i[Symbol.asyncIterator]=function(){return this},i);function a(c){i[c]=o[c]&&function(l){return new Promise(function(p,m){l=o[c](l),s(p,m,l.done,l.value)})}}function s(c,l,p,m){Promise.resolve(m).then(function(u){c({value:u,done:p})},l)}},co=function(o,n){return Object.defineProperty?Object.defineProperty(o,"raw",{value:n}):o.raw=n,o};var r=Object.create?function(o,n){Object.defineProperty(o,"default",{enumerable:!0,value:n})}:function(o,n){o.default=n};lo=function(o){if(o&&o.__esModule)return o;var n={};if(o!=null)for(var i in o)i!=="default"&&Object.prototype.hasOwnProperty.call(o,i)&&yt(n,o,i);return r(n,o),n},po=function(o){return o&&o.__esModule?o:{default:o}},uo=function(o,n){if(!n.has(o))throw new TypeError("attempted to get private field on non-instance");return n.get(o)},fo=function(o,n,i){if(!n.has(o))throw new TypeError("attempted to set private field on non-instance");return n.set(o,i),i},e("__extends",Kr),e("__assign",Br),e("__rest",Jr),e("__decorate",Yr),e("__param",Gr),e("__metadata",Xr),e("__awaiter",Zr),e("__generator",eo),e("__exportStar",to),e("__createBinding",yt),e("__values",gt),e("__read",ir),e("__spread",ro),e("__spreadArrays",oo),e("__spreadArray",no),e("__await",Ne),e("__asyncGenerator",io),e("__asyncDelegator",ao),e("__asyncValues",so),e("__makeTemplateObject",co),e("__importStar",lo),e("__importDefault",po),e("__classPrivateFieldGet",uo),e("__classPrivateFieldSet",fo)})});var Cr=xt((dt,kr)=>{/*! - * clipboard.js v2.0.8 - * https://clipboardjs.com/ - * - * Licensed MIT © Zeno Rocha - */(function(t,r){typeof dt=="object"&&typeof kr=="object"?kr.exports=r():typeof define=="function"&&define.amd?define([],r):typeof dt=="object"?dt.ClipboardJS=r():t.ClipboardJS=r()})(dt,function(){return function(){var e={134:function(o,n,i){"use strict";i.d(n,{default:function(){return Ki}});var a=i(279),s=i.n(a),c=i(370),l=i.n(c),p=i(817),m=i.n(p);function u(T){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?u=function(d){return typeof d}:u=function(d){return d&&typeof Symbol=="function"&&d.constructor===Symbol&&d!==Symbol.prototype?"symbol":typeof d},u(T)}function b(T,v){if(!(T instanceof v))throw new TypeError("Cannot call a class as a function")}function x(T,v){for(var d=0;d0&&arguments[0]!==void 0?arguments[0]:{};this.action=d.action,this.container=d.container,this.emitter=d.emitter,this.target=d.target,this.text=d.text,this.trigger=d.trigger,this.selectedText=""}},{key:"initSelection",value:function(){this.text?this.selectFake():this.target&&this.selectTarget()}},{key:"createFakeElement",value:function(){var d=document.documentElement.getAttribute("dir")==="rtl";this.fakeElem=document.createElement("textarea"),this.fakeElem.style.fontSize="12pt",this.fakeElem.style.border="0",this.fakeElem.style.padding="0",this.fakeElem.style.margin="0",this.fakeElem.style.position="absolute",this.fakeElem.style[d?"right":"left"]="-9999px";var A=window.pageYOffset||document.documentElement.scrollTop;return this.fakeElem.style.top="".concat(A,"px"),this.fakeElem.setAttribute("readonly",""),this.fakeElem.value=this.text,this.fakeElem}},{key:"selectFake",value:function(){var d=this,A=this.createFakeElement();this.fakeHandlerCallback=function(){return d.removeFake()},this.fakeHandler=this.container.addEventListener("click",this.fakeHandlerCallback)||!0,this.container.appendChild(A),this.selectedText=m()(A),this.copyText(),this.removeFake()}},{key:"removeFake",value:function(){this.fakeHandler&&(this.container.removeEventListener("click",this.fakeHandlerCallback),this.fakeHandler=null,this.fakeHandlerCallback=null),this.fakeElem&&(this.container.removeChild(this.fakeElem),this.fakeElem=null)}},{key:"selectTarget",value:function(){this.selectedText=m()(this.target),this.copyText()}},{key:"copyText",value:function(){var d;try{d=document.execCommand(this.action)}catch(A){d=!1}this.handleResult(d)}},{key:"handleResult",value:function(d){this.emitter.emit(d?"success":"error",{action:this.action,text:this.selectedText,trigger:this.trigger,clearSelection:this.clearSelection.bind(this)})}},{key:"clearSelection",value:function(){this.trigger&&this.trigger.focus(),document.activeElement.blur(),window.getSelection().removeAllRanges()}},{key:"destroy",value:function(){this.removeFake()}},{key:"action",set:function(){var d=arguments.length>0&&arguments[0]!==void 0?arguments[0]:"copy";if(this._action=d,this._action!=="copy"&&this._action!=="cut")throw new Error('Invalid "action" value, use either "copy" or "cut"')},get:function(){return this._action}},{key:"target",set:function(d){if(d!==void 0)if(d&&u(d)==="object"&&d.nodeType===1){if(this.action==="copy"&&d.hasAttribute("disabled"))throw new Error('Invalid "target" attribute. Please use "readonly" instead of "disabled" attribute');if(this.action==="cut"&&(d.hasAttribute("readonly")||d.hasAttribute("disabled")))throw new Error(`Invalid "target" attribute. You can't cut text from elements with "readonly" or "disabled" attributes`);this._target=d}else throw new Error('Invalid "target" value, use a valid Element')},get:function(){return this._target}}]),T}(),q=U;function j(T){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?j=function(d){return typeof d}:j=function(d){return d&&typeof Symbol=="function"&&d.constructor===Symbol&&d!==Symbol.prototype?"symbol":typeof d},j(T)}function w(T,v){if(!(T instanceof v))throw new TypeError("Cannot call a class as a function")}function Ie(T,v){for(var d=0;d0&&arguments[0]!==void 0?arguments[0]:{};this.action=typeof I.action=="function"?I.action:this.defaultAction,this.target=typeof I.target=="function"?I.target:this.defaultTarget,this.text=typeof I.text=="function"?I.text:this.defaultText,this.container=j(I.container)==="object"?I.container:document.body}},{key:"listenClick",value:function(I){var Z=this;this.listener=l()(I,"click",function(rt){return Z.onClick(rt)})}},{key:"onClick",value:function(I){var Z=I.delegateTarget||I.currentTarget;this.clipboardAction&&(this.clipboardAction=null),this.clipboardAction=new q({action:this.action(Z),target:this.target(Z),text:this.text(Z),container:this.container,trigger:Z,emitter:this})}},{key:"defaultAction",value:function(I){return rr("action",I)}},{key:"defaultTarget",value:function(I){var Z=rr("target",I);if(Z)return document.querySelector(Z)}},{key:"defaultText",value:function(I){return rr("text",I)}},{key:"destroy",value:function(){this.listener.destroy(),this.clipboardAction&&(this.clipboardAction.destroy(),this.clipboardAction=null)}}],[{key:"isSupported",value:function(){var I=arguments.length>0&&arguments[0]!==void 0?arguments[0]:["copy","cut"],Z=typeof I=="string"?[I]:I,rt=!!document.queryCommandSupported;return Z.forEach(function(Bi){rt=rt&&!!document.queryCommandSupported(Bi)}),rt}}]),d}(s()),Ki=Qi},828:function(o){var n=9;if(typeof Element!="undefined"&&!Element.prototype.matches){var i=Element.prototype;i.matches=i.matchesSelector||i.mozMatchesSelector||i.msMatchesSelector||i.oMatchesSelector||i.webkitMatchesSelector}function a(s,c){for(;s&&s.nodeType!==n;){if(typeof s.matches=="function"&&s.matches(c))return s;s=s.parentNode}}o.exports=a},438:function(o,n,i){var a=i(828);function s(p,m,u,b,x){var h=l.apply(this,arguments);return p.addEventListener(u,h,x),{destroy:function(){p.removeEventListener(u,h,x)}}}function c(p,m,u,b,x){return typeof p.addEventListener=="function"?s.apply(null,arguments):typeof u=="function"?s.bind(null,document).apply(null,arguments):(typeof p=="string"&&(p=document.querySelectorAll(p)),Array.prototype.map.call(p,function(h){return s(h,m,u,b,x)}))}function l(p,m,u,b){return function(x){x.delegateTarget=a(x.target,m),x.delegateTarget&&b.call(p,x)}}o.exports=c},879:function(o,n){n.node=function(i){return i!==void 0&&i instanceof HTMLElement&&i.nodeType===1},n.nodeList=function(i){var a=Object.prototype.toString.call(i);return i!==void 0&&(a==="[object NodeList]"||a==="[object HTMLCollection]")&&"length"in i&&(i.length===0||n.node(i[0]))},n.string=function(i){return typeof i=="string"||i instanceof String},n.fn=function(i){var a=Object.prototype.toString.call(i);return a==="[object Function]"}},370:function(o,n,i){var a=i(879),s=i(438);function c(u,b,x){if(!u&&!b&&!x)throw new Error("Missing required arguments");if(!a.string(b))throw new TypeError("Second argument must be a String");if(!a.fn(x))throw new TypeError("Third argument must be a Function");if(a.node(u))return l(u,b,x);if(a.nodeList(u))return p(u,b,x);if(a.string(u))return m(u,b,x);throw new TypeError("First argument must be a String, HTMLElement, HTMLCollection, or NodeList")}function l(u,b,x){return u.addEventListener(b,x),{destroy:function(){u.removeEventListener(b,x)}}}function p(u,b,x){return Array.prototype.forEach.call(u,function(h){h.addEventListener(b,x)}),{destroy:function(){Array.prototype.forEach.call(u,function(h){h.removeEventListener(b,x)})}}}function m(u,b,x){return s(document.body,u,b,x)}o.exports=c},817:function(o){function n(i){var a;if(i.nodeName==="SELECT")i.focus(),a=i.value;else if(i.nodeName==="INPUT"||i.nodeName==="TEXTAREA"){var s=i.hasAttribute("readonly");s||i.setAttribute("readonly",""),i.select(),i.setSelectionRange(0,i.value.length),s||i.removeAttribute("readonly"),a=i.value}else{i.hasAttribute("contenteditable")&&i.focus();var c=window.getSelection(),l=document.createRange();l.selectNodeContents(i),c.removeAllRanges(),c.addRange(l),a=c.toString()}return a}o.exports=n},279:function(o){function n(){}n.prototype={on:function(i,a,s){var c=this.e||(this.e={});return(c[i]||(c[i]=[])).push({fn:a,ctx:s}),this},once:function(i,a,s){var c=this;function l(){c.off(i,l),a.apply(s,arguments)}return l._=a,this.on(i,l,s)},emit:function(i){var a=[].slice.call(arguments,1),s=((this.e||(this.e={}))[i]||[]).slice(),c=0,l=s.length;for(c;c{/*! - * escape-html - - - */"use strict";var Ua=/["'&<>]/;xi.exports=Da;function Da(e){var t=""+e,r=Ua.exec(t);if(!r)return t;var o,n="",i=0,a=0;for(i=r.index;i0},enumerable:!1,configurable:!0}),t.prototype._trySubscribe=function(r){return this._throwIfClosed(),e.prototype._trySubscribe.call(this,r)},t.prototype._subscribe=function(r){return this._throwIfClosed(),this._checkFinalizedStatuses(r),this._innerSubscribe(r)},t.prototype._innerSubscribe=function(r){var o=this,n=o.hasError,i=o.isStopped,a=o.observers;return n||i?ar:(a.push(r),new ie(function(){return Te(a,r)}))},t.prototype._checkFinalizedStatuses=function(r){var o=this,n=o.hasError,i=o.thrownError,a=o.isStopped;n?r.error(i):a&&r.complete()},t.prototype.asObservable=function(){var r=new _;return r.source=this,r},t.create=function(r,o){return new Ao(r,o)},t}(_);var Ao=function(e){B(t,e);function t(r,o){var n=e.call(this)||this;return n.destination=r,n.source=o,n}return t.prototype.next=function(r){var o,n;(n=(o=this.destination)===null||o===void 0?void 0:o.next)===null||n===void 0||n.call(o,r)},t.prototype.error=function(r){var o,n;(n=(o=this.destination)===null||o===void 0?void 0:o.error)===null||n===void 0||n.call(o,r)},t.prototype.complete=function(){var r,o;(o=(r=this.destination)===null||r===void 0?void 0:r.complete)===null||o===void 0||o.call(r)},t.prototype._subscribe=function(r){var o,n;return(n=(o=this.source)===null||o===void 0?void 0:o.subscribe(r))!==null&&n!==void 0?n:ar},t}(M);var at={now:function(){return(at.delegate||Date).now()},delegate:void 0};var st=function(e){B(t,e);function t(r,o,n){r===void 0&&(r=1/0),o===void 0&&(o=1/0),n===void 0&&(n=at);var i=e.call(this)||this;return i._bufferSize=r,i._windowTime=o,i._timestampProvider=n,i._buffer=[],i._infiniteTimeWindow=!0,i._infiniteTimeWindow=o===1/0,i._bufferSize=Math.max(1,r),i._windowTime=Math.max(1,o),i}return t.prototype.next=function(r){var o=this,n=o.isStopped,i=o._buffer,a=o._infiniteTimeWindow,s=o._timestampProvider,c=o._windowTime;n||(i.push(r),!a&&i.push(s.now()+c)),this._trimBuffer(),e.prototype.next.call(this,r)},t.prototype._subscribe=function(r){this._throwIfClosed(),this._trimBuffer();for(var o=this._innerSubscribe(r),n=this,i=n._infiniteTimeWindow,a=n._buffer,s=a.slice(),c=0;c0?e.prototype.requestAsyncId.call(this,r,o,n):(r.actions.push(this),r._scheduled||(r._scheduled=Qe.requestAnimationFrame(function(){return r.flush(void 0)})))},t.prototype.recycleAsyncId=function(r,o,n){if(n===void 0&&(n=0),n!=null&&n>0||n==null&&this.delay>0)return e.prototype.recycleAsyncId.call(this,r,o,n);r.actions.length===0&&(Qe.cancelAnimationFrame(o),r._scheduled=void 0)},t}(At);var Ho=function(e){B(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t.prototype.flush=function(r){this._active=!0,this._scheduled=void 0;var o=this.actions,n,i=-1;r=r||o.shift();var a=o.length;do if(n=r.execute(r.state,r.delay))break;while(++i=2,!0))}function ne(e){e===void 0&&(e={});var t=e.connector,r=t===void 0?function(){return new M}:t,o=e.resetOnError,n=o===void 0?!0:o,i=e.resetOnComplete,a=i===void 0?!0:i,s=e.resetOnRefCountZero,c=s===void 0?!0:s;return function(l){var p=null,m=null,u=null,b=0,x=!1,h=!1,U=function(){m==null||m.unsubscribe(),m=null},q=function(){U(),p=u=null,x=h=!1},j=function(){var w=p;q(),w==null||w.unsubscribe()};return g(function(w,Ie){b++,!h&&!x&&U();var Ee=u=u!=null?u:r();Ie.add(function(){b--,b===0&&!h&&!x&&(m=Sr(j,c))}),Ee.subscribe(Ie),p||(p=new it({next:function(De){return Ee.next(De)},error:function(De){h=!0,U(),m=Sr(q,n,De),Ee.error(De)},complete:function(){x=!0,U(),m=Sr(q,a),Ee.complete()}}),xe(w).subscribe(p))})(l)}}function Sr(e,t){for(var r=[],o=2;ot==="focus"),V(e===$e()))}var en=new M,Ma=Oe(()=>F(new ResizeObserver(e=>{for(let t of e)en.next(t)}))).pipe(E(e=>X.pipe(V(e)).pipe(P(()=>e.disconnect()))),re(1));function Ce(e){return{width:e.offsetWidth,height:e.offsetHeight}}function zt(e){return{width:e.scrollWidth,height:e.scrollHeight}}function He(e){return Ma.pipe(H(t=>t.observe(e)),E(t=>en.pipe(k(({target:r})=>r===e),P(()=>t.unobserve(e)),f(()=>Ce(e)))),V(Ce(e)))}function tn(e){return{x:e.scrollLeft,y:e.scrollTop}}function Aa(e){return R(O(e,"scroll"),O(window,"resize")).pipe(f(()=>tn(e)),V(tn(e)))}function rn(e,t=16){return Aa(e).pipe(f(({y:r})=>{let o=Ce(e),n=zt(e);return r>=n.height-o.height-t}),z())}function on(e){if(e instanceof HTMLInputElement)e.select();else throw new Error("Not implemented")}var qt={drawer:me("[data-md-toggle=drawer]"),search:me("[data-md-toggle=search]")};function nn(e){return qt[e].checked}function Ve(e,t){qt[e].checked!==t&&qt[e].click()}function Qt(e){let t=qt[e];return O(t,"change").pipe(f(()=>t.checked),V(t.checked))}function La(e){switch(e.tagName){case"INPUT":case"SELECT":case"TEXTAREA":return!0;default:return e.isContentEditable}}function an(){return O(window,"keydown").pipe(k(e=>!(e.metaKey||e.ctrlKey)),f(e=>({mode:nn("search")?"search":"global",type:e.key,claim(){e.preventDefault(),e.stopPropagation()}})),k(({mode:e})=>{if(e==="global"){let t=$e();if(typeof t!="undefined")return!La(t)}return!0}),ne())}function sn(){return new URL(location.href)}function cn(e){location.href=e.href}function ln(){return new M}function pn(){return location.hash.substring(1)}function un(e){let t=Ze("a");t.href=e,t.addEventListener("click",r=>r.stopPropagation()),t.click()}function ka(){return O(window,"hashchange").pipe(f(pn),V(pn()),k(e=>e.length>0),ne())}function fn(){return ka().pipe(E(e=>F(ae(`[id="${e}"]`))))}function mt(e){let t=matchMedia(e);return Ut(r=>t.addListener(()=>r(t.matches))).pipe(V(t.matches))}function mn(){return O(window,"beforeprint").pipe(oe(void 0))}function Ar(e,t){return e.pipe(E(r=>r?t():X))}function Kt(e,t={credentials:"same-origin"}){return xe(fetch(`${e}`,t)).pipe(k(r=>r.status===200))}function we(e,t){return Kt(e,t).pipe(E(r=>r.json()),re(1))}function dn(e,t){let r=new DOMParser;return Kt(e,t).pipe(E(o=>o.text()),f(o=>r.parseFromString(o,"text/xml")),re(1))}function hn(){return{x:Math.max(0,pageXOffset),y:Math.max(0,pageYOffset)}}function Lr({x:e,y:t}){window.scrollTo(e||0,t||0)}function bn(){return R(O(window,"scroll",{passive:!0}),O(window,"resize",{passive:!0})).pipe(f(hn),V(hn()))}function vn(){return{width:innerWidth,height:innerHeight}}function xn(){return O(window,"resize",{passive:!0}).pipe(f(vn),V(vn()))}function gn(){return G([bn(),xn()]).pipe(f(([e,t])=>({offset:e,size:t})),re(1))}function Bt(e,{viewport$:t,header$:r}){let o=t.pipe(W("size")),n=G([o,r]).pipe(f(()=>({x:e.offsetLeft,y:e.offsetTop})));return G([r,t,n]).pipe(f(([{height:i},{offset:a,size:s},{x:c,y:l}])=>({offset:{x:a.x-c,y:a.y-l+i},size:s})))}function yn(e,{tx$:t}){let r=O(e,"message").pipe(f(({data:o})=>o));return t.pipe(_r(()=>r,{leading:!0,trailing:!0}),H(o=>e.postMessage(o)),Er(r),ne())}var Ca=me("#__config"),et=JSON.parse(Ca.textContent);et.base=new URL(et.base,sn()).toString().replace(/\/$/,"");function se(){return et}function Jt(e){return et.features.includes(e)}function K(e,t){return typeof t!="undefined"?et.translations[e].replace("#",t.toString()):et.translations[e]}function je(e,t=document){return me(`[data-md-component=${e}]`,t)}function de(e,t=document){return Q(`[data-md-component=${e}]`,t)}var ni=ot(Cr());function Sn(e,t=0){e.setAttribute("tabindex",t.toString())}function wn(e){e.removeAttribute("tabindex")}function En(e,t){e.setAttribute("data-md-state","lock"),e.style.top=`-${t}px`}function Tn(e){let t=-1*parseInt(e.style.top,10);e.removeAttribute("data-md-state"),e.style.top="",t&&window.scrollTo(0,t)}function On(e,t){e.setAttribute("data-md-state",t)}function _n(e){e.removeAttribute("data-md-state")}function Mn(e,t){e.classList.toggle("md-nav__link--active",t)}function An(e){e.classList.remove("md-nav__link--active")}function Ln(e,t){e.firstElementChild.innerHTML=t}function kn(e,t){e.setAttribute("data-md-state",t)}function Cn(e){e.removeAttribute("data-md-state")}function Hn(e,t){e.setAttribute("data-md-state",t)}function jn(e){e.removeAttribute("data-md-state")}function Fn(e,t){e.setAttribute("data-md-state",t)}function In(e){e.removeAttribute("data-md-state")}function Rn(e,t){e.placeholder=t}function Pn(e){e.placeholder=K("search.placeholder")}function $n(e,t){if(typeof t=="string"||typeof t=="number")e.innerHTML+=t.toString();else if(t instanceof Node)e.appendChild(t);else if(Array.isArray(t))for(let r of t)$n(e,r)}function D(e,t,...r){let o=document.createElement(e);if(t)for(let n of Object.keys(t))typeof t[n]!="boolean"?o.setAttribute(n,t[n]):t[n]&&o.setAttribute(n,"");for(let n of r)$n(o,n);return o}function Wn(e,t){let r=t;if(e.length>r){for(;e[r]!==" "&&--r>0;);return`${e.substring(0,r)}...`}return e}function Yt(e){if(e>999){let t=+((e-950)%1e3>99);return`${((e+1e-6)/1e3).toFixed(t)}k`}else return e.toString()}function Vn(e,t){switch(t){case 0:e.textContent=K("search.result.none");break;case 1:e.textContent=K("search.result.one");break;default:e.textContent=K("search.result.other",Yt(t))}}function Hr(e){e.textContent=K("search.result.placeholder")}function Un(e,t){e.appendChild(t)}function Dn(e){e.innerHTML=""}function Nn(e,t){e.style.top=`${t}px`}function zn(e){e.style.top=""}function qn(e,t){let r=e.firstElementChild;r.style.height=`${t-2*r.offsetTop}px`}function Qn(e){let t=e.firstElementChild;t.style.height=""}function Kn(e,t){e.lastElementChild.appendChild(t)}function Bn(e,t){e.lastElementChild.setAttribute("data-md-state",t)}function Jn(e,t){e.setAttribute("data-md-state",t)}function jr(e){e.removeAttribute("data-md-state")}function Yn(e,t){e.setAttribute("data-md-state",t)}function Fr(e){e.removeAttribute("data-md-state")}function Gn(e,t){e.style.top=`${t}px`}function Xn(e){e.style.top=""}function Zn(e){return D("button",{class:"md-clipboard md-icon",title:K("clipboard.copy"),"data-clipboard-target":`#${e} > code`})}var Ue;(function(r){r[r.TEASER=1]="TEASER",r[r.PARENT=2]="PARENT"})(Ue||(Ue={}));function Ir(e,t){let r=t&2,o=t&1,n=Object.keys(e.terms).filter(a=>!e.terms[a]).map(a=>[D("del",null,a)," "]).flat().slice(0,-1),i=e.location;return D("a",{href:i,class:"md-search-result__link",tabIndex:-1},D("article",{class:["md-search-result__article",...r?["md-search-result__article--document"]:[]].join(" "),"data-md-score":e.score.toFixed(2)},r>0&&D("div",{class:"md-search-result__icon md-icon"}),D("h1",{class:"md-search-result__title"},e.title),o>0&&e.text.length>0&&D("p",{class:"md-search-result__teaser"},Wn(e.text,320)),o>0&&n.length>0&&D("p",{class:"md-search-result__terms"},K("search.result.term.missing"),": ",n)))}function ei(e){let t=e[0].score,r=[...e],o=r.findIndex(l=>!l.location.includes("#")),[n]=r.splice(o,1),i=r.findIndex(l=>l.scoreIr(l,1)),...s.length?[D("details",{class:"md-search-result__more"},D("summary",{tabIndex:-1},s.length>0&&s.length===1?K("search.result.more.one"):K("search.result.more.other",s.length)),s.map(l=>Ir(l,1)))]:[]];return D("li",{class:"md-search-result__item"},c)}function ti(e){return D("ul",{class:"md-source__facts"},Object.entries(e).map(([t,r])=>D("li",{class:`md-source__fact md-source__fact--${t}`},typeof r=="number"?Yt(r):r)))}function ri(e){return D("div",{class:"md-typeset__scrollwrap"},D("div",{class:"md-typeset__table"},e))}function Ha(e){let t=se(),r=new URL(`${e.version}/`,t.base);return D("li",{class:"md-version__item"},D("a",{href:r.toString(),class:"md-version__link"},e.title))}function oi(e){let t=se(),[,r]=t.base.match(/([^/]+)\/?$/),o=e.find(({version:n,aliases:i})=>n===r||i.includes(r))||e[0];return D("div",{class:"md-version"},D("button",{class:"md-version__current","aria-label":K("select.version.title")},o.title),D("ul",{class:"md-version__list"},e.map(Ha)))}var ja=0;function Fa(e,{viewport$:t}){let r=F(e).pipe(E(o=>{let n=o.closest("[data-tabs]");return n instanceof HTMLElement?R(...Q("input",n).map(i=>O(i,"change"))):X}));return R(t.pipe(W("size")),r).pipe(f(()=>{let o=Ce(e);return{scroll:zt(e).width>o.width}}),W("scroll"))}function ii(e,t){let r=new M;if(r.pipe(pe(mt("(hover)"))).subscribe(([{scroll:o},n])=>{o&&n?Sn(e):wn(e)}),ni.default.isSupported()){let o=e.closest("pre");o.id=`__code_${ja++}`,o.insertBefore(Zn(o.id),e)}return Fa(e,t).pipe(H(r),P(()=>r.complete()),f(o=>$({ref:e},o)))}function Ia(e,{target$:t,print$:r}){return t.pipe(f(o=>o.closest("details:not([open])")),k(o=>e===o),ft(r),oe(e))}function ai(e,t){let r=new M;return r.subscribe(()=>{e.setAttribute("open",""),e.scrollIntoView()}),Ia(e,t).pipe(H(r),P(()=>r.complete()),oe({ref:e}))}var si=Ze("table");function ci(e){return We(e,si),We(si,ri(e)),F({ref:e})}function li(e,{target$:t,viewport$:r,print$:o}){return R(...Q("pre > code",e).map(n=>ii(n,{viewport$:r})),...Q("table:not([class])",e).map(n=>ci(n)),...Q("details",e).map(n=>ai(n,{target$:t,print$:o})))}function Ra(e,{alert$:t}){return t.pipe(E(r=>R(F(!0),F(!1).pipe(_e(2e3))).pipe(f(o=>({message:r,open:o})))))}function pi(e,t){let r=new M;return r.pipe(Y(J)).subscribe(({message:o,open:n})=>{Ln(e,o),n?kn(e,"open"):Cn(e)}),Ra(e,t).pipe(H(r),P(()=>r.complete()),f(o=>$({ref:e},o)))}function Pa({viewport$:e}){if(!Jt("header.autohide"))return F(!1);let t=e.pipe(f(({offset:{y:n}})=>n),ve(2,1),f(([n,i])=>[nMath.abs(i-n.y)>100),f(([,[n]])=>n),z()),o=Qt("search");return G([e,o]).pipe(f(([{offset:n},i])=>n.y>400&&!i),z(),E(n=>n?r:F(!1)),V(!1))}function ui(e,t){return Oe(()=>{let r=getComputedStyle(e);return F(r.position==="sticky"||r.position==="-webkit-sticky")}).pipe(Dt(He(e),Pa(t)),f(([r,{height:o},n])=>({height:r?o:0,sticky:r,hidden:n})),z((r,o)=>r.sticky===o.sticky&&r.height===o.height&&r.hidden===o.hidden),re(1))}function fi(e,{header$:t,main$:r}){let o=new M;return o.pipe(W("active"),Dt(t),Y(J)).subscribe(([{active:n},{hidden:i}])=>{n?Hn(e,i?"hidden":"shadow"):jn(e)}),r.subscribe(n=>o.next(n)),t.pipe(f(n=>$({ref:e},n)))}function $a(e,{viewport$:t,header$:r}){return Bt(e,{header$:r,viewport$:t}).pipe(f(({offset:{y:o}})=>{let{height:n}=Ce(e);return{active:o>=n}}),W("active"))}function mi(e,t){let r=new M;r.pipe(Y(J)).subscribe(({active:n})=>{n?Fn(e,"active"):In(e)});let o=ae("article h1");return typeof o=="undefined"?X:$a(o,t).pipe(H(r),P(()=>r.complete()),f(n=>$({ref:e},n)))}function di(e,{viewport$:t,header$:r}){let o=r.pipe(f(({height:i})=>i),z()),n=o.pipe(E(()=>He(e).pipe(f(({height:i})=>({top:e.offsetTop,bottom:e.offsetTop+i})),W("bottom"))));return G([o,n,t]).pipe(f(([i,{top:a,bottom:s},{offset:{y:c},size:{height:l}}])=>(l=Math.max(0,l-Math.max(0,a-c,i)-Math.max(0,l+c-s)),{offset:a-i,height:l,active:a-i<=c})),z((i,a)=>i.offset===a.offset&&i.height===a.height&&i.active===a.active))}function Wa(e){let t=localStorage.getItem(__prefix("__palette")),r=JSON.parse(t)||{index:e.findIndex(n=>matchMedia(n.getAttribute("data-md-color-media")).matches)},o=F(...e).pipe(te(n=>O(n,"change").pipe(oe(n))),V(e[Math.max(0,r.index)]),f(n=>({index:e.indexOf(n),color:{scheme:n.getAttribute("data-md-color-scheme"),primary:n.getAttribute("data-md-color-primary"),accent:n.getAttribute("data-md-color-accent")}})),re(1));return o.subscribe(n=>{localStorage.setItem(__prefix("__palette"),JSON.stringify(n))}),o}function hi(e){let t=new M;t.subscribe(o=>{for(let[n,i]of Object.entries(o.color))typeof i=="string"&&document.body.setAttribute(`data-md-color-${n}`,i);for(let n=0;nt.complete()),f(o=>$({ref:e},o)))}var Rr=ot(Cr());function bi({alert$:e}){Rr.default.isSupported()&&new _(t=>{new Rr.default("[data-clipboard-target], [data-clipboard-text]").on("success",r=>t.next(r))}).subscribe(()=>e.next(K("clipboard.copied")))}function Va(e){if(e.length<2)return e;let[t,r]=e.sort((i,a)=>i.length-a.length).map(i=>i.replace(/[^/]+$/,"")),o=0;if(t===r)o=t.length;else for(;t.charCodeAt(o)===r.charCodeAt(o);)o++;let n=se();return e.map(i=>i.replace(t.slice(0,o),`${n.base}/`))}function vi({document$:e,location$:t,viewport$:r}){let o=se();if(location.protocol==="file:")return;"scrollRestoration"in history&&(history.scrollRestoration="manual",O(window,"beforeunload").subscribe(()=>{history.scrollRestoration="auto"}));let n=ae("link[rel=icon]");typeof n!="undefined"&&(n.href=n.href);let i=dn(`${o.base}/sitemap.xml`).pipe(f(l=>Va(Q("loc",l).map(p=>p.textContent))),E(l=>O(document.body,"click").pipe(k(p=>!p.metaKey&&!p.ctrlKey),E(p=>{if(p.target instanceof Element){let m=p.target.closest("a");if(m&&!m.target&&l.includes(m.href))return p.preventDefault(),F({url:new URL(m.href)})}return X}))),ne()),a=O(window,"popstate").pipe(k(l=>l.state!==null),f(l=>({url:new URL(location.href),offset:l.state})),ne());R(i,a).pipe(z((l,p)=>l.url.href===p.url.href),f(({url:l})=>l)).subscribe(t);let s=t.pipe(W("pathname"),E(l=>Kt(l.href).pipe(Ge(()=>(cn(l),X)))),ne());i.pipe(Xe(s)).subscribe(({url:l})=>{history.pushState({},"",`${l}`)});let c=new DOMParser;s.pipe(E(l=>l.text()),f(l=>c.parseFromString(l,"text/html"))).subscribe(e),R(i,a).pipe(Xe(e)).subscribe(({url:l,offset:p})=>{l.hash&&!p?un(l.hash):Lr(p||{y:0})}),e.pipe(Nt(1)).subscribe(l=>{for(let p of["title","link[rel=canonical]","meta[name=author]","meta[name=description]","[data-md-component=announce]","[data-md-component=container]","[data-md-component=header-topic]","[data-md-component=logo], .md-logo","[data-md-component=skip]"]){let m=ae(p),u=ae(p,l);typeof m!="undefined"&&typeof u!="undefined"&&We(m,u)}}),e.pipe(Nt(1),f(()=>je("container")),E(l=>F(...Q("script",l))),br(l=>{let p=Ze("script");if(l.src){for(let m of l.getAttributeNames())p.setAttribute(m,l.getAttribute(m));return We(l,p),new _(m=>{p.onload=()=>m.complete()})}else return p.textContent=l.textContent,We(l,p),be})).subscribe(),r.pipe(wr(i),vr(250),W("offset")).subscribe(({offset:l})=>{history.replaceState(l,"")}),R(i,a).pipe(ve(2,1),k(([l,p])=>l.url.pathname===p.url.pathname),f(([,l])=>l)).subscribe(({offset:l})=>{Lr(l||{y:0})})}var Na=ot(gi());function yi(e){return e.split(/"([^"]+)"/g).map((t,r)=>r&1?t.replace(/^\b|^(?![^\x00-\x7F]|$)|\s+/g," +"):t).join("").replace(/"|(?:^|\s+)[*+\-:^~]+(?=\s+|$)/g,"").trim()}var Me;(function(n){n[n.SETUP=0]="SETUP",n[n.READY=1]="READY",n[n.QUERY=2]="QUERY",n[n.RESULT=3]="RESULT"})(Me||(Me={}));function Gt(e){return e.type===1}function Si(e){return e.type===2}function Xt(e){return e.type===3}function za({config:e,docs:t,index:r}){e.lang.length===1&&e.lang[0]==="en"&&(e.lang=[K("search.config.lang")]),e.separator==="[\\s\\-]+"&&(e.separator=K("search.config.separator"));let o=K("search.config.pipeline").split(/\s*,\s*/).filter(Boolean);return{config:e,docs:t,index:r,pipeline:o}}function wi(e,t){let r=se(),o=new Worker(e),n=new M,i=yn(o,{tx$:n}).pipe(f(a=>{if(Xt(a))for(let s of a.data)for(let c of s)c.location=`${r.base}/${c.location}`;return a}),ne());return xe(t).pipe(f(a=>({type:Me.SETUP,data:za(a)}))).subscribe(n.next.bind(n)),{tx$:n,rx$:i}}function Ei(){let e=se();we(new URL("versions.json",e.base)).subscribe(t=>{me(".md-header__topic").appendChild(oi(t))})}function qa(e){let t=(__search==null?void 0:__search.transform)||yi,r=Zo(e),o=R(O(e,"keyup"),O(e,"focus").pipe(_e(1))).pipe(f(()=>t(e.value)),z());return G([o,r]).pipe(f(([n,i])=>({value:n,focus:i})))}function Ti(e,{tx$:t}){let r=new M;return r.pipe(W("value"),f(({value:o})=>({type:Me.QUERY,data:o}))).subscribe(t.next.bind(t)),r.pipe(W("focus")).subscribe(({focus:o})=>{o?(Ve("search",o),Rn(e,"")):Pn(e)}),O(e.form,"reset").pipe(Tr(r.pipe(gr(1)))).subscribe(()=>Se(e)),qa(e).pipe(H(r),P(()=>r.complete()),f(o=>$({ref:e},o)))}function Oi(e,{rx$:t},{query$:r}){let o=new M,n=rn(e.parentElement).pipe(k(Boolean)),i=me(":scope > :first-child",e),a=me(":scope > :last-child",e);return t.pipe(k(Gt),ye(1)).subscribe(()=>{Hr(i)}),o.pipe(Y(J),pe(r)).subscribe(([{data:c},{value:l}])=>{l?Vn(i,c.length):Hr(i)}),o.pipe(Y(J),H(()=>Dn(a)),E(({data:c})=>R(F(...c.slice(0,10)),F(...c.slice(10)).pipe(ve(4),Mr(n),E(([l])=>F(...l)))))).subscribe(c=>{Un(a,ei(c))}),t.pipe(k(Xt),f(({data:c})=>({data:c})),V({data:[]})).pipe(H(o),P(()=>o.complete()),f(c=>$({ref:e},c)))}function _i(e,{index$:t,keyboard$:r}){let o=se();try{let n=wi(o.search,t),i=je("search-query",e),a=je("search-result",e),{tx$:s,rx$:c}=n;s.pipe(k(Si),Xe(c.pipe(k(Gt))),ye(1)).subscribe(s.next.bind(s)),r.pipe(k(({mode:p})=>p==="search")).subscribe(p=>{let m=$e();switch(p.type){case"Enter":m===i&&p.claim();break;case"Escape":case"Tab":Ve("search",!1),Se(i,!1);break;case"ArrowUp":case"ArrowDown":if(typeof m=="undefined")Se(i);else{let u=[i,...Q(":not(details) > [href], summary, details[open] [href]",a)],b=Math.max(0,(Math.max(0,u.indexOf(m))+u.length+(p.type==="ArrowUp"?-1:1))%u.length);Se(u[b])}p.claim();break;default:i!==$e()&&Se(i)}}),r.pipe(k(({mode:p})=>p==="global")).subscribe(p=>{switch(p.type){case"f":case"s":case"/":Se(i),on(i),p.claim();break}});let l=Ti(i,n);return R(l,Oi(a,n,{query$:l}))}catch(n){return e.hidden=!0,X}}function Qa(e,{viewport$:t,main$:r}){let o=e.parentElement.offsetTop-e.parentElement.parentElement.offsetTop;return G([r,t]).pipe(f(([{offset:n,height:i},{offset:{y:a}}])=>(i=i+Math.min(o,Math.max(0,a-n))-o,{height:i,locked:a>=n+o})),z((n,i)=>n.height===i.height&&n.locked===i.locked))}function Pr(e,o){var n=o,{header$:t}=n,r=zr(n,["header$"]);let i=new M;return i.pipe(Y(J),pe(t)).subscribe({next([{height:a},{height:s}]){qn(e,a),Nn(e,s)},complete(){zn(e),Qn(e)}}),Qa(e,r).pipe(H(i),P(()=>i.complete()),f(a=>$({ref:e},a)))}function Mi(e,t){if(typeof t!="undefined"){let r=`https://api.github.com/repos/${e}/${t}`;return ut(we(`${r}/releases/latest`).pipe(f(o=>({version:o.tag_name})),Pe({})),we(r).pipe(f(o=>({stars:o.stargazers_count,forks:o.forks_count})),Pe({}))).pipe(f(([o,n])=>$($({},o),n)))}else{let r=`https://api.github.com/repos/${e}`;return we(r).pipe(f(o=>({repositories:o.public_repos})),Pe({}))}}function Ai(e,t){let r=`https://${e}/api/v4/projects/${encodeURIComponent(t)}`;return we(r).pipe(f(({star_count:o,forks_count:n})=>({stars:o,forks:n})),Pe({}))}function Li(e){let[t]=e.match(/(git(?:hub|lab))/i)||[];switch(t.toLowerCase()){case"github":let[,r,o]=e.match(/^.+github\.com\/([^/]+)\/?([^/]+)?/i);return Mi(r,o);case"gitlab":let[,n,i]=e.match(/^.+?([^/]*gitlab[^/]+)\/(.+?)\/?$/i);return Ai(n,i);default:return X}}var Ka;function Ba(e){return Ka||(Ka=Oe(()=>{let t=sessionStorage.getItem(__prefix("__source"));if(t)return F(JSON.parse(t));{let r=Li(e.href);return r.subscribe(o=>{try{sessionStorage.setItem(__prefix("__source"),JSON.stringify(o))}catch(n){}}),r}}).pipe(Ge(()=>X),k(t=>Object.keys(t).length>0),f(t=>({facts:t})),re(1)))}function ki(e){let t=new M;return t.subscribe(({facts:r})=>{Kn(e,ti(r)),Bn(e,"done")}),Ba(e).pipe(H(t),P(()=>t.complete()),f(r=>$({ref:e},r)))}function Ja(e,{viewport$:t,header$:r}){return He(document.body).pipe(E(()=>Bt(e,{header$:r,viewport$:t})),f(({offset:{y:o}})=>({hidden:o>=10})),W("hidden"))}function Ci(e,t){let r=new M;return r.pipe(Y(J)).subscribe({next({hidden:o}){o?Jn(e,"hidden"):jr(e)},complete(){jr(e)}}),Ja(e,t).pipe(H(r),P(()=>r.complete()),f(o=>$({ref:e},o)))}function Ya(e,{viewport$:t,header$:r}){let o=new Map;for(let a of e){let s=decodeURIComponent(a.hash.substring(1)),c=ae(`[id="${s}"]`);typeof c!="undefined"&&o.set(a,c)}let n=r.pipe(f(a=>24+a.height));return He(document.body).pipe(W("height"),f(()=>{let a=[];return[...o].reduce((s,[c,l])=>{for(;a.length&&o.get(a[a.length-1]).tagName>=l.tagName;)a.pop();let p=l.offsetTop;for(;!p&&l.parentElement;)l=l.parentElement,p=l.offsetTop;return s.set([...a=[...a,c]].reverse(),p)},new Map)}),f(a=>new Map([...a].sort(([,s],[,c])=>s-c))),E(a=>G([n,t]).pipe(yr(([s,c],[l,{offset:{y:p}}])=>{for(;c.length;){let[,m]=c[0];if(m-l=p)c=[s.pop(),...c];else break}return[s,c]},[[],[...a]]),z((s,c)=>s[0]===c[0]&&s[1]===c[1])))).pipe(f(([a,s])=>({prev:a.map(([c])=>c),next:s.map(([c])=>c)})),V({prev:[],next:[]}),ve(2,1),f(([a,s])=>a.prev.length{for(let[a]of i)An(a),_n(a);for(let[a,[s]]of n.entries())Mn(s,a===n.length-1),On(s,"blur")});let o=Q("[href^=\\#]",e);return Ya(o,t).pipe(H(r),P(()=>r.complete()),f(n=>$({ref:e},n)))}function Ga(e,{viewport$:t,main$:r}){let o=t.pipe(f(({offset:{y:i}})=>i),ve(2,1),f(([i,a])=>i>a&&a),z()),n=r.pipe(W("active"));return G([n,o]).pipe(f(([{active:i},a])=>({hidden:!(i&&a)})),z((i,a)=>i.hidden===a.hidden))}function ji(e,{viewport$:t,header$:r,main$:o}){let n=new M;return n.pipe(Y(J),pe(r.pipe(W("height")))).subscribe({next([{hidden:i},{height:a}]){Gn(e,a+16),i?(Yn(e,"hidden"),Se(e,!1)):Fr(e)},complete(){Xn(e),Fr(e)}}),Ga(e,{viewport$:t,header$:r,main$:o}).pipe(H(n),P(()=>n.complete()),f(i=>$({ref:e},i)))}function Fi({document$:e,tablet$:t}){e.pipe(E(()=>F(...Q("[data-md-state=indeterminate]"))),H(r=>{r.indeterminate=!0,r.checked=!1}),te(r=>O(r,"change").pipe(Or(()=>r.hasAttribute("data-md-state")),oe(r))),pe(t)).subscribe(([r,o])=>{r.removeAttribute("data-md-state"),o&&(r.checked=!1)})}function Xa(){return/(iPad|iPhone|iPod)/.test(navigator.userAgent)}function Ii({document$:e}){e.pipe(E(()=>F(...Q("[data-md-scrollfix]"))),H(t=>t.removeAttribute("data-md-scrollfix")),k(Xa),te(t=>O(t,"touchstart").pipe(oe(t)))).subscribe(t=>{let r=t.scrollTop;r===0?t.scrollTop=1:r+t.offsetHeight===t.scrollHeight&&(t.scrollTop=r-1)})}function Ri({viewport$:e,tablet$:t}){G([Qt("search"),t]).pipe(f(([r,o])=>r&&!o),E(r=>F(r).pipe(_e(r?400:100),Y(J))),pe(e)).subscribe(([r,{offset:{y:o}}])=>{r?En(document.body,o):Tn(document.body)})}document.documentElement.classList.remove("no-js");document.documentElement.classList.add("js");var tt=Xo(),$r=ln(),Wr=fn(),Vr=an(),ue=gn(),Zt=mt("(min-width: 960px)"),Pi=mt("(min-width: 1220px)"),$i=mn(),Wi=se(),Za=document.forms.namedItem("search")?(__search==null?void 0:__search.index)||we(`${Wi.base}/search/search_index.json`):X,Ur=new M;bi({alert$:Ur});Jt("navigation.instant")&&vi({document$:tt,location$:$r,viewport$:ue});var Ui;((Ui=Wi.version)==null?void 0:Ui.provider)==="mike"&&Ei();R($r,Wr).pipe(_e(125)).subscribe(()=>{Ve("drawer",!1),Ve("search",!1)});Vr.pipe(k(({mode:e})=>e==="global")).subscribe(e=>{switch(e.type){case"p":case",":let t=ae("[href][rel=prev]");typeof t!="undefined"&&t.click();break;case"n":case".":let r=ae("[href][rel=next]");typeof r!="undefined"&&r.click();break}});Fi({document$:tt,tablet$:Zt});Ii({document$:tt});Ri({viewport$:ue,tablet$:Zt});var Fe=ui(je("header"),{viewport$:ue}),er=tt.pipe(f(()=>je("main")),E(e=>di(e,{viewport$:ue,header$:Fe})),re(1)),es=R(...de("dialog").map(e=>pi(e,{alert$:Ur})),...de("header").map(e=>fi(e,{viewport$:ue,header$:Fe,main$:er})),...de("palette").map(e=>hi(e)),...de("search").map(e=>_i(e,{index$:Za,keyboard$:Vr})),...de("source").map(e=>ki(e))),ts=Oe(()=>R(...de("content").map(e=>li(e,{target$:Wr,viewport$:ue,print$:$i})),...de("header-title").map(e=>mi(e,{viewport$:ue,header$:Fe})),...de("sidebar").map(e=>e.getAttribute("data-md-type")==="navigation"?Ar(Pi,()=>Pr(e,{viewport$:ue,header$:Fe,main$:er})):Ar(Zt,()=>Pr(e,{viewport$:ue,header$:Fe,main$:er}))),...de("tabs").map(e=>Ci(e,{viewport$:ue,header$:Fe})),...de("toc").map(e=>Hi(e,{viewport$:ue,header$:Fe})),...de("top").map(e=>ji(e,{viewport$:ue,header$:Fe,main$:er})))),Vi=tt.pipe(E(()=>ts),ft(es),re(1));Vi.subscribe();window.document$=tt;window.location$=$r;window.target$=Wr;window.keyboard$=Vr;window.viewport$=ue;window.tablet$=Zt;window.screen$=Pi;window.print$=$i;window.alert$=Ur;window.component$=Vi;})(); -//# sourceMappingURL=bundle.ddd52ceb.min.js.map - diff --git a/bes_theme/assets/javascripts/bundle.ddd52ceb.min.js.map b/bes_theme/assets/javascripts/bundle.ddd52ceb.min.js.map deleted file mode 100644 index 412252e2..00000000 --- a/bes_theme/assets/javascripts/bundle.ddd52ceb.min.js.map +++ /dev/null @@ -1,7 +0,0 @@ -{ - "version": 3, - "sources": ["node_modules/focus-visible/dist/focus-visible.js", "node_modules/rxjs/node_modules/tslib/tslib.js", "node_modules/clipboard/dist/clipboard.js", "node_modules/escape-html/index.js", "src/assets/javascripts/bundle.ts", "node_modules/rxjs/node_modules/tslib/modules/index.js", "node_modules/rxjs/src/internal/util/isFunction.ts", "node_modules/rxjs/src/internal/util/createErrorClass.ts", "node_modules/rxjs/src/internal/util/UnsubscriptionError.ts", "node_modules/rxjs/src/internal/util/arrRemove.ts", "node_modules/rxjs/src/internal/Subscription.ts", "node_modules/rxjs/src/internal/config.ts", "node_modules/rxjs/src/internal/scheduler/timeoutProvider.ts", "node_modules/rxjs/src/internal/util/reportUnhandledError.ts", "node_modules/rxjs/src/internal/util/noop.ts", "node_modules/rxjs/src/internal/NotificationFactories.ts", "node_modules/rxjs/src/internal/util/errorContext.ts", "node_modules/rxjs/src/internal/Subscriber.ts", "node_modules/rxjs/src/internal/symbol/observable.ts", "node_modules/rxjs/src/internal/util/identity.ts", "node_modules/rxjs/src/internal/util/pipe.ts", "node_modules/rxjs/src/internal/Observable.ts", "node_modules/rxjs/src/internal/util/lift.ts", "node_modules/rxjs/src/internal/operators/OperatorSubscriber.ts", "node_modules/rxjs/src/internal/scheduler/animationFrameProvider.ts", "node_modules/rxjs/src/internal/util/ObjectUnsubscribedError.ts", "node_modules/rxjs/src/internal/Subject.ts", "node_modules/rxjs/src/internal/scheduler/dateTimestampProvider.ts", "node_modules/rxjs/src/internal/ReplaySubject.ts", "node_modules/rxjs/src/internal/scheduler/Action.ts", "node_modules/rxjs/src/internal/scheduler/intervalProvider.ts", "node_modules/rxjs/src/internal/scheduler/AsyncAction.ts", "node_modules/rxjs/src/internal/Scheduler.ts", "node_modules/rxjs/src/internal/scheduler/AsyncScheduler.ts", "node_modules/rxjs/src/internal/scheduler/async.ts", "node_modules/rxjs/src/internal/scheduler/AnimationFrameAction.ts", "node_modules/rxjs/src/internal/scheduler/AnimationFrameScheduler.ts", "node_modules/rxjs/src/internal/scheduler/animationFrame.ts", "node_modules/rxjs/src/internal/observable/empty.ts", "node_modules/rxjs/src/internal/scheduled/scheduleArray.ts", "node_modules/rxjs/src/internal/util/isArrayLike.ts", "node_modules/rxjs/src/internal/util/isPromise.ts", "node_modules/rxjs/src/internal/scheduled/scheduleObservable.ts", "node_modules/rxjs/src/internal/scheduled/schedulePromise.ts", "node_modules/rxjs/src/internal/symbol/iterator.ts", "node_modules/rxjs/src/internal/util/caughtSchedule.ts", "node_modules/rxjs/src/internal/scheduled/scheduleIterable.ts", "node_modules/rxjs/src/internal/scheduled/scheduleAsyncIterable.ts", "node_modules/rxjs/src/internal/util/isInteropObservable.ts", "node_modules/rxjs/src/internal/util/isIterable.ts", "node_modules/rxjs/src/internal/util/isAsyncIterable.ts", "node_modules/rxjs/src/internal/util/throwUnobservableError.ts", "node_modules/rxjs/src/internal/util/isReadableStreamLike.ts", "node_modules/rxjs/src/internal/scheduled/scheduleReadableStreamLike.ts", "node_modules/rxjs/src/internal/scheduled/scheduled.ts", "node_modules/rxjs/src/internal/observable/from.ts", "node_modules/rxjs/src/internal/observable/fromArray.ts", "node_modules/rxjs/src/internal/util/isScheduler.ts", "node_modules/rxjs/src/internal/util/args.ts", "node_modules/rxjs/src/internal/observable/of.ts", "node_modules/rxjs/src/internal/util/isDate.ts", "node_modules/rxjs/src/internal/operators/map.ts", "node_modules/rxjs/src/internal/util/mapOneOrManyArgs.ts", "node_modules/rxjs/src/internal/operators/observeOn.ts", "node_modules/rxjs/src/internal/util/argsArgArrayOrObject.ts", "node_modules/rxjs/src/internal/util/createObject.ts", "node_modules/rxjs/src/internal/observable/combineLatest.ts", "node_modules/rxjs/src/internal/operators/mergeInternals.ts", "node_modules/rxjs/src/internal/operators/mergeMap.ts", "node_modules/rxjs/src/internal/operators/mergeAll.ts", "node_modules/rxjs/src/internal/operators/concatAll.ts", "node_modules/rxjs/src/internal/observable/concat.ts", "node_modules/rxjs/src/internal/observable/defer.ts", "node_modules/rxjs/src/internal/observable/fromEvent.ts", "node_modules/rxjs/src/internal/observable/fromEventPattern.ts", "node_modules/rxjs/src/internal/observable/timer.ts", "node_modules/rxjs/src/internal/observable/merge.ts", "node_modules/rxjs/src/internal/observable/never.ts", "node_modules/rxjs/src/internal/util/argsOrArgArray.ts", "node_modules/rxjs/src/internal/operators/filter.ts", "node_modules/rxjs/src/internal/observable/zip.ts", "node_modules/rxjs/src/internal/operators/bufferCount.ts", "node_modules/rxjs/src/internal/operators/catchError.ts", "node_modules/rxjs/src/internal/operators/scanInternals.ts", "node_modules/rxjs/src/internal/operators/combineLatest.ts", "node_modules/rxjs/src/internal/operators/combineLatestWith.ts", "node_modules/rxjs/src/internal/operators/concatMap.ts", "node_modules/rxjs/src/internal/operators/debounceTime.ts", "node_modules/rxjs/src/internal/operators/defaultIfEmpty.ts", "node_modules/rxjs/src/internal/operators/take.ts", "node_modules/rxjs/src/internal/operators/ignoreElements.ts", "node_modules/rxjs/src/internal/operators/mapTo.ts", "node_modules/rxjs/src/internal/operators/delayWhen.ts", "node_modules/rxjs/src/internal/operators/delay.ts", "node_modules/rxjs/src/internal/operators/distinctUntilChanged.ts", "node_modules/rxjs/src/internal/operators/distinctUntilKeyChanged.ts", "node_modules/rxjs/src/internal/operators/finalize.ts", "node_modules/rxjs/src/internal/operators/takeLast.ts", "node_modules/rxjs/src/internal/operators/merge.ts", "node_modules/rxjs/src/internal/operators/mergeWith.ts", "node_modules/rxjs/src/internal/operators/sample.ts", "node_modules/rxjs/src/internal/operators/scan.ts", "node_modules/rxjs/src/internal/operators/share.ts", "node_modules/rxjs/src/internal/operators/shareReplay.ts", "node_modules/rxjs/src/internal/operators/skip.ts", "node_modules/rxjs/src/internal/operators/skipUntil.ts", "node_modules/rxjs/src/internal/operators/startWith.ts", "node_modules/rxjs/src/internal/operators/switchMap.ts", "node_modules/rxjs/src/internal/operators/switchMapTo.ts", "node_modules/rxjs/src/internal/operators/takeUntil.ts", "node_modules/rxjs/src/internal/operators/takeWhile.ts", "node_modules/rxjs/src/internal/operators/tap.ts", "node_modules/rxjs/src/internal/operators/throttle.ts", "node_modules/rxjs/src/internal/operators/withLatestFrom.ts", "node_modules/rxjs/src/internal/operators/zip.ts", "node_modules/rxjs/src/internal/operators/zipWith.ts", "src/assets/javascripts/browser/document/index.ts", "src/assets/javascripts/browser/element/_/index.ts", "src/assets/javascripts/browser/element/focus/index.ts", "src/assets/javascripts/browser/element/size/index.ts", "src/assets/javascripts/browser/element/offset/index.ts", "src/assets/javascripts/browser/element/selection/index.ts", "src/assets/javascripts/browser/toggle/index.ts", "src/assets/javascripts/browser/keyboard/index.ts", "src/assets/javascripts/browser/location/_/index.ts", "src/assets/javascripts/browser/location/hash/index.ts", "src/assets/javascripts/browser/media/index.ts", "src/assets/javascripts/browser/request/index.ts", "src/assets/javascripts/browser/viewport/offset/index.ts", "src/assets/javascripts/browser/viewport/size/index.ts", "src/assets/javascripts/browser/viewport/_/index.ts", "src/assets/javascripts/browser/worker/index.ts", "src/assets/javascripts/_/index.ts", "src/assets/javascripts/components/_/index.ts", "src/assets/javascripts/components/content/code/index.ts", "src/assets/javascripts/actions/_/index.ts", "src/assets/javascripts/actions/anchor/index.ts", "src/assets/javascripts/actions/dialog/index.ts", "src/assets/javascripts/actions/header/_/index.ts", "src/assets/javascripts/actions/header/title/index.ts", "src/assets/javascripts/actions/search/query/index.ts", "src/assets/javascripts/utilities/h/index.ts", "src/assets/javascripts/utilities/string/index.ts", "src/assets/javascripts/actions/search/result/index.ts", "src/assets/javascripts/actions/sidebar/index.ts", "src/assets/javascripts/actions/source/index.ts", "src/assets/javascripts/actions/tabs/index.ts", "src/assets/javascripts/actions/top/index.ts", "src/assets/javascripts/templates/clipboard/index.tsx", "src/assets/javascripts/templates/search/index.tsx", "src/assets/javascripts/templates/source/index.tsx", "src/assets/javascripts/templates/table/index.tsx", "src/assets/javascripts/templates/version/index.tsx", "src/assets/javascripts/components/content/details/index.ts", "src/assets/javascripts/components/content/table/index.ts", "src/assets/javascripts/components/content/_/index.ts", "src/assets/javascripts/components/dialog/index.ts", "src/assets/javascripts/components/header/_/index.ts", "src/assets/javascripts/components/header/title/index.ts", "src/assets/javascripts/components/main/index.ts", "src/assets/javascripts/components/palette/index.ts", "src/assets/javascripts/integrations/clipboard/index.ts", "src/assets/javascripts/integrations/instant/index.ts", "src/assets/javascripts/integrations/search/document/index.ts", "src/assets/javascripts/integrations/search/query/transform/index.ts", "src/assets/javascripts/integrations/search/worker/message/index.ts", "src/assets/javascripts/integrations/search/worker/_/index.ts", "src/assets/javascripts/integrations/version/index.ts", "src/assets/javascripts/components/search/query/index.ts", "src/assets/javascripts/components/search/result/index.ts", "src/assets/javascripts/components/search/_/index.ts", "src/assets/javascripts/components/sidebar/index.ts", "src/assets/javascripts/components/source/facts/github/index.ts", "src/assets/javascripts/components/source/facts/gitlab/index.ts", "src/assets/javascripts/components/source/facts/_/index.ts", "src/assets/javascripts/components/source/_/index.ts", "src/assets/javascripts/components/tabs/index.ts", "src/assets/javascripts/components/toc/index.ts", "src/assets/javascripts/components/top/index.ts", "src/assets/javascripts/patches/indeterminate/index.ts", "src/assets/javascripts/patches/scrollfix/index.ts", "src/assets/javascripts/patches/scrolllock/index.ts"], - "sourcesContent": ["(function (global, factory) {\n typeof exports === 'object' && typeof module !== 'undefined' ? factory() :\n typeof define === 'function' && define.amd ? define(factory) :\n (factory());\n}(this, (function () { 'use strict';\n\n /**\n * Applies the :focus-visible polyfill at the given scope.\n * A scope in this case is either the top-level Document or a Shadow Root.\n *\n * @param {(Document|ShadowRoot)} scope\n * @see https://github.com/WICG/focus-visible\n */\n function applyFocusVisiblePolyfill(scope) {\n var hadKeyboardEvent = true;\n var hadFocusVisibleRecently = false;\n var hadFocusVisibleRecentlyTimeout = null;\n\n var inputTypesAllowlist = {\n text: true,\n search: true,\n url: true,\n tel: true,\n email: true,\n password: true,\n number: true,\n date: true,\n month: true,\n week: true,\n time: true,\n datetime: true,\n 'datetime-local': true\n };\n\n /**\n * Helper function for legacy browsers and iframes which sometimes focus\n * elements like document, body, and non-interactive SVG.\n * @param {Element} el\n */\n function isValidFocusTarget(el) {\n if (\n el &&\n el !== document &&\n el.nodeName !== 'HTML' &&\n el.nodeName !== 'BODY' &&\n 'classList' in el &&\n 'contains' in el.classList\n ) {\n return true;\n }\n return false;\n }\n\n /**\n * Computes whether the given element should automatically trigger the\n * `focus-visible` class being added, i.e. whether it should always match\n * `:focus-visible` when focused.\n * @param {Element} el\n * @return {boolean}\n */\n function focusTriggersKeyboardModality(el) {\n var type = el.type;\n var tagName = el.tagName;\n\n if (tagName === 'INPUT' && inputTypesAllowlist[type] && !el.readOnly) {\n return true;\n }\n\n if (tagName === 'TEXTAREA' && !el.readOnly) {\n return true;\n }\n\n if (el.isContentEditable) {\n return true;\n }\n\n return false;\n }\n\n /**\n * Add the `focus-visible` class to the given element if it was not added by\n * the author.\n * @param {Element} el\n */\n function addFocusVisibleClass(el) {\n if (el.classList.contains('focus-visible')) {\n return;\n }\n el.classList.add('focus-visible');\n el.setAttribute('data-focus-visible-added', '');\n }\n\n /**\n * Remove the `focus-visible` class from the given element if it was not\n * originally added by the author.\n * @param {Element} el\n */\n function removeFocusVisibleClass(el) {\n if (!el.hasAttribute('data-focus-visible-added')) {\n return;\n }\n el.classList.remove('focus-visible');\n el.removeAttribute('data-focus-visible-added');\n }\n\n /**\n * If the most recent user interaction was via the keyboard;\n * and the key press did not include a meta, alt/option, or control key;\n * then the modality is keyboard. Otherwise, the modality is not keyboard.\n * Apply `focus-visible` to any current active element and keep track\n * of our keyboard modality state with `hadKeyboardEvent`.\n * @param {KeyboardEvent} e\n */\n function onKeyDown(e) {\n if (e.metaKey || e.altKey || e.ctrlKey) {\n return;\n }\n\n if (isValidFocusTarget(scope.activeElement)) {\n addFocusVisibleClass(scope.activeElement);\n }\n\n hadKeyboardEvent = true;\n }\n\n /**\n * If at any point a user clicks with a pointing device, ensure that we change\n * the modality away from keyboard.\n * This avoids the situation where a user presses a key on an already focused\n * element, and then clicks on a different element, focusing it with a\n * pointing device, while we still think we're in keyboard modality.\n * @param {Event} e\n */\n function onPointerDown(e) {\n hadKeyboardEvent = false;\n }\n\n /**\n * On `focus`, add the `focus-visible` class to the target if:\n * - the target received focus as a result of keyboard navigation, or\n * - the event target is an element that will likely require interaction\n * via the keyboard (e.g. a text box)\n * @param {Event} e\n */\n function onFocus(e) {\n // Prevent IE from focusing the document or HTML element.\n if (!isValidFocusTarget(e.target)) {\n return;\n }\n\n if (hadKeyboardEvent || focusTriggersKeyboardModality(e.target)) {\n addFocusVisibleClass(e.target);\n }\n }\n\n /**\n * On `blur`, remove the `focus-visible` class from the target.\n * @param {Event} e\n */\n function onBlur(e) {\n if (!isValidFocusTarget(e.target)) {\n return;\n }\n\n if (\n e.target.classList.contains('focus-visible') ||\n e.target.hasAttribute('data-focus-visible-added')\n ) {\n // To detect a tab/window switch, we look for a blur event followed\n // rapidly by a visibility change.\n // If we don't see a visibility change within 100ms, it's probably a\n // regular focus change.\n hadFocusVisibleRecently = true;\n window.clearTimeout(hadFocusVisibleRecentlyTimeout);\n hadFocusVisibleRecentlyTimeout = window.setTimeout(function() {\n hadFocusVisibleRecently = false;\n }, 100);\n removeFocusVisibleClass(e.target);\n }\n }\n\n /**\n * If the user changes tabs, keep track of whether or not the previously\n * focused element had .focus-visible.\n * @param {Event} e\n */\n function onVisibilityChange(e) {\n if (document.visibilityState === 'hidden') {\n // If the tab becomes active again, the browser will handle calling focus\n // on the element (Safari actually calls it twice).\n // If this tab change caused a blur on an element with focus-visible,\n // re-apply the class when the user switches back to the tab.\n if (hadFocusVisibleRecently) {\n hadKeyboardEvent = true;\n }\n addInitialPointerMoveListeners();\n }\n }\n\n /**\n * Add a group of listeners to detect usage of any pointing devices.\n * These listeners will be added when the polyfill first loads, and anytime\n * the window is blurred, so that they are active when the window regains\n * focus.\n */\n function addInitialPointerMoveListeners() {\n document.addEventListener('mousemove', onInitialPointerMove);\n document.addEventListener('mousedown', onInitialPointerMove);\n document.addEventListener('mouseup', onInitialPointerMove);\n document.addEventListener('pointermove', onInitialPointerMove);\n document.addEventListener('pointerdown', onInitialPointerMove);\n document.addEventListener('pointerup', onInitialPointerMove);\n document.addEventListener('touchmove', onInitialPointerMove);\n document.addEventListener('touchstart', onInitialPointerMove);\n document.addEventListener('touchend', onInitialPointerMove);\n }\n\n function removeInitialPointerMoveListeners() {\n document.removeEventListener('mousemove', onInitialPointerMove);\n document.removeEventListener('mousedown', onInitialPointerMove);\n document.removeEventListener('mouseup', onInitialPointerMove);\n document.removeEventListener('pointermove', onInitialPointerMove);\n document.removeEventListener('pointerdown', onInitialPointerMove);\n document.removeEventListener('pointerup', onInitialPointerMove);\n document.removeEventListener('touchmove', onInitialPointerMove);\n document.removeEventListener('touchstart', onInitialPointerMove);\n document.removeEventListener('touchend', onInitialPointerMove);\n }\n\n /**\n * When the polfyill first loads, assume the user is in keyboard modality.\n * If any event is received from a pointing device (e.g. mouse, pointer,\n * touch), turn off keyboard modality.\n * This accounts for situations where focus enters the page from the URL bar.\n * @param {Event} e\n */\n function onInitialPointerMove(e) {\n // Work around a Safari quirk that fires a mousemove on whenever the\n // window blurs, even if you're tabbing out of the page. \u00AF\\_(\u30C4)_/\u00AF\n if (e.target.nodeName && e.target.nodeName.toLowerCase() === 'html') {\n return;\n }\n\n hadKeyboardEvent = false;\n removeInitialPointerMoveListeners();\n }\n\n // For some kinds of state, we are interested in changes at the global scope\n // only. For example, global pointer input, global key presses and global\n // visibility change should affect the state at every scope:\n document.addEventListener('keydown', onKeyDown, true);\n document.addEventListener('mousedown', onPointerDown, true);\n document.addEventListener('pointerdown', onPointerDown, true);\n document.addEventListener('touchstart', onPointerDown, true);\n document.addEventListener('visibilitychange', onVisibilityChange, true);\n\n addInitialPointerMoveListeners();\n\n // For focus and blur, we specifically care about state changes in the local\n // scope. This is because focus / blur events that originate from within a\n // shadow root are not re-dispatched from the host element if it was already\n // the active element in its own scope:\n scope.addEventListener('focus', onFocus, true);\n scope.addEventListener('blur', onBlur, true);\n\n // We detect that a node is a ShadowRoot by ensuring that it is a\n // DocumentFragment and also has a host property. This check covers native\n // implementation and polyfill implementation transparently. If we only cared\n // about the native implementation, we could just check if the scope was\n // an instance of a ShadowRoot.\n if (scope.nodeType === Node.DOCUMENT_FRAGMENT_NODE && scope.host) {\n // Since a ShadowRoot is a special kind of DocumentFragment, it does not\n // have a root element to add a class to. So, we add this attribute to the\n // host element instead:\n scope.host.setAttribute('data-js-focus-visible', '');\n } else if (scope.nodeType === Node.DOCUMENT_NODE) {\n document.documentElement.classList.add('js-focus-visible');\n document.documentElement.setAttribute('data-js-focus-visible', '');\n }\n }\n\n // It is important to wrap all references to global window and document in\n // these checks to support server-side rendering use cases\n // @see https://github.com/WICG/focus-visible/issues/199\n if (typeof window !== 'undefined' && typeof document !== 'undefined') {\n // Make the polyfill helper globally available. This can be used as a signal\n // to interested libraries that wish to coordinate with the polyfill for e.g.,\n // applying the polyfill to a shadow root:\n window.applyFocusVisiblePolyfill = applyFocusVisiblePolyfill;\n\n // Notify interested libraries of the polyfill's presence, in case the\n // polyfill was loaded lazily:\n var event;\n\n try {\n event = new CustomEvent('focus-visible-polyfill-ready');\n } catch (error) {\n // IE11 does not support using CustomEvent as a constructor directly:\n event = document.createEvent('CustomEvent');\n event.initCustomEvent('focus-visible-polyfill-ready', false, false, {});\n }\n\n window.dispatchEvent(event);\n }\n\n if (typeof document !== 'undefined') {\n // Apply the polyfill to the global document, so that no JavaScript\n // coordination is required to use the polyfill in the top-level document:\n applyFocusVisiblePolyfill(document);\n }\n\n})));\n", "/*! *****************************************************************************\r\nCopyright (c) Microsoft Corporation.\r\n\r\nPermission to use, copy, modify, and/or distribute this software for any\r\npurpose with or without fee is hereby granted.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH\r\nREGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY\r\nAND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,\r\nINDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM\r\nLOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR\r\nOTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR\r\nPERFORMANCE OF THIS SOFTWARE.\r\n***************************************************************************** */\r\n/* global global, define, System, Reflect, Promise */\r\nvar __extends;\r\nvar __assign;\r\nvar __rest;\r\nvar __decorate;\r\nvar __param;\r\nvar __metadata;\r\nvar __awaiter;\r\nvar __generator;\r\nvar __exportStar;\r\nvar __values;\r\nvar __read;\r\nvar __spread;\r\nvar __spreadArrays;\r\nvar __spreadArray;\r\nvar __await;\r\nvar __asyncGenerator;\r\nvar __asyncDelegator;\r\nvar __asyncValues;\r\nvar __makeTemplateObject;\r\nvar __importStar;\r\nvar __importDefault;\r\nvar __classPrivateFieldGet;\r\nvar __classPrivateFieldSet;\r\nvar __createBinding;\r\n(function (factory) {\r\n var root = typeof global === \"object\" ? global : typeof self === \"object\" ? self : typeof this === \"object\" ? this : {};\r\n if (typeof define === \"function\" && define.amd) {\r\n define(\"tslib\", [\"exports\"], function (exports) { factory(createExporter(root, createExporter(exports))); });\r\n }\r\n else if (typeof module === \"object\" && typeof module.exports === \"object\") {\r\n factory(createExporter(root, createExporter(module.exports)));\r\n }\r\n else {\r\n factory(createExporter(root));\r\n }\r\n function createExporter(exports, previous) {\r\n if (exports !== root) {\r\n if (typeof Object.create === \"function\") {\r\n Object.defineProperty(exports, \"__esModule\", { value: true });\r\n }\r\n else {\r\n exports.__esModule = true;\r\n }\r\n }\r\n return function (id, v) { return exports[id] = previous ? previous(id, v) : v; };\r\n }\r\n})\r\n(function (exporter) {\r\n var extendStatics = Object.setPrototypeOf ||\r\n ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||\r\n function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };\r\n\r\n __extends = function (d, b) {\r\n if (typeof b !== \"function\" && b !== null)\r\n throw new TypeError(\"Class extends value \" + String(b) + \" is not a constructor or null\");\r\n extendStatics(d, b);\r\n function __() { this.constructor = d; }\r\n d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());\r\n };\r\n\r\n __assign = Object.assign || function (t) {\r\n for (var s, i = 1, n = arguments.length; i < n; i++) {\r\n s = arguments[i];\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];\r\n }\r\n return t;\r\n };\r\n\r\n __rest = function (s, e) {\r\n var t = {};\r\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\r\n t[p] = s[p];\r\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\r\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\r\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\r\n t[p[i]] = s[p[i]];\r\n }\r\n return t;\r\n };\r\n\r\n __decorate = function (decorators, target, key, desc) {\r\n var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;\r\n if (typeof Reflect === \"object\" && typeof Reflect.decorate === \"function\") r = Reflect.decorate(decorators, target, key, desc);\r\n else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;\r\n return c > 3 && r && Object.defineProperty(target, key, r), r;\r\n };\r\n\r\n __param = function (paramIndex, decorator) {\r\n return function (target, key) { decorator(target, key, paramIndex); }\r\n };\r\n\r\n __metadata = function (metadataKey, metadataValue) {\r\n if (typeof Reflect === \"object\" && typeof Reflect.metadata === \"function\") return Reflect.metadata(metadataKey, metadataValue);\r\n };\r\n\r\n __awaiter = function (thisArg, _arguments, P, generator) {\r\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\r\n return new (P || (P = Promise))(function (resolve, reject) {\r\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\r\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\r\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\r\n step((generator = generator.apply(thisArg, _arguments || [])).next());\r\n });\r\n };\r\n\r\n __generator = function (thisArg, body) {\r\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\r\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\r\n function verb(n) { return function (v) { return step([n, v]); }; }\r\n function step(op) {\r\n if (f) throw new TypeError(\"Generator is already executing.\");\r\n while (_) try {\r\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\r\n if (y = 0, t) op = [op[0] & 2, t.value];\r\n switch (op[0]) {\r\n case 0: case 1: t = op; break;\r\n case 4: _.label++; return { value: op[1], done: false };\r\n case 5: _.label++; y = op[1]; op = [0]; continue;\r\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\r\n default:\r\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\r\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\r\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\r\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\r\n if (t[2]) _.ops.pop();\r\n _.trys.pop(); continue;\r\n }\r\n op = body.call(thisArg, _);\r\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\r\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\r\n }\r\n };\r\n\r\n __exportStar = function(m, o) {\r\n for (var p in m) if (p !== \"default\" && !Object.prototype.hasOwnProperty.call(o, p)) __createBinding(o, m, p);\r\n };\r\n\r\n __createBinding = Object.create ? (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });\r\n }) : (function(o, m, k, k2) {\r\n if (k2 === undefined) k2 = k;\r\n o[k2] = m[k];\r\n });\r\n\r\n __values = function (o) {\r\n var s = typeof Symbol === \"function\" && Symbol.iterator, m = s && o[s], i = 0;\r\n if (m) return m.call(o);\r\n if (o && typeof o.length === \"number\") return {\r\n next: function () {\r\n if (o && i >= o.length) o = void 0;\r\n return { value: o && o[i++], done: !o };\r\n }\r\n };\r\n throw new TypeError(s ? \"Object is not iterable.\" : \"Symbol.iterator is not defined.\");\r\n };\r\n\r\n __read = function (o, n) {\r\n var m = typeof Symbol === \"function\" && o[Symbol.iterator];\r\n if (!m) return o;\r\n var i = m.call(o), r, ar = [], e;\r\n try {\r\n while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);\r\n }\r\n catch (error) { e = { error: error }; }\r\n finally {\r\n try {\r\n if (r && !r.done && (m = i[\"return\"])) m.call(i);\r\n }\r\n finally { if (e) throw e.error; }\r\n }\r\n return ar;\r\n };\r\n\r\n /** @deprecated */\r\n __spread = function () {\r\n for (var ar = [], i = 0; i < arguments.length; i++)\r\n ar = ar.concat(__read(arguments[i]));\r\n return ar;\r\n };\r\n\r\n /** @deprecated */\r\n __spreadArrays = function () {\r\n for (var s = 0, i = 0, il = arguments.length; i < il; i++) s += arguments[i].length;\r\n for (var r = Array(s), k = 0, i = 0; i < il; i++)\r\n for (var a = arguments[i], j = 0, jl = a.length; j < jl; j++, k++)\r\n r[k] = a[j];\r\n return r;\r\n };\r\n\r\n __spreadArray = function (to, from) {\r\n for (var i = 0, il = from.length, j = to.length; i < il; i++, j++)\r\n to[j] = from[i];\r\n return to;\r\n };\r\n\r\n __await = function (v) {\r\n return this instanceof __await ? (this.v = v, this) : new __await(v);\r\n };\r\n\r\n __asyncGenerator = function (thisArg, _arguments, generator) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\r\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\r\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\r\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\r\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\r\n function fulfill(value) { resume(\"next\", value); }\r\n function reject(value) { resume(\"throw\", value); }\r\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\r\n };\r\n\r\n __asyncDelegator = function (o) {\r\n var i, p;\r\n return i = {}, verb(\"next\"), verb(\"throw\", function (e) { throw e; }), verb(\"return\"), i[Symbol.iterator] = function () { return this; }, i;\r\n function verb(n, f) { i[n] = o[n] ? function (v) { return (p = !p) ? { value: __await(o[n](v)), done: n === \"return\" } : f ? f(v) : v; } : f; }\r\n };\r\n\r\n __asyncValues = function (o) {\r\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\r\n var m = o[Symbol.asyncIterator], i;\r\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\r\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\r\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\r\n };\r\n\r\n __makeTemplateObject = function (cooked, raw) {\r\n if (Object.defineProperty) { Object.defineProperty(cooked, \"raw\", { value: raw }); } else { cooked.raw = raw; }\r\n return cooked;\r\n };\r\n\r\n var __setModuleDefault = Object.create ? (function(o, v) {\r\n Object.defineProperty(o, \"default\", { enumerable: true, value: v });\r\n }) : function(o, v) {\r\n o[\"default\"] = v;\r\n };\r\n\r\n __importStar = function (mod) {\r\n if (mod && mod.__esModule) return mod;\r\n var result = {};\r\n if (mod != null) for (var k in mod) if (k !== \"default\" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);\r\n __setModuleDefault(result, mod);\r\n return result;\r\n };\r\n\r\n __importDefault = function (mod) {\r\n return (mod && mod.__esModule) ? mod : { \"default\": mod };\r\n };\r\n\r\n __classPrivateFieldGet = function (receiver, privateMap) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to get private field on non-instance\");\r\n }\r\n return privateMap.get(receiver);\r\n };\r\n\r\n __classPrivateFieldSet = function (receiver, privateMap, value) {\r\n if (!privateMap.has(receiver)) {\r\n throw new TypeError(\"attempted to set private field on non-instance\");\r\n }\r\n privateMap.set(receiver, value);\r\n return value;\r\n };\r\n\r\n exporter(\"__extends\", __extends);\r\n exporter(\"__assign\", __assign);\r\n exporter(\"__rest\", __rest);\r\n exporter(\"__decorate\", __decorate);\r\n exporter(\"__param\", __param);\r\n exporter(\"__metadata\", __metadata);\r\n exporter(\"__awaiter\", __awaiter);\r\n exporter(\"__generator\", __generator);\r\n exporter(\"__exportStar\", __exportStar);\r\n exporter(\"__createBinding\", __createBinding);\r\n exporter(\"__values\", __values);\r\n exporter(\"__read\", __read);\r\n exporter(\"__spread\", __spread);\r\n exporter(\"__spreadArrays\", __spreadArrays);\r\n exporter(\"__spreadArray\", __spreadArray);\r\n exporter(\"__await\", __await);\r\n exporter(\"__asyncGenerator\", __asyncGenerator);\r\n exporter(\"__asyncDelegator\", __asyncDelegator);\r\n exporter(\"__asyncValues\", __asyncValues);\r\n exporter(\"__makeTemplateObject\", __makeTemplateObject);\r\n exporter(\"__importStar\", __importStar);\r\n exporter(\"__importDefault\", __importDefault);\r\n exporter(\"__classPrivateFieldGet\", __classPrivateFieldGet);\r\n exporter(\"__classPrivateFieldSet\", __classPrivateFieldSet);\r\n});\r\n", "/*!\n * clipboard.js v2.0.8\n * https://clipboardjs.com/\n *\n * Licensed MIT \u00A9 Zeno Rocha\n */\n(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory();\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"ClipboardJS\"] = factory();\n\telse\n\t\troot[\"ClipboardJS\"] = factory();\n})(this, function() {\nreturn /******/ (function() { // webpackBootstrap\n/******/ \tvar __webpack_modules__ = ({\n\n/***/ 134:\n/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {\n\n\"use strict\";\n\n// EXPORTS\n__webpack_require__.d(__webpack_exports__, {\n \"default\": function() { return /* binding */ clipboard; }\n});\n\n// EXTERNAL MODULE: ./node_modules/tiny-emitter/index.js\nvar tiny_emitter = __webpack_require__(279);\nvar tiny_emitter_default = /*#__PURE__*/__webpack_require__.n(tiny_emitter);\n// EXTERNAL MODULE: ./node_modules/good-listener/src/listen.js\nvar listen = __webpack_require__(370);\nvar listen_default = /*#__PURE__*/__webpack_require__.n(listen);\n// EXTERNAL MODULE: ./node_modules/select/src/select.js\nvar src_select = __webpack_require__(817);\nvar select_default = /*#__PURE__*/__webpack_require__.n(src_select);\n;// CONCATENATED MODULE: ./src/clipboard-action.js\nfunction _typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\n\n/**\n * Inner class which performs selection from either `text` or `target`\n * properties and then executes copy or cut operations.\n */\n\nvar ClipboardAction = /*#__PURE__*/function () {\n /**\n * @param {Object} options\n */\n function ClipboardAction(options) {\n _classCallCheck(this, ClipboardAction);\n\n this.resolveOptions(options);\n this.initSelection();\n }\n /**\n * Defines base properties passed from constructor.\n * @param {Object} options\n */\n\n\n _createClass(ClipboardAction, [{\n key: \"resolveOptions\",\n value: function resolveOptions() {\n var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n this.action = options.action;\n this.container = options.container;\n this.emitter = options.emitter;\n this.target = options.target;\n this.text = options.text;\n this.trigger = options.trigger;\n this.selectedText = '';\n }\n /**\n * Decides which selection strategy is going to be applied based\n * on the existence of `text` and `target` properties.\n */\n\n }, {\n key: \"initSelection\",\n value: function initSelection() {\n if (this.text) {\n this.selectFake();\n } else if (this.target) {\n this.selectTarget();\n }\n }\n /**\n * Creates a fake textarea element, sets its value from `text` property,\n */\n\n }, {\n key: \"createFakeElement\",\n value: function createFakeElement() {\n var isRTL = document.documentElement.getAttribute('dir') === 'rtl';\n this.fakeElem = document.createElement('textarea'); // Prevent zooming on iOS\n\n this.fakeElem.style.fontSize = '12pt'; // Reset box model\n\n this.fakeElem.style.border = '0';\n this.fakeElem.style.padding = '0';\n this.fakeElem.style.margin = '0'; // Move element out of screen horizontally\n\n this.fakeElem.style.position = 'absolute';\n this.fakeElem.style[isRTL ? 'right' : 'left'] = '-9999px'; // Move element to the same position vertically\n\n var yPosition = window.pageYOffset || document.documentElement.scrollTop;\n this.fakeElem.style.top = \"\".concat(yPosition, \"px\");\n this.fakeElem.setAttribute('readonly', '');\n this.fakeElem.value = this.text;\n return this.fakeElem;\n }\n /**\n * Get's the value of fakeElem,\n * and makes a selection on it.\n */\n\n }, {\n key: \"selectFake\",\n value: function selectFake() {\n var _this = this;\n\n var fakeElem = this.createFakeElement();\n\n this.fakeHandlerCallback = function () {\n return _this.removeFake();\n };\n\n this.fakeHandler = this.container.addEventListener('click', this.fakeHandlerCallback) || true;\n this.container.appendChild(fakeElem);\n this.selectedText = select_default()(fakeElem);\n this.copyText();\n this.removeFake();\n }\n /**\n * Only removes the fake element after another click event, that way\n * a user can hit `Ctrl+C` to copy because selection still exists.\n */\n\n }, {\n key: \"removeFake\",\n value: function removeFake() {\n if (this.fakeHandler) {\n this.container.removeEventListener('click', this.fakeHandlerCallback);\n this.fakeHandler = null;\n this.fakeHandlerCallback = null;\n }\n\n if (this.fakeElem) {\n this.container.removeChild(this.fakeElem);\n this.fakeElem = null;\n }\n }\n /**\n * Selects the content from element passed on `target` property.\n */\n\n }, {\n key: \"selectTarget\",\n value: function selectTarget() {\n this.selectedText = select_default()(this.target);\n this.copyText();\n }\n /**\n * Executes the copy operation based on the current selection.\n */\n\n }, {\n key: \"copyText\",\n value: function copyText() {\n var succeeded;\n\n try {\n succeeded = document.execCommand(this.action);\n } catch (err) {\n succeeded = false;\n }\n\n this.handleResult(succeeded);\n }\n /**\n * Fires an event based on the copy operation result.\n * @param {Boolean} succeeded\n */\n\n }, {\n key: \"handleResult\",\n value: function handleResult(succeeded) {\n this.emitter.emit(succeeded ? 'success' : 'error', {\n action: this.action,\n text: this.selectedText,\n trigger: this.trigger,\n clearSelection: this.clearSelection.bind(this)\n });\n }\n /**\n * Moves focus away from `target` and back to the trigger, removes current selection.\n */\n\n }, {\n key: \"clearSelection\",\n value: function clearSelection() {\n if (this.trigger) {\n this.trigger.focus();\n }\n\n document.activeElement.blur();\n window.getSelection().removeAllRanges();\n }\n /**\n * Sets the `action` to be performed which can be either 'copy' or 'cut'.\n * @param {String} action\n */\n\n }, {\n key: \"destroy\",\n\n /**\n * Destroy lifecycle.\n */\n value: function destroy() {\n this.removeFake();\n }\n }, {\n key: \"action\",\n set: function set() {\n var action = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'copy';\n this._action = action;\n\n if (this._action !== 'copy' && this._action !== 'cut') {\n throw new Error('Invalid \"action\" value, use either \"copy\" or \"cut\"');\n }\n }\n /**\n * Gets the `action` property.\n * @return {String}\n */\n ,\n get: function get() {\n return this._action;\n }\n /**\n * Sets the `target` property using an element\n * that will be have its content copied.\n * @param {Element} target\n */\n\n }, {\n key: \"target\",\n set: function set(target) {\n if (target !== undefined) {\n if (target && _typeof(target) === 'object' && target.nodeType === 1) {\n if (this.action === 'copy' && target.hasAttribute('disabled')) {\n throw new Error('Invalid \"target\" attribute. Please use \"readonly\" instead of \"disabled\" attribute');\n }\n\n if (this.action === 'cut' && (target.hasAttribute('readonly') || target.hasAttribute('disabled'))) {\n throw new Error('Invalid \"target\" attribute. You can\\'t cut text from elements with \"readonly\" or \"disabled\" attributes');\n }\n\n this._target = target;\n } else {\n throw new Error('Invalid \"target\" value, use a valid Element');\n }\n }\n }\n /**\n * Gets the `target` property.\n * @return {String|HTMLElement}\n */\n ,\n get: function get() {\n return this._target;\n }\n }]);\n\n return ClipboardAction;\n}();\n\n/* harmony default export */ var clipboard_action = (ClipboardAction);\n;// CONCATENATED MODULE: ./src/clipboard.js\nfunction clipboard_typeof(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { clipboard_typeof = function _typeof(obj) { return typeof obj; }; } else { clipboard_typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return clipboard_typeof(obj); }\n\nfunction clipboard_classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction clipboard_defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction clipboard_createClass(Constructor, protoProps, staticProps) { if (protoProps) clipboard_defineProperties(Constructor.prototype, protoProps); if (staticProps) clipboard_defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _inherits(subClass, superClass) { if (typeof superClass !== \"function\" && superClass !== null) { throw new TypeError(\"Super expression must either be null or a function\"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); }\n\nfunction _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }\n\nfunction _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }\n\nfunction _possibleConstructorReturn(self, call) { if (call && (clipboard_typeof(call) === \"object\" || typeof call === \"function\")) { return call; } return _assertThisInitialized(self); }\n\nfunction _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\"); } return self; }\n\nfunction _isNativeReflectConstruct() { if (typeof Reflect === \"undefined\" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === \"function\") return true; try { Date.prototype.toString.call(Reflect.construct(Date, [], function () {})); return true; } catch (e) { return false; } }\n\nfunction _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }\n\n\n\n\n/**\n * Helper function to retrieve attribute value.\n * @param {String} suffix\n * @param {Element} element\n */\n\nfunction getAttributeValue(suffix, element) {\n var attribute = \"data-clipboard-\".concat(suffix);\n\n if (!element.hasAttribute(attribute)) {\n return;\n }\n\n return element.getAttribute(attribute);\n}\n/**\n * Base class which takes one or more elements, adds event listeners to them,\n * and instantiates a new `ClipboardAction` on each click.\n */\n\n\nvar Clipboard = /*#__PURE__*/function (_Emitter) {\n _inherits(Clipboard, _Emitter);\n\n var _super = _createSuper(Clipboard);\n\n /**\n * @param {String|HTMLElement|HTMLCollection|NodeList} trigger\n * @param {Object} options\n */\n function Clipboard(trigger, options) {\n var _this;\n\n clipboard_classCallCheck(this, Clipboard);\n\n _this = _super.call(this);\n\n _this.resolveOptions(options);\n\n _this.listenClick(trigger);\n\n return _this;\n }\n /**\n * Defines if attributes would be resolved using internal setter functions\n * or custom functions that were passed in the constructor.\n * @param {Object} options\n */\n\n\n clipboard_createClass(Clipboard, [{\n key: \"resolveOptions\",\n value: function resolveOptions() {\n var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n this.action = typeof options.action === 'function' ? options.action : this.defaultAction;\n this.target = typeof options.target === 'function' ? options.target : this.defaultTarget;\n this.text = typeof options.text === 'function' ? options.text : this.defaultText;\n this.container = clipboard_typeof(options.container) === 'object' ? options.container : document.body;\n }\n /**\n * Adds a click event listener to the passed trigger.\n * @param {String|HTMLElement|HTMLCollection|NodeList} trigger\n */\n\n }, {\n key: \"listenClick\",\n value: function listenClick(trigger) {\n var _this2 = this;\n\n this.listener = listen_default()(trigger, 'click', function (e) {\n return _this2.onClick(e);\n });\n }\n /**\n * Defines a new `ClipboardAction` on each click event.\n * @param {Event} e\n */\n\n }, {\n key: \"onClick\",\n value: function onClick(e) {\n var trigger = e.delegateTarget || e.currentTarget;\n\n if (this.clipboardAction) {\n this.clipboardAction = null;\n }\n\n this.clipboardAction = new clipboard_action({\n action: this.action(trigger),\n target: this.target(trigger),\n text: this.text(trigger),\n container: this.container,\n trigger: trigger,\n emitter: this\n });\n }\n /**\n * Default `action` lookup function.\n * @param {Element} trigger\n */\n\n }, {\n key: \"defaultAction\",\n value: function defaultAction(trigger) {\n return getAttributeValue('action', trigger);\n }\n /**\n * Default `target` lookup function.\n * @param {Element} trigger\n */\n\n }, {\n key: \"defaultTarget\",\n value: function defaultTarget(trigger) {\n var selector = getAttributeValue('target', trigger);\n\n if (selector) {\n return document.querySelector(selector);\n }\n }\n /**\n * Returns the support of the given action, or all actions if no action is\n * given.\n * @param {String} [action]\n */\n\n }, {\n key: \"defaultText\",\n\n /**\n * Default `text` lookup function.\n * @param {Element} trigger\n */\n value: function defaultText(trigger) {\n return getAttributeValue('text', trigger);\n }\n /**\n * Destroy lifecycle.\n */\n\n }, {\n key: \"destroy\",\n value: function destroy() {\n this.listener.destroy();\n\n if (this.clipboardAction) {\n this.clipboardAction.destroy();\n this.clipboardAction = null;\n }\n }\n }], [{\n key: \"isSupported\",\n value: function isSupported() {\n var action = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : ['copy', 'cut'];\n var actions = typeof action === 'string' ? [action] : action;\n var support = !!document.queryCommandSupported;\n actions.forEach(function (action) {\n support = support && !!document.queryCommandSupported(action);\n });\n return support;\n }\n }]);\n\n return Clipboard;\n}((tiny_emitter_default()));\n\n/* harmony default export */ var clipboard = (Clipboard);\n\n/***/ }),\n\n/***/ 828:\n/***/ (function(module) {\n\nvar DOCUMENT_NODE_TYPE = 9;\n\n/**\n * A polyfill for Element.matches()\n */\nif (typeof Element !== 'undefined' && !Element.prototype.matches) {\n var proto = Element.prototype;\n\n proto.matches = proto.matchesSelector ||\n proto.mozMatchesSelector ||\n proto.msMatchesSelector ||\n proto.oMatchesSelector ||\n proto.webkitMatchesSelector;\n}\n\n/**\n * Finds the closest parent that matches a selector.\n *\n * @param {Element} element\n * @param {String} selector\n * @return {Function}\n */\nfunction closest (element, selector) {\n while (element && element.nodeType !== DOCUMENT_NODE_TYPE) {\n if (typeof element.matches === 'function' &&\n element.matches(selector)) {\n return element;\n }\n element = element.parentNode;\n }\n}\n\nmodule.exports = closest;\n\n\n/***/ }),\n\n/***/ 438:\n/***/ (function(module, __unused_webpack_exports, __webpack_require__) {\n\nvar closest = __webpack_require__(828);\n\n/**\n * Delegates event to a selector.\n *\n * @param {Element} element\n * @param {String} selector\n * @param {String} type\n * @param {Function} callback\n * @param {Boolean} useCapture\n * @return {Object}\n */\nfunction _delegate(element, selector, type, callback, useCapture) {\n var listenerFn = listener.apply(this, arguments);\n\n element.addEventListener(type, listenerFn, useCapture);\n\n return {\n destroy: function() {\n element.removeEventListener(type, listenerFn, useCapture);\n }\n }\n}\n\n/**\n * Delegates event to a selector.\n *\n * @param {Element|String|Array} [elements]\n * @param {String} selector\n * @param {String} type\n * @param {Function} callback\n * @param {Boolean} useCapture\n * @return {Object}\n */\nfunction delegate(elements, selector, type, callback, useCapture) {\n // Handle the regular Element usage\n if (typeof elements.addEventListener === 'function') {\n return _delegate.apply(null, arguments);\n }\n\n // Handle Element-less usage, it defaults to global delegation\n if (typeof type === 'function') {\n // Use `document` as the first parameter, then apply arguments\n // This is a short way to .unshift `arguments` without running into deoptimizations\n return _delegate.bind(null, document).apply(null, arguments);\n }\n\n // Handle Selector-based usage\n if (typeof elements === 'string') {\n elements = document.querySelectorAll(elements);\n }\n\n // Handle Array-like based usage\n return Array.prototype.map.call(elements, function (element) {\n return _delegate(element, selector, type, callback, useCapture);\n });\n}\n\n/**\n * Finds closest match and invokes callback.\n *\n * @param {Element} element\n * @param {String} selector\n * @param {String} type\n * @param {Function} callback\n * @return {Function}\n */\nfunction listener(element, selector, type, callback) {\n return function(e) {\n e.delegateTarget = closest(e.target, selector);\n\n if (e.delegateTarget) {\n callback.call(element, e);\n }\n }\n}\n\nmodule.exports = delegate;\n\n\n/***/ }),\n\n/***/ 879:\n/***/ (function(__unused_webpack_module, exports) {\n\n/**\n * Check if argument is a HTML element.\n *\n * @param {Object} value\n * @return {Boolean}\n */\nexports.node = function(value) {\n return value !== undefined\n && value instanceof HTMLElement\n && value.nodeType === 1;\n};\n\n/**\n * Check if argument is a list of HTML elements.\n *\n * @param {Object} value\n * @return {Boolean}\n */\nexports.nodeList = function(value) {\n var type = Object.prototype.toString.call(value);\n\n return value !== undefined\n && (type === '[object NodeList]' || type === '[object HTMLCollection]')\n && ('length' in value)\n && (value.length === 0 || exports.node(value[0]));\n};\n\n/**\n * Check if argument is a string.\n *\n * @param {Object} value\n * @return {Boolean}\n */\nexports.string = function(value) {\n return typeof value === 'string'\n || value instanceof String;\n};\n\n/**\n * Check if argument is a function.\n *\n * @param {Object} value\n * @return {Boolean}\n */\nexports.fn = function(value) {\n var type = Object.prototype.toString.call(value);\n\n return type === '[object Function]';\n};\n\n\n/***/ }),\n\n/***/ 370:\n/***/ (function(module, __unused_webpack_exports, __webpack_require__) {\n\nvar is = __webpack_require__(879);\nvar delegate = __webpack_require__(438);\n\n/**\n * Validates all params and calls the right\n * listener function based on its target type.\n *\n * @param {String|HTMLElement|HTMLCollection|NodeList} target\n * @param {String} type\n * @param {Function} callback\n * @return {Object}\n */\nfunction listen(target, type, callback) {\n if (!target && !type && !callback) {\n throw new Error('Missing required arguments');\n }\n\n if (!is.string(type)) {\n throw new TypeError('Second argument must be a String');\n }\n\n if (!is.fn(callback)) {\n throw new TypeError('Third argument must be a Function');\n }\n\n if (is.node(target)) {\n return listenNode(target, type, callback);\n }\n else if (is.nodeList(target)) {\n return listenNodeList(target, type, callback);\n }\n else if (is.string(target)) {\n return listenSelector(target, type, callback);\n }\n else {\n throw new TypeError('First argument must be a String, HTMLElement, HTMLCollection, or NodeList');\n }\n}\n\n/**\n * Adds an event listener to a HTML element\n * and returns a remove listener function.\n *\n * @param {HTMLElement} node\n * @param {String} type\n * @param {Function} callback\n * @return {Object}\n */\nfunction listenNode(node, type, callback) {\n node.addEventListener(type, callback);\n\n return {\n destroy: function() {\n node.removeEventListener(type, callback);\n }\n }\n}\n\n/**\n * Add an event listener to a list of HTML elements\n * and returns a remove listener function.\n *\n * @param {NodeList|HTMLCollection} nodeList\n * @param {String} type\n * @param {Function} callback\n * @return {Object}\n */\nfunction listenNodeList(nodeList, type, callback) {\n Array.prototype.forEach.call(nodeList, function(node) {\n node.addEventListener(type, callback);\n });\n\n return {\n destroy: function() {\n Array.prototype.forEach.call(nodeList, function(node) {\n node.removeEventListener(type, callback);\n });\n }\n }\n}\n\n/**\n * Add an event listener to a selector\n * and returns a remove listener function.\n *\n * @param {String} selector\n * @param {String} type\n * @param {Function} callback\n * @return {Object}\n */\nfunction listenSelector(selector, type, callback) {\n return delegate(document.body, selector, type, callback);\n}\n\nmodule.exports = listen;\n\n\n/***/ }),\n\n/***/ 817:\n/***/ (function(module) {\n\nfunction select(element) {\n var selectedText;\n\n if (element.nodeName === 'SELECT') {\n element.focus();\n\n selectedText = element.value;\n }\n else if (element.nodeName === 'INPUT' || element.nodeName === 'TEXTAREA') {\n var isReadOnly = element.hasAttribute('readonly');\n\n if (!isReadOnly) {\n element.setAttribute('readonly', '');\n }\n\n element.select();\n element.setSelectionRange(0, element.value.length);\n\n if (!isReadOnly) {\n element.removeAttribute('readonly');\n }\n\n selectedText = element.value;\n }\n else {\n if (element.hasAttribute('contenteditable')) {\n element.focus();\n }\n\n var selection = window.getSelection();\n var range = document.createRange();\n\n range.selectNodeContents(element);\n selection.removeAllRanges();\n selection.addRange(range);\n\n selectedText = selection.toString();\n }\n\n return selectedText;\n}\n\nmodule.exports = select;\n\n\n/***/ }),\n\n/***/ 279:\n/***/ (function(module) {\n\nfunction E () {\n // Keep this empty so it's easier to inherit from\n // (via https://github.com/lipsmack from https://github.com/scottcorgan/tiny-emitter/issues/3)\n}\n\nE.prototype = {\n on: function (name, callback, ctx) {\n var e = this.e || (this.e = {});\n\n (e[name] || (e[name] = [])).push({\n fn: callback,\n ctx: ctx\n });\n\n return this;\n },\n\n once: function (name, callback, ctx) {\n var self = this;\n function listener () {\n self.off(name, listener);\n callback.apply(ctx, arguments);\n };\n\n listener._ = callback\n return this.on(name, listener, ctx);\n },\n\n emit: function (name) {\n var data = [].slice.call(arguments, 1);\n var evtArr = ((this.e || (this.e = {}))[name] || []).slice();\n var i = 0;\n var len = evtArr.length;\n\n for (i; i < len; i++) {\n evtArr[i].fn.apply(evtArr[i].ctx, data);\n }\n\n return this;\n },\n\n off: function (name, callback) {\n var e = this.e || (this.e = {});\n var evts = e[name];\n var liveEvents = [];\n\n if (evts && callback) {\n for (var i = 0, len = evts.length; i < len; i++) {\n if (evts[i].fn !== callback && evts[i].fn._ !== callback)\n liveEvents.push(evts[i]);\n }\n }\n\n // Remove event from queue to prevent memory leak\n // Suggested by https://github.com/lazd\n // Ref: https://github.com/scottcorgan/tiny-emitter/commit/c6ebfaa9bc973b33d110a84a307742b7cf94c953#commitcomment-5024910\n\n (liveEvents.length)\n ? e[name] = liveEvents\n : delete e[name];\n\n return this;\n }\n};\n\nmodule.exports = E;\nmodule.exports.TinyEmitter = E;\n\n\n/***/ })\n\n/******/ \t});\n/************************************************************************/\n/******/ \t// The module cache\n/******/ \tvar __webpack_module_cache__ = {};\n/******/ \t\n/******/ \t// The require function\n/******/ \tfunction __webpack_require__(moduleId) {\n/******/ \t\t// Check if module is in cache\n/******/ \t\tif(__webpack_module_cache__[moduleId]) {\n/******/ \t\t\treturn __webpack_module_cache__[moduleId].exports;\n/******/ \t\t}\n/******/ \t\t// Create a new module (and put it into the cache)\n/******/ \t\tvar module = __webpack_module_cache__[moduleId] = {\n/******/ \t\t\t// no module.id needed\n/******/ \t\t\t// no module.loaded needed\n/******/ \t\t\texports: {}\n/******/ \t\t};\n/******/ \t\n/******/ \t\t// Execute the module function\n/******/ \t\t__webpack_modules__[moduleId](module, module.exports, __webpack_require__);\n/******/ \t\n/******/ \t\t// Return the exports of the module\n/******/ \t\treturn module.exports;\n/******/ \t}\n/******/ \t\n/************************************************************************/\n/******/ \t/* webpack/runtime/compat get default export */\n/******/ \t!function() {\n/******/ \t\t// getDefaultExport function for compatibility with non-harmony modules\n/******/ \t\t__webpack_require__.n = function(module) {\n/******/ \t\t\tvar getter = module && module.__esModule ?\n/******/ \t\t\t\tfunction() { return module['default']; } :\n/******/ \t\t\t\tfunction() { return module; };\n/******/ \t\t\t__webpack_require__.d(getter, { a: getter });\n/******/ \t\t\treturn getter;\n/******/ \t\t};\n/******/ \t}();\n/******/ \t\n/******/ \t/* webpack/runtime/define property getters */\n/******/ \t!function() {\n/******/ \t\t// define getter functions for harmony exports\n/******/ \t\t__webpack_require__.d = function(exports, definition) {\n/******/ \t\t\tfor(var key in definition) {\n/******/ \t\t\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n/******/ \t\t\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n/******/ \t\t\t\t}\n/******/ \t\t\t}\n/******/ \t\t};\n/******/ \t}();\n/******/ \t\n/******/ \t/* webpack/runtime/hasOwnProperty shorthand */\n/******/ \t!function() {\n/******/ \t\t__webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }\n/******/ \t}();\n/******/ \t\n/************************************************************************/\n/******/ \t// module exports must be returned from runtime so entry inlining is disabled\n/******/ \t// startup\n/******/ \t// Load entry module and return exports\n/******/ \treturn __webpack_require__(134);\n/******/ })()\n.default;\n});", "/*!\n * escape-html\n\n * Copyright(c) 2015 Andreas Lubbe\n * Copyright(c) 2015 Tiancheng \"Timothy\" Gu\n * MIT Licensed\n */\n\n'use strict';\n\n/**\n * Module variables.\n * @private\n */\n\nvar matchHtmlRegExp = /[\"'&<>]/;\n\n/**\n * Module exports.\n * @public\n */\n\nmodule.exports = escapeHtml;\n\n/**\n * Escape special characters in the given string of html.\n *\n * @param {string} string The string to escape for inserting into HTML\n * @return {string}\n * @public\n */\n\nfunction escapeHtml(string) {\n var str = '' + string;\n var match = matchHtmlRegExp.exec(str);\n\n if (!match) {\n return str;\n }\n\n var escape;\n var html = '';\n var index = 0;\n var lastIndex = 0;\n\n for (index = match.index; index < str.length; index++) {\n switch (str.charCodeAt(index)) {\n case 34: // \"\n escape = '"';\n break;\n case 38: // &\n escape = '&';\n break;\n case 39: // '\n escape = ''';\n break;\n case 60: // <\n escape = '<';\n break;\n case 62: // >\n escape = '>';\n break;\n default:\n continue;\n }\n\n if (lastIndex !== index) {\n html += str.substring(lastIndex, index);\n }\n\n lastIndex = index + 1;\n html += escape;\n }\n\n return lastIndex !== index\n ? html + str.substring(lastIndex, index)\n : html;\n}\n", "/*\n \n */\n\nimport \"focus-visible\"\nimport { NEVER, Subject, defer, merge } from \"rxjs\"\nimport {\n delay,\n filter,\n map,\n mergeWith,\n shareReplay,\n switchMap\n} from \"rxjs/operators\"\n\nimport { configuration, feature } from \"./_\"\nimport {\n at,\n getElement,\n requestJSON,\n setToggle,\n watchDocument,\n watchKeyboard,\n watchLocation,\n watchLocationTarget,\n watchMedia,\n watchPrint,\n watchViewport\n} from \"./browser\"\nimport {\n getComponentElement,\n getComponentElements,\n mountBackToTop,\n mountContent,\n mountDialog,\n mountHeader,\n mountHeaderTitle,\n mountPalette,\n mountSearch,\n mountSidebar,\n mountSource,\n mountTableOfContents,\n mountTabs,\n watchHeader,\n watchMain\n} from \"./components\"\nimport {\n SearchIndex,\n setupClipboardJS,\n setupInstantLoading,\n setupVersionSelector\n} from \"./integrations\"\nimport {\n patchIndeterminate,\n patchScrollfix,\n patchScrolllock\n} from \"./patches\"\n\n/* ----------------------------------------------------------------------------\n * Application\n * ------------------------------------------------------------------------- */\n\n/* Yay, JavaScript is available */\ndocument.documentElement.classList.remove(\"no-js\")\ndocument.documentElement.classList.add(\"js\")\n\n/* Set up navigation observables and subjects */\nconst document$ = watchDocument()\nconst location$ = watchLocation()\nconst target$ = watchLocationTarget()\nconst keyboard$ = watchKeyboard()\n\n/* Set up media observables */\nconst viewport$ = watchViewport()\nconst tablet$ = watchMedia(\"(min-width: 960px)\")\nconst screen$ = watchMedia(\"(min-width: 1220px)\")\nconst print$ = watchPrint()\n\n/* Retrieve search index, if search is enabled */\nconst config = configuration()\nconst index$ = document.forms.namedItem(\"search\")\n ? __search?.index || requestJSON(\n `${config.base}/search/search_index.json`\n )\n : NEVER\n\n/* Set up Clipboard.js integration */\nconst alert$ = new Subject()\nsetupClipboardJS({ alert$ })\n\n/* Set up instant loading, if enabled */\nif (feature(\"navigation.instant\"))\n setupInstantLoading({ document$, location$, viewport$ })\n\n/* Set up version selector */\nif (config.version?.provider === \"mike\")\n setupVersionSelector()\n\n/* Always close drawer and search on navigation */\nmerge(location$, target$)\n .pipe(\n delay(125)\n )\n .subscribe(() => {\n setToggle(\"drawer\", false)\n setToggle(\"search\", false)\n })\n\n/* Set up global keyboard handlers */\nkeyboard$\n .pipe(\n filter(({ mode }) => mode === \"global\")\n )\n .subscribe(key => {\n switch (key.type) {\n\n /* Go to previous page */\n case \"p\":\n case \",\":\n const prev = getElement(\"[href][rel=prev]\")\n if (typeof prev !== \"undefined\")\n prev.click()\n break\n\n /* Go to next page */\n case \"n\":\n case \".\":\n const next = getElement(\"[href][rel=next]\")\n if (typeof next !== \"undefined\")\n next.click()\n break\n }\n })\n\n/* Set up patches */\npatchIndeterminate({ document$, tablet$ })\npatchScrollfix({ document$ })\npatchScrolllock({ viewport$, tablet$ })\n\n/* Set up header and main area observable */\nconst header$ = watchHeader(getComponentElement(\"header\"), { viewport$ })\nconst main$ = document$\n .pipe(\n map(() => getComponentElement(\"main\")),\n switchMap(el => watchMain(el, { viewport$, header$ })),\n shareReplay(1)\n )\n\n/* Set up control component observables */\nconst control$ = merge(\n\n /* Dialog */\n ...getComponentElements(\"dialog\")\n .map(el => mountDialog(el, { alert$ })),\n\n /* Header */\n ...getComponentElements(\"header\")\n .map(el => mountHeader(el, { viewport$, header$, main$ })),\n\n /* Color palette */\n ...getComponentElements(\"palette\")\n .map(el => mountPalette(el)),\n\n /* Search */\n ...getComponentElements(\"search\")\n .map(el => mountSearch(el, { index$, keyboard$ })),\n\n /* Repository information */\n ...getComponentElements(\"source\")\n .map(el => mountSource(el))\n)\n\n/* Set up content component observables */\nconst content$ = defer(() => merge(\n\n /* Content */\n ...getComponentElements(\"content\")\n .map(el => mountContent(el, { target$, viewport$, print$ })),\n\n /* Header title */\n ...getComponentElements(\"header-title\")\n .map(el => mountHeaderTitle(el, { viewport$, header$ })),\n\n /* Sidebar */\n ...getComponentElements(\"sidebar\")\n .map(el => el.getAttribute(\"data-md-type\") === \"navigation\"\n ? at(screen$, () => mountSidebar(el, { viewport$, header$, main$ }))\n : at(tablet$, () => mountSidebar(el, { viewport$, header$, main$ }))\n ),\n\n /* Navigation tabs */\n ...getComponentElements(\"tabs\")\n .map(el => mountTabs(el, { viewport$, header$ })),\n\n /* Table of contents */\n ...getComponentElements(\"toc\")\n .map(el => mountTableOfContents(el, { viewport$, header$ })),\n\n /* Back-to-top button */\n ...getComponentElements(\"top\")\n .map(el => mountBackToTop(el, { viewport$, header$, main$ }))\n))\n\n/* Set up component observables */\nconst component$ = document$\n .pipe(\n switchMap(() => content$),\n mergeWith(control$),\n shareReplay(1)\n )\n\n/* Subscribe to all components */\ncomponent$.subscribe()\n\n/* ----------------------------------------------------------------------------\n * Exports\n * ------------------------------------------------------------------------- */\n\nwindow.document$ = document$ /* Document observable */\nwindow.location$ = location$ /* Location subject */\nwindow.target$ = target$ /* Location target observable */\nwindow.keyboard$ = keyboard$ /* Keyboard observable */\nwindow.viewport$ = viewport$ /* Viewport observable */\nwindow.tablet$ = tablet$ /* Tablet observable */\nwindow.screen$ = screen$ /* Screen observable */\nwindow.print$ = print$ /* Print mode observable */\nwindow.alert$ = alert$ /* Alert subject */\nwindow.component$ = component$ /* Component observable */\n", "import tslib from '../tslib.js';\r\nconst {\r\n __extends,\r\n __assign,\r\n __rest,\r\n __decorate,\r\n __param,\r\n __metadata,\r\n __awaiter,\r\n __generator,\r\n __exportStar,\r\n __createBinding,\r\n __values,\r\n __read,\r\n __spread,\r\n __spreadArrays,\r\n __spreadArray,\r\n __await,\r\n __asyncGenerator,\r\n __asyncDelegator,\r\n __asyncValues,\r\n __makeTemplateObject,\r\n __importStar,\r\n __importDefault,\r\n __classPrivateFieldGet,\r\n __classPrivateFieldSet,\r\n} = tslib;\r\nexport {\r\n __extends,\r\n __assign,\r\n __rest,\r\n __decorate,\r\n __param,\r\n __metadata,\r\n __awaiter,\r\n __generator,\r\n __exportStar,\r\n __createBinding,\r\n __values,\r\n __read,\r\n __spread,\r\n __spreadArrays,\r\n __spreadArray,\r\n __await,\r\n __asyncGenerator,\r\n __asyncDelegator,\r\n __asyncValues,\r\n __makeTemplateObject,\r\n __importStar,\r\n __importDefault,\r\n __classPrivateFieldGet,\r\n __classPrivateFieldSet,\r\n};\r\n", null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, null, "/*\n \n */\n\nimport { ReplaySubject, Subject, fromEvent } from \"rxjs\"\nimport { mapTo } from \"rxjs/operators\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch document\n *\n * Documents are implemented as subjects, so all downstream observables are\n * automatically updated when a new document is emitted.\n *\n * @returns Document subject\n */\nexport function watchDocument(): Subject {\n const document$ = new ReplaySubject()\n fromEvent(document, \"DOMContentLoaded\")\n .pipe(\n mapTo(document)\n )\n .subscribe(document$)\n\n /* Return document */\n return document$\n}\n", "/*\n \n */\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve an element matching the query selector\n *\n * @template T - Element type\n *\n * @param selector - Query selector\n * @param node - Node of reference\n *\n * @returns Element or nothing\n */\nexport function getElement(\n selector: T, node?: ParentNode\n): HTMLElementTagNameMap[T]\n\nexport function getElement(\n selector: string, node?: ParentNode\n): T | undefined\n\nexport function getElement(\n selector: string, node: ParentNode = document\n): T | undefined {\n return node.querySelector(selector) || undefined\n}\n\n/**\n * Retrieve an element matching a query selector or throw a reference error\n *\n * @template T - Element type\n *\n * @param selector - Query selector\n * @param node - Node of reference\n *\n * @returns Element\n */\nexport function getElementOrThrow(\n selector: T, node?: ParentNode\n): HTMLElementTagNameMap[T]\n\nexport function getElementOrThrow(\n selector: string, node?: ParentNode\n): T\n\nexport function getElementOrThrow(\n selector: string, node: ParentNode = document\n): T {\n const el = getElement(selector, node)\n if (typeof el === \"undefined\")\n throw new ReferenceError(\n `Missing element: expected \"${selector}\" to be present`\n )\n return el\n}\n\n/**\n * Retrieve the currently active element\n *\n * @returns Element or nothing\n */\nexport function getActiveElement(): HTMLElement | undefined {\n return document.activeElement instanceof HTMLElement\n ? document.activeElement\n : undefined\n}\n\n/**\n * Retrieve all elements matching the query selector\n *\n * @template T - Element type\n *\n * @param selector - Query selector\n * @param node - Node of reference\n *\n * @returns Elements\n */\nexport function getElements(\n selector: T, node?: ParentNode\n): HTMLElementTagNameMap[T][]\n\nexport function getElements(\n selector: string, node?: ParentNode\n): T[]\n\nexport function getElements(\n selector: string, node: ParentNode = document\n): T[] {\n return Array.from(node.querySelectorAll(selector))\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Create an element\n *\n * @template T - Tag name type\n *\n * @param tagName - Tag name\n *\n * @returns Element\n */\nexport function createElement(\n tagName: T\n): HTMLElementTagNameMap[T] {\n return document.createElement(tagName)\n}\n\n/**\n * Replace an element with the given list of nodes\n *\n * @param el - Element\n * @param nodes - Replacement nodes\n */\nexport function replaceElement(\n el: HTMLElement, ...nodes: Node[]\n): void {\n el.replaceWith(...nodes)\n}\n", "/*\n \n */\n\nimport { Observable, fromEvent, merge } from \"rxjs\"\nimport { map, startWith } from \"rxjs/operators\"\n\nimport { getActiveElement } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set element focus\n *\n * @param el - Element\n * @param value - Whether the element should be focused\n */\nexport function setElementFocus(\n el: HTMLElement, value = true\n): void {\n if (value)\n el.focus()\n else\n el.blur()\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch element focus\n *\n * @param el - Element\n *\n * @returns Element focus observable\n */\nexport function watchElementFocus(\n el: HTMLElement\n): Observable {\n return merge(\n fromEvent(el, \"focus\"),\n fromEvent(el, \"blur\")\n )\n .pipe(\n map(({ type }) => type === \"focus\"),\n startWith(el === getActiveElement())\n )\n}\n", "/*\n \n */\n\nimport {\n NEVER,\n Observable,\n Subject,\n defer,\n of\n} from \"rxjs\"\nimport {\n filter,\n finalize,\n map,\n shareReplay,\n startWith,\n switchMap,\n tap\n} from \"rxjs/operators\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Element offset\n */\nexport interface ElementSize {\n width: number /* Element width */\n height: number /* Element height */\n}\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Resize observer entry subject\n */\nconst entry$ = new Subject()\n\n/**\n * Resize observer observable\n *\n * This observable will create a `ResizeObserver` on the first subscription\n * and will automatically terminate it when there are no more subscribers.\n * It's quite important to centralize observation in a single `ResizeObserver`,\n * as the performance difference can be quite dramatic, as the link shows.\n *\n * @see https://bit.ly/3iIYfEm - Google Groups on performance\n */\nconst observer$ = defer(() => of(\n new ResizeObserver(entries => {\n for (const entry of entries)\n entry$.next(entry)\n })\n))\n .pipe(\n switchMap(resize => NEVER.pipe(startWith(resize))\n .pipe(\n finalize(() => resize.disconnect())\n )\n ),\n shareReplay(1)\n )\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve element size\n *\n * @param el - Element\n *\n * @returns Element size\n */\nexport function getElementSize(el: HTMLElement): ElementSize {\n return {\n width: el.offsetWidth,\n height: el.offsetHeight\n }\n}\n\n/**\n * Retrieve element content size, i.e. including overflowing content\n *\n * @param el - Element\n *\n * @returns Element size\n */\nexport function getElementContentSize(el: HTMLElement): ElementSize {\n return {\n width: el.scrollWidth,\n height: el.scrollHeight\n }\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch element size\n *\n * This function returns an observable that subscribes to a single internal\n * instance of `ResizeObserver` upon subscription, and emit resize events until\n * termination. Note that this function should not be called with the same\n * element twice, as the first unsubscription will terminate observation.\n *\n * Sadly, we can't use the `DOMRect` objects returned by the observer, because\n * we need the emitted values to be consistent with `getElementSize`, which will\n * return the used values (rounded) and not actual values (unrounded). Thus, we\n * use the `offset*` properties. See the linked GitHub issue.\n *\n * @see https://bit.ly/3m0k3he - GitHub issue\n *\n * @param el - Element\n *\n * @returns Element size observable\n */\nexport function watchElementSize(\n el: HTMLElement\n): Observable {\n return observer$\n .pipe(\n tap(observer => observer.observe(el)),\n switchMap(observer => entry$\n .pipe(\n filter(({ target }) => target === el),\n finalize(() => observer.unobserve(el)),\n map(() => getElementSize(el))\n )\n ),\n startWith(getElementSize(el))\n )\n}\n", "/*\n \n */\n\nimport { Observable, fromEvent, merge } from \"rxjs\"\nimport {\n distinctUntilChanged,\n map,\n startWith\n} from \"rxjs/operators\"\n\nimport {\n getElementContentSize,\n getElementSize\n} from \"../size\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Element offset\n */\nexport interface ElementOffset {\n x: number /* Horizontal offset */\n y: number /* Vertical offset */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve element offset\n *\n * @param el - Element\n *\n * @returns Element offset\n */\nexport function getElementOffset(el: HTMLElement): ElementOffset {\n return {\n x: el.scrollLeft,\n y: el.scrollTop\n }\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch element offset\n *\n * @param el - Element\n *\n * @returns Element offset observable\n */\nexport function watchElementOffset(\n el: HTMLElement\n): Observable {\n return merge(\n fromEvent(el, \"scroll\"),\n fromEvent(window, \"resize\")\n )\n .pipe(\n map(() => getElementOffset(el)),\n startWith(getElementOffset(el))\n )\n}\n\n/**\n * Watch element threshold\n *\n * This function returns an observable which emits whether the bottom scroll\n * offset of an elements is within a certain threshold.\n *\n * @param el - Element\n * @param threshold - Threshold\n *\n * @returns Element threshold observable\n */\nexport function watchElementThreshold(\n el: HTMLElement, threshold = 16\n): Observable {\n return watchElementOffset(el)\n .pipe(\n map(({ y }) => {\n const visible = getElementSize(el)\n const content = getElementContentSize(el)\n return y >= (\n content.height - visible.height - threshold\n )\n }),\n distinctUntilChanged()\n )\n}\n", "/*\n \n */\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set element text selection\n *\n * @param el - Element\n */\nexport function setElementSelection(\n el: HTMLElement\n): void {\n if (el instanceof HTMLInputElement)\n el.select()\n else\n throw new Error(\"Not implemented\")\n}\n", "/*\n \n */\n\nimport { Observable, fromEvent } from \"rxjs\"\nimport { map, startWith } from \"rxjs/operators\"\n\nimport { getElementOrThrow } from \"../element\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Toggle\n */\nexport type Toggle =\n | \"drawer\" /* Toggle for drawer */\n | \"search\" /* Toggle for search */\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Toggle map\n */\nconst toggles: Record = {\n drawer: getElementOrThrow(\"[data-md-toggle=drawer]\"),\n search: getElementOrThrow(\"[data-md-toggle=search]\")\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve the value of a toggle\n *\n * @param name - Toggle\n *\n * @returns Toggle value\n */\nexport function getToggle(name: Toggle): boolean {\n return toggles[name].checked\n}\n\n/**\n * Set toggle\n *\n * Simulating a click event seems to be the most cross-browser compatible way\n * of changing the value while also emitting a `change` event. Before, Material\n * used `CustomEvent` to programmatically change the value of a toggle, but this\n * is a much simpler and cleaner solution which doesn't require a polyfill.\n *\n * @param name - Toggle\n * @param value - Toggle value\n */\nexport function setToggle(name: Toggle, value: boolean): void {\n if (toggles[name].checked !== value)\n toggles[name].click()\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch toggle\n *\n * @param name - Toggle\n *\n * @returns Toggle value observable\n */\nexport function watchToggle(name: Toggle): Observable {\n const el = toggles[name]\n return fromEvent(el, \"change\")\n .pipe(\n map(() => el.checked),\n startWith(el.checked)\n )\n}\n", "/*\n \n */\n\nimport { Observable, fromEvent } from \"rxjs\"\nimport { filter, map, share } from \"rxjs/operators\"\n\nimport { getActiveElement } from \"../element\"\nimport { getToggle } from \"../toggle\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Keyboard mode\n */\nexport type KeyboardMode =\n | \"global\" /* Global */\n | \"search\" /* Search is open */\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Keyboard\n */\nexport interface Keyboard {\n mode: KeyboardMode /* Keyboard mode */\n type: string /* Key type */\n claim(): void /* Key claim */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Check whether an element may receive keyboard input\n *\n * @param el - Element\n *\n * @returns Test result\n */\nfunction isSusceptibleToKeyboard(el: HTMLElement): boolean {\n switch (el.tagName) {\n\n /* Form elements */\n case \"INPUT\":\n case \"SELECT\":\n case \"TEXTAREA\":\n return true\n\n /* Everything else */\n default:\n return el.isContentEditable\n }\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch keyboard\n *\n * @returns Keyboard observable\n */\nexport function watchKeyboard(): Observable {\n return fromEvent(window, \"keydown\")\n .pipe(\n filter(ev => !(ev.metaKey || ev.ctrlKey)),\n map(ev => ({\n mode: getToggle(\"search\") ? \"search\" : \"global\",\n type: ev.key,\n claim() {\n ev.preventDefault()\n ev.stopPropagation()\n }\n } as Keyboard)),\n filter(({ mode }) => {\n if (mode === \"global\") {\n const active = getActiveElement()\n if (typeof active !== \"undefined\")\n return !isSusceptibleToKeyboard(active)\n }\n return true\n }),\n share()\n )\n}\n", "/*\n \n */\n\nimport { Subject } from \"rxjs\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve location\n *\n * This function returns a `URL` object (and not `Location`) to normalize the\n * typings across the application. Furthermore, locations need to be tracked\n * without setting them and `Location` is a singleton which represents the\n * current location.\n *\n * @returns URL\n */\nexport function getLocation(): URL {\n return new URL(location.href)\n}\n\n/**\n * Set location\n *\n * @param url - URL to change to\n */\nexport function setLocation(url: URL): void {\n location.href = url.href\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch location\n *\n * @returns Location subject\n */\nexport function watchLocation(): Subject {\n return new Subject()\n}\n", "/*\n \n */\n\nimport { Observable, fromEvent, of } from \"rxjs\"\nimport { filter, map, share, startWith, switchMap } from \"rxjs/operators\"\n\nimport { createElement, getElement } from \"~/browser\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve location hash\n *\n * @returns Location hash\n */\nexport function getLocationHash(): string {\n return location.hash.substring(1)\n}\n\n/**\n * Set location hash\n *\n * Setting a new fragment identifier via `location.hash` will have no effect\n * if the value doesn't change. When a new fragment identifier is set, we want\n * the browser to target the respective element at all times, which is why we\n * use this dirty little trick.\n *\n * @param hash - Location hash\n */\nexport function setLocationHash(hash: string): void {\n const el = createElement(\"a\")\n el.href = hash\n el.addEventListener(\"click\", ev => ev.stopPropagation())\n el.click()\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch location hash\n *\n * @returns Location hash observable\n */\nexport function watchLocationHash(): Observable {\n return fromEvent(window, \"hashchange\")\n .pipe(\n map(getLocationHash),\n startWith(getLocationHash()),\n filter(hash => hash.length > 0),\n share()\n )\n}\n\n/**\n * Watch location target\n *\n * @returns Location target observable\n */\nexport function watchLocationTarget(): Observable {\n return watchLocationHash()\n .pipe(\n switchMap(id => of(getElement(`[id=\"${id}\"]`)!))\n )\n}\n", "/*\n \n */\n\nimport {\n NEVER,\n Observable,\n fromEvent,\n fromEventPattern\n} from \"rxjs\"\nimport {\n mapTo,\n startWith,\n switchMap\n} from \"rxjs/operators\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch media query\n *\n * Note that although `MediaQueryList.addListener` is deprecated we have to\n * use it, because it's the only way to ensure proper downward compatibility.\n *\n * @see https://bit.ly/3dUBH2m - GitHub issue\n *\n * @param query - Media query\n *\n * @returns Media observable\n */\nexport function watchMedia(query: string): Observable {\n const media = matchMedia(query)\n return fromEventPattern(next => (\n media.addListener(() => next(media.matches))\n ))\n .pipe(\n startWith(media.matches)\n )\n}\n\n/**\n * Watch print mode, cross-browser\n *\n * @returns Print mode observable\n */\nexport function watchPrint(): Observable {\n return fromEvent(window, \"beforeprint\")\n .pipe(\n mapTo(undefined)\n )\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Toggle an observable with a media observable\n *\n * @template T - Data type\n *\n * @param query$ - Media observable\n * @param factory - Observable factory\n *\n * @returns Toggled observable\n */\nexport function at(\n query$: Observable, factory: () => Observable\n): Observable {\n return query$\n .pipe(\n switchMap(active => active ? factory() : NEVER)\n )\n}\n", "/*\n \n */\n\nimport { Observable, from } from \"rxjs\"\nimport {\n filter,\n map,\n shareReplay,\n switchMap\n} from \"rxjs/operators\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Fetch the given URL\n *\n * @param url - Request URL\n * @param options - Options\n *\n * @returns Response observable\n */\nexport function request(\n url: URL | string, options: RequestInit = { credentials: \"same-origin\" }\n): Observable {\n return from(fetch(`${url}`, options))\n .pipe(\n filter(res => res.status === 200),\n )\n}\n\n/**\n * Fetch JSON from the given URL\n *\n * @template T - Data type\n *\n * @param url - Request URL\n * @param options - Options\n *\n * @returns Data observable\n */\nexport function requestJSON(\n url: URL | string, options?: RequestInit\n): Observable {\n return request(url, options)\n .pipe(\n switchMap(res => res.json()),\n shareReplay(1)\n )\n}\n\n/**\n * Fetch XML from the given URL\n *\n * @param url - Request URL\n * @param options - Options\n *\n * @returns Data observable\n */\nexport function requestXML(\n url: URL | string, options?: RequestInit\n): Observable {\n const dom = new DOMParser()\n return request(url, options)\n .pipe(\n switchMap(res => res.text()),\n map(res => dom.parseFromString(res, \"text/xml\")),\n shareReplay(1)\n )\n}\n", "/*\n \n */\n\nimport { Observable, fromEvent, merge } from \"rxjs\"\nimport { map, startWith } from \"rxjs/operators\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Viewport offset\n */\nexport interface ViewportOffset {\n x: number /* Horizontal offset */\n y: number /* Vertical offset */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve viewport offset\n *\n * On iOS Safari, viewport offset can be negative due to overflow scrolling.\n * As this may induce strange behaviors downstream, we'll just limit it to 0.\n *\n * @returns Viewport offset\n */\nexport function getViewportOffset(): ViewportOffset {\n return {\n x: Math.max(0, pageXOffset),\n y: Math.max(0, pageYOffset)\n }\n}\n\n/**\n * Set viewport offset\n *\n * @param offset - Viewport offset\n */\nexport function setViewportOffset(\n { x, y }: Partial\n): void {\n window.scrollTo(x || 0, y || 0)\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch viewport offset\n *\n * @returns Viewport offset observable\n */\nexport function watchViewportOffset(): Observable {\n return merge(\n fromEvent(window, \"scroll\", { passive: true }),\n fromEvent(window, \"resize\", { passive: true })\n )\n .pipe(\n map(getViewportOffset),\n startWith(getViewportOffset())\n )\n}\n", "/*\n \n */\n\nimport { Observable, fromEvent } from \"rxjs\"\nimport { map, startWith } from \"rxjs/operators\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Viewport size\n */\nexport interface ViewportSize {\n width: number /* Viewport width */\n height: number /* Viewport height */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve viewport size\n *\n * @returns Viewport size\n */\nexport function getViewportSize(): ViewportSize {\n return {\n width: innerWidth,\n height: innerHeight\n }\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Watch viewport size\n *\n * @returns Viewport size observable\n */\nexport function watchViewportSize(): Observable {\n return fromEvent(window, \"resize\", { passive: true })\n .pipe(\n map(getViewportSize),\n startWith(getViewportSize())\n )\n}\n", "/*\n \n */\n\nimport { Observable, combineLatest } from \"rxjs\"\nimport {\n distinctUntilKeyChanged,\n map,\n shareReplay\n} from \"rxjs/operators\"\n\nimport { Header } from \"~/components\"\n\nimport {\n ViewportOffset,\n watchViewportOffset\n} from \"../offset\"\nimport {\n ViewportSize,\n watchViewportSize\n} from \"../size\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Viewport\n */\nexport interface Viewport {\n offset: ViewportOffset /* Viewport offset */\n size: ViewportSize /* Viewport size */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch at options\n */\ninterface WatchAtOptions {\n viewport$: Observable /* Viewport observable */\n header$: Observable
/* Header observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch viewport\n *\n * @returns Viewport observable\n */\nexport function watchViewport(): Observable {\n return combineLatest([\n watchViewportOffset(),\n watchViewportSize()\n ])\n .pipe(\n map(([offset, size]) => ({ offset, size })),\n shareReplay(1)\n )\n}\n\n/**\n * Watch viewport relative to element\n *\n * @param el - Element\n * @param options - Options\n *\n * @returns Viewport observable\n */\nexport function watchViewportAt(\n el: HTMLElement, { viewport$, header$ }: WatchAtOptions\n): Observable {\n const size$ = viewport$\n .pipe(\n distinctUntilKeyChanged(\"size\")\n )\n\n /* Compute element offset */\n const offset$ = combineLatest([size$, header$])\n .pipe(\n map((): ViewportOffset => ({\n x: el.offsetLeft,\n y: el.offsetTop\n }))\n )\n\n /* Compute relative viewport, return hot observable */\n return combineLatest([header$, viewport$, offset$])\n .pipe(\n map(([{ height }, { offset, size }, { x, y }]) => ({\n offset: {\n x: offset.x - x,\n y: offset.y - y + height\n },\n size\n }))\n )\n}\n", "/*\n \n */\n\nimport { Observable, Subject, fromEvent } from \"rxjs\"\nimport {\n map,\n share,\n switchMapTo,\n tap,\n throttle\n} from \"rxjs/operators\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Worker message\n */\nexport interface WorkerMessage {\n type: unknown /* Message type */\n data?: unknown /* Message data */\n}\n\n/**\n * Worker handler\n *\n * @template T - Message type\n */\nexport interface WorkerHandler<\n T extends WorkerMessage\n> {\n tx$: Subject /* Message transmission subject */\n rx$: Observable /* Message receive observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n *\n * @template T - Worker message type\n */\ninterface WatchOptions {\n tx$: Observable /* Message transmission observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch a web worker\n *\n * This function returns an observable that sends all values emitted by the\n * message observable to the web worker. Web worker communication is expected\n * to be bidirectional (request-response) and synchronous. Messages that are\n * emitted during a pending request are throttled, the last one is emitted.\n *\n * @param worker - Web worker\n * @param options - Options\n *\n * @returns Worker message observable\n */\nexport function watchWorker(\n worker: Worker, { tx$ }: WatchOptions\n): Observable {\n\n /* Intercept messages from worker-like objects */\n const rx$ = fromEvent(worker, \"message\")\n .pipe(\n map(({ data }) => data as T)\n )\n\n /* Send and receive messages, return hot observable */\n return tx$\n .pipe(\n throttle(() => rx$, { leading: true, trailing: true }),\n tap(message => worker.postMessage(message)),\n switchMapTo(rx$),\n share()\n )\n}\n", "/*\n \n */\n\nimport { getElementOrThrow, getLocation } from \"~/browser\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Feature flag\n */\nexport type Flag =\n | \"header.autohide\" /* Hide header */\n | \"navigation.expand\" /* Automatic expansion */\n | \"navigation.instant\" /* Instant loading */\n | \"navigation.sections\" /* Sections navigation */\n | \"navigation.tabs\" /* Tabs navigation */\n | \"navigation.top\" /* Back-to-top button */\n | \"toc.integrate\" /* Integrated table of contents */\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Translation\n */\nexport type Translation =\n | \"clipboard.copy\" /* Copy to clipboard */\n | \"clipboard.copied\" /* Copied to clipboard */\n | \"search.config.lang\" /* Search language */\n | \"search.config.pipeline\" /* Search pipeline */\n | \"search.config.separator\" /* Search separator */\n | \"search.placeholder\" /* Search */\n | \"search.result.placeholder\" /* Type to start searching */\n | \"search.result.none\" /* No matching documents */\n | \"search.result.one\" /* 1 matching document */\n | \"search.result.other\" /* # matching documents */\n | \"search.result.more.one\" /* 1 more on this page */\n | \"search.result.more.other\" /* # more on this page */\n | \"search.result.term.missing\" /* Missing */\n | \"select.version.title\" /* Version selector */\n\n/**\n * Translations\n */\nexport type Translations = Record\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Versioning\n */\nexport interface Versioning {\n provider: \"mike\" /* Version provider */\n}\n\n/**\n * Configuration\n */\nexport interface Config {\n base: string /* Base URL */\n features: Flag[] /* Feature flags */\n translations: Translations /* Translations */\n search: string /* Search worker URL */\n version?: Versioning /* Versioning */\n}\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve global configuration and make base URL absolute\n */\nconst script = getElementOrThrow(\"#__config\")\nconst config: Config = JSON.parse(script.textContent!)\nconfig.base = new URL(config.base, getLocation())\n .toString()\n .replace(/\\/$/, \"\")\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve global configuration\n *\n * @returns Global configuration\n */\nexport function configuration(): Config {\n return config\n}\n\n/**\n * Check whether a feature flag is enabled\n *\n * @param flag - Feature flag\n *\n * @returns Test result\n */\nexport function feature(flag: Flag): boolean {\n return config.features.includes(flag)\n}\n\n/**\n * Retrieve the translation for the given key\n *\n * @param key - Key to be translated\n * @param value - Positional value, if any\n *\n * @returns Translation\n */\nexport function translation(\n key: Translation, value?: string | number\n): string {\n return typeof value !== \"undefined\"\n ? config.translations[key].replace(\"#\", value.toString())\n : config.translations[key]\n}\n", "/*\n \n */\n\nimport { getElementOrThrow, getElements } from \"~/browser\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Component\n */\nexport type ComponentType =\n | \"announce\" /* Announcement bar */\n | \"container\" /* Container */\n | \"content\" /* Content */\n | \"dialog\" /* Dialog */\n | \"header\" /* Header */\n | \"header-title\" /* Header title */\n | \"header-topic\" /* Header topic */\n | \"main\" /* Main area */\n | \"palette\" /* Color palette */\n | \"search\" /* Search */\n | \"search-query\" /* Search input */\n | \"search-result\" /* Search results */\n | \"sidebar\" /* Sidebar */\n | \"skip\" /* Skip link */\n | \"source\" /* Repository information */\n | \"tabs\" /* Navigation tabs */\n | \"toc\" /* Table of contents */\n | \"top\" /* Back-to-top button */\n\n/**\n * A component\n *\n * @template T - Component type\n * @template U - Reference type\n */\nexport type Component<\n T extends {} = {},\n U extends HTMLElement = HTMLElement\n> =\n T & {\n ref: U /* Component reference */\n }\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Component type map\n */\ninterface ComponentTypeMap {\n \"announce\": HTMLElement /* Announcement bar */\n \"container\": HTMLElement /* Container */\n \"content\": HTMLElement /* Content */\n \"dialog\": HTMLElement /* Dialog */\n \"header\": HTMLElement /* Header */\n \"header-title\": HTMLElement /* Header title */\n \"header-topic\": HTMLElement /* Header topic */\n \"main\": HTMLElement /* Main area */\n \"palette\": HTMLElement /* Color palette */\n \"search\": HTMLElement /* Search */\n \"search-query\": HTMLInputElement /* Search input */\n \"search-result\": HTMLElement /* Search results */\n \"sidebar\": HTMLElement /* Sidebar */\n \"skip\": HTMLAnchorElement /* Skip link */\n \"source\": HTMLAnchorElement /* Repository information */\n \"tabs\": HTMLElement /* Navigation tabs */\n \"toc\": HTMLElement /* Table of contents */\n \"top\": HTMLAnchorElement /* Back-to-top button */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Retrieve the element for a given component or throw a reference error\n *\n * @template T - Component type\n *\n * @param type - Component type\n * @param node - Node of reference\n *\n * @returns Element\n */\nexport function getComponentElement(\n type: T, node: ParentNode = document\n): ComponentTypeMap[T] {\n return getElementOrThrow(`[data-md-component=${type}]`, node)\n}\n\n/**\n * Retrieve all elements for a given component\n *\n * @template T - Component type\n *\n * @param type - Component type\n * @param node - Node of reference\n *\n * @returns Elements\n */\nexport function getComponentElements(\n type: T, node: ParentNode = document\n): ComponentTypeMap[T][] {\n return getElements(`[data-md-component=${type}]`, node)\n}\n", "/*\n \n */\n\nimport ClipboardJS from \"clipboard\"\nimport {\n NEVER,\n Observable,\n Subject,\n fromEvent,\n merge,\n of\n} from \"rxjs\"\nimport {\n distinctUntilKeyChanged,\n finalize,\n map,\n switchMap,\n tap,\n withLatestFrom\n} from \"rxjs/operators\"\n\nimport { resetFocusable, setFocusable } from \"~/actions\"\nimport {\n Viewport,\n getElementContentSize,\n getElementSize,\n getElements,\n watchMedia\n} from \"~/browser\"\nimport { renderClipboardButton } from \"~/templates\"\n\nimport { Component } from \"../../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Code block\n */\nexport interface CodeBlock {\n scroll: boolean /* Code block overflows */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n viewport$: Observable /* Viewport observable */\n}\n\n/**\n * Mount options\n */\ninterface MountOptions {\n viewport$: Observable /* Viewport observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Global index for Clipboard.js integration\n */\nlet index = 0\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch code block\n *\n * This function monitors size changes of the viewport, as well as switches of\n * content tabs with embedded code blocks, as both may trigger overflow.\n *\n * @param el - Code block element\n * @param options - Options\n *\n * @returns Code block observable\n */\nexport function watchCodeBlock(\n el: HTMLElement, { viewport$ }: WatchOptions\n): Observable {\n const container$ = of(el)\n .pipe(\n switchMap(child => {\n const container = child.closest(\"[data-tabs]\")\n if (container instanceof HTMLElement) {\n return merge(\n ...getElements(\"input\", container)\n .map(input => fromEvent(input, \"change\"))\n )\n }\n return NEVER\n })\n )\n\n /* Check overflow on resize and tab change */\n return merge(\n viewport$.pipe(distinctUntilKeyChanged(\"size\")),\n container$\n )\n .pipe(\n map(() => {\n const visible = getElementSize(el)\n const content = getElementContentSize(el)\n return {\n scroll: content.width > visible.width\n }\n }),\n distinctUntilKeyChanged(\"scroll\")\n )\n}\n\n/**\n * Mount code block\n *\n * This function ensures that an overflowing code block is focusable through\n * keyboard, so it can be scrolled without a mouse to improve on accessibility.\n *\n * @param el - Code block element\n * @param options - Options\n *\n * @returns Code block component observable\n */\nexport function mountCodeBlock(\n el: HTMLElement, options: MountOptions\n): Observable> {\n const internal$ = new Subject()\n internal$\n .pipe(\n withLatestFrom(watchMedia(\"(hover)\"))\n )\n .subscribe(([{ scroll }, hover]) => {\n if (scroll && hover)\n setFocusable(el)\n else\n resetFocusable(el)\n })\n\n /* Render button for Clipboard.js integration */\n if (ClipboardJS.isSupported()) {\n const parent = el.closest(\"pre\")!\n parent.id = `__code_${index++}`\n parent.insertBefore(\n renderClipboardButton(parent.id),\n el\n )\n }\n\n /* Create and return component */\n return watchCodeBlock(el, options)\n .pipe(\n tap(internal$),\n finalize(() => internal$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n}\n", "/*\n \n */\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set focusable property\n *\n * @param el - Element\n * @param value - Tabindex value\n */\nexport function setFocusable(\n el: HTMLElement, value = 0\n): void {\n el.setAttribute(\"tabindex\", value.toString())\n}\n\n/**\n * Reset focusable property\n *\n * @param el - Element\n */\nexport function resetFocusable(\n el: HTMLElement\n): void {\n el.removeAttribute(\"tabindex\")\n}\n\n/**\n * Set scroll lock\n *\n * @param el - Scrollable element\n * @param value - Vertical offset\n */\nexport function setScrollLock(\n el: HTMLElement, value: number\n): void {\n el.setAttribute(\"data-md-state\", \"lock\")\n el.style.top = `-${value}px`\n}\n\n/**\n * Reset scroll lock\n *\n * @param el - Scrollable element\n */\nexport function resetScrollLock(\n el: HTMLElement\n): void {\n const value = -1 * parseInt(el.style.top, 10)\n el.removeAttribute(\"data-md-state\")\n el.style.top = \"\"\n if (value)\n window.scrollTo(0, value)\n}\n", "/*\n \n */\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set anchor state\n *\n * @param el - Anchor element\n * @param state - Anchor state\n */\nexport function setAnchorState(\n el: HTMLElement, state: \"blur\"\n): void {\n el.setAttribute(\"data-md-state\", state)\n}\n\n/**\n * Reset anchor state\n *\n * @param el - Anchor element\n */\nexport function resetAnchorState(\n el: HTMLElement\n): void {\n el.removeAttribute(\"data-md-state\")\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Set anchor active\n *\n * @param el - Anchor element\n * @param value - Whether the anchor is active\n */\nexport function setAnchorActive(\n el: HTMLElement, value: boolean\n): void {\n el.classList.toggle(\"md-nav__link--active\", value)\n}\n\n/**\n * Reset anchor active\n *\n * @param el - Anchor element\n */\nexport function resetAnchorActive(\n el: HTMLElement\n): void {\n el.classList.remove(\"md-nav__link--active\")\n}\n", "/*\n \n */\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set dialog message\n *\n * @param el - Dialog element\n * @param value - Dialog message\n */\nexport function setDialogMessage(\n el: HTMLElement, value: string\n): void {\n el.firstElementChild!.innerHTML = value\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Set dialog state\n *\n * @param el - Dialog element\n * @param state - Dialog state\n */\nexport function setDialogState(\n el: HTMLElement, state: \"open\"\n): void {\n el.setAttribute(\"data-md-state\", state)\n}\n\n/**\n * Reset dialog state\n *\n * @param el - Dialog element\n */\nexport function resetDialogState(\n el: HTMLElement\n): void {\n el.removeAttribute(\"data-md-state\")\n}\n", "/*\n \n */\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set header state\n *\n * @param el - Header element\n * @param state - Header state\n */\nexport function setHeaderState(\n el: HTMLElement, state: \"shadow\" | \"hidden\"\n): void {\n el.setAttribute(\"data-md-state\", state)\n}\n\n/**\n * Reset header state\n *\n * @param el - Header element\n */\nexport function resetHeaderState(\n el: HTMLElement\n): void {\n el.removeAttribute(\"data-md-state\")\n}\n", "/*\n \n */\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set header title state\n *\n * @param el - Header title element\n * @param state - Header title state\n */\nexport function setHeaderTitleState(\n el: HTMLElement, state: \"active\"\n): void {\n el.setAttribute(\"data-md-state\", state)\n}\n\n/**\n * Reset header title state\n *\n * @param el - Header title element\n */\nexport function resetHeaderTitleState(\n el: HTMLElement\n): void {\n el.removeAttribute(\"data-md-state\")\n}\n", "/*\n \n */\n\nimport { translation } from \"~/_\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set search query placeholder\n *\n * @param el - Search query element\n * @param value - Placeholder\n */\nexport function setSearchQueryPlaceholder(\n el: HTMLInputElement, value: string\n): void {\n el.placeholder = value\n}\n\n/**\n * Reset search query placeholder\n *\n * @param el - Search query element\n */\nexport function resetSearchQueryPlaceholder(\n el: HTMLInputElement\n): void {\n el.placeholder = translation(\"search.placeholder\")\n}\n", "/*\n \n */\n\nimport { JSX as JSXInternal } from \"preact\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * HTML attributes\n */\ntype Attributes =\n & JSXInternal.HTMLAttributes\n & JSXInternal.SVGAttributes\n & Record\n\n/**\n * Child element\n */\ntype Child =\n | HTMLElement\n | Text\n | string\n | number\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Append a child node to an element\n *\n * @param el - Element\n * @param child - Child node(s)\n */\nfunction appendChild(el: HTMLElement, child: Child | Child[]): void {\n\n /* Handle primitive types (including raw HTML) */\n if (typeof child === \"string\" || typeof child === \"number\") {\n el.innerHTML += child.toString()\n\n /* Handle nodes */\n } else if (child instanceof Node) {\n el.appendChild(child)\n\n /* Handle nested children */\n } else if (Array.isArray(child)) {\n for (const node of child)\n appendChild(el, node)\n }\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * JSX factory\n *\n * @param tag - HTML tag\n * @param attributes - HTML attributes\n * @param children - Child elements\n *\n * @returns Element\n */\nexport function h(\n tag: string, attributes: Attributes | null, ...children: Child[]\n): HTMLElement {\n const el = document.createElement(tag)\n\n /* Set attributes, if any */\n if (attributes)\n for (const attr of Object.keys(attributes))\n if (typeof attributes[attr] !== \"boolean\")\n el.setAttribute(attr, attributes[attr])\n else if (attributes[attr])\n el.setAttribute(attr, \"\")\n\n /* Append child nodes */\n for (const child of children)\n appendChild(el, child)\n\n /* Return element */\n return el\n}\n\n/* ----------------------------------------------------------------------------\n * Namespace\n * ------------------------------------------------------------------------- */\n\nexport declare namespace h {\n namespace JSX {\n type Element = HTMLElement\n type IntrinsicElements = JSXInternal.IntrinsicElements\n }\n}\n", "/*\n \n */\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Truncate a string after the given number of characters\n *\n * This is not a very reasonable approach, since the summaries kind of suck.\n * It would be better to create something more intelligent, highlighting the\n * search occurrences and making a better summary out of it, but this note was\n * written three years ago, so who knows if we'll ever fix it.\n *\n * @param value - Value to be truncated\n * @param n - Number of characters\n *\n * @returns Truncated value\n */\nexport function truncate(value: string, n: number): string {\n let i = n\n if (value.length > i) {\n while (value[i] !== \" \" && --i > 0) { /* keep eating */ }\n return `${value.substring(0, i)}...`\n }\n return value\n}\n\n/**\n * Round a number for display with repository facts\n *\n * This is a reverse-engineered version of GitHub's weird rounding algorithm\n * for stars, forks and all other numbers. While all numbers below `1,000` are\n * returned as-is, bigger numbers are converted to fixed numbers:\n *\n * - `1,049` => `1k`\n * - `1,050` => `1.1k`\n * - `1,949` => `1.9k`\n * - `1,950` => `2k`\n *\n * @param value - Original value\n *\n * @returns Rounded value\n */\nexport function round(value: number): string {\n if (value > 999) {\n const digits = +((value - 950) % 1000 > 99)\n return `${((value + 0.000001) / 1000).toFixed(digits)}k`\n } else {\n return value.toString()\n }\n}\n\n/**\n * Simple hash function\n *\n * @see https://bit.ly/2wsVjJ4 - Original source\n *\n * @param value - Value to be hashed\n *\n * @returns Hash as 32bit integer\n */\nexport function hash(value: string): number {\n let h = 0\n for (let i = 0, len = value.length; i < len; i++) {\n h = ((h << 5) - h) + value.charCodeAt(i)\n h |= 0 // Convert to 32bit integer\n }\n return h\n}\n", "/*\n \n */\n\nimport { translation } from \"~/_\"\nimport { round } from \"~/utilities\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set number of search results\n *\n * @param el - Search result metadata element\n * @param value - Number of results\n */\nexport function setSearchResultMeta(\n el: HTMLElement, value: number\n): void {\n switch (value) {\n\n /* No results */\n case 0:\n el.textContent = translation(\"search.result.none\")\n break\n\n /* One result */\n case 1:\n el.textContent = translation(\"search.result.one\")\n break\n\n /* Multiple result */\n default:\n el.textContent = translation(\"search.result.other\", round(value))\n }\n}\n\n/**\n * Reset number of search results\n *\n * @param el - Search result metadata element\n */\nexport function resetSearchResultMeta(\n el: HTMLElement\n): void {\n el.textContent = translation(\"search.result.placeholder\")\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Add an element to the search result list\n *\n * @param el - Search result list element\n * @param child - Search result element\n */\nexport function addToSearchResultList(\n el: HTMLElement, child: Element\n): void {\n el.appendChild(child)\n}\n\n/**\n * Reset search result list\n *\n * @param el - Search result list element\n */\nexport function resetSearchResultList(\n el: HTMLElement\n): void {\n el.innerHTML = \"\"\n}\n", "/*\n \n */\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set sidebar offset\n *\n * @param el - Sidebar element\n * @param value - Sidebar offset\n */\nexport function setSidebarOffset(\n el: HTMLElement, value: number\n): void {\n el.style.top = `${value}px`\n}\n\n/**\n * Reset sidebar offset\n *\n * @param el - Sidebar element\n */\nexport function resetSidebarOffset(\n el: HTMLElement\n): void {\n el.style.top = \"\"\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Set sidebar height\n *\n * This function doesn't set the height of the actual sidebar, but of its first\n * child \u2013 the `.md-sidebar__scrollwrap` element in order to mitigiate jittery\n * sidebars when the footer is scrolled into view. At some point we switched\n * from `absolute` / `fixed` positioning to `sticky` positioning, significantly\n * reducing jitter in some browsers (respectively Firefox and Safari) when\n * scrolling from the top. However, top-aligned sticky positioning means that\n * the sidebar snaps to the bottom when the end of the container is reached.\n * This is what leads to the mentioned jitter, as the sidebar's height may be\n * updated too slowly.\n *\n * This behaviour can be mitigiated by setting the height of the sidebar to `0`\n * while preserving the padding, and the height on its first element.\n *\n * @param el - Sidebar element\n * @param value - Sidebar height\n */\nexport function setSidebarHeight(\n el: HTMLElement, value: number\n): void {\n const scrollwrap = el.firstElementChild as HTMLElement\n scrollwrap.style.height = `${value - 2 * scrollwrap.offsetTop}px`\n}\n\n/**\n * Reset sidebar height\n *\n * @param el - Sidebar element\n */\nexport function resetSidebarHeight(\n el: HTMLElement\n): void {\n const scrollwrap = el.firstElementChild as HTMLElement\n scrollwrap.style.height = \"\"\n}\n", "/*\n \n */\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set repository facts\n *\n * @param el - Repository element\n * @param child - Repository facts element\n */\nexport function setSourceFacts(\n el: HTMLElement, child: Element\n): void {\n el.lastElementChild!.appendChild(child)\n}\n\n/**\n * Set repository state\n *\n * @param el - Repository element\n * @param state - Repository state\n */\nexport function setSourceState(\n el: HTMLElement, state: \"done\"\n): void {\n el.lastElementChild!.setAttribute(\"data-md-state\", state)\n}\n", "/*\n \n */\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set tabs state\n *\n * @param el - Tabs element\n * @param state - Tabs state\n */\nexport function setTabsState(\n el: HTMLElement, state: \"hidden\"\n): void {\n el.setAttribute(\"data-md-state\", state)\n}\n\n/**\n * Reset tabs state\n *\n * @param el - Tabs element\n */\nexport function resetTabsState(\n el: HTMLElement\n): void {\n el.removeAttribute(\"data-md-state\")\n}\n", "/*\n \n */\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set back-to-top state\n *\n * @param el - Back-to-top element\n * @param state - Back-to-top state\n */\nexport function setBackToTopState(\n el: HTMLElement, state: \"hidden\"\n): void {\n el.setAttribute(\"data-md-state\", state)\n}\n\n/**\n * Reset back-to-top state\n *\n * @param el - Back-to-top element\n */\nexport function resetBackToTopState(\n el: HTMLElement\n): void {\n el.removeAttribute(\"data-md-state\")\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Set back-to-top offset\n *\n * @param el - Back-to-top element\n * @param value - Back-to-top offset\n */\nexport function setBackToTopOffset(\n el: HTMLElement, value: number\n): void {\n el.style.top = `${value}px`\n}\n\n/**\n * Reset back-to-top offset\n *\n * @param el - Back-to-top element\n */\nexport function resetBackToTopOffset(\n el: HTMLElement\n): void {\n el.style.top = \"\"\n}\n", "/*\n \n */\n\nimport { translation } from \"~/_\"\nimport { h } from \"~/utilities\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Render a 'copy-to-clipboard' button\n *\n * @param id - Unique identifier\n *\n * @returns Element\n */\nexport function renderClipboardButton(id: string): HTMLElement {\n return (\n code`}\n >\n )\n}\n", "/*\n \n */\n\nimport { translation } from \"~/_\"\nimport {\n SearchDocument,\n SearchMetadata,\n SearchResult\n} from \"~/integrations/search\"\nimport { h, truncate } from \"~/utilities\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Render flag\n */\nconst enum Flag {\n TEASER = 1, /* Render teaser */\n PARENT = 2 /* Render as parent */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper function\n * ------------------------------------------------------------------------- */\n\n/**\n * Render a search document\n *\n * @param document - Search document\n * @param flag - Render flags\n *\n * @returns Element\n */\nfunction renderSearchDocument(\n document: SearchDocument & SearchMetadata, flag: Flag\n): HTMLElement {\n const parent = flag & Flag.PARENT\n const teaser = flag & Flag.TEASER\n\n /* Render missing query terms */\n const missing = Object.keys(document.terms)\n .filter(key => !document.terms[key])\n .map(key => [{key}, \" \"])\n .flat()\n .slice(0, -1)\n\n /* Render article or section, depending on flags */\n const url = document.location\n return (\n \n \n {parent > 0 &&
}\n

{document.title}

\n {teaser > 0 && document.text.length > 0 &&\n

\n {truncate(document.text, 320)}\n

\n }\n {teaser > 0 && missing.length > 0 &&\n

\n {translation(\"search.result.term.missing\")}: {...missing}\n

\n }\n \n
\n )\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Render a search result\n *\n * @param result - Search result\n *\n * @returns Element\n */\nexport function renderSearchResult(\n result: SearchResult\n): HTMLElement {\n const threshold = result[0].score\n const docs = [...result]\n\n /* Find and extract parent article */\n const parent = docs.findIndex(doc => !doc.location.includes(\"#\"))\n const [article] = docs.splice(parent, 1)\n\n /* Determine last index above threshold */\n let index = docs.findIndex(doc => doc.score < threshold)\n if (index === -1)\n index = docs.length\n\n /* Partition sections */\n const best = docs.slice(0, index)\n const more = docs.slice(index)\n\n /* Render children */\n const children = [\n renderSearchDocument(article, Flag.PARENT | +(!parent && index === 0)),\n ...best.map(section => renderSearchDocument(section, Flag.TEASER)),\n ...more.length ? [\n
\n \n {more.length > 0 && more.length === 1\n ? translation(\"search.result.more.one\")\n : translation(\"search.result.more.other\", more.length)\n }\n \n {...more.map(section => renderSearchDocument(section, Flag.TEASER))}\n
\n ] : []\n ]\n\n /* Render search result */\n return (\n
  • \n {children}\n
  • \n )\n}\n", "/*\n \n */\n\nimport { SourceFacts } from \"~/components\"\nimport { h, round } from \"~/utilities\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Render repository facts\n *\n * @param facts - Repository facts\n *\n * @returns Element\n */\nexport function renderSourceFacts(facts: SourceFacts): HTMLElement {\n return (\n
      \n {Object.entries(facts).map(([key, value]) => (\n
    • \n {typeof value === \"number\" ? round(value) : value}\n
    • \n ))}\n
    \n )\n}\n", "/*\n \n */\n\nimport { h } from \"~/utilities\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Render a table inside a wrapper to improve scrolling on mobile\n *\n * @param table - Table element\n *\n * @returns Element\n */\nexport function renderTable(table: HTMLElement): HTMLElement {\n return (\n
    \n
    \n {table}\n
    \n
    \n )\n}\n", "/*\n \n */\n\nimport { configuration, translation } from \"~/_\"\nimport { h } from \"~/utilities\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Version\n */\nexport interface Version {\n version: string /* Version identifier */\n title: string /* Version title */\n aliases: string[] /* Version aliases */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Render a version\n *\n * @param version - Version\n *\n * @returns Element\n */\nfunction renderVersion(version: Version): HTMLElement {\n const config = configuration()\n\n /* Ensure trailing slash, see https://bit.ly/3rL5u3f */\n const url = new URL(`${version.version}/`, config.base)\n return (\n
  • \n \n {version.title}\n \n
  • \n )\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Render a version selector\n *\n * @param versions - Versions\n *\n * @returns Element\n */\nexport function renderVersionSelector(versions: Version[]): HTMLElement {\n const config = configuration()\n\n /* Determine active version */\n const [, current] = config.base.match(/([^/]+)\\/?$/)!\n const active =\n versions.find(({ version, aliases }) => (\n version === current || aliases.includes(current)\n )) || versions[0]\n\n /* Render version selector */\n return (\n
    \n \n {active.title}\n \n
      \n {versions.map(renderVersion)}\n
    \n
    \n )\n}\n", "/*\n \n */\n\nimport { Observable, Subject } from \"rxjs\"\nimport {\n filter,\n finalize,\n map,\n mapTo,\n mergeWith,\n tap\n} from \"rxjs/operators\"\n\nimport { Component } from \"../../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Details\n */\nexport interface Details {}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n target$: Observable /* Location target observable */\n print$: Observable /* Print mode observable */\n}\n\n/**\n * Mount options\n */\ninterface MountOptions {\n target$: Observable /* Location target observable */\n print$: Observable /* Print mode observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch details\n *\n * @param el - Details element\n * @param options - Options\n *\n * @returns Details observable\n */\nexport function watchDetails(\n el: HTMLDetailsElement, { target$, print$ }: WatchOptions\n): Observable
    {\n return target$\n .pipe(\n map(target => target.closest(\"details:not([open])\")!),\n filter(details => el === details),\n mergeWith(print$),\n mapTo(el)\n )\n}\n\n/**\n * Mount details\n *\n * This function ensures that `details` tags are opened on anchor jumps and\n * prior to printing, so the whole content of the page is visible.\n *\n * @param el - Details element\n * @param options - Options\n *\n * @returns Details component observable\n */\nexport function mountDetails(\n el: HTMLDetailsElement, options: MountOptions\n): Observable> {\n const internal$ = new Subject
    ()\n internal$.subscribe(() => {\n el.setAttribute(\"open\", \"\")\n el.scrollIntoView()\n })\n\n /* Create and return component */\n return watchDetails(el, options)\n .pipe(\n tap(internal$),\n finalize(() => internal$.complete()),\n mapTo({ ref: el })\n )\n}\n", "/*\n \n */\n\nimport { Observable, of } from \"rxjs\"\n\nimport { createElement, replaceElement } from \"~/browser\"\nimport { renderTable } from \"~/templates\"\n\nimport { Component } from \"../../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Data table\n */\nexport interface DataTable {}\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Sentinel for replacement\n */\nconst sentinel = createElement(\"table\")\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount data table\n *\n * This function wraps a data table in another scrollable container, so it can\n * be smoothly scrolled on smaller screen sizes and won't break the layout.\n *\n * @param el - Data table element\n *\n * @returns Data table component observable\n */\nexport function mountDataTable(\n el: HTMLElement\n): Observable> {\n replaceElement(el, sentinel)\n replaceElement(sentinel, renderTable(el))\n\n /* Create and return component */\n return of({ ref: el })\n}\n", "/*\n \n */\n\nimport { Observable, merge } from \"rxjs\"\n\nimport { Viewport, getElements } from \"~/browser\"\n\nimport { Component } from \"../../_\"\nimport { CodeBlock, mountCodeBlock } from \"../code\"\nimport { Details, mountDetails } from \"../details\"\nimport { DataTable, mountDataTable } from \"../table\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Content\n */\nexport type Content =\n | CodeBlock\n | DataTable\n | Details\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount options\n */\ninterface MountOptions {\n target$: Observable /* Location target observable */\n viewport$: Observable /* Viewport observable */\n print$: Observable /* Print mode observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount content\n *\n * This function mounts all components that are found in the content of the\n * actual article, including code blocks, data tables and details.\n *\n * @param el - Content element\n * @param options - Options\n *\n * @returns Content component observable\n */\nexport function mountContent(\n el: HTMLElement, { target$, viewport$, print$ }: MountOptions\n): Observable> {\n return merge(\n\n /* Code blocks */\n ...getElements(\"pre > code\", el)\n .map(child => mountCodeBlock(child, { viewport$ })),\n\n /* Data tables */\n ...getElements(\"table:not([class])\", el)\n .map(child => mountDataTable(child)),\n\n /* Details */\n ...getElements(\"details\", el)\n .map(child => mountDetails(child, { target$, print$ }))\n )\n}\n", "/*\n \n */\n\nimport {\n Observable,\n Subject,\n animationFrameScheduler,\n merge,\n of\n} from \"rxjs\"\nimport {\n delay,\n finalize,\n map,\n observeOn,\n switchMap,\n tap\n} from \"rxjs/operators\"\n\nimport {\n resetDialogState,\n setDialogMessage,\n setDialogState\n} from \"~/actions\"\n\nimport { Component } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Dialog\n */\nexport interface Dialog {\n message: string /* Dialog message */\n open: boolean /* Dialog is visible */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n alert$: Subject /* Alert subject */\n}\n\n/**\n * Mount options\n */\ninterface MountOptions {\n alert$: Subject /* Alert subject */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch dialog\n *\n * @param _el - Dialog element\n * @param options - Options\n *\n * @returns Dialog observable\n */\nexport function watchDialog(\n _el: HTMLElement, { alert$ }: WatchOptions\n): Observable {\n return alert$\n .pipe(\n switchMap(message => merge(\n of(true),\n of(false).pipe(delay(2000))\n )\n .pipe(\n map(open => ({ message, open }))\n )\n )\n )\n}\n\n/**\n * Mount dialog\n *\n * This function reveals the dialog in the right cornerwhen a new alert is\n * emitted through the subject that is passed as part of the options.\n *\n * @param el - Dialog element\n * @param options - Options\n *\n * @returns Dialog component observable\n */\nexport function mountDialog(\n el: HTMLElement, options: MountOptions\n): Observable> {\n const internal$ = new Subject()\n internal$\n .pipe(\n observeOn(animationFrameScheduler)\n )\n .subscribe(({ message, open }) => {\n setDialogMessage(el, message)\n if (open)\n setDialogState(el, \"open\")\n else\n resetDialogState(el)\n })\n\n /* Create and return component */\n return watchDialog(el, options)\n .pipe(\n tap(internal$),\n finalize(() => internal$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n}\n", "/*\n \n */\n\nimport {\n Observable,\n Subject,\n animationFrameScheduler,\n combineLatest,\n defer,\n of\n} from \"rxjs\"\nimport {\n bufferCount,\n combineLatestWith,\n distinctUntilChanged,\n distinctUntilKeyChanged,\n filter,\n map,\n observeOn,\n shareReplay,\n startWith,\n switchMap\n} from \"rxjs/operators\"\n\nimport { feature } from \"~/_\"\nimport { resetHeaderState, setHeaderState } from \"~/actions\"\nimport {\n Viewport,\n watchElementSize,\n watchToggle\n} from \"~/browser\"\n\nimport { Component } from \"../../_\"\nimport { Main } from \"../../main\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Header\n */\nexport interface Header {\n height: number /* Header visible height */\n sticky: boolean /* Header stickyness */\n hidden: boolean /* User scrolled past threshold */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n viewport$: Observable /* Viewport observable */\n}\n\n/**\n * Mount options\n */\ninterface MountOptions {\n viewport$: Observable /* Viewport observable */\n header$: Observable
    /* Header observable */\n main$: Observable
    /* Main area observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Compute whether the header is hidden\n *\n * If the user scrolls past a certain threshold, the header can be hidden when\n * scrolling down, and shown when scrolling up.\n *\n * @param options - Options\n *\n * @returns Toggle observable\n */\nfunction isHidden({ viewport$ }: WatchOptions): Observable {\n if (!feature(\"header.autohide\"))\n return of(false)\n\n /* Compute direction and turning point */\n const direction$ = viewport$\n .pipe(\n map(({ offset: { y } }) => y),\n bufferCount(2, 1),\n map(([a, b]) => [a < b, b] as const),\n distinctUntilKeyChanged(0)\n )\n\n /* Compute whether header should be hidden */\n const hidden$ = combineLatest([viewport$, direction$])\n .pipe(\n filter(([{ offset }, [, y]]) => Math.abs(y - offset.y) > 100),\n map(([, [direction]]) => direction),\n distinctUntilChanged()\n )\n\n /* Compute threshold for hiding */\n const search$ = watchToggle(\"search\")\n return combineLatest([viewport$, search$])\n .pipe(\n map(([{ offset }, search]) => offset.y > 400 && !search),\n distinctUntilChanged(),\n switchMap(active => active ? hidden$ : of(false)),\n startWith(false)\n )\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch header\n *\n * @param el - Header element\n * @param options - Options\n *\n * @returns Header observable\n */\nexport function watchHeader(\n el: HTMLElement, options: WatchOptions\n): Observable
    {\n return defer(() => {\n const styles = getComputedStyle(el)\n return of(\n styles.position === \"sticky\" ||\n styles.position === \"-webkit-sticky\"\n )\n })\n .pipe(\n combineLatestWith(watchElementSize(el), isHidden(options)),\n map(([sticky, { height }, hidden]) => ({\n height: sticky ? height : 0,\n sticky,\n hidden\n })),\n distinctUntilChanged((a, b) => (\n a.sticky === b.sticky &&\n a.height === b.height &&\n a.hidden === b.hidden\n )),\n shareReplay(1)\n )\n}\n\n/**\n * Mount header\n *\n * This function manages the different states of the header, i.e. whether it's\n * hidden or rendered with a shadow. This depends heavily on the main area.\n *\n * @param el - Header element\n * @param options - Options\n *\n * @returns Header component observable\n */\nexport function mountHeader(\n el: HTMLElement, { header$, main$ }: MountOptions\n): Observable> {\n const internal$ = new Subject
    ()\n internal$\n .pipe(\n distinctUntilKeyChanged(\"active\"),\n combineLatestWith(header$),\n observeOn(animationFrameScheduler)\n )\n .subscribe(([{ active }, { hidden }]) => {\n if (active)\n setHeaderState(el, hidden ? \"hidden\" : \"shadow\")\n else\n resetHeaderState(el)\n })\n\n /* Connect to long-living subject and return component */\n main$.subscribe(main => internal$.next(main))\n return header$\n .pipe(\n map(state => ({ ref: el, ...state }))\n )\n}\n", "/*\n \n */\n\nimport {\n NEVER,\n Observable,\n Subject,\n animationFrameScheduler\n} from \"rxjs\"\nimport {\n distinctUntilKeyChanged,\n finalize,\n map,\n observeOn,\n tap\n} from \"rxjs/operators\"\n\nimport {\n resetHeaderTitleState,\n setHeaderTitleState\n} from \"~/actions\"\nimport {\n Viewport,\n getElement,\n getElementSize,\n watchViewportAt\n} from \"~/browser\"\n\nimport { Component } from \"../../_\"\nimport { Header } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Header\n */\nexport interface HeaderTitle {\n active: boolean /* User scrolled past first headline */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n viewport$: Observable /* Viewport observable */\n header$: Observable
    /* Header observable */\n}\n\n/**\n * Mount options\n */\ninterface MountOptions {\n viewport$: Observable /* Viewport observable */\n header$: Observable
    /* Header observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch header title\n *\n * @param el - Heading element\n * @param options - Options\n *\n * @returns Header title observable\n */\nexport function watchHeaderTitle(\n el: HTMLHeadingElement, { viewport$, header$ }: WatchOptions\n): Observable {\n return watchViewportAt(el, { header$, viewport$ })\n .pipe(\n map(({ offset: { y } }) => {\n const { height } = getElementSize(el)\n return {\n active: y >= height\n }\n }),\n distinctUntilKeyChanged(\"active\")\n )\n}\n\n/**\n * Mount header title\n *\n * This function swaps the header title from the site title to the title of the\n * current page when the user scrolls past the first headline.\n *\n * @param el - Header title element\n * @param options - Options\n *\n * @returns Header title component observable\n */\nexport function mountHeaderTitle(\n el: HTMLElement, options: MountOptions\n): Observable> {\n const internal$ = new Subject()\n internal$\n .pipe(\n observeOn(animationFrameScheduler)\n )\n .subscribe(({ active }) => {\n if (active)\n setHeaderTitleState(el, \"active\")\n else\n resetHeaderTitleState(el)\n })\n\n /* Obtain headline, if any */\n const headline = getElement(\"article h1\")\n if (typeof headline === \"undefined\")\n return NEVER\n\n /* Create and return component */\n return watchHeaderTitle(headline, options)\n .pipe(\n tap(internal$),\n finalize(() => internal$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n}\n", "/*\n \n */\n\nimport {\n Observable,\n combineLatest\n} from \"rxjs\"\nimport {\n distinctUntilChanged,\n distinctUntilKeyChanged,\n map,\n switchMap\n} from \"rxjs/operators\"\n\nimport { Viewport, watchElementSize } from \"~/browser\"\n\nimport { Header } from \"../header\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Main area\n */\nexport interface Main {\n offset: number /* Main area top offset */\n height: number /* Main area visible height */\n active: boolean /* User scrolled past header */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n viewport$: Observable /* Viewport observable */\n header$: Observable
    /* Header observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch main area\n *\n * This function returns an observable that computes the visual parameters of\n * the main area which depends on the viewport vertical offset and height, as\n * well as the height of the header element, if the header is fixed.\n *\n * @param el - Main area element\n * @param options - Options\n *\n * @returns Main area observable\n */\nexport function watchMain(\n el: HTMLElement, { viewport$, header$ }: WatchOptions\n): Observable
    {\n\n /* Compute necessary adjustment for header */\n const adjust$ = header$\n .pipe(\n map(({ height }) => height),\n distinctUntilChanged()\n )\n\n /* Compute the main area's top and bottom borders */\n const border$ = adjust$\n .pipe(\n switchMap(() => watchElementSize(el)\n .pipe(\n map(({ height }) => ({\n top: el.offsetTop,\n bottom: el.offsetTop + height\n })),\n distinctUntilKeyChanged(\"bottom\")\n )\n )\n )\n\n /* Compute the main area's offset, visible height and if we scrolled past */\n return combineLatest([adjust$, border$, viewport$])\n .pipe(\n map(([header, { top, bottom }, { offset: { y }, size: { height } }]) => {\n height = Math.max(0, height\n - Math.max(0, top - y, header)\n - Math.max(0, height + y - bottom)\n )\n return {\n offset: top - header,\n height,\n active: top - header <= y\n }\n }),\n distinctUntilChanged((a, b) => (\n a.offset === b.offset &&\n a.height === b.height &&\n a.active === b.active\n ))\n )\n}\n", "/*\n \n */\n\nimport {\n Observable,\n Subject,\n fromEvent,\n of\n} from \"rxjs\"\nimport {\n finalize,\n map,\n mapTo,\n mergeMap,\n shareReplay,\n startWith,\n tap\n} from \"rxjs/operators\"\n\nimport { getElements } from \"~/browser\"\n\nimport { Component } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Palette colors\n */\nexport interface PaletteColor {\n scheme?: string /* Color scheme */\n primary?: string /* Primary color */\n accent?: string /* Accent color */\n}\n\n/**\n * Palette\n */\nexport interface Palette {\n index: number /* Palette index */\n color: PaletteColor /* Palette colors */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch color palette\n *\n * @param inputs - Color palette element\n *\n * @returns Color palette observable\n */\nexport function watchPalette(\n inputs: HTMLInputElement[]\n): Observable {\n const data = localStorage.getItem(__prefix(\"__palette\"))!\n const current = JSON.parse(data) || {\n index: inputs.findIndex(input => (\n matchMedia(input.getAttribute(\"data-md-color-media\")!).matches\n ))\n }\n\n /* Emit changes in color palette */\n const palette$ = of(...inputs)\n .pipe(\n mergeMap(input => fromEvent(input, \"change\")\n .pipe(\n mapTo(input)\n )\n ),\n startWith(inputs[Math.max(0, current.index)]),\n map(input => ({\n index: inputs.indexOf(input),\n color: {\n scheme: input.getAttribute(\"data-md-color-scheme\"),\n primary: input.getAttribute(\"data-md-color-primary\"),\n accent: input.getAttribute(\"data-md-color-accent\")\n }\n } as Palette)),\n shareReplay(1)\n )\n\n /* Persist preference in local storage */\n palette$.subscribe(palette => {\n localStorage.setItem(__prefix(\"__palette\"), JSON.stringify(palette))\n })\n\n /* Return palette */\n return palette$\n}\n\n/**\n * Mount color palette\n *\n * @param el - Color palette element\n *\n * @returns Color palette component observable\n */\nexport function mountPalette(\n el: HTMLElement\n): Observable> {\n const internal$ = new Subject()\n\n /* Set color palette */\n internal$.subscribe(palette => {\n for (const [key, value] of Object.entries(palette.color))\n if (typeof value === \"string\")\n document.body.setAttribute(`data-md-color-${key}`, value)\n\n /* Toggle visibility */\n for (let index = 0; index < inputs.length; index++) {\n const label = inputs[index].nextElementSibling\n if (label instanceof HTMLElement)\n label.hidden = palette.index !== index\n }\n })\n\n /* Create and return component */\n const inputs = getElements(\"input\", el)\n return watchPalette(inputs)\n .pipe(\n tap(internal$),\n finalize(() => internal$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n}\n", "/*\n \n */\n\nimport ClipboardJS from \"clipboard\"\nimport { Observable, Subject } from \"rxjs\"\n\nimport { translation } from \"~/_\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Setup options\n */\ninterface SetupOptions {\n alert$: Subject /* Alert subject */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set up Clipboard.js integration\n *\n * @param options - Options\n */\nexport function setupClipboardJS(\n { alert$ }: SetupOptions\n): void {\n if (ClipboardJS.isSupported()) {\n new Observable(subscriber => {\n new ClipboardJS(\"[data-clipboard-target], [data-clipboard-text]\")\n .on(\"success\", ev => subscriber.next(ev))\n })\n .subscribe(() => alert$.next(translation(\"clipboard.copied\")))\n }\n}\n", "/*\n \n */\n\nimport {\n EMPTY,\n NEVER,\n Observable,\n Subject,\n fromEvent,\n merge,\n of\n} from \"rxjs\"\nimport {\n bufferCount,\n catchError,\n concatMap,\n debounceTime,\n distinctUntilChanged,\n distinctUntilKeyChanged,\n filter,\n map,\n sample,\n share,\n skip,\n skipUntil,\n switchMap\n} from \"rxjs/operators\"\n\nimport { configuration } from \"~/_\"\nimport {\n Viewport,\n ViewportOffset,\n createElement,\n getElement,\n getElements,\n replaceElement,\n request,\n requestXML,\n setLocation,\n setLocationHash,\n setViewportOffset\n} from \"~/browser\"\nimport { getComponentElement } from \"~/components\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * History state\n */\nexport interface HistoryState {\n url: URL /* State URL */\n offset?: ViewportOffset /* State viewport offset */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Setup options\n */\ninterface SetupOptions {\n document$: Subject /* Document subject */\n location$: Subject /* Location subject */\n viewport$: Observable /* Viewport observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Preprocess a list of URLs\n *\n * This function replaces the `site_url` in the sitemap with the actual base\n * URL, to allow instant loading to work in occasions like Netlify previews.\n *\n * @param urls - URLs\n *\n * @returns Processed URLs\n */\nfunction preprocess(urls: string[]): string[] {\n if (urls.length < 2)\n return urls\n\n /* Take the first two URLs and remove everything after the last slash */\n const [root, next] = urls\n .sort((a, b) => a.length - b.length)\n .map(url => url.replace(/[^/]+$/, \"\"))\n\n /* Compute common prefix */\n let index = 0\n if (root === next)\n index = root.length\n else\n while (root.charCodeAt(index) === next.charCodeAt(index))\n index++\n\n /* Replace common prefix (i.e. base) with effective base */\n const config = configuration()\n return urls.map(url => (\n url.replace(root.slice(0, index), `${config.base}/`)\n ))\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set up instant loading\n *\n * When fetching, theoretically, we could use `responseType: \"document\"`, but\n * since all MkDocs links are relative, we need to make sure that the current\n * location matches the document we just loaded. Otherwise any relative links\n * in the document could use the old location.\n *\n * This is the reason why we need to synchronize history events and the process\n * of fetching the document for navigation changes (except `popstate` events):\n *\n * 1. Fetch document via `XMLHTTPRequest`\n * 2. Set new location via `history.pushState`\n * 3. Parse and emit fetched document\n *\n * For `popstate` events, we must not use `history.pushState`, or the forward\n * history will be irreversibly overwritten. In case the request fails, the\n * location change is dispatched regularly.\n *\n * @param options - Options\n */\nexport function setupInstantLoading(\n { document$, location$, viewport$ }: SetupOptions\n): void {\n const config = configuration()\n if (location.protocol === \"file:\")\n return\n\n /* Disable automatic scroll restoration */\n if (\"scrollRestoration\" in history) {\n history.scrollRestoration = \"manual\"\n\n /* Hack: ensure that reloads restore viewport offset */\n fromEvent(window, \"beforeunload\")\n .subscribe(() => {\n history.scrollRestoration = \"auto\"\n })\n }\n\n /* Hack: ensure absolute favicon link to omit 404s when switching */\n const favicon = getElement(\"link[rel=icon]\")\n if (typeof favicon !== \"undefined\")\n favicon.href = favicon.href\n\n /* Intercept internal navigation */\n const push$ = requestXML(`${config.base}/sitemap.xml`)\n .pipe(\n map(sitemap => preprocess(getElements(\"loc\", sitemap)\n .map(node => node.textContent!)\n )),\n switchMap(urls => fromEvent(document.body, \"click\")\n .pipe(\n filter(ev => !ev.metaKey && !ev.ctrlKey),\n switchMap(ev => {\n\n /* Handle HTML and SVG elements */\n if (ev.target instanceof Element) {\n const el = ev.target.closest(\"a\")\n if (el && !el.target && urls.includes(el.href)) {\n ev.preventDefault()\n return of({\n url: new URL(el.href)\n })\n }\n }\n return NEVER\n })\n )\n ),\n share()\n )\n\n /* Intercept history back and forward */\n const pop$ = fromEvent(window, \"popstate\")\n .pipe(\n filter(ev => ev.state !== null),\n map(ev => ({\n url: new URL(location.href),\n offset: ev.state\n })),\n share()\n )\n\n /* Emit location change */\n merge(push$, pop$)\n .pipe(\n distinctUntilChanged((a, b) => a.url.href === b.url.href),\n map(({ url }) => url)\n )\n .subscribe(location$)\n\n /* Fetch document via `XMLHTTPRequest` */\n const response$ = location$\n .pipe(\n distinctUntilKeyChanged(\"pathname\"),\n switchMap(url => request(url.href)\n .pipe(\n catchError(() => {\n setLocation(url)\n return NEVER\n })\n )\n ),\n share()\n )\n\n /* Set new location via `history.pushState` */\n push$\n .pipe(\n sample(response$)\n )\n .subscribe(({ url }) => {\n history.pushState({}, \"\", `${url}`)\n })\n\n /* Parse and emit fetched document */\n const dom = new DOMParser()\n response$\n .pipe(\n switchMap(res => res.text()),\n map(res => dom.parseFromString(res, \"text/html\"))\n )\n .subscribe(document$)\n\n /* Emit history state change */\n merge(push$, pop$)\n .pipe(\n sample(document$)\n )\n .subscribe(({ url, offset }) => {\n if (url.hash && !offset)\n setLocationHash(url.hash)\n else\n setViewportOffset(offset || { y: 0 })\n })\n\n /* Replace meta tags and components */\n document$\n .pipe(\n skip(1)\n )\n .subscribe(replacement => {\n for (const selector of [\n\n /* Meta tags */\n \"title\",\n \"link[rel=canonical]\",\n \"meta[name=author]\",\n \"meta[name=description]\",\n\n /* Components */\n \"[data-md-component=announce]\",\n \"[data-md-component=container]\",\n \"[data-md-component=header-topic]\",\n \"[data-md-component=logo], .md-logo\", // compat\n \"[data-md-component=skip]\"\n ]) {\n const source = getElement(selector)\n const target = getElement(selector, replacement)\n if (\n typeof source !== \"undefined\" &&\n typeof target !== \"undefined\"\n ) {\n replaceElement(source, target)\n }\n }\n })\n\n /* Re-evaluate scripts */\n document$\n .pipe(\n skip(1),\n map(() => getComponentElement(\"container\")),\n switchMap(el => of(...getElements(\"script\", el))),\n concatMap(el => {\n const script = createElement(\"script\")\n if (el.src) {\n for (const name of el.getAttributeNames())\n script.setAttribute(name, el.getAttribute(name)!)\n replaceElement(el, script)\n\n /* Complete when script is loaded */\n return new Observable(observer => {\n script.onload = () => observer.complete()\n })\n\n /* Complete immediately */\n } else {\n script.textContent = el.textContent\n replaceElement(el, script)\n return EMPTY\n }\n })\n )\n .subscribe()\n\n /* Debounce update of viewport offset */\n viewport$\n .pipe(\n skipUntil(push$),\n debounceTime(250),\n distinctUntilKeyChanged(\"offset\")\n )\n .subscribe(({ offset }) => {\n history.replaceState(offset, \"\")\n })\n\n /* Set viewport offset from history */\n merge(push$, pop$)\n .pipe(\n bufferCount(2, 1),\n filter(([a, b]) => a.url.pathname === b.url.pathname),\n map(([, state]) => state)\n )\n .subscribe(({ offset }) => {\n setViewportOffset(offset || { y: 0 })\n })\n}\n", "/*\n \n */\n\nimport escapeHTML from \"escape-html\"\n\nimport { SearchIndexDocument } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Search document\n */\nexport interface SearchDocument extends SearchIndexDocument {\n parent?: SearchIndexDocument /* Parent article */\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Search document mapping\n */\nexport type SearchDocumentMap = Map\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Create a search document mapping\n *\n * @param docs - Search index documents\n *\n * @returns Search document map\n */\nexport function setupSearchDocumentMap(\n docs: SearchIndexDocument[]\n): SearchDocumentMap {\n const documents = new Map()\n const parents = new Set()\n for (const doc of docs) {\n const [path, hash] = doc.location.split(\"#\")\n\n /* Extract location and title */\n const location = doc.location\n const title = doc.title\n\n /* Escape and cleanup text */\n const text = escapeHTML(doc.text)\n .replace(/\\s+(?=[,.:;!?])/g, \"\")\n .replace(/\\s+/g, \" \")\n\n /* Handle section */\n if (hash) {\n const parent = documents.get(path)!\n\n /* Ignore first section, override article */\n if (!parents.has(parent)) {\n parent.title = doc.title\n parent.text = text\n\n /* Remember that we processed the article */\n parents.add(parent)\n\n /* Add subsequent section */\n } else {\n documents.set(location, {\n location,\n title,\n text,\n parent\n })\n }\n\n /* Add article */\n } else {\n documents.set(location, {\n location,\n title,\n text\n })\n }\n }\n return documents\n}\n", "/*\n \n */\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Search transformation function\n *\n * @param value - Query value\n *\n * @returns Transformed query value\n */\nexport type SearchTransformFn = (value: string) => string\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Default transformation function\n *\n * 1. Search for terms in quotation marks and prepend a `+` modifier to denote\n * that the resulting document must contain all terms, converting the query\n * to an `AND` query (as opposed to the default `OR` behavior). While users\n * may expect terms enclosed in quotation marks to map to span queries, i.e.\n * for which order is important, Lunr.js doesn't support them, so the best\n * we can do is to convert the terms to an `AND` query.\n *\n * 2. Replace control characters which are not located at the beginning of the\n * query or preceded by white space, or are not followed by a non-whitespace\n * character or are at the end of the query string. Furthermore, filter\n * unmatched quotation marks.\n *\n * 3. Trim excess whitespace from left and right.\n *\n * @param query - Query value\n *\n * @returns Transformed query value\n */\nexport function defaultTransform(query: string): string {\n return query\n .split(/\"([^\"]+)\"/g) /* => 1 */\n .map((terms, index) => index & 1\n ? terms.replace(/^\\b|^(?![^\\x00-\\x7F]|$)|\\s+/g, \" +\")\n : terms\n )\n .join(\"\")\n .replace(/\"|(?:^|\\s+)[*+\\-:^~]+(?=\\s+|$)/g, \"\") /* => 2 */\n .trim() /* => 3 */\n}\n", "/*\n * Copyright (c) 2016-2021 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A RTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { SearchIndex, SearchResult } from \"../../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Search message type\n */\nexport const enum SearchMessageType {\n SETUP, /* Search index setup */\n READY, /* Search index ready */\n QUERY, /* Search query */\n RESULT /* Search results */\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * A message containing the data necessary to setup the search index\n */\nexport interface SearchSetupMessage {\n type: SearchMessageType.SETUP /* Message type */\n data: SearchIndex /* Message data */\n}\n\n/**\n * A message indicating the search index is ready\n */\nexport interface SearchReadyMessage {\n type: SearchMessageType.READY /* Message type */\n}\n\n/**\n * A message containing a search query\n */\nexport interface SearchQueryMessage {\n type: SearchMessageType.QUERY /* Message type */\n data: string /* Message data */\n}\n\n/**\n * A message containing results for a search query\n */\nexport interface SearchResultMessage {\n type: SearchMessageType.RESULT /* Message type */\n data: SearchResult[] /* Message data */\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * A message exchanged with the search worker\n */\nexport type SearchMessage =\n | SearchSetupMessage\n | SearchReadyMessage\n | SearchQueryMessage\n | SearchResultMessage\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Type guard for search setup messages\n *\n * @param message - Search worker message\n *\n * @returns Test result\n */\nexport function isSearchSetupMessage(\n message: SearchMessage\n): message is SearchSetupMessage {\n return message.type === SearchMessageType.SETUP\n}\n\n/**\n * Type guard for search ready messages\n *\n * @param message - Search worker message\n *\n * @returns Test result\n */\nexport function isSearchReadyMessage(\n message: SearchMessage\n): message is SearchReadyMessage {\n return message.type === SearchMessageType.READY\n}\n\n/**\n * Type guard for search query messages\n *\n * @param message - Search worker message\n *\n * @returns Test result\n */\nexport function isSearchQueryMessage(\n message: SearchMessage\n): message is SearchQueryMessage {\n return message.type === SearchMessageType.QUERY\n}\n\n/**\n * Type guard for search result messages\n *\n * @param message - Search worker message\n *\n * @returns Test result\n */\nexport function isSearchResultMessage(\n message: SearchMessage\n): message is SearchResultMessage {\n return message.type === SearchMessageType.RESULT\n}\n", "/*\n * Copyright (c) 2016-2021 Martin Donath \n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to\n * deal in the Software without restriction, including without limitation the\n * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or\n * sell copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in\n * all copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A RTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\n * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS\n * IN THE SOFTWARE.\n */\n\nimport { ObservableInput, Subject, from } from \"rxjs\"\nimport { map, share } from \"rxjs/operators\"\n\nimport { configuration, translation } from \"~/_\"\nimport { WorkerHandler, watchWorker } from \"~/browser\"\n\nimport { SearchIndex, SearchIndexPipeline } from \"../../_\"\nimport {\n SearchMessage,\n SearchMessageType,\n SearchSetupMessage,\n isSearchResultMessage\n} from \"../message\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Search worker\n */\nexport type SearchWorker = WorkerHandler\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set up search index\n *\n * @param data - Search index\n *\n * @returns Search index\n */\nfunction setupSearchIndex(\n { config, docs, index }: SearchIndex\n): SearchIndex {\n\n /* Override default language with value from translation */\n if (config.lang.length === 1 && config.lang[0] === \"en\")\n config.lang = [\n translation(\"search.config.lang\")\n ]\n\n /* Override default separator with value from translation */\n if (config.separator === \"[\\\\s\\\\-]+\")\n config.separator = translation(\"search.config.separator\")\n\n /* Set pipeline from translation */\n const pipeline = translation(\"search.config.pipeline\")\n .split(/\\s*,\\s*/)\n .filter(Boolean) as SearchIndexPipeline\n\n /* Return search index after defaulting */\n return { config, docs, index, pipeline }\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set up search worker\n *\n * This function creates a web worker to set up and query the search index,\n * which is done using Lunr.js. The index must be passed as an observable to\n * enable hacks like _localsearch_ via search index embedding as JSON.\n *\n * @param url - Worker URL\n * @param index - Search index observable input\n *\n * @returns Search worker\n */\nexport function setupSearchWorker(\n url: string, index: ObservableInput\n): SearchWorker {\n const config = configuration()\n const worker = new Worker(url)\n\n /* Create communication channels and resolve relative links */\n const tx$ = new Subject()\n const rx$ = watchWorker(worker, { tx$ })\n .pipe(\n map(message => {\n if (isSearchResultMessage(message)) {\n for (const result of message.data)\n for (const document of result)\n document.location = `${config.base}/${document.location}`\n }\n return message\n }),\n share()\n )\n\n /* Set up search index */\n from(index)\n .pipe(\n map(data => ({\n type: SearchMessageType.SETUP,\n data: setupSearchIndex(data)\n }))\n )\n .subscribe(tx$.next.bind(tx$))\n\n /* Return search worker */\n return { tx$, rx$ }\n}\n", "/*\n \n */\n\nimport { configuration } from \"~/_\"\nimport { getElementOrThrow, requestJSON } from \"~/browser\"\nimport { Version, renderVersionSelector } from \"~/templates\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Set up version selector\n */\nexport function setupVersionSelector(): void {\n const config = configuration()\n requestJSON(new URL(\"versions.json\", config.base))\n .subscribe(versions => {\n const topic = getElementOrThrow(\".md-header__topic\")\n topic.appendChild(renderVersionSelector(versions))\n })\n}\n", "/*\n \n */\n\nimport {\n Observable,\n Subject,\n combineLatest,\n fromEvent,\n merge\n} from \"rxjs\"\nimport {\n delay,\n distinctUntilChanged,\n distinctUntilKeyChanged,\n finalize,\n map,\n takeLast,\n takeUntil,\n tap\n} from \"rxjs/operators\"\n\nimport {\n resetSearchQueryPlaceholder,\n setSearchQueryPlaceholder\n} from \"~/actions\"\nimport {\n setElementFocus,\n setToggle,\n watchElementFocus\n} from \"~/browser\"\nimport {\n SearchMessageType,\n SearchQueryMessage,\n SearchWorker,\n defaultTransform\n} from \"~/integrations\"\n\nimport { Component } from \"../../_\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Search query\n */\nexport interface SearchQuery {\n value: string /* Query value */\n focus: boolean /* Query focus */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch search query\n *\n * Note that the focus event which triggers re-reading the current query value\n * is delayed by `1ms` so the input's empty state is allowed to propagate.\n *\n * @param el - Search query element\n *\n * @returns Search query observable\n */\nexport function watchSearchQuery(\n el: HTMLInputElement\n): Observable {\n const fn = __search?.transform || defaultTransform\n\n /* Intercept focus and input events */\n const focus$ = watchElementFocus(el)\n const value$ = merge(\n fromEvent(el, \"keyup\"),\n fromEvent(el, \"focus\").pipe(delay(1))\n )\n .pipe(\n map(() => fn(el.value)),\n distinctUntilChanged()\n )\n\n /* Combine into single observable */\n return combineLatest([value$, focus$])\n .pipe(\n map(([value, focus]) => ({ value, focus }))\n )\n}\n\n/**\n * Mount search query\n *\n * @param el - Search query element\n * @param worker - Search worker\n *\n * @returns Search query component observable\n */\nexport function mountSearchQuery(\n el: HTMLInputElement, { tx$ }: SearchWorker\n): Observable> {\n const internal$ = new Subject()\n\n /* Handle value changes */\n internal$\n .pipe(\n distinctUntilKeyChanged(\"value\"),\n map(({ value }): SearchQueryMessage => ({\n type: SearchMessageType.QUERY,\n data: value\n }))\n )\n .subscribe(tx$.next.bind(tx$))\n\n /* Handle focus changes */\n internal$\n .pipe(\n distinctUntilKeyChanged(\"focus\")\n )\n .subscribe(({ focus }) => {\n if (focus) {\n setToggle(\"search\", focus)\n setSearchQueryPlaceholder(el, \"\")\n } else {\n resetSearchQueryPlaceholder(el)\n }\n })\n\n /* Handle reset */\n fromEvent(el.form!, \"reset\")\n .pipe(\n takeUntil(internal$.pipe(takeLast(1)))\n )\n .subscribe(() => setElementFocus(el))\n\n /* Create and return component */\n return watchSearchQuery(el)\n .pipe(\n tap(internal$),\n finalize(() => internal$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n}\n", "/*\n \n */\n\nimport {\n Observable,\n Subject,\n animationFrameScheduler,\n merge,\n of\n} from \"rxjs\"\nimport {\n bufferCount,\n filter,\n finalize,\n map,\n observeOn,\n startWith,\n switchMap,\n take,\n tap,\n withLatestFrom,\n zipWith\n} from \"rxjs/operators\"\n\nimport {\n addToSearchResultList,\n resetSearchResultList,\n resetSearchResultMeta,\n setSearchResultMeta\n} from \"~/actions\"\nimport {\n getElementOrThrow,\n watchElementThreshold\n} from \"~/browser\"\nimport {\n SearchResult as SearchResultData,\n SearchWorker,\n isSearchReadyMessage,\n isSearchResultMessage\n} from \"~/integrations\"\nimport { renderSearchResult } from \"~/templates\"\n\nimport { Component } from \"../../_\"\nimport { SearchQuery } from \"../query\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Search result\n */\nexport interface SearchResult {\n data: SearchResultData[] /* Search result data */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount options\n */\ninterface MountOptions {\n query$: Observable /* Search query observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount search result list\n *\n * This function performs a lazy rendering of the search results, depending on\n * the vertical offset of the search result container.\n *\n * @param el - Search result list element\n * @param worker - Search worker\n * @param options - Options\n *\n * @returns Search result list component observable\n */\nexport function mountSearchResult(\n el: HTMLElement, { rx$ }: SearchWorker, { query$ }: MountOptions\n): Observable> {\n const internal$ = new Subject()\n const boundary$ = watchElementThreshold(el.parentElement!)\n .pipe(\n filter(Boolean)\n )\n\n /* Retrieve nested components */\n const meta = getElementOrThrow(\":scope > :first-child\", el)\n const list = getElementOrThrow(\":scope > :last-child\", el)\n\n /* Update search result metadata when ready */\n rx$\n .pipe(\n filter(isSearchReadyMessage),\n take(1)\n )\n .subscribe(() => {\n resetSearchResultMeta(meta)\n })\n\n /* Update search result metadata */\n internal$\n .pipe(\n observeOn(animationFrameScheduler),\n withLatestFrom(query$)\n )\n .subscribe(([{ data }, { value }]) => {\n if (value)\n setSearchResultMeta(meta, data.length)\n else\n resetSearchResultMeta(meta)\n })\n\n /* Update search result list */\n internal$\n .pipe(\n observeOn(animationFrameScheduler),\n tap(() => resetSearchResultList(list)),\n switchMap(({ data }) => merge(\n of(...data.slice(0, 10)),\n of(...data.slice(10))\n .pipe(\n bufferCount(4),\n zipWith(boundary$),\n switchMap(([chunk]) => of(...chunk))\n )\n ))\n )\n .subscribe(result => {\n addToSearchResultList(list, renderSearchResult(result))\n })\n\n /* Filter search result list */\n const result$ = rx$\n .pipe(\n filter(isSearchResultMessage),\n map(({ data }) => ({ data })),\n startWith({ data: [] })\n )\n\n /* Create and return component */\n return result$\n .pipe(\n tap(internal$),\n finalize(() => internal$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n}\n", "/*\n \n */\n\nimport { NEVER, Observable, ObservableInput, merge } from \"rxjs\"\nimport { filter, sample, take } from \"rxjs/operators\"\n\nimport { configuration } from \"~/_\"\nimport {\n Keyboard,\n getActiveElement,\n getElements,\n setElementFocus,\n setElementSelection,\n setToggle\n} from \"~/browser\"\nimport {\n SearchIndex,\n isSearchQueryMessage,\n isSearchReadyMessage,\n setupSearchWorker\n} from \"~/integrations\"\n\nimport { Component, getComponentElement } from \"../../_\"\nimport { SearchQuery, mountSearchQuery } from \"../query\"\nimport { SearchResult, mountSearchResult } from \"../result\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Search\n */\nexport type Search =\n | SearchQuery\n | SearchResult\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount options\n */\ninterface MountOptions {\n index$: ObservableInput /* Search index observable */\n keyboard$: Observable /* Keyboard observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Mount search\n *\n * This function sets up the search functionality, including the underlying\n * web worker and all keyboard bindings.\n *\n * @param el - Search element\n * @param options - Options\n *\n * @returns Search component observable\n */\nexport function mountSearch(\n el: HTMLElement, { index$, keyboard$ }: MountOptions\n): Observable> {\n const config = configuration()\n try {\n const worker = setupSearchWorker(config.search, index$)\n\n /* Retrieve nested components */\n const query = getComponentElement(\"search-query\", el)\n const result = getComponentElement(\"search-result\", el)\n\n /* Re-emit query when search is ready */\n const { tx$, rx$ } = worker\n tx$\n .pipe(\n filter(isSearchQueryMessage),\n sample(rx$.pipe(filter(isSearchReadyMessage))),\n take(1)\n )\n .subscribe(tx$.next.bind(tx$))\n\n /* Set up search keyboard handlers */\n keyboard$\n .pipe(\n filter(({ mode }) => mode === \"search\")\n )\n .subscribe(key => {\n const active = getActiveElement()\n switch (key.type) {\n\n /* Enter: prevent form submission */\n case \"Enter\":\n if (active === query)\n key.claim()\n break\n\n /* Escape or Tab: close search */\n case \"Escape\":\n case \"Tab\":\n setToggle(\"search\", false)\n setElementFocus(query, false)\n break\n\n /* Vertical arrows: select previous or next search result */\n case \"ArrowUp\":\n case \"ArrowDown\":\n if (typeof active === \"undefined\") {\n setElementFocus(query)\n } else {\n const els = [query, ...getElements(\n \":not(details) > [href], summary, details[open] [href]\",\n result\n )]\n const i = Math.max(0, (\n Math.max(0, els.indexOf(active)) + els.length + (\n key.type === \"ArrowUp\" ? -1 : +1\n )\n ) % els.length)\n setElementFocus(els[i])\n }\n\n /* Prevent scrolling of page */\n key.claim()\n break\n\n /* All other keys: hand to search query */\n default:\n if (query !== getActiveElement())\n setElementFocus(query)\n }\n })\n\n /* Set up global keyboard handlers */\n keyboard$\n .pipe(\n filter(({ mode }) => mode === \"global\"),\n )\n .subscribe(key => {\n switch (key.type) {\n\n /* Open search and select query */\n case \"f\":\n case \"s\":\n case \"/\":\n setElementFocus(query)\n setElementSelection(query)\n key.claim()\n break\n }\n })\n\n /* Create and return component */\n const query$ = mountSearchQuery(query, worker)\n return merge(\n query$,\n mountSearchResult(result, worker, { query$ })\n )\n\n /* Gracefully handle broken search */\n } catch (err) {\n el.hidden = true\n return NEVER\n }\n}\n", "/*\n \n */\n\nimport {\n Observable,\n Subject,\n animationFrameScheduler,\n combineLatest\n} from \"rxjs\"\nimport {\n distinctUntilChanged,\n finalize,\n map,\n observeOn,\n tap,\n withLatestFrom\n} from \"rxjs/operators\"\n\nimport {\n resetSidebarHeight,\n resetSidebarOffset,\n setSidebarHeight,\n setSidebarOffset\n} from \"~/actions\"\nimport { Viewport } from \"~/browser\"\n\nimport { Component } from \"../_\"\nimport { Header } from \"../header\"\nimport { Main } from \"../main\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Sidebar\n */\nexport interface Sidebar {\n height: number /* Sidebar height */\n locked: boolean /* User scrolled past header */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n viewport$: Observable /* Viewport observable */\n main$: Observable
    /* Main area observable */\n}\n\n/**\n * Mount options\n */\ninterface MountOptions {\n viewport$: Observable /* Viewport observable */\n header$: Observable
    /* Header observable */\n main$: Observable
    /* Main area observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch sidebar\n *\n * This function returns an observable that computes the visual parameters of\n * the sidebar which depends on the vertical viewport offset, as well as the\n * height of the main area. When the page is scrolled beyond the header, the\n * sidebar is locked and fills the remaining space.\n *\n * @param el - Sidebar element\n * @param options - Options\n *\n * @returns Sidebar observable\n */\nexport function watchSidebar(\n el: HTMLElement, { viewport$, main$ }: WatchOptions\n): Observable {\n const adjust =\n el.parentElement!.offsetTop -\n el.parentElement!.parentElement!.offsetTop\n\n /* Compute the sidebar's available height and if it should be locked */\n return combineLatest([main$, viewport$])\n .pipe(\n map(([{ offset, height }, { offset: { y } }]) => {\n height = height\n + Math.min(adjust, Math.max(0, y - offset))\n - adjust\n return {\n height,\n locked: y >= offset + adjust\n }\n }),\n distinctUntilChanged((a, b) => (\n a.height === b.height &&\n a.locked === b.locked\n ))\n )\n}\n\n/**\n * Mount sidebar\n *\n * @param el - Sidebar element\n * @param options - Options\n *\n * @returns Sidebar component observable\n */\nexport function mountSidebar(\n el: HTMLElement, { header$, ...options }: MountOptions\n): Observable> {\n const internal$ = new Subject()\n internal$\n .pipe(\n observeOn(animationFrameScheduler),\n withLatestFrom(header$)\n )\n .subscribe({\n\n /* Update height and offset */\n next([{ height }, { height: offset }]) {\n setSidebarHeight(el, height)\n setSidebarOffset(el, offset)\n },\n\n /* Reset on complete */\n complete() {\n resetSidebarOffset(el)\n resetSidebarHeight(el)\n }\n })\n\n /* Create and return component */\n return watchSidebar(el, options)\n .pipe(\n tap(internal$),\n finalize(() => internal$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n}\n", "/*\n \n */\n\nimport { Repo, User } from \"github-types\"\nimport { Observable, zip } from \"rxjs\"\nimport { defaultIfEmpty, map } from \"rxjs/operators\"\n\nimport { requestJSON } from \"~/browser\"\n\nimport { SourceFacts } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * GitHub release (partial)\n */\ninterface Release {\n tag_name: string /* Tag name */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Fetch GitHub repository facts\n *\n * @param user - GitHub user\n * @param repo - GitHub repository\n *\n * @returns Repository facts observable\n */\nexport function fetchSourceFactsFromGitHub(\n user: string, repo?: string\n): Observable {\n if (typeof repo !== \"undefined\") {\n const url = `https://api.github.com/repos/${user}/${repo}`\n return zip(\n\n /* Fetch version */\n requestJSON(`${url}/releases/latest`)\n .pipe(\n map(release => ({\n version: release.tag_name\n })),\n defaultIfEmpty({})\n ),\n\n /* Fetch stars and forks */\n requestJSON(url)\n .pipe(\n map(info => ({\n stars: info.stargazers_count,\n forks: info.forks_count\n })),\n defaultIfEmpty({})\n )\n )\n .pipe(\n map(([release, info]) => ({ ...release, ...info }))\n )\n\n /* User or organization */\n } else {\n const url = `https://api.github.com/repos/${user}`\n return requestJSON(url)\n .pipe(\n map(info => ({\n repositories: info.public_repos\n })),\n defaultIfEmpty({})\n )\n }\n}\n", "/*\n \n */\n\nimport { ProjectSchema } from \"gitlab\"\nimport { Observable } from \"rxjs\"\nimport { defaultIfEmpty, map } from \"rxjs/operators\"\n\nimport { requestJSON } from \"~/browser\"\n\nimport { SourceFacts } from \"../_\"\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Fetch GitLab repository facts\n *\n * @param base - GitLab base\n * @param project - GitLab project\n *\n * @returns Repository facts observable\n */\nexport function fetchSourceFactsFromGitLab(\n base: string, project: string\n): Observable {\n const url = `https://${base}/api/v4/projects/${encodeURIComponent(project)}`\n return requestJSON(url)\n .pipe(\n map(({ star_count, forks_count }) => ({\n stars: star_count,\n forks: forks_count\n })),\n defaultIfEmpty({})\n )\n}\n", "/*\n \n */\n\nimport { NEVER, Observable } from \"rxjs\"\n\nimport { fetchSourceFactsFromGitHub } from \"../github\"\nimport { fetchSourceFactsFromGitLab } from \"../gitlab\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Repository facts for repositories\n */\nexport interface RepositoryFacts {\n stars?: number /* Number of stars */\n forks?: number /* Number of forks */\n version?: string /* Latest version */\n}\n\n/**\n * Repository facts for organizations\n */\nexport interface OrganizationFacts {\n repositories?: number /* Number of repositories */\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Repository facts\n */\nexport type SourceFacts =\n | RepositoryFacts\n | OrganizationFacts\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Fetch repository facts\n *\n * @param url - Repository URL\n *\n * @returns Repository facts observable\n */\nexport function fetchSourceFacts(\n url: string\n): Observable {\n const [type] = url.match(/(git(?:hub|lab))/i) || []\n switch (type.toLowerCase()) {\n\n /* GitHub repository */\n case \"github\":\n const [, user, repo] = url.match(/^.+github\\.com\\/([^/]+)\\/?([^/]+)?/i)!\n return fetchSourceFactsFromGitHub(user, repo)\n\n /* GitLab repository */\n case \"gitlab\":\n const [, base, slug] = url.match(/^.+?([^/]*gitlab[^/]+)\\/(.+?)\\/?$/i)!\n return fetchSourceFactsFromGitLab(base, slug)\n\n /* Everything else */\n default:\n return NEVER\n }\n}\n", "/*\n \n */\n\nimport { NEVER, Observable, Subject, defer, of } from \"rxjs\"\nimport {\n catchError,\n filter,\n finalize,\n map,\n shareReplay,\n tap\n} from \"rxjs/operators\"\n\nimport { setSourceFacts, setSourceState } from \"~/actions\"\nimport { renderSourceFacts } from \"~/templates\"\n\nimport { Component } from \"../../_\"\nimport { SourceFacts, fetchSourceFacts } from \"../facts\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Repository information\n */\nexport interface Source {\n facts: SourceFacts /* Repository facts */\n}\n\n/* ----------------------------------------------------------------------------\n * Data\n * ------------------------------------------------------------------------- */\n\n/**\n * Repository information observable\n */\nlet fetch$: Observable\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch repository information\n *\n * This function tries to read the repository facts from session storage, and\n * if unsuccessful, fetches them from the underlying provider.\n *\n * @param el - Repository information element\n *\n * @returns Repository information observable\n */\nexport function watchSource(\n el: HTMLAnchorElement\n): Observable {\n return fetch$ ||= defer(() => {\n const data = sessionStorage.getItem(__prefix(\"__source\"))\n if (data) {\n return of(JSON.parse(data))\n } else {\n const value$ = fetchSourceFacts(el.href)\n value$.subscribe(value => {\n try {\n sessionStorage.setItem(__prefix(\"__source\"), JSON.stringify(value))\n } catch (err) {\n /* Uncritical, just swallow */\n }\n })\n\n /* Return value */\n return value$\n }\n })\n .pipe(\n catchError(() => NEVER),\n filter(facts => Object.keys(facts).length > 0),\n map(facts => ({ facts })),\n shareReplay(1)\n )\n}\n\n/**\n * Mount repository information\n *\n * @param el - Repository information element\n *\n * @returns Repository information component observable\n */\nexport function mountSource(\n el: HTMLAnchorElement\n): Observable> {\n const internal$ = new Subject()\n internal$.subscribe(({ facts }) => {\n setSourceFacts(el, renderSourceFacts(facts))\n setSourceState(el, \"done\")\n })\n\n /* Create and return component */\n return watchSource(el)\n .pipe(\n tap(internal$),\n finalize(() => internal$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n}\n", "/*\n \n */\n\nimport { Observable, Subject, animationFrameScheduler } from \"rxjs\"\nimport {\n distinctUntilKeyChanged,\n finalize,\n map,\n observeOn,\n switchMap,\n tap\n} from \"rxjs/operators\"\n\nimport { resetTabsState, setTabsState } from \"~/actions\"\nimport {\n Viewport,\n watchElementSize,\n watchViewportAt\n} from \"~/browser\"\n\nimport { Component } from \"../_\"\nimport { Header } from \"../header\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Navigation tabs\n */\nexport interface Tabs {\n hidden: boolean /* User scrolled past tabs */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n viewport$: Observable /* Viewport observable */\n header$: Observable
    /* Header observable */\n}\n\n/**\n * Mount options\n */\ninterface MountOptions {\n viewport$: Observable /* Viewport observable */\n header$: Observable
    /* Header observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch navigation tabs\n *\n * @param el - Navigation tabs element\n * @param options - Options\n *\n * @returns Navigation tabs observable\n */\nexport function watchTabs(\n el: HTMLElement, { viewport$, header$ }: WatchOptions\n): Observable {\n return watchElementSize(document.body)\n .pipe(\n switchMap(() => watchViewportAt(el, { header$, viewport$ })),\n map(({ offset: { y } }) => {\n return {\n hidden: y >= 10\n }\n }),\n distinctUntilKeyChanged(\"hidden\")\n )\n}\n\n/**\n * Mount navigation tabs\n *\n * This function hides the navigation tabs when scrolling past the threshold\n * and makes them reappear in a nice CSS animation when scrolling back up.\n *\n * @param el - Navigation tabs element\n * @param options - Options\n *\n * @returns Navigation tabs component observable\n */\nexport function mountTabs(\n el: HTMLElement, options: MountOptions\n): Observable> {\n const internal$ = new Subject()\n internal$\n .pipe(\n observeOn(animationFrameScheduler)\n )\n .subscribe({\n\n /* Update state */\n next({ hidden }) {\n if (hidden)\n setTabsState(el, \"hidden\")\n else\n resetTabsState(el)\n },\n\n /* Reset on complete */\n complete() {\n resetTabsState(el)\n }\n })\n\n /* Create and return component */\n return watchTabs(el, options)\n .pipe(\n tap(internal$),\n finalize(() => internal$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n}\n", "/*\n \n */\n\nimport {\n Observable,\n Subject,\n animationFrameScheduler,\n combineLatest\n} from \"rxjs\"\nimport {\n bufferCount,\n distinctUntilChanged,\n distinctUntilKeyChanged,\n finalize,\n map,\n observeOn,\n scan,\n startWith,\n switchMap,\n tap\n} from \"rxjs/operators\"\n\nimport {\n resetAnchorActive,\n resetAnchorState,\n setAnchorActive,\n setAnchorState\n} from \"~/actions\"\nimport {\n Viewport,\n getElement,\n getElements,\n watchElementSize\n} from \"~/browser\"\n\nimport { Component } from \"../_\"\nimport { Header } from \"../header\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Table of contents\n */\nexport interface TableOfContents {\n prev: HTMLAnchorElement[][] /* Anchors (previous) */\n next: HTMLAnchorElement[][] /* Anchors (next) */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n viewport$: Observable /* Viewport observable */\n header$: Observable
    /* Header observable */\n}\n\n/**\n * Mount options\n */\ninterface MountOptions {\n viewport$: Observable /* Viewport observable */\n header$: Observable
    /* Header observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch table of contents\n *\n * This is effectively a scroll spy implementation which will account for the\n * fixed header and automatically re-calculate anchor offsets when the viewport\n * is resized. The returned observable will only emit if the table of contents\n * needs to be repainted.\n *\n * This implementation tracks an anchor element's entire path starting from its\n * level up to the top-most anchor element, e.g. `[h3, h2, h1]`. Although the\n * Material theme currently doesn't make use of this information, it enables\n * the styling of the entire hierarchy through customization.\n *\n * Note that the current anchor is the last item of the `prev` anchor list.\n *\n * @param anchors - Anchor elements\n * @param options - Options\n *\n * @returns Table of contents observable\n */\nexport function watchTableOfContents(\n anchors: HTMLAnchorElement[], { viewport$, header$ }: WatchOptions\n): Observable {\n const table = new Map()\n for (const anchor of anchors) {\n const id = decodeURIComponent(anchor.hash.substring(1))\n const target = getElement(`[id=\"${id}\"]`)\n if (typeof target !== \"undefined\")\n table.set(anchor, target)\n }\n\n /* Compute necessary adjustment for header */\n const adjust$ = header$\n .pipe(\n map(header => 24 + header.height)\n )\n\n /* Compute partition of previous and next anchors */\n const partition$ = watchElementSize(document.body)\n .pipe(\n distinctUntilKeyChanged(\"height\"),\n\n /* Build index to map anchor paths to vertical offsets */\n map(() => {\n let path: HTMLAnchorElement[] = []\n return [...table].reduce((index, [anchor, target]) => {\n while (path.length) {\n const last = table.get(path[path.length - 1])!\n if (last.tagName >= target.tagName) {\n path.pop()\n } else {\n break\n }\n }\n\n /* If the current anchor is hidden, continue with its parent */\n let offset = target.offsetTop\n while (!offset && target.parentElement) {\n target = target.parentElement\n offset = target.offsetTop\n }\n\n /* Map reversed anchor path to vertical offset */\n return index.set(\n [...path = [...path, anchor]].reverse(),\n offset\n )\n }, new Map())\n }),\n\n /* Sort index by vertical offset (see https://bit.ly/30z6QSO) */\n map(index => new Map([...index].sort(([, a], [, b]) => a - b))),\n\n /* Re-compute partition when viewport offset changes */\n switchMap(index => combineLatest([adjust$, viewport$])\n .pipe(\n scan(([prev, next], [adjust, { offset: { y } }]) => {\n\n /* Look forward */\n while (next.length) {\n const [, offset] = next[0]\n if (offset - adjust < y) {\n prev = [...prev, next.shift()!]\n } else {\n break\n }\n }\n\n /* Look backward */\n while (prev.length) {\n const [, offset] = prev[prev.length - 1]\n if (offset - adjust >= y) {\n next = [prev.pop()!, ...next]\n } else {\n break\n }\n }\n\n /* Return partition */\n return [prev, next]\n }, [[], [...index]]),\n distinctUntilChanged((a, b) => (\n a[0] === b[0] &&\n a[1] === b[1]\n ))\n )\n )\n )\n\n /* Compute and return anchor list migrations */\n return partition$\n .pipe(\n map(([prev, next]) => ({\n prev: prev.map(([path]) => path),\n next: next.map(([path]) => path)\n })),\n\n /* Extract anchor list migrations */\n startWith({ prev: [], next: [] }),\n bufferCount(2, 1),\n map(([a, b]) => {\n\n /* Moving down */\n if (a.prev.length < b.prev.length) {\n return {\n prev: b.prev.slice(Math.max(0, a.prev.length - 1), b.prev.length),\n next: []\n }\n\n /* Moving up */\n } else {\n return {\n prev: b.prev.slice(-1),\n next: b.next.slice(0, b.next.length - a.next.length)\n }\n }\n })\n )\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Mount table of contents\n *\n * @param el - Anchor list element\n * @param options - Options\n *\n * @returns Table of contents component observable\n */\nexport function mountTableOfContents(\n el: HTMLElement, options: MountOptions\n): Observable> {\n const internal$ = new Subject()\n internal$\n .pipe(\n observeOn(animationFrameScheduler),\n )\n .subscribe(({ prev, next }) => {\n\n /* Look forward */\n for (const [anchor] of next) {\n resetAnchorActive(anchor)\n resetAnchorState(anchor)\n }\n\n /* Look backward */\n for (const [index, [anchor]] of prev.entries()) {\n setAnchorActive(anchor, index === prev.length - 1)\n setAnchorState(anchor, \"blur\")\n }\n })\n\n /* Create and return component */\n const anchors = getElements(\"[href^=\\\\#]\", el)\n return watchTableOfContents(anchors, options)\n .pipe(\n tap(internal$),\n finalize(() => internal$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n}\n", "/*\n \n */\n\nimport {\n Observable,\n Subject,\n animationFrameScheduler,\n combineLatest\n} from \"rxjs\"\nimport {\n bufferCount,\n distinctUntilChanged,\n distinctUntilKeyChanged,\n finalize,\n map,\n observeOn,\n tap,\n withLatestFrom\n} from \"rxjs/operators\"\n\nimport {\n resetBackToTopOffset,\n resetBackToTopState,\n setBackToTopOffset,\n setBackToTopState\n} from \"~/actions\"\nimport { Viewport, setElementFocus } from \"~/browser\"\n\nimport { Component } from \"../_\"\nimport { Header } from \"../header\"\nimport { Main } from \"../main\"\n\n/* ----------------------------------------------------------------------------\n * Types\n * ------------------------------------------------------------------------- */\n\n/**\n * Back-to-top button\n */\nexport interface BackToTop {\n hidden: boolean /* User scrolled up */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch options\n */\ninterface WatchOptions {\n viewport$: Observable /* Viewport observable */\n header$: Observable
    /* Header observable */\n main$: Observable
    /* Main area observable */\n}\n\n/**\n * Mount options\n */\ninterface MountOptions {\n viewport$: Observable /* Viewport observable */\n header$: Observable
    /* Header observable */\n main$: Observable
    /* Main area observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Watch back-to-top\n *\n * @param _el - Back-to-top element\n * @param options - Options\n *\n * @returns Back-to-top observable\n */\nexport function watchBackToTop(\n _el: HTMLElement, { viewport$, main$ }: WatchOptions\n): Observable {\n\n /* Compute direction */\n const direction$ = viewport$\n .pipe(\n map(({ offset: { y } }) => y),\n bufferCount(2, 1),\n map(([a, b]) => a > b && b),\n distinctUntilChanged()\n )\n\n /* Compute whether button should be hidden */\n const hidden$ = main$\n .pipe(\n distinctUntilKeyChanged(\"active\")\n )\n\n /* Compute threshold for hiding */\n return combineLatest([hidden$, direction$])\n .pipe(\n map(([{ active }, direction]) => ({\n hidden: !(active && direction)\n })),\n distinctUntilChanged((a, b) => (\n a.hidden === b.hidden\n ))\n )\n}\n\n/* ------------------------------------------------------------------------- */\n\n/**\n * Mount back-to-top\n *\n * @param el - Back-to-top element\n * @param options - Options\n *\n * @returns Back-to-top component observable\n */\nexport function mountBackToTop(\n el: HTMLElement, { viewport$, header$, main$ }: MountOptions\n): Observable> {\n const internal$ = new Subject()\n internal$\n .pipe(\n observeOn(animationFrameScheduler),\n withLatestFrom(header$\n .pipe(\n distinctUntilKeyChanged(\"height\")\n )\n )\n )\n .subscribe({\n\n /* Update state */\n next([{ hidden }, { height }]) {\n setBackToTopOffset(el, height + 16)\n if (hidden) {\n setBackToTopState(el, \"hidden\")\n setElementFocus(el, false)\n } else {\n resetBackToTopState(el)\n }\n },\n\n /* Reset on complete */\n complete() {\n resetBackToTopOffset(el)\n resetBackToTopState(el)\n }\n })\n\n /* Create and return component */\n return watchBackToTop(el, { viewport$, header$, main$ })\n .pipe(\n tap(internal$),\n finalize(() => internal$.complete()),\n map(state => ({ ref: el, ...state }))\n )\n}\n", "/*\n \n */\n\nimport { Observable, fromEvent, of } from \"rxjs\"\nimport {\n mapTo,\n mergeMap,\n switchMap,\n takeWhile,\n tap,\n withLatestFrom\n} from \"rxjs/operators\"\n\nimport { getElements } from \"~/browser\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Patch options\n */\ninterface PatchOptions {\n document$: Observable /* Document observable */\n tablet$: Observable /* Tablet breakpoint observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Patch indeterminate checkboxes\n *\n * This function replaces the indeterminate \"pseudo state\" with the actual\n * indeterminate state, which is used to keep navigation always expanded.\n *\n * @param options - Options\n */\nexport function patchIndeterminate(\n { document$, tablet$ }: PatchOptions\n): void {\n document$\n .pipe(\n switchMap(() => of(...getElements(\n \"[data-md-state=indeterminate]\"\n ))),\n tap(el => {\n el.indeterminate = true\n el.checked = false\n }),\n mergeMap(el => fromEvent(el, \"change\")\n .pipe(\n takeWhile(() => el.hasAttribute(\"data-md-state\")),\n mapTo(el)\n )\n ),\n withLatestFrom(tablet$)\n )\n .subscribe(([el, tablet]) => {\n el.removeAttribute(\"data-md-state\")\n if (tablet)\n el.checked = false\n })\n}\n", "/*\n \n */\n\nimport { Observable, fromEvent, of } from \"rxjs\"\nimport {\n filter,\n mapTo,\n mergeMap,\n switchMap,\n tap\n} from \"rxjs/operators\"\n\nimport { getElements } from \"~/browser\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Patch options\n */\ninterface PatchOptions {\n document$: Observable /* Document observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Helper functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Check whether the given device is an Apple device\n *\n * @returns Test result\n */\nfunction isAppleDevice(): boolean {\n return /(iPad|iPhone|iPod)/.test(navigator.userAgent)\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Patch all elements with `data-md-scrollfix` attributes\n *\n * This is a year-old patch which ensures that overflow scrolling works at the\n * top and bottom of containers on iOS by ensuring a `1px` scroll offset upon\n * the start of a touch event.\n *\n * @see https://bit.ly/2SCtAOO - Original source\n *\n * @param options - Options\n */\nexport function patchScrollfix(\n { document$ }: PatchOptions\n): void {\n document$\n .pipe(\n switchMap(() => of(...getElements(\"[data-md-scrollfix]\"))),\n tap(el => el.removeAttribute(\"data-md-scrollfix\")),\n filter(isAppleDevice),\n mergeMap(el => fromEvent(el, \"touchstart\")\n .pipe(\n mapTo(el)\n )\n )\n )\n .subscribe(el => {\n const top = el.scrollTop\n\n /* We're at the top of the container */\n if (top === 0) {\n el.scrollTop = 1\n\n /* We're at the bottom of the container */\n } else if (top + el.offsetHeight === el.scrollHeight) {\n el.scrollTop = top - 1\n }\n })\n}\n", "/*\n \n */\n\nimport {\n Observable,\n animationFrameScheduler,\n combineLatest,\n of\n} from \"rxjs\"\nimport {\n delay,\n map,\n observeOn,\n switchMap,\n withLatestFrom\n} from \"rxjs/operators\"\n\nimport { resetScrollLock, setScrollLock } from \"~/actions\"\nimport { Viewport, watchToggle } from \"~/browser\"\n\n/* ----------------------------------------------------------------------------\n * Helper types\n * ------------------------------------------------------------------------- */\n\n/**\n * Patch options\n */\ninterface PatchOptions {\n viewport$: Observable /* Viewport observable */\n tablet$: Observable /* Tablet breakpoint observable */\n}\n\n/* ----------------------------------------------------------------------------\n * Functions\n * ------------------------------------------------------------------------- */\n\n/**\n * Patch the document body to lock when search is open\n *\n * For mobile and tablet viewports, the search is rendered full screen, which\n * leads to scroll leaking when at the top or bottom of the search result. This\n * function locks the body when the search is in full screen mode, and restores\n * the scroll position when leaving.\n *\n * @param options - Options\n */\nexport function patchScrolllock(\n { viewport$, tablet$ }: PatchOptions\n): void {\n combineLatest([watchToggle(\"search\"), tablet$])\n .pipe(\n map(([active, tablet]) => active && !tablet),\n switchMap(active => of(active)\n .pipe(\n delay(active ? 400 : 100),\n observeOn(animationFrameScheduler)\n )\n ),\n withLatestFrom(viewport$)\n )\n .subscribe(([active, { offset: { y }}]) => {\n if (active)\n setScrollLock(document.body, y)\n else\n resetScrollLock(document.body)\n })\n}\n"], - "mappings": "4iCAAA,oBAAC,UAAU,EAAQ,EAAS,CAC1B,MAAO,KAAY,UAAY,MAAO,KAAW,YAAc,IAC/D,MAAO,SAAW,YAAc,OAAO,IAAM,OAAO,GACnD,MACD,GAAO,UAAY,CAAE,aASrB,WAAmC,EAAO,CACxC,GAAI,GAAmB,GACnB,EAA0B,GAC1B,EAAiC,KAEjC,EAAsB,CACxB,KAAM,GACN,OAAQ,GACR,IAAK,GACL,IAAK,GACL,MAAO,GACP,SAAU,GACV,OAAQ,GACR,KAAM,GACN,MAAO,GACP,KAAM,GACN,KAAM,GACN,SAAU,GACV,iBAAkB,IAQpB,WAA4B,EAAI,CAC9B,MACE,MACA,IAAO,UACP,EAAG,WAAa,QAChB,EAAG,WAAa,QAChB,aAAe,IACf,YAAc,GAAG,WAcrB,WAAuC,EAAI,CACzC,GAAI,IAAO,EAAG,KACV,GAAU,EAAG,QAUjB,MARI,QAAY,SAAW,EAAoB,KAAS,CAAC,EAAG,UAIxD,KAAY,YAAc,CAAC,EAAG,UAI9B,EAAG,mBAYT,WAA8B,EAAI,CAChC,AAAI,EAAG,UAAU,SAAS,kBAG1B,GAAG,UAAU,IAAI,iBACjB,EAAG,aAAa,2BAA4B,KAQ9C,WAAiC,EAAI,CACnC,AAAI,CAAC,EAAG,aAAa,6BAGrB,GAAG,UAAU,OAAO,iBACpB,EAAG,gBAAgB,6BAWrB,WAAmB,EAAG,CACpB,AAAI,EAAE,SAAW,EAAE,QAAU,EAAE,SAI3B,GAAmB,EAAM,gBAC3B,EAAqB,EAAM,eAG7B,EAAmB,IAWrB,WAAuB,EAAG,CACxB,EAAmB,GAUrB,WAAiB,EAAG,CAElB,AAAI,CAAC,EAAmB,EAAE,SAItB,IAAoB,EAA8B,EAAE,UACtD,EAAqB,EAAE,QAQ3B,WAAgB,EAAG,CACjB,AAAI,CAAC,EAAmB,EAAE,SAKxB,GAAE,OAAO,UAAU,SAAS,kBAC5B,EAAE,OAAO,aAAa,8BAMtB,GAA0B,GAC1B,OAAO,aAAa,GACpB,EAAiC,OAAO,WAAW,UAAW,CAC5D,EAA0B,IACzB,KACH,EAAwB,EAAE,SAS9B,WAA4B,EAAG,CAC7B,AAAI,SAAS,kBAAoB,UAK3B,IACF,GAAmB,IAErB,KAUJ,YAA0C,CACxC,SAAS,iBAAiB,YAAa,GACvC,SAAS,iBAAiB,YAAa,GACvC,SAAS,iBAAiB,UAAW,GACrC,SAAS,iBAAiB,cAAe,GACzC,SAAS,iBAAiB,cAAe,GACzC,SAAS,iBAAiB,YAAa,GACvC,SAAS,iBAAiB,YAAa,GACvC,SAAS,iBAAiB,aAAc,GACxC,SAAS,iBAAiB,WAAY,GAGxC,YAA6C,CAC3C,SAAS,oBAAoB,YAAa,GAC1C,SAAS,oBAAoB,YAAa,GAC1C,SAAS,oBAAoB,UAAW,GACxC,SAAS,oBAAoB,cAAe,GAC5C,SAAS,oBAAoB,cAAe,GAC5C,SAAS,oBAAoB,YAAa,GAC1C,SAAS,oBAAoB,YAAa,GAC1C,SAAS,oBAAoB,aAAc,GAC3C,SAAS,oBAAoB,WAAY,GAU3C,WAA8B,EAAG,CAG/B,AAAI,EAAE,OAAO,UAAY,EAAE,OAAO,SAAS,gBAAkB,QAI7D,GAAmB,GACnB,KAMF,SAAS,iBAAiB,UAAW,EAAW,IAChD,SAAS,iBAAiB,YAAa,EAAe,IACtD,SAAS,iBAAiB,cAAe,EAAe,IACxD,SAAS,iBAAiB,aAAc,EAAe,IACvD,SAAS,iBAAiB,mBAAoB,EAAoB,IAElE,IAMA,EAAM,iBAAiB,QAAS,EAAS,IACzC,EAAM,iBAAiB,OAAQ,EAAQ,IAOvC,AAAI,EAAM,WAAa,KAAK,wBAA0B,EAAM,KAI1D,EAAM,KAAK,aAAa,wBAAyB,IACxC,EAAM,WAAa,KAAK,eACjC,UAAS,gBAAgB,UAAU,IAAI,oBACvC,SAAS,gBAAgB,aAAa,wBAAyB,KAOnE,GAAI,MAAO,SAAW,aAAe,MAAO,WAAa,YAAa,CAIpE,OAAO,0BAA4B,EAInC,GAAI,GAEJ,GAAI,CACF,EAAQ,GAAI,aAAY,sCACjB,EAAP,CAEA,EAAQ,SAAS,YAAY,eAC7B,EAAM,gBAAgB,+BAAgC,GAAO,GAAO,IAGtE,OAAO,cAAc,GAGvB,AAAI,MAAO,WAAa,aAGtB,EAA0B,cCpT9B;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,gFAeA,GAAI,IACA,GACA,GACA,GACA,GACA,GACA,GACA,GACA,GACA,GACA,GACA,GACA,GACA,GACA,GACA,GACA,GACA,GACA,GACA,GACA,GACA,GACA,GACA,GACJ,AAAC,UAAU,EAAS,CAChB,GAAI,GAAO,MAAO,SAAW,SAAW,OAAS,MAAO,OAAS,SAAW,KAAO,MAAO,OAAS,SAAW,KAAO,GACrH,AAAI,MAAO,SAAW,YAAc,OAAO,IACvC,OAAO,QAAS,CAAC,WAAY,SAAU,EAAS,CAAE,EAAQ,EAAe,EAAM,EAAe,OAE7F,AAAI,MAAO,KAAW,UAAY,MAAO,IAAO,SAAY,SAC7D,EAAQ,EAAe,EAAM,EAAe,GAAO,WAGnD,EAAQ,EAAe,IAE3B,WAAwB,EAAS,EAAU,CACvC,MAAI,KAAY,GACZ,CAAI,MAAO,QAAO,QAAW,WACzB,OAAO,eAAe,EAAS,aAAc,CAAE,MAAO,KAGtD,EAAQ,WAAa,IAGtB,SAAU,EAAI,EAAG,CAAE,MAAO,GAAQ,GAAM,EAAW,EAAS,EAAI,GAAK,MAGnF,SAAU,EAAU,CACjB,GAAI,GAAgB,OAAO,gBACtB,CAAE,UAAW,aAAgB,QAAS,SAAU,EAAG,EAAG,CAAE,EAAE,UAAY,IACvE,SAAU,EAAG,EAAG,CAAE,OAAS,KAAK,GAAG,AAAI,OAAO,UAAU,eAAe,KAAK,EAAG,IAAI,GAAE,GAAK,EAAE,KAEhG,GAAY,SAAU,EAAG,EAAG,CACxB,GAAI,MAAO,IAAM,YAAc,IAAM,KACjC,KAAM,IAAI,WAAU,uBAAyB,OAAO,GAAK,iCAC7D,EAAc,EAAG,GACjB,YAAc,CAAE,KAAK,YAAc,EACnC,EAAE,UAAY,IAAM,KAAO,OAAO,OAAO,GAAM,GAAG,UAAY,EAAE,UAAW,GAAI,KAGnF,GAAW,OAAO,QAAU,SAAU,EAAG,CACrC,OAAS,GAAG,EAAI,EAAG,EAAI,UAAU,OAAQ,EAAI,EAAG,IAAK,CACjD,EAAI,UAAU,GACd,OAAS,KAAK,GAAG,AAAI,OAAO,UAAU,eAAe,KAAK,EAAG,IAAI,GAAE,GAAK,EAAE,IAE9E,MAAO,IAGX,GAAS,SAAU,EAAG,EAAG,CACrB,GAAI,GAAI,GACR,OAAS,KAAK,GAAG,AAAI,OAAO,UAAU,eAAe,KAAK,EAAG,IAAM,EAAE,QAAQ,GAAK,GAC9E,GAAE,GAAK,EAAE,IACb,GAAI,GAAK,MAAQ,MAAO,QAAO,uBAA0B,WACrD,OAAS,GAAI,EAAG,EAAI,OAAO,sBAAsB,GAAI,EAAI,EAAE,OAAQ,IAC/D,AAAI,EAAE,QAAQ,EAAE,IAAM,GAAK,OAAO,UAAU,qBAAqB,KAAK,EAAG,EAAE,KACvE,GAAE,EAAE,IAAM,EAAE,EAAE,KAE1B,MAAO,IAGX,GAAa,SAAU,EAAY,EAAQ,EAAK,EAAM,CAClD,GAAI,GAAI,UAAU,OAAQ,EAAI,EAAI,EAAI,EAAS,IAAS,KAAO,EAAO,OAAO,yBAAyB,EAAQ,GAAO,EAAM,EAC3H,GAAI,MAAO,UAAY,UAAY,MAAO,SAAQ,UAAa,WAAY,EAAI,QAAQ,SAAS,EAAY,EAAQ,EAAK,OACpH,QAAS,GAAI,EAAW,OAAS,EAAG,GAAK,EAAG,IAAK,AAAI,GAAI,EAAW,KAAI,GAAK,GAAI,EAAI,EAAE,GAAK,EAAI,EAAI,EAAE,EAAQ,EAAK,GAAK,EAAE,EAAQ,KAAS,GAChJ,MAAO,GAAI,GAAK,GAAK,OAAO,eAAe,EAAQ,EAAK,GAAI,GAGhE,GAAU,SAAU,EAAY,EAAW,CACvC,MAAO,UAAU,EAAQ,EAAK,CAAE,EAAU,EAAQ,EAAK,KAG3D,GAAa,SAAU,EAAa,EAAe,CAC/C,GAAI,MAAO,UAAY,UAAY,MAAO,SAAQ,UAAa,WAAY,MAAO,SAAQ,SAAS,EAAa,IAGpH,GAAY,SAAU,EAAS,EAAY,EAAG,EAAW,CACrD,WAAe,EAAO,CAAE,MAAO,aAAiB,GAAI,EAAQ,GAAI,GAAE,SAAU,EAAS,CAAE,EAAQ,KAC/F,MAAO,IAAK,IAAM,GAAI,UAAU,SAAU,EAAS,EAAQ,CACvD,WAAmB,EAAO,CAAE,GAAI,CAAE,EAAK,EAAU,KAAK,UAAkB,EAAP,CAAY,EAAO,IACpF,WAAkB,EAAO,CAAE,GAAI,CAAE,EAAK,EAAU,MAAS,UAAkB,EAAP,CAAY,EAAO,IACvF,WAAc,EAAQ,CAAE,EAAO,KAAO,EAAQ,EAAO,OAAS,EAAM,EAAO,OAAO,KAAK,EAAW,GAClG,EAAM,GAAY,EAAU,MAAM,EAAS,GAAc,KAAK,WAItE,GAAc,SAAU,EAAS,EAAM,CACnC,GAAI,GAAI,CAAE,MAAO,EAAG,KAAM,UAAW,CAAE,GAAI,EAAE,GAAK,EAAG,KAAM,GAAE,GAAI,MAAO,GAAE,IAAO,KAAM,GAAI,IAAK,IAAM,EAAG,EAAG,EAAG,EAC/G,MAAO,GAAI,CAAE,KAAM,EAAK,GAAI,MAAS,EAAK,GAAI,OAAU,EAAK,IAAM,MAAO,SAAW,YAAe,GAAE,OAAO,UAAY,UAAW,CAAE,MAAO,QAAU,EACvJ,WAAc,EAAG,CAAE,MAAO,UAAU,EAAG,CAAE,MAAO,GAAK,CAAC,EAAG,KACzD,WAAc,EAAI,CACd,GAAI,EAAG,KAAM,IAAI,WAAU,mCAC3B,KAAO,GAAG,GAAI,CACV,GAAI,EAAI,EAAG,GAAM,GAAI,EAAG,GAAK,EAAI,EAAE,OAAY,EAAG,GAAK,EAAE,OAAc,IAAI,EAAE,SAAc,EAAE,KAAK,GAAI,GAAK,EAAE,OAAS,CAAE,GAAI,EAAE,KAAK,EAAG,EAAG,KAAK,KAAM,MAAO,GAE3J,OADI,EAAI,EAAG,GAAG,GAAK,CAAC,EAAG,GAAK,EAAG,EAAE,QACzB,EAAG,QACF,OAAQ,GAAG,EAAI,EAAI,UACnB,GAAG,SAAE,QAAgB,CAAE,MAAO,EAAG,GAAI,KAAM,QAC3C,GAAG,EAAE,QAAS,EAAI,EAAG,GAAI,EAAK,CAAC,GAAI,aACnC,GAAG,EAAK,EAAE,IAAI,MAAO,EAAE,KAAK,MAAO,iBAEpC,GAAM,EAAI,EAAE,KAAM,IAAI,EAAE,OAAS,GAAK,EAAE,EAAE,OAAS,KAAQ,GAAG,KAAO,GAAK,EAAG,KAAO,GAAI,CAAE,EAAI,EAAG,SACjG,GAAI,EAAG,KAAO,GAAM,EAAC,GAAM,EAAG,GAAK,EAAE,IAAM,EAAG,GAAK,EAAE,IAAM,CAAE,EAAE,MAAQ,EAAG,GAAI,MAC9E,GAAI,EAAG,KAAO,GAAK,EAAE,MAAQ,EAAE,GAAI,CAAE,EAAE,MAAQ,EAAE,GAAI,EAAI,EAAI,MAC7D,GAAI,GAAK,EAAE,MAAQ,EAAE,GAAI,CAAE,EAAE,MAAQ,EAAE,GAAI,EAAE,IAAI,KAAK,GAAK,MAC3D,AAAI,EAAE,IAAI,EAAE,IAAI,MAChB,EAAE,KAAK,MAAO,SAEtB,EAAK,EAAK,KAAK,EAAS,SACnB,EAAP,CAAY,EAAK,CAAC,EAAG,GAAI,EAAI,SAAK,CAAU,EAAI,EAAI,EACtD,GAAI,EAAG,GAAK,EAAG,KAAM,GAAG,GAAI,MAAO,CAAE,MAAO,EAAG,GAAK,EAAG,GAAK,OAAQ,KAAM,MAIlF,GAAe,SAAS,EAAG,EAAG,CAC1B,OAAS,KAAK,GAAG,AAAI,IAAM,WAAa,CAAC,OAAO,UAAU,eAAe,KAAK,EAAG,IAAI,GAAgB,EAAG,EAAG,IAG/G,GAAkB,OAAO,OAAU,SAAS,EAAG,EAAG,EAAG,EAAI,CACrD,AAAI,IAAO,QAAW,GAAK,GAC3B,OAAO,eAAe,EAAG,EAAI,CAAE,WAAY,GAAM,IAAK,UAAW,CAAE,MAAO,GAAE,OAC1E,SAAS,EAAG,EAAG,EAAG,EAAI,CACxB,AAAI,IAAO,QAAW,GAAK,GAC3B,EAAE,GAAM,EAAE,IAGd,GAAW,SAAU,EAAG,CACpB,GAAI,GAAI,MAAO,SAAW,YAAc,OAAO,SAAU,EAAI,GAAK,EAAE,GAAI,EAAI,EAC5E,GAAI,EAAG,MAAO,GAAE,KAAK,GACrB,GAAI,GAAK,MAAO,GAAE,QAAW,SAAU,MAAO,CAC1C,KAAM,UAAY,CACd,MAAI,IAAK,GAAK,EAAE,QAAQ,GAAI,QACrB,CAAE,MAAO,GAAK,EAAE,KAAM,KAAM,CAAC,KAG5C,KAAM,IAAI,WAAU,EAAI,0BAA4B,oCAGxD,GAAS,SAAU,EAAG,EAAG,CACrB,GAAI,GAAI,MAAO,SAAW,YAAc,EAAE,OAAO,UACjD,GAAI,CAAC,EAAG,MAAO,GACf,GAAI,GAAI,EAAE,KAAK,GAAI,EAAG,EAAK,GAAI,EAC/B,GAAI,CACA,KAAQ,KAAM,QAAU,KAAM,IAAM,CAAE,GAAI,EAAE,QAAQ,MAAM,EAAG,KAAK,EAAE,aAEjE,EAAP,CAAgB,EAAI,CAAE,MAAO,UAC7B,CACI,GAAI,CACA,AAAI,GAAK,CAAC,EAAE,MAAS,GAAI,EAAE,SAAY,EAAE,KAAK,UAElD,CAAU,GAAI,EAAG,KAAM,GAAE,OAE7B,MAAO,IAIX,GAAW,UAAY,CACnB,OAAS,GAAK,GAAI,EAAI,EAAG,EAAI,UAAU,OAAQ,IAC3C,EAAK,EAAG,OAAO,GAAO,UAAU,KACpC,MAAO,IAIX,GAAiB,UAAY,CACzB,OAAS,GAAI,EAAG,EAAI,EAAG,EAAK,UAAU,OAAQ,EAAI,EAAI,IAAK,GAAK,UAAU,GAAG,OAC7E,OAAS,GAAI,MAAM,GAAI,EAAI,EAAG,EAAI,EAAG,EAAI,EAAI,IACzC,OAAS,GAAI,UAAU,GAAI,EAAI,EAAG,EAAK,EAAE,OAAQ,EAAI,EAAI,IAAK,IAC1D,EAAE,GAAK,EAAE,GACjB,MAAO,IAGX,GAAgB,SAAU,EAAI,EAAM,CAChC,OAAS,GAAI,EAAG,EAAK,EAAK,OAAQ,EAAI,EAAG,OAAQ,EAAI,EAAI,IAAK,IAC1D,EAAG,GAAK,EAAK,GACjB,MAAO,IAGX,GAAU,SAAU,EAAG,CACnB,MAAO,gBAAgB,IAAW,MAAK,EAAI,EAAG,MAAQ,GAAI,IAAQ,IAGtE,GAAmB,SAAU,EAAS,EAAY,EAAW,CACzD,GAAI,CAAC,OAAO,cAAe,KAAM,IAAI,WAAU,wCAC/C,GAAI,GAAI,EAAU,MAAM,EAAS,GAAc,IAAK,EAAG,EAAI,GAC3D,MAAO,GAAI,GAAI,EAAK,QAAS,EAAK,SAAU,EAAK,UAAW,EAAE,OAAO,eAAiB,UAAY,CAAE,MAAO,OAAS,EACpH,WAAc,EAAG,CAAE,AAAI,EAAE,IAAI,GAAE,GAAK,SAAU,EAAG,CAAE,MAAO,IAAI,SAAQ,SAAU,EAAG,EAAG,CAAE,EAAE,KAAK,CAAC,EAAG,EAAG,EAAG,IAAM,GAAK,EAAO,EAAG,OAC9H,WAAgB,EAAG,EAAG,CAAE,GAAI,CAAE,EAAK,EAAE,GAAG,UAAc,EAAP,CAAY,EAAO,EAAE,GAAG,GAAI,IAC3E,WAAc,EAAG,CAAE,EAAE,gBAAiB,IAAU,QAAQ,QAAQ,EAAE,MAAM,GAAG,KAAK,EAAS,GAAU,EAAO,EAAE,GAAG,GAAI,GACnH,WAAiB,EAAO,CAAE,EAAO,OAAQ,GACzC,WAAgB,EAAO,CAAE,EAAO,QAAS,GACzC,WAAgB,EAAG,EAAG,CAAE,AAAI,EAAE,GAAI,EAAE,QAAS,EAAE,QAAQ,EAAO,EAAE,GAAG,GAAI,EAAE,GAAG,MAGhF,GAAmB,SAAU,EAAG,CAC5B,GAAI,GAAG,EACP,MAAO,GAAI,GAAI,EAAK,QAAS,EAAK,QAAS,SAAU,EAAG,CAAE,KAAM,KAAO,EAAK,UAAW,EAAE,OAAO,UAAY,UAAY,CAAE,MAAO,OAAS,EAC1I,WAAc,EAAG,EAAG,CAAE,EAAE,GAAK,EAAE,GAAK,SAAU,EAAG,CAAE,MAAQ,GAAI,CAAC,GAAK,CAAE,MAAO,GAAQ,EAAE,GAAG,IAAK,KAAM,IAAM,UAAa,EAAI,EAAE,GAAK,GAAO,IAG/I,GAAgB,SAAU,EAAG,CACzB,GAAI,CAAC,OAAO,cAAe,KAAM,IAAI,WAAU,wCAC/C,GAAI,GAAI,EAAE,OAAO,eAAgB,EACjC,MAAO,GAAI,EAAE,KAAK,GAAM,GAAI,MAAO,KAAa,WAAa,GAAS,GAAK,EAAE,OAAO,YAAa,EAAI,GAAI,EAAK,QAAS,EAAK,SAAU,EAAK,UAAW,EAAE,OAAO,eAAiB,UAAY,CAAE,MAAO,OAAS,GAC9M,WAAc,EAAG,CAAE,EAAE,GAAK,EAAE,IAAM,SAAU,EAAG,CAAE,MAAO,IAAI,SAAQ,SAAU,EAAS,EAAQ,CAAE,EAAI,EAAE,GAAG,GAAI,EAAO,EAAS,EAAQ,EAAE,KAAM,EAAE,UAChJ,WAAgB,EAAS,EAAQ,EAAG,EAAG,CAAE,QAAQ,QAAQ,GAAG,KAAK,SAAS,EAAG,CAAE,EAAQ,CAAE,MAAO,EAAG,KAAM,KAAS,KAGtH,GAAuB,SAAU,EAAQ,EAAK,CAC1C,MAAI,QAAO,eAAkB,OAAO,eAAe,EAAQ,MAAO,CAAE,MAAO,IAAiB,EAAO,IAAM,EAClG,GAGX,GAAI,GAAqB,OAAO,OAAU,SAAS,EAAG,EAAG,CACrD,OAAO,eAAe,EAAG,UAAW,CAAE,WAAY,GAAM,MAAO,KAC9D,SAAS,EAAG,EAAG,CAChB,EAAE,QAAa,GAGnB,GAAe,SAAU,EAAK,CAC1B,GAAI,GAAO,EAAI,WAAY,MAAO,GAClC,GAAI,GAAS,GACb,GAAI,GAAO,KAAM,OAAS,KAAK,GAAK,AAAI,IAAM,WAAa,OAAO,UAAU,eAAe,KAAK,EAAK,IAAI,GAAgB,EAAQ,EAAK,GACtI,SAAmB,EAAQ,GACpB,GAGX,GAAkB,SAAU,EAAK,CAC7B,MAAQ,IAAO,EAAI,WAAc,EAAM,CAAE,QAAW,IAGxD,GAAyB,SAAU,EAAU,EAAY,CACrD,GAAI,CAAC,EAAW,IAAI,GAChB,KAAM,IAAI,WAAU,kDAExB,MAAO,GAAW,IAAI,IAG1B,GAAyB,SAAU,EAAU,EAAY,EAAO,CAC5D,GAAI,CAAC,EAAW,IAAI,GAChB,KAAM,IAAI,WAAU,kDAExB,SAAW,IAAI,EAAU,GAClB,GAGX,EAAS,YAAa,IACtB,EAAS,WAAY,IACrB,EAAS,SAAU,IACnB,EAAS,aAAc,IACvB,EAAS,UAAW,IACpB,EAAS,aAAc,IACvB,EAAS,YAAa,IACtB,EAAS,cAAe,IACxB,EAAS,eAAgB,IACzB,EAAS,kBAAmB,IAC5B,EAAS,WAAY,IACrB,EAAS,SAAU,IACnB,EAAS,WAAY,IACrB,EAAS,iBAAkB,IAC3B,EAAS,gBAAiB,IAC1B,EAAS,UAAW,IACpB,EAAS,mBAAoB,IAC7B,EAAS,mBAAoB,IAC7B,EAAS,gBAAiB,IAC1B,EAAS,uBAAwB,IACjC,EAAS,eAAgB,IACzB,EAAS,kBAAmB,IAC5B,EAAS,yBAA0B,IACnC,EAAS,yBAA0B,QC9SvC;AAAA;AAAA;AAAA;AAAA;AAAA,GAMA,AAAC,UAA0C,EAAM,EAAS,CACzD,AAAG,MAAO,KAAY,UAAY,MAAO,KAAW,SACnD,GAAO,QAAU,IACb,AAAG,MAAO,SAAW,YAAc,OAAO,IAC9C,OAAO,GAAI,GACP,AAAG,MAAO,KAAY,SAC1B,GAAQ,YAAiB,IAEzB,EAAK,YAAiB,MACrB,GAAM,UAAW,CACpB,MAAiB,WAAW,CAClB,GAAI,GAAuB,CAE/B,IACC,SAAS,EAAyB,EAAqB,EAAqB,CAEnF,aAGA,EAAoB,EAAE,EAAqB,CACzC,QAAW,UAAW,CAAE,MAAqB,OAI/C,GAAI,GAAe,EAAoB,KACnC,EAAoC,EAAoB,EAAE,GAE1D,EAAS,EAAoB,KAC7B,EAA8B,EAAoB,EAAE,GAEpD,EAAa,EAAoB,KACjC,EAA8B,EAAoB,EAAE,GAExD,WAAiB,EAAK,CAA6B,MAAI,OAAO,SAAW,YAAc,MAAO,QAAO,UAAa,SAAY,EAAU,SAAiB,EAAK,CAAE,MAAO,OAAO,IAAiB,EAAU,SAAiB,EAAK,CAAE,MAAO,IAAO,MAAO,SAAW,YAAc,EAAI,cAAgB,QAAU,IAAQ,OAAO,UAAY,SAAW,MAAO,IAAiB,EAAQ,GAEnX,WAAyB,EAAU,EAAa,CAAE,GAAI,CAAE,aAAoB,IAAgB,KAAM,IAAI,WAAU,qCAEhH,WAA2B,EAAQ,EAAO,CAAE,OAAS,GAAI,EAAG,EAAI,EAAM,OAAQ,IAAK,CAAE,GAAI,GAAa,EAAM,GAAI,EAAW,WAAa,EAAW,YAAc,GAAO,EAAW,aAAe,GAAU,SAAW,IAAY,GAAW,SAAW,IAAM,OAAO,eAAe,EAAQ,EAAW,IAAK,IAE7S,WAAsB,EAAa,EAAY,EAAa,CAAE,MAAI,IAAY,EAAkB,EAAY,UAAW,GAAiB,GAAa,EAAkB,EAAa,GAAqB,EAQzM,GAAI,GAA+B,UAAY,CAI7C,WAAyB,EAAS,CAChC,EAAgB,KAAM,GAEtB,KAAK,eAAe,GACpB,KAAK,gBAQP,SAAa,EAAiB,CAAC,CAC7B,IAAK,iBACL,MAAO,UAA0B,CAC/B,GAAI,GAAU,UAAU,OAAS,GAAK,UAAU,KAAO,OAAY,UAAU,GAAK,GAClF,KAAK,OAAS,EAAQ,OACtB,KAAK,UAAY,EAAQ,UACzB,KAAK,QAAU,EAAQ,QACvB,KAAK,OAAS,EAAQ,OACtB,KAAK,KAAO,EAAQ,KACpB,KAAK,QAAU,EAAQ,QACvB,KAAK,aAAe,KAOrB,CACD,IAAK,gBACL,MAAO,UAAyB,CAC9B,AAAI,KAAK,KACP,KAAK,aACI,KAAK,QACd,KAAK,iBAOR,CACD,IAAK,oBACL,MAAO,UAA6B,CAClC,GAAI,GAAQ,SAAS,gBAAgB,aAAa,SAAW,MAC7D,KAAK,SAAW,SAAS,cAAc,YAEvC,KAAK,SAAS,MAAM,SAAW,OAE/B,KAAK,SAAS,MAAM,OAAS,IAC7B,KAAK,SAAS,MAAM,QAAU,IAC9B,KAAK,SAAS,MAAM,OAAS,IAE7B,KAAK,SAAS,MAAM,SAAW,WAC/B,KAAK,SAAS,MAAM,EAAQ,QAAU,QAAU,UAEhD,GAAI,GAAY,OAAO,aAAe,SAAS,gBAAgB,UAC/D,YAAK,SAAS,MAAM,IAAM,GAAG,OAAO,EAAW,MAC/C,KAAK,SAAS,aAAa,WAAY,IACvC,KAAK,SAAS,MAAQ,KAAK,KACpB,KAAK,WAOb,CACD,IAAK,aACL,MAAO,UAAsB,CAC3B,GAAI,GAAQ,KAER,EAAW,KAAK,oBAEpB,KAAK,oBAAsB,UAAY,CACrC,MAAO,GAAM,cAGf,KAAK,YAAc,KAAK,UAAU,iBAAiB,QAAS,KAAK,sBAAwB,GACzF,KAAK,UAAU,YAAY,GAC3B,KAAK,aAAe,IAAiB,GACrC,KAAK,WACL,KAAK,eAON,CACD,IAAK,aACL,MAAO,UAAsB,CAC3B,AAAI,KAAK,aACP,MAAK,UAAU,oBAAoB,QAAS,KAAK,qBACjD,KAAK,YAAc,KACnB,KAAK,oBAAsB,MAGzB,KAAK,UACP,MAAK,UAAU,YAAY,KAAK,UAChC,KAAK,SAAW,QAOnB,CACD,IAAK,eACL,MAAO,UAAwB,CAC7B,KAAK,aAAe,IAAiB,KAAK,QAC1C,KAAK,aAMN,CACD,IAAK,WACL,MAAO,UAAoB,CACzB,GAAI,GAEJ,GAAI,CACF,EAAY,SAAS,YAAY,KAAK,cAC/B,EAAP,CACA,EAAY,GAGd,KAAK,aAAa,KAOnB,CACD,IAAK,eACL,MAAO,SAAsB,EAAW,CACtC,KAAK,QAAQ,KAAK,EAAY,UAAY,QAAS,CACjD,OAAQ,KAAK,OACb,KAAM,KAAK,aACX,QAAS,KAAK,QACd,eAAgB,KAAK,eAAe,KAAK,UAO5C,CACD,IAAK,iBACL,MAAO,UAA0B,CAC/B,AAAI,KAAK,SACP,KAAK,QAAQ,QAGf,SAAS,cAAc,OACvB,OAAO,eAAe,oBAOvB,CACD,IAAK,UAKL,MAAO,UAAmB,CACxB,KAAK,eAEN,CACD,IAAK,SACL,IAAK,UAAe,CAClB,GAAI,GAAS,UAAU,OAAS,GAAK,UAAU,KAAO,OAAY,UAAU,GAAK,OAGjF,GAFA,KAAK,QAAU,EAEX,KAAK,UAAY,QAAU,KAAK,UAAY,MAC9C,KAAM,IAAI,OAAM,uDAQpB,IAAK,UAAe,CAClB,MAAO,MAAK,UAQb,CACD,IAAK,SACL,IAAK,SAAa,EAAQ,CACxB,GAAI,IAAW,OACb,GAAI,GAAU,EAAQ,KAAY,UAAY,EAAO,WAAa,EAAG,CACnE,GAAI,KAAK,SAAW,QAAU,EAAO,aAAa,YAChD,KAAM,IAAI,OAAM,qFAGlB,GAAI,KAAK,SAAW,OAAU,GAAO,aAAa,aAAe,EAAO,aAAa,aACnF,KAAM,IAAI,OAAM,yGAGlB,KAAK,QAAU,MAEf,MAAM,IAAI,OAAM,gDAStB,IAAK,UAAe,CAClB,MAAO,MAAK,YAIT,KAGwB,EAAoB,EAErD,WAA0B,EAAK,CAA6B,MAAI,OAAO,SAAW,YAAc,MAAO,QAAO,UAAa,SAAY,EAAmB,SAAiB,EAAK,CAAE,MAAO,OAAO,IAAiB,EAAmB,SAAiB,EAAK,CAAE,MAAO,IAAO,MAAO,SAAW,YAAc,EAAI,cAAgB,QAAU,IAAQ,OAAO,UAAY,SAAW,MAAO,IAAiB,EAAiB,GAEvZ,WAAkC,EAAU,EAAa,CAAE,GAAI,CAAE,aAAoB,IAAgB,KAAM,IAAI,WAAU,qCAEzH,YAAoC,EAAQ,EAAO,CAAE,OAAS,GAAI,EAAG,EAAI,EAAM,OAAQ,IAAK,CAAE,GAAI,GAAa,EAAM,GAAI,EAAW,WAAa,EAAW,YAAc,GAAO,EAAW,aAAe,GAAU,SAAW,IAAY,GAAW,SAAW,IAAM,OAAO,eAAe,EAAQ,EAAW,IAAK,IAEtT,YAA+B,EAAa,EAAY,EAAa,CAAE,MAAI,IAAY,GAA2B,EAAY,UAAW,GAAiB,GAAa,GAA2B,EAAa,GAAqB,EAEpO,YAAmB,EAAU,EAAY,CAAE,GAAI,MAAO,IAAe,YAAc,IAAe,KAAQ,KAAM,IAAI,WAAU,sDAAyD,EAAS,UAAY,OAAO,OAAO,GAAc,EAAW,UAAW,CAAE,YAAa,CAAE,MAAO,EAAU,SAAU,GAAM,aAAc,MAAe,GAAY,GAAgB,EAAU,GAEnX,YAAyB,EAAG,EAAG,CAAE,UAAkB,OAAO,gBAAkB,SAAyB,EAAG,EAAG,CAAE,SAAE,UAAY,EAAU,GAAa,GAAgB,EAAG,GAErK,YAAsB,EAAS,CAAE,GAAI,GAA4B,KAA6B,MAAO,WAAgC,CAAE,GAAI,GAAQ,GAAgB,GAAU,EAAQ,GAAI,EAA2B,CAAE,GAAI,GAAY,GAAgB,MAAM,YAAa,EAAS,QAAQ,UAAU,EAAO,UAAW,OAAqB,GAAS,EAAM,MAAM,KAAM,WAAc,MAAO,IAA2B,KAAM,IAE5Z,YAAoC,EAAM,EAAM,CAAE,MAAI,IAAS,GAAiB,KAAU,UAAY,MAAO,IAAS,YAAsB,EAAe,GAAuB,GAElL,YAAgC,EAAM,CAAE,GAAI,IAAS,OAAU,KAAM,IAAI,gBAAe,6DAAgE,MAAO,GAE/J,aAAqC,CAA0E,GAApE,MAAO,UAAY,aAAe,CAAC,QAAQ,WAA6B,QAAQ,UAAU,KAAM,MAAO,GAAO,GAAI,MAAO,QAAU,WAAY,MAAO,GAAM,GAAI,CAAE,YAAK,UAAU,SAAS,KAAK,QAAQ,UAAU,KAAM,GAAI,UAAY,KAAa,SAAe,EAAP,CAAY,MAAO,IAE1T,YAAyB,EAAG,CAAE,UAAkB,OAAO,eAAiB,OAAO,eAAiB,SAAyB,EAAG,CAAE,MAAO,GAAE,WAAa,OAAO,eAAe,IAAc,GAAgB,GAWxM,YAA2B,EAAQ,EAAS,CAC1C,GAAI,GAAY,kBAAkB,OAAO,GAEzC,GAAI,EAAC,EAAQ,aAAa,GAI1B,MAAO,GAAQ,aAAa,GAQ9B,GAAI,IAAyB,SAAU,EAAU,CAC/C,GAAU,EAAW,GAErB,GAAI,GAAS,GAAa,GAM1B,WAAmB,EAAS,EAAS,CACnC,GAAI,GAEJ,SAAyB,KAAM,GAE/B,EAAQ,EAAO,KAAK,MAEpB,EAAM,eAAe,GAErB,EAAM,YAAY,GAEX,EAST,UAAsB,EAAW,CAAC,CAChC,IAAK,iBACL,MAAO,UAA0B,CAC/B,GAAI,GAAU,UAAU,OAAS,GAAK,UAAU,KAAO,OAAY,UAAU,GAAK,GAClF,KAAK,OAAS,MAAO,GAAQ,QAAW,WAAa,EAAQ,OAAS,KAAK,cAC3E,KAAK,OAAS,MAAO,GAAQ,QAAW,WAAa,EAAQ,OAAS,KAAK,cAC3E,KAAK,KAAO,MAAO,GAAQ,MAAS,WAAa,EAAQ,KAAO,KAAK,YACrE,KAAK,UAAY,EAAiB,EAAQ,aAAe,SAAW,EAAQ,UAAY,SAAS,OAOlG,CACD,IAAK,cACL,MAAO,SAAqB,EAAS,CACnC,GAAI,GAAS,KAEb,KAAK,SAAW,IAAiB,EAAS,QAAS,SAAU,GAAG,CAC9D,MAAO,GAAO,QAAQ,QAQzB,CACD,IAAK,UACL,MAAO,SAAiB,EAAG,CACzB,GAAI,GAAU,EAAE,gBAAkB,EAAE,cAEpC,AAAI,KAAK,iBACP,MAAK,gBAAkB,MAGzB,KAAK,gBAAkB,GAAI,GAAiB,CAC1C,OAAQ,KAAK,OAAO,GACpB,OAAQ,KAAK,OAAO,GACpB,KAAM,KAAK,KAAK,GAChB,UAAW,KAAK,UAChB,QAAS,EACT,QAAS,SAQZ,CACD,IAAK,gBACL,MAAO,SAAuB,EAAS,CACrC,MAAO,IAAkB,SAAU,KAOpC,CACD,IAAK,gBACL,MAAO,SAAuB,EAAS,CACrC,GAAI,GAAW,GAAkB,SAAU,GAE3C,GAAI,EACF,MAAO,UAAS,cAAc,KASjC,CACD,IAAK,cAML,MAAO,SAAqB,EAAS,CACnC,MAAO,IAAkB,OAAQ,KAMlC,CACD,IAAK,UACL,MAAO,UAAmB,CACxB,KAAK,SAAS,UAEV,KAAK,iBACP,MAAK,gBAAgB,UACrB,KAAK,gBAAkB,SAGzB,CAAC,CACH,IAAK,cACL,MAAO,UAAuB,CAC5B,GAAI,GAAS,UAAU,OAAS,GAAK,UAAU,KAAO,OAAY,UAAU,GAAK,CAAC,OAAQ,OACtF,EAAU,MAAO,IAAW,SAAW,CAAC,GAAU,EAClD,GAAU,CAAC,CAAC,SAAS,sBACzB,SAAQ,QAAQ,SAAU,GAAQ,CAChC,GAAU,IAAW,CAAC,CAAC,SAAS,sBAAsB,MAEjD,OAIJ,GACN,KAE8B,GAAa,IAIxC,IACC,SAAS,EAAQ,CAExB,GAAI,GAAqB,EAKzB,GAAI,MAAO,UAAY,aAAe,CAAC,QAAQ,UAAU,QAAS,CAC9D,GAAI,GAAQ,QAAQ,UAEpB,EAAM,QAAU,EAAM,iBACN,EAAM,oBACN,EAAM,mBACN,EAAM,kBACN,EAAM,sBAU1B,WAAkB,EAAS,EAAU,CACjC,KAAO,GAAW,EAAQ,WAAa,GAAoB,CACvD,GAAI,MAAO,GAAQ,SAAY,YAC3B,EAAQ,QAAQ,GAClB,MAAO,GAET,EAAU,EAAQ,YAI1B,EAAO,QAAU,GAKX,IACC,SAAS,EAAQ,EAA0B,EAAqB,CAEvE,GAAI,GAAU,EAAoB,KAYlC,WAAmB,EAAS,EAAU,EAAM,EAAU,EAAY,CAC9D,GAAI,GAAa,EAAS,MAAM,KAAM,WAEtC,SAAQ,iBAAiB,EAAM,EAAY,GAEpC,CACH,QAAS,UAAW,CAChB,EAAQ,oBAAoB,EAAM,EAAY,KAe1D,WAAkB,EAAU,EAAU,EAAM,EAAU,EAAY,CAE9D,MAAI,OAAO,GAAS,kBAAqB,WAC9B,EAAU,MAAM,KAAM,WAI7B,MAAO,IAAS,WAGT,EAAU,KAAK,KAAM,UAAU,MAAM,KAAM,WAIlD,OAAO,IAAa,UACpB,GAAW,SAAS,iBAAiB,IAIlC,MAAM,UAAU,IAAI,KAAK,EAAU,SAAU,EAAS,CACzD,MAAO,GAAU,EAAS,EAAU,EAAM,EAAU,MAa5D,WAAkB,EAAS,EAAU,EAAM,EAAU,CACjD,MAAO,UAAS,EAAG,CACf,EAAE,eAAiB,EAAQ,EAAE,OAAQ,GAEjC,EAAE,gBACF,EAAS,KAAK,EAAS,IAKnC,EAAO,QAAU,GAKX,IACC,SAAS,EAAyB,EAAS,CAQlD,EAAQ,KAAO,SAAS,EAAO,CAC3B,MAAO,KAAU,QACV,YAAiB,cACjB,EAAM,WAAa,GAS9B,EAAQ,SAAW,SAAS,EAAO,CAC/B,GAAI,GAAO,OAAO,UAAU,SAAS,KAAK,GAE1C,MAAO,KAAU,QACT,KAAS,qBAAuB,IAAS,4BACzC,UAAY,IACZ,GAAM,SAAW,GAAK,EAAQ,KAAK,EAAM,MASrD,EAAQ,OAAS,SAAS,EAAO,CAC7B,MAAO,OAAO,IAAU,UACjB,YAAiB,SAS5B,EAAQ,GAAK,SAAS,EAAO,CACzB,GAAI,GAAO,OAAO,UAAU,SAAS,KAAK,GAE1C,MAAO,KAAS,sBAMd,IACC,SAAS,EAAQ,EAA0B,EAAqB,CAEvE,GAAI,GAAK,EAAoB,KACzB,EAAW,EAAoB,KAWnC,WAAgB,EAAQ,EAAM,EAAU,CACpC,GAAI,CAAC,GAAU,CAAC,GAAQ,CAAC,EACrB,KAAM,IAAI,OAAM,8BAGpB,GAAI,CAAC,EAAG,OAAO,GACX,KAAM,IAAI,WAAU,oCAGxB,GAAI,CAAC,EAAG,GAAG,GACP,KAAM,IAAI,WAAU,qCAGxB,GAAI,EAAG,KAAK,GACR,MAAO,GAAW,EAAQ,EAAM,GAE/B,GAAI,EAAG,SAAS,GACjB,MAAO,GAAe,EAAQ,EAAM,GAEnC,GAAI,EAAG,OAAO,GACf,MAAO,GAAe,EAAQ,EAAM,GAGpC,KAAM,IAAI,WAAU,6EAa5B,WAAoB,EAAM,EAAM,EAAU,CACtC,SAAK,iBAAiB,EAAM,GAErB,CACH,QAAS,UAAW,CAChB,EAAK,oBAAoB,EAAM,KAc3C,WAAwB,EAAU,EAAM,EAAU,CAC9C,aAAM,UAAU,QAAQ,KAAK,EAAU,SAAS,EAAM,CAClD,EAAK,iBAAiB,EAAM,KAGzB,CACH,QAAS,UAAW,CAChB,MAAM,UAAU,QAAQ,KAAK,EAAU,SAAS,EAAM,CAClD,EAAK,oBAAoB,EAAM,OAe/C,WAAwB,EAAU,EAAM,EAAU,CAC9C,MAAO,GAAS,SAAS,KAAM,EAAU,EAAM,GAGnD,EAAO,QAAU,GAKX,IACC,SAAS,EAAQ,CAExB,WAAgB,EAAS,CACrB,GAAI,GAEJ,GAAI,EAAQ,WAAa,SACrB,EAAQ,QAER,EAAe,EAAQ,cAElB,EAAQ,WAAa,SAAW,EAAQ,WAAa,WAAY,CACtE,GAAI,GAAa,EAAQ,aAAa,YAEtC,AAAK,GACD,EAAQ,aAAa,WAAY,IAGrC,EAAQ,SACR,EAAQ,kBAAkB,EAAG,EAAQ,MAAM,QAEtC,GACD,EAAQ,gBAAgB,YAG5B,EAAe,EAAQ,UAEtB,CACD,AAAI,EAAQ,aAAa,oBACrB,EAAQ,QAGZ,GAAI,GAAY,OAAO,eACnB,EAAQ,SAAS,cAErB,EAAM,mBAAmB,GACzB,EAAU,kBACV,EAAU,SAAS,GAEnB,EAAe,EAAU,WAG7B,MAAO,GAGX,EAAO,QAAU,GAKX,IACC,SAAS,EAAQ,CAExB,YAAc,EAKd,EAAE,UAAY,CACZ,GAAI,SAAU,EAAM,EAAU,EAAK,CACjC,GAAI,GAAI,KAAK,GAAM,MAAK,EAAI,IAE5B,MAAC,GAAE,IAAU,GAAE,GAAQ,KAAK,KAAK,CAC/B,GAAI,EACJ,IAAK,IAGA,MAGT,KAAM,SAAU,EAAM,EAAU,EAAK,CACnC,GAAI,GAAO,KACX,YAAqB,CACnB,EAAK,IAAI,EAAM,GACf,EAAS,MAAM,EAAK,WAGtB,SAAS,EAAI,EACN,KAAK,GAAG,EAAM,EAAU,IAGjC,KAAM,SAAU,EAAM,CACpB,GAAI,GAAO,GAAG,MAAM,KAAK,UAAW,GAChC,EAAW,OAAK,GAAM,MAAK,EAAI,KAAK,IAAS,IAAI,QACjD,EAAI,EACJ,EAAM,EAAO,OAEjB,IAAK,EAAG,EAAI,EAAK,IACf,EAAO,GAAG,GAAG,MAAM,EAAO,GAAG,IAAK,GAGpC,MAAO,OAGT,IAAK,SAAU,EAAM,EAAU,CAC7B,GAAI,GAAI,KAAK,GAAM,MAAK,EAAI,IACxB,EAAO,EAAE,GACT,EAAa,GAEjB,GAAI,GAAQ,EACV,OAAS,GAAI,EAAG,EAAM,EAAK,OAAQ,EAAI,EAAK,IAC1C,AAAI,EAAK,GAAG,KAAO,GAAY,EAAK,GAAG,GAAG,IAAM,GAC9C,EAAW,KAAK,EAAK,IAQ3B,MAAC,GAAW,OACR,EAAE,GAAQ,EACV,MAAO,GAAE,GAEN,OAIX,EAAO,QAAU,EACjB,EAAO,QAAQ,YAAc,IAQf,EAA2B,GAG/B,WAA6B,EAAU,CAEtC,GAAG,EAAyB,GAC3B,MAAO,GAAyB,GAAU,QAG3C,GAAI,GAAS,EAAyB,GAAY,CAGjD,QAAS,IAIV,SAAoB,GAAU,EAAQ,EAAO,QAAS,GAG/C,EAAO,QAKf,MAAC,WAAW,CAEX,EAAoB,EAAI,SAAS,EAAQ,CACxC,GAAI,GAAS,GAAU,EAAO,WAC7B,UAAW,CAAE,MAAO,GAAO,SAC3B,UAAW,CAAE,MAAO,IACrB,SAAoB,EAAE,EAAQ,CAAE,EAAG,IAC5B,MAKR,UAAW,CAEX,EAAoB,EAAI,SAAS,EAAS,EAAY,CACrD,OAAQ,KAAO,GACd,AAAG,EAAoB,EAAE,EAAY,IAAQ,CAAC,EAAoB,EAAE,EAAS,IAC5E,OAAO,eAAe,EAAS,EAAK,CAAE,WAAY,GAAM,IAAK,EAAW,SAO3E,UAAW,CACX,EAAoB,EAAI,SAAS,EAAK,EAAM,CAAE,MAAO,QAAO,UAAU,eAAe,KAAK,EAAK,OAOzF,EAAoB,QAEpC,YCx7BD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,GAQA,aAOA,GAAI,IAAkB,UAOtB,GAAO,QAAU,GAUjB,YAAoB,EAAQ,CAC1B,GAAI,GAAM,GAAK,EACX,EAAQ,GAAgB,KAAK,GAEjC,GAAI,CAAC,EACH,MAAO,GAGT,GAAI,GACA,EAAO,GACP,EAAQ,EACR,EAAY,EAEhB,IAAK,EAAQ,EAAM,MAAO,EAAQ,EAAI,OAAQ,IAAS,CACrD,OAAQ,EAAI,WAAW,QAChB,IACH,EAAS,SACT,UACG,IACH,EAAS,QACT,UACG,IACH,EAAS,QACT,UACG,IACH,EAAS,OACT,UACG,IACH,EAAS,OACT,cAEA,SAGJ,AAAI,IAAc,GAChB,IAAQ,EAAI,UAAU,EAAW,IAGnC,EAAY,EAAQ,EACpB,GAAQ,EAGV,MAAO,KAAc,EACjB,EAAO,EAAI,UAAU,EAAW,GAChC,KCtDN,OAAO,SCtBP,OAAkB,SACZ,CACF,YACA,YACA,UACA,cACA,WACA,cACA,aACA,eACA,gBACA,mBACA,YACA,SACA,YACA,kBACA,gBACA,WACA,oBACA,oBACA,iBACA,wBACA,gBACA,mBACA,0BACA,2BACA,WCtBE,WAAqB,EAAU,CACnC,MAAO,OAAO,IAAU,WCIpB,YAA8B,EAAgC,CAClE,GAAM,GAAS,SAAC,EAAa,CAC3B,MAAM,KAAK,GACX,EAAS,MAAQ,GAAI,SAAQ,OAGzB,EAAW,EAAW,GAC5B,SAAS,UAAY,OAAO,OAAO,MAAM,WACzC,EAAS,UAAU,YAAc,EAC1B,ECAF,GAAM,IAA+C,GAC1D,SAAC,EAAM,CACL,MAAA,UAA4C,EAA0B,CACpE,EAAO,MACP,KAAK,QAAU,EACR,EAAO,OAAM;EACxB,EAAO,IAAI,SAAC,EAAK,EAAC,CAAK,MAAG,GAAI,EAAC,KAAK,EAAI,aAAc,KAAK;KACnD,GACJ,KAAK,KAAO,sBACZ,KAAK,OAAS,KCtBd,YAAuB,EAA6B,EAAO,CAC/D,GAAI,EAAK,CACP,GAAM,GAAQ,EAAI,QAAQ,GAC1B,GAAK,GAAS,EAAI,OAAO,EAAO,ICSpC,GAAA,IAAA,UAAA,CAyBE,WAAoB,EAA4B,CAA5B,KAAA,gBAAA,EAdb,KAAA,OAAS,GAER,KAAA,WAAmD,KAMnD,KAAA,WAAoD,KAc5D,SAAA,UAAA,YAAA,UAAA,aACM,EAEJ,GAAI,CAAC,KAAK,OAAQ,CAChB,KAAK,OAAS,GAGN,GAAA,GAAe,KAAI,WAC3B,GAAI,EAEF,GADA,KAAK,WAAa,KACd,MAAM,QAAQ,OAChB,OAAqB,GAAA,GAAA,GAAU,EAAA,EAAA,OAAA,CAAA,EAAA,KAAA,EAAA,EAAA,OAAE,CAA5B,GAAM,GAAM,EAAA,MACf,EAAO,OAAO,4GAGhB,GAAW,OAAO,MAId,GAAA,GAAoB,KAAI,gBAChC,GAAI,EAAW,GACb,GAAI,CACF,UACO,EAAP,CACA,EAAS,YAAa,IAAsB,EAAE,OAAS,CAAC,GAIpD,GAAA,GAAe,KAAI,WAC3B,GAAI,EAAY,CACd,KAAK,WAAa,SAClB,OAAuB,GAAA,GAAA,GAAU,EAAA,EAAA,OAAA,CAAA,EAAA,KAAA,EAAA,EAAA,OAAE,CAA9B,GAAM,GAAQ,EAAA,MACjB,GAAI,CACF,GAAa,SACN,EAAP,CACA,EAAS,GAAM,KAAN,EAAU,GACnB,AAAI,YAAe,IACjB,EAAM,EAAA,EAAA,GAAA,EAAO,IAAM,EAAK,EAAI,SAE5B,EAAO,KAAK,uGAMpB,GAAI,EACF,KAAM,IAAI,IAAoB,KAuBpC,EAAA,UAAA,IAAA,SAAI,EAAuB,OAGzB,GAAI,GAAY,IAAa,KAC3B,GAAI,KAAK,OAGP,GAAa,OACR,CACL,GAAI,YAAoB,GAAc,CAGpC,GAAI,EAAS,QAAU,EAAS,WAAW,MACzC,OAEF,EAAS,WAAW,MAEtB,AAAC,MAAK,WAAa,GAAA,KAAK,cAAU,MAAA,IAAA,OAAA,EAAI,IAAI,KAAK,KAU7C,EAAA,UAAA,WAAR,SAAmB,EAAoB,CAC7B,GAAA,GAAe,KAAI,WAC3B,MAAO,KAAe,GAAW,MAAM,QAAQ,IAAe,EAAW,SAAS,IAU5E,EAAA,UAAA,WAAR,SAAmB,EAAoB,CAC7B,GAAA,GAAe,KAAI,WAC3B,KAAK,WAAa,MAAM,QAAQ,GAAe,GAAW,KAAK,GAAS,GAAc,EAAa,CAAC,EAAY,GAAU,GAOpH,EAAA,UAAA,cAAR,SAAsB,EAAoB,CAChC,GAAA,GAAe,KAAI,WAC3B,AAAI,IAAe,EACjB,KAAK,WAAa,KACT,MAAM,QAAQ,IACvB,GAAU,EAAY,IAkB1B,EAAA,UAAA,OAAA,SAAO,EAAsC,CACnC,GAAA,GAAe,KAAI,WAC3B,GAAc,GAAU,EAAY,GAEhC,YAAoB,IACtB,EAAS,cAAc,OAhLb,EAAA,MAAS,UAAA,CACrB,GAAM,GAAQ,GAAI,GAClB,SAAM,OAAS,GACR,KAgLX,KAEO,GAAM,IAAqB,GAAa,MAEzC,YAAyB,EAAU,CACvC,MACE,aAAiB,KAChB,GAAS,UAAY,IAAS,EAAW,EAAM,SAAW,EAAW,EAAM,MAAQ,EAAW,EAAM,aAIzG,YAAsB,EAAuC,CAC3D,AAAI,EAAW,GACb,IAEA,EAAS,cC9MN,GAAM,IAAuB,CAClC,iBAAkB,KAClB,sBAAuB,KACvB,QAAS,OACT,sCAAuC,GACvC,yBAA0B,ICErB,GAAM,IAAmC,CAG9C,WAAU,UAAA,QAAC,GAAA,GAAA,EAAA,EAAA,EAAA,UAAA,OAAA,IAAA,EAAA,GAAA,UAAA,GACD,GAAA,GAAa,GAAe,SACpC,MAAQ,KAAQ,KAAA,OAAR,EAAU,aAAc,YAAW,MAAA,OAAA,EAAA,GAAA,EAAI,MAEjD,aAAY,SAAC,EAAM,CACT,GAAA,GAAa,GAAe,SACpC,MAAQ,KAAQ,KAAA,OAAR,EAAU,eAAgB,cAAc,IAElD,SAAU,QCbN,YAA+B,EAAQ,CAC3C,GAAgB,WAAW,UAAA,CACjB,GAAA,GAAqB,GAAM,iBACnC,GAAI,EAEF,EAAiB,OAGjB,MAAM,KCnBN,aAAc,ECMb,GAAM,IAAyB,UAAA,CAAM,MAAA,IAAmB,IAAK,OAAW,WAOzE,YAA4B,EAAU,CAC1C,MAAO,IAAmB,IAAK,OAAW,GAQtC,YAA8B,EAAQ,CAC1C,MAAO,IAAmB,IAAK,EAAO,QASlC,YAA6B,EAAuB,EAAY,EAAU,CAC9E,MAAO,CACL,KAAI,EACJ,MAAK,EACL,MAAK,GCnCT,GAAI,IAAuD,KASrD,YAAuB,EAAc,CACzC,GAAI,GAAO,sCAAuC,CAChD,GAAM,GAAS,CAAC,GAKhB,GAJI,GACF,IAAU,CAAE,YAAa,GAAO,MAAO,OAEzC,IACI,EAAQ,CACJ,GAAA,GAAyB,GAAvB,EAAW,EAAA,YAAE,EAAK,EAAA,MAE1B,GADA,GAAU,KACN,EACF,KAAM,QAMV,KAQE,YAAuB,EAAQ,CACnC,AAAI,GAAO,uCAAyC,IAClD,IAAQ,YAAc,GACtB,GAAQ,MAAQ,GCnBpB,GAAA,IAAA,SAAA,EAAA,CAAmC,EAAA,EAAA,GA6BjC,WAAY,EAA6C,CAAzD,GAAA,GACE,EAAA,KAAA,OAAO,KATC,SAAA,UAAqB,GAU7B,AAAI,EACF,GAAK,YAAc,EAGf,GAAe,IACjB,EAAY,IAAI,IAGlB,EAAK,YAAc,KAvBhB,SAAA,OAAP,SAAiB,EAAwB,EAA2B,EAAqB,CACvF,MAAO,IAAI,IAAe,EAAM,EAAO,IAiCzC,EAAA,UAAA,KAAA,SAAK,EAAS,CACZ,AAAI,KAAK,UACP,GAA0B,GAAiB,GAAQ,MAEnD,KAAK,MAAM,IAWf,EAAA,UAAA,MAAA,SAAM,EAAS,CACb,AAAI,KAAK,UACP,GAA0B,GAAkB,GAAM,MAElD,MAAK,UAAY,GACjB,KAAK,OAAO,KAUhB,EAAA,UAAA,SAAA,UAAA,CACE,AAAI,KAAK,UACP,GAA0B,GAAuB,MAEjD,MAAK,UAAY,GACjB,KAAK,cAIT,EAAA,UAAA,YAAA,UAAA,CACE,AAAK,KAAK,QACR,MAAK,UAAY,GACjB,EAAA,UAAM,YAAW,KAAA,MACjB,KAAK,YAAc,OAIb,EAAA,UAAA,MAAV,SAAgB,EAAQ,CACtB,KAAK,YAAY,KAAK,IAGd,EAAA,UAAA,OAAV,SAAiB,EAAQ,CACvB,GAAI,CACF,KAAK,YAAY,MAAM,WAEvB,KAAK,gBAIC,EAAA,UAAA,UAAV,UAAA,CACE,GAAI,CACF,KAAK,YAAY,mBAEjB,KAAK,gBAGX,GApHmC,IAsHnC,GAAA,IAAA,SAAA,EAAA,CAAuC,EAAA,EAAA,GACrC,WACE,EACA,EACA,EAA8B,CAHhC,GAAA,GAKE,EAAA,KAAA,OAAO,KAEH,EACJ,GAAI,EAAW,GAGb,EAAO,UACE,EAAgB,CAMzB,AAAG,EAA0B,EAAc,KAAlC,EAAoB,EAAc,MAA3B,EAAa,EAAc,SAC3C,GAAI,GACJ,AAAI,GAAQ,GAAO,yBAIjB,GAAU,OAAO,OAAO,GACxB,EAAQ,YAAc,UAAA,CAAM,MAAA,GAAK,gBAEjC,EAAU,EAEZ,EAAO,GAAI,KAAA,OAAJ,EAAM,KAAK,GAClB,EAAQ,GAAK,KAAA,OAAL,EAAO,KAAK,GACpB,EAAW,GAAQ,KAAA,OAAR,EAAU,KAAK,GAK5B,SAAK,YAAc,CACjB,KAAM,EAAO,GAAqB,EAAM,GAAQ,GAChD,MAAO,GAAqB,GAAK,KAAL,EAAS,GAAqB,GAC1D,SAAU,EAAW,GAAqB,EAAU,GAAQ,MAGlE,MAAA,IA3CuC,IAoDvC,YAA8B,EAA8B,EAA6B,CACvF,MAAO,WAAA,QAAC,GAAA,GAAA,EAAA,EAAA,EAAA,UAAA,OAAA,IAAA,EAAA,GAAA,UAAA,GACN,GAAI,CACF,EAAO,MAAA,OAAA,EAAA,GAAA,EAAI,WACJ,EAAP,CACA,AAAI,GAAO,sCACT,GAAa,GAIb,GAAqB,KAW7B,YAA6B,EAAQ,CACnC,KAAM,GAQR,YAAmC,EAA2C,EAA2B,CAC/F,GAAA,GAA0B,GAAM,sBACxC,GAAyB,GAAgB,WAAW,UAAA,CAAM,MAAA,GAAsB,EAAc,KAQzF,GAAM,IAA6D,CACxE,OAAQ,GACR,KAAM,GACN,MAAO,GACP,SAAU,ICzOL,GAAM,IAA+B,UAAA,CAAM,MAAC,OAAO,SAAW,YAAc,OAAO,YAAe,kBCDnG,YAAsB,EAAI,CAC9B,MAAO,GCsEH,aAAc,QAAC,GAAA,GAAA,EAAA,EAAA,EAAA,UAAA,OAAA,IAAA,EAAA,GAAA,UAAA,GACnB,MAAO,IAAc,GAIjB,YAA8B,EAA+B,CACjE,MAAI,GAAI,SAAW,EACV,GAGL,EAAI,SAAW,EACV,EAAI,GAGN,SAAe,EAAQ,CAC5B,MAAO,GAAI,OAAO,SAAC,EAAW,EAAuB,CAAK,MAAA,GAAG,IAAO,ICnExE,GAAA,GAAA,UAAA,CAkBE,WAAY,EAA6E,CACvF,AAAI,GACF,MAAK,WAAa,GA8BtB,SAAA,UAAA,KAAA,SAAQ,EAAyB,CAC/B,GAAM,GAAa,GAAI,GACvB,SAAW,OAAS,KACpB,EAAW,SAAW,EACf,GA2IT,EAAA,UAAA,UAAA,SACE,EACA,EACA,EAA8B,CAHhC,GAAA,GAAA,KAKQ,EAAa,GAAa,GAAkB,EAAiB,GAAI,IAAe,EAAgB,EAAO,GAE7G,UAAa,UAAA,CACL,GAAA,GAAuB,EAArB,EAAQ,EAAA,SAAE,EAAM,EAAA,OACxB,EAAW,IACT,EAGI,EAAS,KAAK,EAAY,GAC1B,EAIA,EAAK,WAAW,GAGhB,EAAK,cAAc,MAIpB,GAIC,EAAA,UAAA,cAAV,SAAwB,EAAmB,CACzC,GAAI,CACF,MAAO,MAAK,WAAW,SAChB,EAAP,CAIA,EAAK,MAAM,KA+Df,EAAA,UAAA,QAAA,SAAQ,EAA0B,EAAoC,CAAtE,GAAA,GAAA,KACE,SAAc,GAAe,GAEtB,GAAI,GAAkB,SAAC,EAAS,EAAM,CAG3C,GAAI,GACJ,EAAe,EAAK,UAClB,SAAC,EAAK,CACJ,GAAI,CACF,EAAK,SACE,EAAP,CACA,EAAO,GACP,GAAY,MAAZ,EAAc,gBAGlB,EACA,MAMI,EAAA,UAAA,WAAV,SAAqB,EAA2B,OAC9C,MAAO,GAAA,KAAK,UAAM,MAAA,IAAA,OAAA,OAAA,EAAE,UAAU,IAQhC,EAAA,UAAC,IAAD,UAAA,CACE,MAAO,OA6FT,EAAA,UAAA,KAAA,UAAA,QAAK,GAAA,GAAA,EAAA,EAAA,EAAA,UAAA,OAAA,IAAA,EAAA,GAAA,UAAA,GACH,MAAO,GAAW,OAAS,GAAc,GAAY,MAAQ,MA8B/D,EAAA,UAAA,UAAA,SAAU,EAAoC,CAA9C,GAAA,GAAA,KACE,SAAc,GAAe,GAEtB,GAAI,GAAY,SAAC,EAAS,EAAM,CACrC,GAAI,GACJ,EAAK,UACH,SAAC,EAAI,CAAK,MAAC,GAAQ,GACnB,SAAC,EAAQ,CAAK,MAAA,GAAO,IACrB,UAAA,CAAM,MAAA,GAAQ,QAtab,EAAA,OAAkC,SAAI,EAAwD,CACnG,MAAO,IAAI,GAAc,IAya7B,KASA,YAAwB,EAA+C,OACrE,MAAO,GAAA,GAAW,KAAX,EAAe,GAAO,WAAO,MAAA,IAAA,OAAA,EAAI,QAG1C,YAAuB,EAAU,CAC/B,MAAO,IAAS,EAAW,EAAM,OAAS,EAAW,EAAM,QAAU,EAAW,EAAM,UAGxF,YAAyB,EAAU,CACjC,MAAQ,IAAS,YAAiB,KAAgB,GAAW,IAAU,GAAe,GC1elF,YAAkB,EAAW,CACjC,MAAO,GAAW,GAAM,KAAA,OAAN,EAAQ,MAOtB,WACJ,EAAqF,CAErF,MAAO,UAAC,EAAqB,CAC3B,GAAI,GAAQ,GACV,MAAO,GAAO,KAAK,SAA+B,EAA2B,CAC3E,GAAI,CACF,MAAO,GAAK,EAAc,YACnB,EAAP,CACA,KAAK,MAAM,MAIjB,KAAM,IAAI,WAAU,2CCvBxB,GAAA,GAAA,SAAA,EAAA,CAA2C,EAAA,EAAA,GAazC,WACE,EACA,EACA,EACA,EACQ,EAAuB,CALjC,GAAA,GAmBE,EAAA,KAAA,KAAM,IAAY,KAdV,SAAA,WAAA,EAeR,EAAK,MAAQ,EACT,SAAuC,EAAQ,CAC7C,GAAI,CACF,EAAO,SACA,EAAP,CACA,EAAY,MAAM,KAGtB,EAAA,UAAM,MACV,EAAK,OAAS,EACV,SAAuC,EAAQ,CAC7C,GAAI,CACF,EAAQ,SACD,EAAP,CAEA,EAAY,MAAM,WAGlB,KAAK,gBAGT,EAAA,UAAM,OACV,EAAK,UAAY,EACb,UAAA,CACE,GAAI,CACF,UACO,EAAP,CAEA,EAAY,MAAM,WAGlB,KAAK,gBAGT,EAAA,UAAM,YAGZ,SAAA,UAAA,YAAA,UAAA,OACU,EAAW,KAAI,OACvB,EAAA,UAAM,YAAW,KAAA,MAEjB,CAAC,GAAU,IAAA,KAAK,cAAU,MAAA,IAAA,QAAA,EAAA,KAAf,QAEf,GA5E2C,ICQpC,GAAM,IAAiD,CAG5D,SAAA,SAAS,EAAQ,CACf,GAAI,GAAU,sBACV,EAAkD,qBAC9C,EAAa,GAAsB,SAC3C,AAAI,GACF,GAAU,EAAS,sBACnB,EAAS,EAAS,sBAEpB,GAAM,GAAS,EAAQ,SAAC,EAAS,CAI/B,EAAS,OACT,EAAS,KAEX,MAAO,IAAI,IAAa,UAAA,CAAM,MAAA,IAAM,KAAA,OAAN,EAAS,MAEzC,sBAAqB,UAAA,QAAC,GAAA,GAAA,EAAA,EAAA,EAAA,UAAA,OAAA,IAAA,EAAA,GAAA,UAAA,GACZ,GAAA,GAAa,GAAsB,SAC3C,MAAQ,KAAQ,KAAA,OAAR,EAAU,wBAAyB,uBAAsB,MAAA,OAAA,EAAA,GAAA,EAAI,MAEvE,qBAAoB,UAAA,QAAC,GAAA,GAAA,EAAA,EAAA,EAAA,UAAA,OAAA,IAAA,EAAA,GAAA,UAAA,GACX,GAAA,GAAa,GAAsB,SAC3C,MAAQ,KAAQ,KAAA,OAAR,EAAU,uBAAwB,sBAAqB,MAAA,OAAA,EAAA,GAAA,EAAI,MAErE,SAAU,QCrBL,GAAM,IAAuD,GAClE,SAAC,EAAM,CACL,MAAA,WAAoC,CAClC,EAAO,MACP,KAAK,KAAO,0BACZ,KAAK,QAAU,yBCVrB,GAAA,GAAA,SAAA,EAAA,CAAgC,EAAA,EAAA,GAqB9B,YAAA,CAAA,GAAA,GAEE,EAAA,KAAA,OAAO,KAtBT,SAAA,OAAS,GAET,EAAA,UAA2B,GAE3B,EAAA,UAAY,GAEZ,EAAA,SAAW,GAEX,EAAA,YAAmB,OAkBnB,SAAA,UAAA,KAAA,SAAQ,EAAwB,CAC9B,GAAM,GAAU,GAAI,IAAiB,KAAM,MAC3C,SAAQ,SAAW,EACZ,GAIC,EAAA,UAAA,eAAV,UAAA,CACE,GAAI,KAAK,OACP,KAAM,IAAI,KAId,EAAA,UAAA,KAAA,SAAK,EAAQ,CAAb,GAAA,GAAA,KACE,GAAa,UAAA,SAEX,GADA,EAAK,iBACD,CAAC,EAAK,UAAW,CACnB,GAAM,GAAO,EAAK,UAAU,YAC5B,OAAuB,GAAA,GAAA,GAAI,EAAA,EAAA,OAAA,CAAA,EAAA,KAAA,EAAA,EAAA,OAAE,CAAxB,GAAM,GAAQ,EAAA,MACjB,EAAS,KAAK,0GAMtB,EAAA,UAAA,MAAA,SAAM,EAAQ,CAAd,GAAA,GAAA,KACE,GAAa,UAAA,CAEX,GADA,EAAK,iBACD,CAAC,EAAK,UAAW,CACnB,EAAK,SAAW,EAAK,UAAY,GACjC,EAAK,YAAc,EAEnB,OADQ,GAAc,EAAI,UACnB,EAAU,QACf,EAAU,QAAS,MAAM,OAMjC,EAAA,UAAA,SAAA,UAAA,CAAA,GAAA,GAAA,KACE,GAAa,UAAA,CAEX,GADA,EAAK,iBACD,CAAC,EAAK,UAAW,CACnB,EAAK,UAAY,GAEjB,OADQ,GAAc,EAAI,UACnB,EAAU,QACf,EAAU,QAAS,eAM3B,EAAA,UAAA,YAAA,UAAA,CACE,KAAK,UAAY,KAAK,OAAS,GAC/B,KAAK,UAAY,MAGnB,OAAA,eAAI,EAAA,UAAA,WAAQ,KAAZ,UAAA,OACE,MAAO,IAAA,KAAK,aAAS,MAAA,IAAA,OAAA,OAAA,EAAE,QAAS,mCAIxB,EAAA,UAAA,cAAV,SAAwB,EAAyB,CAC/C,YAAK,iBACE,EAAA,UAAM,cAAa,KAAA,KAAC,IAInB,EAAA,UAAA,WAAV,SAAqB,EAAyB,CAC5C,YAAK,iBACL,KAAK,wBAAwB,GACtB,KAAK,gBAAgB,IAIpB,EAAA,UAAA,gBAAV,SAA0B,EAA2B,CAC7C,GAAA,GAAqC,KAAnC,EAAQ,EAAA,SAAE,EAAS,EAAA,UAAE,EAAS,EAAA,UACtC,MAAO,IAAY,EACf,GACC,GAAU,KAAK,GAAa,GAAI,IAAa,UAAA,CAAM,MAAA,IAAU,EAAW,OAIrE,EAAA,UAAA,wBAAV,SAAkC,EAA2B,CACrD,GAAA,GAAuC,KAArC,EAAQ,EAAA,SAAE,EAAW,EAAA,YAAE,EAAS,EAAA,UACxC,AAAI,EACF,EAAW,MAAM,GACR,GACT,EAAW,YAUf,EAAA,UAAA,aAAA,UAAA,CACE,GAAM,GAAkB,GAAI,GAC5B,SAAW,OAAS,KACb,GA/GF,EAAA,OAAkC,SAAI,EAA0B,EAAqB,CAC1F,MAAO,IAAI,IAAoB,EAAa,IAgHhD,GAlIgC,GAuIhC,GAAA,IAAA,SAAA,EAAA,CAAyC,EAAA,EAAA,GACvC,WAES,EACP,EAAsB,CAHxB,GAAA,GAKE,EAAA,KAAA,OAAO,KAHA,SAAA,YAAA,EAIP,EAAK,OAAS,IAGhB,SAAA,UAAA,KAAA,SAAK,EAAQ,SACX,AAAA,GAAA,GAAA,KAAK,eAAW,MAAA,IAAA,OAAA,OAAA,EAAE,QAAI,MAAA,IAAA,QAAA,EAAA,KAAA,EAAG,IAG3B,EAAA,UAAA,MAAA,SAAM,EAAQ,SACZ,AAAA,GAAA,GAAA,KAAK,eAAW,MAAA,IAAA,OAAA,OAAA,EAAE,SAAK,MAAA,IAAA,QAAA,EAAA,KAAA,EAAG,IAG5B,EAAA,UAAA,SAAA,UAAA,SACE,AAAA,GAAA,GAAA,KAAK,eAAW,MAAA,IAAA,OAAA,OAAA,EAAE,YAAQ,MAAA,IAAA,QAAA,EAAA,KAAA,IAIlB,EAAA,UAAA,WAAV,SAAqB,EAAyB,SAC5C,MAAO,GAAA,GAAA,KAAK,UAAM,MAAA,IAAA,OAAA,OAAA,EAAE,UAAU,MAAW,MAAA,IAAA,OAAA,EAAI,IAEjD,GA1ByC,GCjJlC,GAAM,IAA+C,CAC1D,IAAG,UAAA,CAGD,MAAQ,IAAsB,UAAY,MAAM,OAElD,SAAU,QCwBZ,GAAA,IAAA,SAAA,EAAA,CAAsC,EAAA,EAAA,GAUpC,WACU,EACA,EACA,EAA6D,CAF7D,AAAA,IAAA,QAAA,GAAA,KACA,IAAA,QAAA,GAAA,KACA,IAAA,QAAA,GAAA,IAHV,GAAA,GAKE,EAAA,KAAA,OAAO,KAJC,SAAA,YAAA,EACA,EAAA,YAAA,EACA,EAAA,mBAAA,EAZF,EAAA,QAA0B,GAC1B,EAAA,oBAAsB,GAc5B,EAAK,oBAAsB,IAAgB,IAC3C,EAAK,YAAc,KAAK,IAAI,EAAG,GAC/B,EAAK,YAAc,KAAK,IAAI,EAAG,KAGjC,SAAA,UAAA,KAAA,SAAK,EAAQ,CACL,GAAA,GAA+E,KAA7E,EAAS,EAAA,UAAE,EAAO,EAAA,QAAE,EAAmB,EAAA,oBAAE,EAAkB,EAAA,mBAAE,EAAW,EAAA,YAChF,AAAK,GACH,GAAQ,KAAK,GACb,CAAC,GAAuB,EAAQ,KAAK,EAAmB,MAAQ,IAElE,KAAK,cACL,EAAA,UAAM,KAAI,KAAA,KAAC,IAIH,EAAA,UAAA,WAAV,SAAqB,EAAyB,CAC5C,KAAK,iBACL,KAAK,cAQL,OANM,GAAe,KAAK,gBAAgB,GAEpC,EAAmC,KAAjC,EAAmB,EAAA,oBAAE,EAAO,EAAA,QAG9B,EAAO,EAAQ,QACZ,EAAI,EAAG,EAAI,EAAK,QAAU,CAAC,EAAW,OAAQ,GAAK,EAAsB,EAAI,EACpF,EAAW,KAAK,EAAK,IAGvB,YAAK,wBAAwB,GAEtB,GAGD,EAAA,UAAA,YAAR,UAAA,CACQ,GAAA,GAAoE,KAAlE,EAAW,EAAA,YAAE,EAAkB,EAAA,mBAAE,EAAO,EAAA,QAAE,EAAmB,EAAA,oBAK/D,EAAsB,GAAsB,EAAI,GAAK,EAK3D,GAJA,EAAc,KAAY,EAAqB,EAAQ,QAAU,EAAQ,OAAO,EAAG,EAAQ,OAAS,GAIhG,CAAC,EAAqB,CAKxB,OAJM,GAAM,EAAmB,MAC3B,EAAO,EAGF,EAAI,EAAG,EAAI,EAAQ,QAAW,EAAQ,IAAiB,EAAK,GAAK,EACxE,EAAO,EAET,GAAQ,EAAQ,OAAO,EAAG,EAAO,KAGvC,GAzEsC,GClBtC,GAAA,IAAA,SAAA,EAAA,CAA+B,EAAA,EAAA,GAC7B,WAAY,EAAsB,EAAmD,OACnF,GAAA,KAAA,OAAO,KAYF,SAAA,UAAA,SAAP,SAAgB,EAAW,EAAiB,CAAjB,MAAA,KAAA,QAAA,GAAA,GAClB,MAEX,GAjB+B,ICJxB,GAAM,IAAqC,CAGhD,YAAW,UAAA,QAAC,GAAA,GAAA,EAAA,EAAA,EAAA,UAAA,OAAA,IAAA,EAAA,GAAA,UAAA,GACF,GAAA,GAAa,GAAgB,SACrC,MAAQ,KAAQ,KAAA,OAAR,EAAU,cAAe,aAAY,MAAA,OAAA,EAAA,GAAA,EAAI,MAEnD,cAAa,SAAC,EAAM,CACV,GAAA,GAAa,GAAgB,SACrC,MAAQ,KAAQ,KAAA,OAAR,EAAU,gBAAiB,eAAe,IAEpD,SAAU,QClBZ,GAAA,IAAA,SAAA,EAAA,CAAoC,EAAA,EAAA,GAOlC,WAAsB,EAAqC,EAAmD,CAA9G,GAAA,GACE,EAAA,KAAA,KAAM,EAAW,IAAK,KADF,SAAA,UAAA,EAAqC,EAAA,KAAA,EAFjD,EAAA,QAAmB,KAMtB,SAAA,UAAA,SAAP,SAAgB,EAAW,EAAiB,CAC1C,GADyB,IAAA,QAAA,GAAA,GACrB,KAAK,OACP,MAAO,MAIT,KAAK,MAAQ,EAEb,GAAM,GAAK,KAAK,GACV,EAAY,KAAK,UAuBvB,MAAI,IAAM,MACR,MAAK,GAAK,KAAK,eAAe,EAAW,EAAI,IAK/C,KAAK,QAAU,GAEf,KAAK,MAAQ,EAEb,KAAK,GAAK,KAAK,IAAM,KAAK,eAAe,EAAW,KAAK,GAAI,GAEtD,MAGC,EAAA,UAAA,eAAV,SAAyB,EAA2B,EAAW,EAAiB,CAAjB,MAAA,KAAA,QAAA,GAAA,GACtD,GAAiB,YAAY,EAAU,MAAM,KAAK,EAAW,MAAO,IAGnE,EAAA,UAAA,eAAV,SAAyB,EAA4B,EAAS,EAAwB,CAEpF,GAF4D,IAAA,QAAA,GAAA,GAExD,GAAS,MAAQ,KAAK,QAAU,GAAS,KAAK,UAAY,GAC5D,MAAO,GAIT,GAAiB,cAAc,IAQ1B,EAAA,UAAA,QAAP,SAAe,EAAU,EAAa,CACpC,GAAI,KAAK,OACP,MAAO,IAAI,OAAM,gCAGnB,KAAK,QAAU,GACf,GAAM,GAAQ,KAAK,SAAS,EAAO,GACnC,GAAI,EACF,MAAO,GACF,AAAI,KAAK,UAAY,IAAS,KAAK,IAAM,MAc9C,MAAK,GAAK,KAAK,eAAe,KAAK,UAAW,KAAK,GAAI,QAIjD,EAAA,UAAA,SAAV,SAAmB,EAAU,EAAc,CACzC,GAAI,GAAmB,GACnB,EACJ,GAAI,CACF,KAAK,KAAK,SACH,EAAP,CACA,EAAU,GACV,EAAc,CAAC,CAAC,GAAK,GAAM,GAAI,OAAM,GAEvC,GAAI,EACF,YAAK,cACE,GAIX,EAAA,UAAA,YAAA,UAAA,CACE,GAAI,CAAC,KAAK,OAAQ,CACV,GAAA,GAAoB,KAAlB,EAAE,EAAA,GAAE,EAAS,EAAA,UACb,EAAY,EAAS,QAE7B,KAAK,KAAO,KAAK,MAAQ,KAAK,UAAY,KAC1C,KAAK,QAAU,GAEf,GAAU,EAAS,MACf,GAAM,MACR,MAAK,GAAK,KAAK,eAAe,EAAW,EAAI,OAG/C,KAAK,MAAQ,KACb,EAAA,UAAM,YAAW,KAAA,QAGvB,GAxIoC,ICiBpC,GAAA,IAAA,UAAA,CAGE,WAAoB,EAAoC,EAAiC,CAAjC,AAAA,IAAA,QAAA,GAAoB,EAAU,KAAlE,KAAA,oBAAA,EAClB,KAAK,IAAM,EA8BN,SAAA,UAAA,SAAP,SAAmB,EAAqD,EAAmB,EAAS,CAA5B,MAAA,KAAA,QAAA,GAAA,GAC/D,GAAI,MAAK,oBAAuB,KAAM,GAAM,SAAS,EAAO,IAlCvD,EAAA,IAAoB,GAAsB,IAoC1D,KCzDA,GAAA,IAAA,SAAA,EAAA,CAAoC,EAAA,EAAA,GAkBlC,WAAY,EAAgC,EAAiC,CAAjC,AAAA,IAAA,QAAA,GAAoB,GAAU,KAA1E,GAAA,GACE,EAAA,KAAA,KAAM,EAAiB,IAAI,KAlBtB,SAAA,QAAmC,GAOnC,EAAA,QAAmB,GAQnB,EAAA,WAAkB,SAMlB,SAAA,UAAA,MAAP,SAAa,EAAwB,CAC3B,GAAA,GAAY,KAAI,QAExB,GAAI,KAAK,QAAS,CAChB,EAAQ,KAAK,GACb,OAGF,GAAI,GACJ,KAAK,QAAU,GAEf,EACE,IAAK,EAAQ,EAAO,QAAQ,EAAO,MAAO,EAAO,OAC/C,YAEM,EAAS,EAAQ,SAI3B,GAFA,KAAK,QAAU,GAEX,EAAO,CACT,KAAQ,EAAS,EAAQ,SACvB,EAAO,cAET,KAAM,KAGZ,GAhDoC,IC8C7B,GAAM,IAAiB,GAAI,IAAe,IAKpC,GAAQ,GClDrB,GAAA,IAAA,SAAA,EAAA,CAA6C,EAAA,EAAA,GAC3C,WAAsB,EAA8C,EAAmD,CAAvH,GAAA,GACE,EAAA,KAAA,KAAM,EAAW,IAAK,KADF,SAAA,UAAA,EAA8C,EAAA,KAAA,IAI1D,SAAA,UAAA,eAAV,SAAyB,EAAoC,EAAU,EAAiB,CAEtF,MAFqE,KAAA,QAAA,GAAA,GAEjE,IAAU,MAAQ,EAAQ,EACrB,EAAA,UAAM,eAAc,KAAA,KAAC,EAAW,EAAI,GAG7C,GAAU,QAAQ,KAAK,MAIhB,EAAU,YAAe,GAAU,WAAa,GAAuB,sBAAsB,UAAA,CAAM,MAAA,GAAU,MAAM,aAElH,EAAA,UAAA,eAAV,SAAyB,EAAoC,EAAU,EAAiB,CAItF,GAJqE,IAAA,QAAA,GAAA,GAIhE,GAAS,MAAQ,EAAQ,GAAO,GAAS,MAAQ,KAAK,MAAQ,EACjE,MAAO,GAAA,UAAM,eAAc,KAAA,KAAC,EAAW,EAAI,GAK7C,AAAI,EAAU,QAAQ,SAAW,GAC/B,IAAuB,qBAAqB,GAC5C,EAAU,WAAa,SAK7B,GAlC6C,ICF7C,GAAA,IAAA,SAAA,EAAA,CAA6C,EAAA,EAAA,GAA7C,YAAA,gDACS,SAAA,UAAA,MAAP,SAAa,EAAyB,CACpC,KAAK,QAAU,GACf,KAAK,WAAa,OAEV,GAAA,GAAY,KAAI,QACpB,EACA,EAAQ,GACZ,EAAS,GAAU,EAAQ,QAC3B,GAAM,GAAQ,EAAQ,OAEtB,EACE,IAAK,EAAQ,EAAO,QAAQ,EAAO,MAAO,EAAO,OAC/C,YAEK,EAAE,EAAQ,GAAU,GAAS,EAAQ,UAI9C,GAFA,KAAK,QAAU,GAEX,EAAO,CACT,KAAO,EAAE,EAAQ,GAAU,GAAS,EAAQ,UAC1C,EAAO,cAET,KAAM,KAGZ,GA1B6C,ICgCtC,GAAM,GAA0B,GAAI,IAAwB,ICR5D,GAAM,IAAQ,GAAI,GAAkB,SAAC,EAAU,CAAK,MAAA,GAAW,aCxBhE,YAA2B,EAAqB,EAAwB,CAC5E,MAAO,IAAI,GAAc,SAAC,EAAU,CAElC,GAAI,GAAI,EAER,MAAO,GAAU,SAAS,UAAA,CACxB,AAAI,IAAM,EAAM,OAGd,EAAW,WAIX,GAAW,KAAK,EAAM,MAIjB,EAAW,QACd,KAAK,gBCrBR,GAAM,IAAe,SAAI,EAAM,CAAwB,MAAA,IAAK,MAAO,GAAE,QAAW,UAAY,MAAO,IAAM,YCM1G,YAAoB,EAAU,CAClC,MAAO,GAAW,GAAK,KAAA,OAAL,EAAO,MCFrB,YAAgC,EAA6B,EAAwB,CACzF,MAAO,IAAI,GAAc,SAAA,EAAU,CACjC,GAAM,GAAM,GAAI,IAChB,SAAI,IAAI,EAAU,SAAS,UAAA,CACzB,GAAM,GAA+B,EAAc,MACnD,EAAI,IAAI,EAAW,UAAU,CAC3B,KAAI,SAAC,EAAK,CAAI,EAAI,IAAI,EAAU,SAAS,UAAA,CAAM,MAAA,GAAW,KAAK,OAC/D,MAAK,SAAC,EAAG,CAAI,EAAI,IAAI,EAAU,SAAS,UAAA,CAAM,MAAA,GAAW,MAAM,OAC/D,SAAQ,UAAA,CAAK,EAAI,IAAI,EAAU,SAAS,UAAA,CAAM,MAAA,GAAW,qBAGtD,ICbL,YAA6B,EAAuB,EAAwB,CAChF,MAAO,IAAI,GAAc,SAAC,EAAU,CAClC,MAAO,GAAU,SAAS,UAAA,CACxB,MAAA,GAAM,KACJ,SAAC,EAAK,CACJ,EAAW,IACT,EAAU,SAAS,UAAA,CACjB,EAAW,KAAK,GAChB,EAAW,IAAI,EAAU,SAAS,UAAA,CAAM,MAAA,GAAW,kBAIzD,SAAC,EAAG,CACF,EAAW,IAAI,EAAU,SAAS,UAAA,CAAM,MAAA,GAAW,MAAM,YChB7D,aAA2B,CAC/B,MAAI,OAAO,SAAW,YAAc,CAAC,OAAO,SACnC,aAGF,OAAO,SAGT,GAAM,IAAW,KCJlB,YACJ,EACA,EACA,EACA,EAAS,CAAT,AAAA,IAAA,QAAA,GAAA,GAEA,GAAM,GAAe,EAAU,SAAS,UAAA,CACtC,GAAI,CACF,EAAQ,KAAK,YACN,EAAP,CACA,EAAW,MAAM,KAElB,GACH,SAAW,IAAI,GACR,ECPH,YAA8B,EAAoB,EAAwB,CAC9E,MAAO,IAAI,GAAc,SAAC,EAAU,CAClC,GAAI,GAKJ,SAAW,IACT,EAAU,SAAS,UAAA,CAEjB,EAAY,EAAc,MAG1B,GAAe,EAAY,EAAW,UAAA,CAE9B,GAAA,GAAkB,EAAS,OAAzB,EAAK,EAAA,MAAE,EAAI,EAAA,KACnB,AAAI,EAKF,EAAW,WAGX,GAAW,KAAK,GAGhB,KAAK,iBAUN,UAAA,CAAM,MAAA,GAAW,GAAQ,KAAA,OAAR,EAAU,SAAW,EAAS,YC5CpD,YAAmC,EAAyB,EAAwB,CACxF,GAAI,CAAC,EACH,KAAM,IAAI,OAAM,2BAElB,MAAO,IAAI,GAAc,SAAA,EAAU,CACjC,GAAM,GAAM,GAAI,IAChB,SAAI,IACF,EAAU,SAAS,UAAA,CACjB,GAAM,GAAW,EAAM,OAAO,iBAC9B,EAAI,IAAI,EAAU,SAAS,UAAA,CAAA,GAAA,GAAA,KACzB,EAAS,OAAO,KAAK,SAAA,EAAM,CACzB,AAAI,EAAO,KACT,EAAW,WAEX,GAAW,KAAK,EAAO,OACvB,EAAK,oBAMR,ICpBL,YAA8B,EAAU,CAC5C,MAAO,GAAW,EAAM,KCFpB,YAAqB,EAAU,CACnC,MAAO,GAAW,GAAK,KAAA,OAAL,EAAQ,KCHtB,YAA6B,EAAQ,CACzC,MAAO,QAAO,eAAiB,EAAW,GAAG,KAAA,OAAH,EAAM,OAAO,gBCCnD,YAA2C,EAAU,CAEzD,MAAO,IAAI,WACT,gBACE,KAAU,MAAQ,MAAO,IAAU,SAAW,oBAAsB,IAAI,EAAK,KAAG,4HCLhF,YAAuD,EAAqC,mGAC1F,EAAS,EAAe,qEAGF,MAAA,CAAA,EAAA,GAAM,EAAO,sBAA/B,GAAkB,EAAA,OAAhB,EAAK,EAAA,MAAE,EAAI,EAAA,KACf,iBAAA,CAAA,EAAA,UACF,MAAA,CAAA,EAAA,EAAA,2BAEI,WAAN,MAAA,CAAA,EAAA,EAAA,eAAA,SAAA,wCAGF,SAAO,yCAIL,YAAkC,EAAQ,CAG9C,MAAO,GAAW,GAAG,KAAA,OAAH,EAAK,WChBnB,YAAwC,EAA8B,EAAwB,CAClG,MAAO,IAAsB,GAAmC,GAAQ,GCqBpE,YAAuB,EAA2B,EAAwB,CAC9E,GAAI,GAAS,KAAM,CACjB,GAAI,GAAoB,GACtB,MAAO,IAAmB,EAAO,GAEnC,GAAI,GAAY,GACd,MAAO,IAAc,EAAO,GAE9B,GAAI,GAAU,GACZ,MAAO,IAAgB,EAAO,GAEhC,GAAI,GAAgB,GAClB,MAAO,IAAsB,EAAO,GAEtC,GAAI,GAAW,GACb,MAAO,IAAiB,EAAO,GAEjC,GAAI,GAAqB,GACvB,MAAO,IAA2B,EAAO,GAG7C,KAAM,IAAiC,GCqEnC,YAAkB,EAA2B,EAAyB,CAC1E,MAAO,GAAY,GAAU,EAAO,GAAa,EAAU,GAMvD,WAAuB,EAAyB,CACpD,GAAI,YAAiB,GACnB,MAAO,GAET,GAAI,GAAS,KAAM,CACjB,GAAI,GAAoB,GACtB,MAAO,IAAsB,GAE/B,GAAI,GAAY,GACd,MAAO,IAAc,GAEvB,GAAI,GAAU,GACZ,MAAO,IAAY,GAErB,GAAI,GAAgB,GAClB,MAAO,IAAkB,GAE3B,GAAI,GAAW,GACb,MAAO,IAAa,GAEtB,GAAI,GAAqB,GACvB,MAAO,IAAuB,GAIlC,KAAM,IAAiC,GAOzC,YAAkC,EAAQ,CACxC,MAAO,IAAI,GAAW,SAAC,EAAyB,CAC9C,GAAM,GAAM,EAAI,MAChB,GAAI,EAAW,EAAI,WACjB,MAAO,GAAI,UAAU,GAGvB,KAAM,IAAI,WAAU,oEAWlB,YAA2B,EAAmB,CAClD,MAAO,IAAI,GAAW,SAAC,EAAyB,CAU9C,OAAS,GAAI,EAAG,EAAI,EAAM,QAAU,CAAC,EAAW,OAAQ,IACtD,EAAW,KAAK,EAAM,IAExB,EAAW,aAIf,YAAwB,EAAuB,CAC7C,MAAO,IAAI,GAAW,SAAC,EAAyB,CAC9C,EACG,KACC,SAAC,EAAK,CACJ,AAAK,EAAW,QACd,GAAW,KAAK,GAChB,EAAW,aAGf,SAAC,EAAQ,CAAK,MAAA,GAAW,MAAM,KAEhC,KAAK,KAAM,MAIlB,YAAyB,EAAqB,CAC5C,MAAO,IAAI,GAAW,SAAC,EAAyB,aAC9C,OAAoB,GAAA,GAAA,GAAQ,EAAA,EAAA,OAAA,CAAA,EAAA,KAAA,EAAA,EAAA,OAAE,CAAzB,GAAM,GAAK,EAAA,MAEd,GADA,EAAW,KAAK,GACZ,EAAW,OACb,yGAGJ,EAAW,aAIf,YAA8B,EAA+B,CAC3D,MAAO,IAAI,GAAW,SAAC,EAAyB,CAC9C,GAAQ,EAAe,GAAY,MAAM,SAAC,EAAG,CAAK,MAAA,GAAW,MAAM,OAIvE,YAAmC,EAAqC,CACtE,MAAO,IAAkB,GAAmC,IAG9D,YAA0B,EAAiC,EAAyB,uIACxD,EAAA,GAAA,iFAIxB,GAJe,EAAK,EAAA,MACpB,EAAW,KAAK,GAGZ,EAAW,OACb,MAAA,CAAA,8RAGJ,SAAW,oBC3OP,YAA+B,EAAqB,EAAyB,CACjF,MAAO,GAAY,GAAc,EAAO,GAAa,GAAc,GCF/D,YAAsB,EAAU,CACpC,MAAO,IAAS,EAAW,EAAM,UCAnC,YAAiB,EAAQ,CACvB,MAAO,GAAI,EAAI,OAAS,GAGpB,YAA4B,EAAW,CAC3C,MAAO,GAAW,GAAK,IAAS,EAAK,MAAQ,OAGzC,YAAuB,EAAW,CACtC,MAAO,IAAY,GAAK,IAAS,EAAK,MAAQ,OAG1C,YAAoB,EAAa,EAAoB,CACzD,MAAO,OAAO,IAAK,IAAU,SAAW,EAAK,MAAS,EC+DlD,YAAY,QAAI,GAAA,GAAA,EAAA,EAAA,EAAA,UAAA,OAAA,IAAA,EAAA,GAAA,UAAA,GACpB,GAAM,GAAY,GAAa,GAC/B,MAAO,GAAY,GAAc,EAAa,GAAa,GAAkB,GC3EzE,YAAsB,EAAU,CACpC,MAAO,aAAiB,OAAQ,CAAC,MAAM,GCqCnC,WAAoB,EAAyC,EAAa,CAC9E,MAAO,GAAQ,SAAC,EAAQ,EAAU,CAEhC,GAAI,GAAQ,EAGZ,EAAO,UACL,GAAI,GAAmB,EAAY,SAAC,EAAQ,CAG1C,EAAW,KAAK,EAAQ,KAAK,EAAS,EAAO,WCpD7C,GAAA,IAAY,MAAK,QAEzB,YAA2B,EAA6B,EAAW,CAC/D,MAAO,IAAQ,GAAQ,EAAE,MAAA,OAAA,EAAA,GAAA,EAAI,KAAQ,EAAG,GAOtC,YAAiC,EAA2B,CAC9D,MAAO,GAAI,SAAA,EAAI,CAAI,MAAA,IAAY,EAAI,KC0CjC,WAAuB,EAA0B,EAAiB,CAAjB,MAAA,KAAA,QAAA,GAAA,GAC9C,EAAQ,SAAC,EAAQ,EAAU,CAChC,EAAO,UACL,GAAI,GACF,EACA,SAAC,EAAK,CAAK,MAAA,GAAW,IAAI,EAAU,SAAS,UAAA,CAAM,MAAA,GAAW,KAAK,IAAQ,KAC3E,UAAA,CAAM,MAAA,GAAW,IAAI,EAAU,SAAS,UAAA,CAAM,MAAA,GAAW,YAAY,KACrE,SAAC,EAAG,CAAK,MAAA,GAAW,IAAI,EAAU,SAAS,UAAA,CAAM,MAAA,GAAW,MAAM,IAAM,SC/DxE,GAAA,IAAY,MAAK,QACjB,GAA0D,OAAM,eAArC,GAA+B,OAAM,UAAlB,GAAY,OAAM,KAQlE,YAA+D,EAAuB,CAC1F,GAAI,EAAK,SAAW,EAAG,CACrB,GAAM,GAAQ,EAAK,GACnB,GAAI,GAAQ,GACV,MAAO,CAAE,KAAM,EAAO,KAAM,MAE9B,GAAI,GAAO,GAAQ,CACjB,GAAM,GAAO,GAAQ,GACrB,MAAO,CACL,KAAM,EAAK,IAAI,SAAC,EAAG,CAAK,MAAA,GAAM,KAC9B,KAAI,IAKV,MAAO,CAAE,KAAM,EAAa,KAAM,MAGpC,YAAgB,EAAQ,CACtB,MAAO,IAAO,MAAO,IAAQ,UAAY,GAAe,KAAS,GC5B7D,YAAuB,EAAgB,EAAa,CACxD,MAAO,GAAK,OAAO,SAAC,EAAQ,EAAK,EAAC,CAAK,MAAE,GAAO,GAAO,EAAO,GAAK,GAAS,ICmMxE,YAAuB,QAAoC,GAAA,GAAA,EAAA,EAAA,EAAA,UAAA,OAAA,IAAA,EAAA,GAAA,UAAA,GAC/D,GAAM,GAAY,GAAa,GACzB,EAAiB,GAAkB,GAEnC,EAA8B,GAAqB,GAA3C,EAAW,EAAA,KAAE,EAAI,EAAA,KAE/B,GAAI,EAAY,SAAW,EAIzB,MAAO,IAAK,GAAI,GAGlB,GAAM,GAAS,GAAI,GACjB,GACE,EACA,EACA,EAEI,SAAC,EAAM,CAAK,MAAA,IAAa,EAAM,IAE/B,KAIR,MAAO,GAAkB,EAAO,KAAK,GAAiB,IAAqC,EAGvF,YACJ,EACA,EACA,EAAiD,CAAjD,MAAA,KAAA,QAAA,GAAA,IAEO,SAAC,EAA2B,CAGjC,GACE,EACA,UAAA,CAaE,OAZQ,GAAW,EAAW,OAExB,EAAS,GAAI,OAAM,GAGrB,EAAS,EAIT,EAAuB,aAGlB,EAAC,CACR,GACE,EACA,UAAA,CACE,GAAM,GAAS,GAAK,EAAY,GAAI,GAChC,EAAgB,GACpB,EAAO,UACL,GAAI,GACF,EACA,SAAC,EAAK,CAEJ,EAAO,GAAK,EACP,GAEH,GAAgB,GAChB,KAEG,GAGH,EAAW,KAAK,EAAe,EAAO,WAG1C,UAAA,CACE,AAAK,EAAE,GAGL,EAAW,eAMrB,IAjCK,EAAI,EAAG,EAAI,EAAQ,MAAnB,IAqCX,IASN,YAAuB,EAAsC,EAAqB,EAA0B,CAC1G,AAAI,EACF,EAAa,IAAI,EAAU,SAAS,IAEpC,ICtRE,YACJ,EACA,EACA,EACA,EACA,EACA,EACA,EACA,EAA+B,CAG/B,GAAM,GAAc,GAEhB,EAAS,EAET,EAAQ,EAER,EAAa,GAKX,EAAgB,UAAA,CAIpB,AAAI,GAAc,CAAC,EAAO,QAAU,CAAC,GACnC,EAAW,YAKT,EAAY,SAAC,EAAQ,CAAK,MAAC,GAAS,EAAa,EAAW,GAAS,EAAO,KAAK,IAEjF,EAAa,SAAC,EAAQ,CAI1B,GAAU,EAAW,KAAK,GAI1B,IAKA,GAAI,GAAgB,GAGpB,EAAU,EAAQ,EAAO,MAAU,UACjC,GAAI,GACF,EACA,SAAC,EAAU,CAGT,GAAY,MAAZ,EAAe,GAEf,AAAI,EAGF,EAAU,GAGV,EAAW,KAAK,IAGpB,UAAA,CAGE,EAAgB,IAGlB,OACA,UAAA,CAIE,GAAI,EAKF,GAAI,CAIF,IAKA,qBACE,GAAM,GAAgB,EAAO,QAI7B,EAAoB,EAAW,IAAI,EAAkB,SAAS,UAAA,CAAM,MAAA,GAAW,MAAmB,EAAW,IALxG,EAAO,QAAU,EAAS,OAQjC,UACO,EAAP,CACA,EAAW,MAAM,QAS7B,SAAO,UACL,GAAI,GAAmB,EAAY,EAAW,UAAA,CAE5C,EAAa,GACb,OAMG,UAAA,CACL,GAAkB,MAAlB,KC7DE,YACJ,EACA,EACA,EAA6B,CAE7B,MAFA,KAAA,QAAA,GAAA,KAEI,EAAW,GAEN,GAAS,SAAC,EAAG,EAAC,CAAK,MAAA,GAAI,SAAC,EAAQ,EAAU,CAAK,MAAA,GAAe,EAAG,EAAG,EAAG,KAAK,EAAU,EAAQ,EAAG,MAAM,GACrG,OAAO,IAAmB,UACnC,GAAa,GAGR,EAAQ,SAAC,EAAQ,EAAU,CAAK,MAAA,IAAe,EAAQ,EAAY,EAAS,MChC/E,YAAmD,EAA6B,CAA7B,MAAA,KAAA,QAAA,GAAA,KAChD,GAAS,GAAU,GCFtB,aAAmB,CACvB,MAAO,IAAS,GCsDZ,aAAgB,QAAC,GAAA,GAAA,EAAA,EAAA,EAAA,UAAA,OAAA,IAAA,EAAA,GAAA,UAAA,GACrB,MAAO,MAAY,GAAkB,EAAM,GAAa,KCjEpD,YAAgD,EAA0B,CAC9E,MAAO,IAAI,GAA+B,SAAC,EAAU,CACnD,EAAU,KAAqB,UAAU,KC5C7C,GAAM,IAA0B,CAAC,cAAe,kBAC1C,GAAqB,CAAC,mBAAoB,uBAC1C,GAAgB,CAAC,KAAM,OA2NvB,WACJ,EACA,EACA,EACA,EAAsC,CAMtC,GAJI,EAAW,IACb,GAAiB,EACjB,EAAU,QAER,EACF,MAAO,GAAa,EAAQ,EAAW,GAAiC,KAAK,GAAiB,IAU1F,GAAA,GAAA,EAEJ,GAAc,GACV,GAAmB,IAAI,SAAC,EAAU,CAAK,MAAA,UAAC,EAAY,CAAK,MAAA,GAAO,GAAY,EAAW,EAAS,MAElG,GAAwB,GACtB,GAAwB,IAAI,GAAwB,EAAQ,IAC5D,GAA0B,GAC1B,GAAc,IAAI,GAAwB,EAAQ,IAClD,GAAE,GATD,EAAG,EAAA,GAAE,EAAM,EAAA,GAgBlB,GAAI,CAAC,GACC,GAAY,GACd,MAAO,IAAS,SAAC,EAAc,CAAK,MAAA,GAAU,EAAW,EAAW,KAClE,GAAkB,IAOxB,GAAI,CAAC,EACH,KAAM,IAAI,WAAU,wBAGtB,MAAO,IAAI,GAAc,SAAC,EAAU,CAIlC,GAAM,GAAU,UAAA,QAAC,GAAA,GAAA,EAAA,EAAA,EAAA,UAAA,OAAA,IAAA,EAAA,GAAA,UAAA,GAAmB,MAAA,GAAW,KAAK,EAAI,EAAK,OAAS,EAAO,EAAK,KAElF,SAAI,GAEG,UAAA,CAAM,MAAA,GAAQ,MAWzB,YAAiC,EAAa,EAAiB,CAC7D,MAAO,UAAC,EAAkB,CAAK,MAAA,UAAC,EAAY,CAAK,MAAA,GAAO,GAAY,EAAW,KAQjF,YAAiC,EAAW,CAC1C,MAAO,GAAW,EAAO,cAAgB,EAAW,EAAO,gBAQ7D,YAAmC,EAAW,CAC5C,MAAO,GAAW,EAAO,KAAO,EAAW,EAAO,KAQpD,YAAuB,EAAW,CAChC,MAAO,GAAW,EAAO,mBAAqB,EAAW,EAAO,qBC1L5D,YACJ,EACA,EACA,EAAsC,CAEtC,MAAI,GACK,GAAoB,EAAY,GAAe,KAAK,GAAiB,IAGvE,GAAI,GAAoB,SAAC,EAAU,CACxC,GAAM,GAAU,UAAA,QAAC,GAAA,GAAA,EAAA,EAAA,EAAA,UAAA,OAAA,IAAA,EAAA,GAAA,UAAA,GAAc,MAAA,GAAW,KAAK,EAAE,SAAW,EAAI,EAAE,GAAK,IACjE,EAAW,EAAW,GAC5B,MAAO,GAAW,GAAiB,UAAA,CAAM,MAAA,GAAc,EAAS,IAAY,SClB1E,YACJ,EACA,EACA,EAAyC,CAFzC,AAAA,IAAA,QAAA,GAAA,GAEA,IAAA,QAAA,GAAA,IAIA,GAAI,GAAmB,GAEvB,MAAI,IAAuB,MAIzB,CAAI,GAAY,GACd,EAAY,EAIZ,EAAmB,GAIhB,GAAI,GAAW,SAAC,EAAU,CAI/B,GAAI,GAAM,GAAY,GAAW,CAAC,EAAU,EAAW,MAAQ,EAE/D,AAAI,EAAM,GAER,GAAM,GAIR,GAAI,GAAI,EAGR,MAAO,GAAU,SAAS,UAAA,CACxB,AAAK,EAAW,QAEd,GAAW,KAAK,KAEhB,AAAI,GAAK,EAGP,KAAK,SAAS,OAAW,GAGzB,EAAW,aAGd,KCpGD,YAAe,QAAC,GAAA,GAAA,EAAA,EAAA,EAAA,UAAA,OAAA,IAAA,EAAA,GAAA,UAAA,GACpB,GAAM,GAAY,GAAa,GACzB,EAAa,GAAU,EAAM,KAC7B,EAAU,EAChB,MAAO,AAAC,GAAQ,OAGZ,EAAQ,SAAW,EAEnB,EAAU,EAAQ,IAElB,GAAS,GAAY,GAAkB,EAAS,IALhD,GC3DC,GAAM,GAAQ,GAAI,GAAkB,ICjCnC,GAAA,IAAY,MAAK,QAMnB,YAA4B,EAAiB,CACjD,MAAO,GAAK,SAAW,GAAK,GAAQ,EAAK,IAAM,EAAK,GAAM,ECgDtD,WAAoB,EAAiD,EAAa,CACtF,MAAO,GAAQ,SAAC,EAAQ,EAAU,CAEhC,GAAI,GAAQ,EAIZ,EAAO,UAIL,GAAI,GAAmB,EAAY,SAAC,EAAK,CAAK,MAAA,GAAU,KAAK,EAAS,EAAO,MAAY,EAAW,KAAK,QChBzG,aAAa,QAAC,GAAA,GAAA,EAAA,EAAA,EAAA,UAAA,OAAA,IAAA,EAAA,GAAA,UAAA,GAClB,GAAM,GAAiB,GAAkB,GAEnC,EAAU,GAAe,GAE/B,MAAO,GAAQ,OACX,GAAI,GAAsB,SAAC,EAAU,CAGnC,GAAI,GAAuB,EAAQ,IAAI,UAAA,CAAM,MAAA,KAKzC,EAAY,EAAQ,IAAI,UAAA,CAAM,MAAA,KAGlC,EAAW,IAAI,UAAA,CACb,EAAU,EAAY,OAMxB,mBAAS,EAAW,CAClB,EAAU,EAAQ,IAAc,UAC9B,GAAI,GACF,EACA,SAAC,EAAK,CAKJ,GAJA,EAAQ,GAAa,KAAK,GAItB,EAAQ,MAAM,SAAC,EAAM,CAAK,MAAA,GAAO,SAAS,CAC5C,GAAM,GAAc,EAAQ,IAAI,SAAC,EAAM,CAAK,MAAA,GAAO,UAEnD,EAAW,KAAK,EAAiB,EAAc,MAAA,OAAA,EAAA,GAAA,EAAI,KAAU,GAIzD,EAAQ,KAAK,SAAC,EAAQ,EAAC,CAAK,MAAA,CAAC,EAAO,QAAU,EAAU,MAC1D,EAAW,aAIjB,UAAA,CAGE,EAAU,GAAe,GAIzB,CAAC,EAAQ,GAAa,QAAU,EAAW,eA5B1C,EAAc,EAAG,CAAC,EAAW,QAAU,EAAc,EAAQ,OAAQ,MAArE,GAmCT,MAAO,WAAA,CACL,EAAU,EAAY,QAG1B,GCvDA,YAAyB,EAAoB,EAAsC,CAAtC,MAAA,KAAA,QAAA,GAAA,MAGjD,EAAmB,GAAgB,KAAhB,EAAoB,EAEhC,EAAQ,SAAC,EAAQ,EAAU,CAChC,GAAI,GAAiB,GACjB,EAAQ,EAEZ,EAAO,UACL,GAAI,GACF,EACA,SAAC,EAAK,aACA,EAAuB,KAK3B,AAAI,IAAU,GAAsB,GAClC,EAAQ,KAAK,QAIf,OAAqB,GAAA,GAAA,GAAO,EAAA,EAAA,OAAA,CAAA,EAAA,KAAA,EAAA,EAAA,OAAE,CAAzB,GAAM,GAAM,EAAA,MACf,EAAO,KAAK,GAMR,GAAc,EAAO,QACvB,GAAS,GAAM,KAAN,EAAU,GACnB,EAAO,KAAK,sGAIhB,GAAI,MAIF,OAAqB,GAAA,GAAA,GAAM,EAAA,EAAA,OAAA,CAAA,EAAA,KAAA,EAAA,EAAA,OAAE,CAAxB,GAAM,GAAM,EAAA,MACf,GAAU,EAAS,GACnB,EAAW,KAAK,uGAItB,UAAA,aAGE,OAAqB,GAAA,GAAA,GAAO,EAAA,EAAA,OAAA,CAAA,EAAA,KAAA,EAAA,EAAA,OAAE,CAAzB,GAAM,GAAM,EAAA,MACf,EAAW,KAAK,qGAElB,EAAW,YAGb,OACA,UAAA,CAEE,EAAU,UCXd,YACJ,EAAgD,CAEhD,MAAO,GAAQ,SAAC,EAAQ,EAAU,CAChC,GAAI,GAAgC,KAChC,EAAY,GACZ,EAEJ,EAAW,EAAO,UAChB,GAAI,GAAmB,EAAY,OAAW,OAAW,SAAC,EAAG,CAC3D,EAAgB,EAAU,EAAS,EAAK,GAAW,GAAU,KAC7D,AAAI,EACF,GAAS,cACT,EAAW,KACX,EAAc,UAAU,IAIxB,EAAY,MAKd,GAMF,GAAS,cACT,EAAW,KACX,EAAe,UAAU,MC3HzB,YACJ,EACA,EACA,EACA,EACA,EAAqC,CAErC,MAAO,UAAC,EAAuB,EAA2B,CAIxD,GAAI,GAAW,EAIX,EAAa,EAEb,EAAQ,EAGZ,EAAO,UACL,GAAI,GACF,EACA,SAAC,EAAK,CAEJ,GAAM,GAAI,IAEV,EAAQ,EAEJ,EAAY,EAAO,EAAO,GAIxB,GAAW,GAAO,GAGxB,GAAc,EAAW,KAAK,IAIhC,GACG,UAAA,CACC,GAAY,EAAW,KAAK,GAC5B,EAAW,eC9BjB,aAAuB,QAAO,GAAA,GAAA,EAAA,EAAA,EAAA,UAAA,OAAA,IAAA,EAAA,GAAA,UAAA,GAClC,GAAM,GAAiB,GAAkB,GACzC,MAAO,GACH,GAAK,GAAa,MAAA,OAAA,EAAA,GAAA,EAAK,KAAuC,GAAiB,IAC/E,EAAQ,SAAC,EAAQ,EAAU,CACzB,GAAiB,EAAA,CAAE,GAAM,EAAK,GAAe,MAAQ,KCUvD,aAA2B,QAC/B,GAAA,GAAA,EAAA,EAAA,EAAA,UAAA,OAAA,IAAA,EAAA,GAAA,UAAA,GAEA,MAAO,IAAa,MAAA,OAAA,EAAA,GAAA,EAAI,KCkCpB,YACJ,EACA,EAA6G,CAE7G,MAAO,GAAW,GAAkB,GAAS,EAAS,EAAgB,GAAK,GAAS,EAAS,GCnBzF,YAA0B,EAAiB,EAAyC,CAAzC,MAAA,KAAA,QAAA,GAAA,IACxC,EAAQ,SAAC,EAAQ,EAAU,CAChC,GAAI,GAAkC,KAClC,EAAsB,KACtB,EAA0B,KAExB,EAAO,UAAA,CACX,GAAI,EAAY,CAEd,EAAW,cACX,EAAa,KACb,GAAM,GAAQ,EACd,EAAY,KACZ,EAAW,KAAK,KAGpB,YAAqB,CAInB,GAAM,GAAa,EAAY,EACzB,EAAM,EAAU,MACtB,GAAI,EAAM,EAAY,CAEpB,EAAa,KAAK,SAAS,OAAW,EAAa,GACnD,EAAW,IAAI,GACf,OAGF,IAGF,EAAO,UACL,GAAI,GACF,EACA,SAAC,EAAQ,CACP,EAAY,EACZ,EAAW,EAAU,MAGhB,GACH,GAAa,EAAU,SAAS,EAAc,GAC9C,EAAW,IAAI,KAGnB,UAAA,CAGE,IACA,EAAW,YAGb,OACA,UAAA,CAEE,EAAY,EAAa,UChF7B,YAA+B,EAAe,CAClD,MAAO,GAAQ,SAAC,EAAQ,EAAU,CAChC,GAAI,GAAW,GACf,EAAO,UACL,GAAI,GACF,EACA,SAAC,EAAK,CACJ,EAAW,GACX,EAAW,KAAK,IAElB,UAAA,CACE,AAAK,GACH,EAAW,KAAK,GAElB,EAAW,gBCNf,YAAkB,EAAa,CACnC,MAAO,IAAS,EAEZ,UAAA,CAAM,MAAA,KACN,EAAQ,SAAC,EAAQ,EAAU,CACzB,GAAI,GAAO,EACX,EAAO,UACL,GAAI,GAAmB,EAAY,SAAC,EAAK,CAIvC,AAAI,EAAE,GAAQ,GACZ,GAAW,KAAK,GAIZ,GAAS,GACX,EAAW,iBC1BrB,aAAwB,CAC5B,MAAO,GAAQ,SAAC,EAAQ,EAAU,CAChC,EAAO,UAAU,GAAI,GAAmB,EAAY,OCFlD,YAAmB,EAAQ,CAC/B,MAAO,GAAI,UAAA,CAAM,MAAA,KCmCb,YACJ,EACA,EAAmC,CAEnC,MAAI,GAEK,SAAC,EAAqB,CAC3B,MAAA,IAAO,EAAkB,KAAK,GAAK,GAAI,MAAmB,EAAO,KAAK,GAAU,MAG7E,GAAS,SAAC,EAAO,EAAK,CAAK,MAAA,GAAsB,EAAO,GAAO,KAAK,GAAK,GAAI,GAAM,MCvBtF,YAAmB,EAAoB,EAAyC,CAAzC,AAAA,IAAA,QAAA,GAAA,IAC3C,GAAM,GAAW,GAAM,EAAK,GAC5B,MAAO,IAAU,UAAA,CAAM,MAAA,KCoFnB,WACJ,EACA,EAA0D,CAA1D,MAAA,KAAA,QAAA,GAA+B,IAK/B,EAAa,GAAU,KAAV,EAAc,GAEpB,EAAQ,SAAC,EAAQ,EAAU,CAGhC,GAAI,GAEA,EAAQ,GAEZ,EAAO,UACL,GAAI,GAAmB,EAAY,SAAC,EAAK,CAEvC,GAAM,GAAa,EAAY,GAK/B,AAAI,IAAS,CAAC,EAAY,EAAa,KAMrC,GAAQ,GACR,EAAc,EAGd,EAAW,KAAK,SAO1B,YAAwB,EAAQ,EAAM,CACpC,MAAO,KAAM,EC/GT,WAAwD,EAAQ,EAAuC,CAC3G,MAAO,GAAqB,SAAC,EAAM,EAAI,CAAK,MAAA,GAAU,EAAQ,EAAE,GAAM,EAAE,IAAQ,EAAE,KAAS,EAAE,KCpBzF,WAAsB,EAAoB,CAC9C,MAAO,GAAQ,SAAC,EAAQ,EAAU,CAGhC,GAAI,CACF,EAAO,UAAU,WAEjB,EAAW,IAAI,MCpBf,YAAsB,EAAa,CACvC,MAAO,IAAS,EACZ,UAAA,CAAM,MAAA,KACN,EAAQ,SAAC,EAAQ,EAAU,CAKzB,GAAI,GAAc,GAClB,EAAO,UACL,GAAI,GACF,EACA,SAAC,EAAK,CAEJ,EAAO,KAAK,GAGZ,EAAQ,EAAO,QAAU,EAAO,SAElC,UAAA,aAGE,OAAoB,GAAA,GAAA,GAAM,EAAA,EAAA,OAAA,CAAA,EAAA,KAAA,EAAA,EAAA,OAAE,CAAvB,GAAM,GAAK,EAAA,MACd,EAAW,KAAK,qGAElB,EAAW,YAGb,OACA,UAAA,CAEE,EAAS,UCtDjB,aAAe,QAAI,GAAA,GAAA,EAAA,EAAA,EAAA,UAAA,OAAA,IAAA,EAAA,GAAA,UAAA,GACvB,GAAM,GAAY,GAAa,GACzB,EAAa,GAAU,EAAM,KACnC,SAAO,GAAe,GAEf,EAAQ,SAAC,EAAQ,EAAU,CAChC,GAAS,GAAY,GAAiB,EAAA,CAAE,GAAM,EAAM,IAAgC,IAAY,UAAU,KCgBxG,aAAmB,QACvB,GAAA,GAAA,EAAA,EAAA,EAAA,UAAA,OAAA,IAAA,EAAA,GAAA,UAAA,GAEA,MAAO,IAAK,MAAA,OAAA,EAAA,GAAA,EAAI,KCHZ,YAAoB,EAAyB,CACjD,MAAO,GAAQ,SAAC,EAAQ,EAAU,CAChC,GAAI,GAAW,GACX,EAAsB,KAC1B,EAAO,UACL,GAAI,GAAmB,EAAY,SAAC,EAAK,CACvC,EAAW,GACX,EAAY,KAGhB,GAAM,GAAO,UAAA,CACX,GAAI,EAAU,CACZ,EAAW,GACX,GAAM,GAAQ,EACd,EAAY,KACZ,EAAW,KAAK,KAGpB,EAAS,UAAU,GAAI,GAAmB,EAAY,EAAM,OC8B1D,YAAwB,EAA6D,EAAQ,CAMjG,MAAO,GAAQ,GAAc,EAAa,EAAW,UAAU,QAAU,EAAG,KCqCxE,YAAmB,EAA4B,CAA5B,AAAA,IAAA,QAAA,GAAA,IACf,GAAA,GAAgH,EAAO,UAAvH,EAAS,IAAA,OAAG,UAAA,CAAM,MAAA,IAAI,IAAY,EAAE,EAA4E,EAAO,aAAnF,EAAY,IAAA,OAAG,GAAI,EAAE,EAAuD,EAAO,gBAA9D,EAAe,IAAA,OAAG,GAAI,EAAE,EAA+B,EAAO,oBAAtC,EAAmB,IAAA,OAAG,GAAI,EAUnH,MAAO,UAAC,EAAa,CACnB,GAAI,GAAuC,KACvC,EAAuC,KACvC,EAAiC,KACjC,EAAW,EACX,EAAe,GACf,EAAa,GAEX,EAAc,UAAA,CAClB,GAAe,MAAf,EAAiB,cACjB,EAAkB,MAId,EAAQ,UAAA,CACZ,IACA,EAAa,EAAU,KACvB,EAAe,EAAa,IAExB,EAAsB,UAAA,CAG1B,GAAM,GAAO,EACb,IACA,GAAI,MAAJ,EAAM,eAGR,MAAO,GAAc,SAAC,EAAQ,GAAU,CACtC,IACI,CAAC,GAAc,CAAC,GAClB,IAOF,GAAM,IAAQ,EAAU,GAAO,KAAP,EAAW,IAOnC,GAAW,IAAI,UAAA,CACb,IAKI,IAAa,GAAK,CAAC,GAAc,CAAC,GACpC,GAAkB,GAAY,EAAqB,MAMvD,GAAK,UAAU,IAEV,GAMH,GAAa,GAAI,IAAe,CAC9B,KAAM,SAAC,GAAK,CAAK,MAAA,IAAK,KAAK,KAC3B,MAAO,SAAC,GAAG,CACT,EAAa,GACb,IACA,EAAkB,GAAY,EAAO,EAAc,IACnD,GAAK,MAAM,KAEb,SAAU,UAAA,CACR,EAAe,GACf,IACA,EAAkB,GAAY,EAAO,GACrC,GAAK,cAGT,GAAK,GAAQ,UAAU,MAExB,IAIP,YACE,EACA,EAA+C,QAC/C,GAAA,GAAA,EAAA,EAAA,EAAA,UAAA,OAAA,IAAA,EAAA,EAAA,GAAA,UAAA,GAEA,MAAI,KAAO,GACT,KAEO,MAGL,IAAO,GACF,KAGF,EAAE,MAAA,OAAA,EAAA,GAAA,EAAI,KACV,KAAK,GAAK,IACV,UAAU,UAAA,CAAM,MAAA,OChIf,YACJ,EACA,EACA,EAAyB,SAErB,EACA,EAAW,GACf,MAAI,IAAsB,MAAO,IAAuB,SACtD,GAAa,GAAA,EAAmB,cAAU,MAAA,IAAA,OAAA,EAAI,IAC9C,EAAa,GAAA,EAAmB,cAAU,MAAA,IAAA,OAAA,EAAI,IAC9C,EAAW,CAAC,CAAC,EAAmB,SAChC,EAAY,EAAmB,WAE/B,EAAa,GAAkB,KAAlB,EAAsB,IAE9B,GAAS,CACd,UAAW,UAAA,CAAM,MAAA,IAAI,IAAc,EAAY,EAAY,IAC3D,aAAc,GACd,gBAAiB,GACjB,oBAAqB,IC1GnB,YAAkB,EAAa,CACnC,MAAO,GAAO,SAAC,EAAG,EAAK,CAAK,MAAA,IAAS,ICUjC,YAAuB,EAAyB,CACpD,MAAO,GAAQ,SAAC,EAAQ,EAAU,CAChC,GAAI,GAAS,GAEP,EAAiB,GAAI,GACzB,EACA,UAAA,CACE,GAAc,MAAd,EAAgB,cAChB,EAAS,IAEX,IAGF,EAAU,GAAU,UAAU,GAE9B,EAAO,UAAU,GAAI,GAAmB,EAAY,SAAC,EAAK,CAAK,MAAA,IAAU,EAAW,KAAK,QCDvF,YAAmB,QAAO,GAAA,GAAA,EAAA,EAAA,EAAA,UAAA,OAAA,IAAA,EAAA,GAAA,UAAA,GAC9B,GAAM,GAAY,GAAa,GAC/B,MAAO,GAAQ,SAAC,EAAQ,EAAU,CAIhC,AAAC,GAAY,GAAO,EAAQ,EAAQ,GAAa,GAAO,EAAQ,IAAS,UAAU,KCiBjF,WACJ,EACA,EAA6G,CAE7G,MAAO,GAAQ,SAAC,EAAQ,EAAU,CAChC,GAAI,GAAyD,KACzD,EAAQ,EAER,EAAa,GAIX,EAAgB,UAAA,CAAM,MAAA,IAAc,CAAC,GAAmB,EAAW,YAEzE,EAAO,UACL,GAAI,GACF,EACA,SAAC,EAAK,CAEJ,GAAe,MAAf,EAAiB,cACjB,GAAI,GAAa,EACX,EAAa,IAEnB,EAAU,EAAQ,EAAO,IAAa,UACnC,EAAkB,GAAI,GACrB,EAIA,SAAC,EAAU,CAAK,MAAA,GAAW,KAAK,EAAiB,EAAe,EAAO,EAAY,EAAY,KAAgB,IAC/G,UAAA,CAIE,EAAkB,KAClB,QAKR,UAAA,CACE,EAAa,GACb,SCnEJ,YACJ,EACA,EAA6G,CAE7G,MAAO,GAAW,GAAkB,EAAU,UAAA,CAAM,MAAA,IAAiB,GAAkB,EAAU,UAAA,CAAM,MAAA,KCjBnG,YAAuB,EAA8B,CACzD,MAAO,GAAQ,SAAC,EAAQ,EAAU,CAChC,EAAU,GAAU,UAAU,GAAI,GAAmB,EAAY,UAAA,CAAM,MAAA,GAAW,YAAY,KAC9F,CAAC,EAAW,QAAU,EAAO,UAAU,KCSrC,YAAuB,EAAiD,EAAiB,CAAjB,MAAA,KAAA,QAAA,GAAA,IACrE,EAAQ,SAAC,EAAQ,EAAU,CAChC,GAAI,GAAQ,EACZ,EAAO,UACL,GAAI,GAAmB,EAAY,SAAC,EAAK,CACvC,GAAM,GAAS,EAAU,EAAO,KAChC,AAAC,IAAU,IAAc,EAAW,KAAK,GACzC,CAAC,GAAU,EAAW,gBC4CxB,WACJ,EACA,EACA,EAA8B,CAK9B,GAAM,GACJ,EAAW,IAAmB,GAAS,EAAW,CAAE,KAAM,EAAsC,MAAK,EAAE,SAAQ,GAAK,EAGtH,MAAO,GACH,EAAQ,SAAC,EAAQ,EAAU,CACzB,EAAO,UACL,GAAI,GACF,EACA,SAAC,EAAK,OACJ,AAAA,GAAA,EAAY,QAAI,MAAA,IAAA,QAAA,EAAA,KAAhB,EAAmB,GACnB,EAAW,KAAK,IAElB,UAAA,OACE,AAAA,GAAA,EAAY,YAAQ,MAAA,IAAA,QAAA,EAAA,KAApB,GACA,EAAW,YAEb,SAAC,EAAG,OACF,AAAA,GAAA,EAAY,SAAK,MAAA,IAAA,QAAA,EAAA,KAAjB,EAAoB,GACpB,EAAW,MAAM,QAQzB,GClIC,GAAM,IAAwC,CACnD,QAAS,GACT,SAAU,IA+CN,YACJ,EACA,EAA6D,IAA7D,GAAA,IAAA,OAAwC,GAAqB,EAA3D,EAAO,EAAA,QAAE,EAAQ,EAAA,SAEnB,MAAO,GAAQ,SAAC,EAAQ,EAAU,CAChC,GAAI,GAAW,GACX,EAAsB,KACtB,EAAiC,KACjC,EAAa,GAEX,EAAgB,UAAA,CACpB,GAAS,MAAT,EAAW,cACX,EAAY,KACR,GACF,KACA,GAAc,EAAW,aAIvB,EAAoB,UAAA,CACxB,EAAY,KACZ,GAAc,EAAW,YAGrB,EAAgB,SAAC,EAAQ,CAC7B,MAAC,GAAY,EAAU,EAAiB,IAAQ,UAAU,GAAI,GAAmB,EAAY,EAAe,KAExG,EAAO,UAAA,CACX,GAAI,EAAU,CAIZ,EAAW,GACX,GAAM,GAAQ,EACd,EAAY,KAEZ,EAAW,KAAK,GAChB,CAAC,GAAc,EAAc,KAIjC,EAAO,UACL,GAAI,GACF,EAMA,SAAC,EAAK,CACJ,EAAW,GACX,EAAY,EACZ,CAAE,IAAa,CAAC,EAAU,SAAY,GAAU,IAAS,EAAc,KAEzE,UAAA,CACE,EAAa,GACb,CAAE,IAAY,GAAY,GAAa,CAAC,EAAU,SAAW,EAAW,gBC7D5E,aAAwB,QAAO,GAAA,GAAA,EAAA,EAAA,EAAA,UAAA,OAAA,IAAA,EAAA,GAAA,UAAA,GACnC,GAAM,GAAU,GAAkB,GAElC,MAAO,GAAQ,SAAC,EAAQ,EAAU,CAehC,OAdM,GAAM,EAAO,OACb,EAAc,GAAI,OAAM,GAI1B,EAAW,EAAO,IAAI,UAAA,CAAM,MAAA,KAG5B,EAAQ,cAMH,EAAC,CACR,EAAU,EAAO,IAAI,UACnB,GAAI,GACF,EACA,SAAC,EAAK,CACJ,EAAY,GAAK,EACb,CAAC,GAAS,CAAC,EAAS,IAEtB,GAAS,GAAK,GAKb,GAAQ,EAAS,MAAM,MAAe,GAAW,QAKtD,MAlBG,EAAI,EAAG,EAAI,EAAK,MAAhB,GAwBT,EAAO,UACL,GAAI,GAAmB,EAAY,SAAC,EAAK,CACvC,GAAI,EAAO,CAET,GAAM,GAAM,EAAA,CAAI,GAAK,EAAK,IAC1B,EAAW,KAAK,EAAU,EAAO,MAAA,OAAA,EAAA,GAAA,EAAI,KAAU,SClFnD,aAAa,QAAO,GAAA,GAAA,EAAA,EAAA,EAAA,UAAA,OAAA,IAAA,EAAA,GAAA,UAAA,GACxB,MAAO,GAAQ,SAAC,EAAQ,EAAU,CAEhC,GAAS,MAAA,OAAA,EAAA,CAAC,GAAM,EAAM,KAAmB,UAAU,KCEjD,aAAiB,QAAkC,GAAA,GAAA,EAAA,EAAA,EAAA,UAAA,OAAA,IAAA,EAAA,GAAA,UAAA,GACvD,MAAO,IAAG,MAAA,OAAA,EAAA,GAAA,EAAI,KCUT,aAA4C,CACjD,GAAM,GAAY,GAAI,IACtB,SAAU,SAAU,oBACjB,KACC,GAAM,WAEL,UAAU,GAGR,ECFF,YACL,EAAkB,EAAmB,SACtB,CACf,MAAO,GAAK,cAAiB,IAAa,OAqBrC,YACL,EAAkB,EAAmB,SAClC,CACH,GAAM,GAAK,GAAc,EAAU,GACnC,GAAI,MAAO,IAAO,YAChB,KAAM,IAAI,gBACR,8BAA8B,oBAElC,MAAO,GAQF,aAAqD,CAC1D,MAAO,UAAS,wBAAyB,aACrC,SAAS,cACT,OAqBC,WACL,EAAkB,EAAmB,SAChC,CACL,MAAO,OAAM,KAAK,EAAK,iBAAoB,IActC,YACL,EAC0B,CAC1B,MAAO,UAAS,cAAc,GASzB,YACL,KAAoB,EACd,CACN,EAAG,YAAY,GAAG,GCvGb,YACL,EAAiB,EAAQ,GACnB,CACN,AAAI,EACF,EAAG,QAEH,EAAG,OAYA,YACL,EACqB,CACrB,MAAO,GACL,EAAsB,EAAI,SAC1B,EAAsB,EAAI,SAEzB,KACC,EAAI,CAAC,CAAE,UAAW,IAAS,SAC3B,EAAU,IAAO,OCNvB,GAAM,IAAS,GAAI,GAYb,GAAY,GAAM,IAAM,EAC5B,GAAI,gBAAe,GAAW,CAC5B,OAAW,KAAS,GAClB,GAAO,KAAK,OAGf,KACC,EAAU,GAAU,EAAM,KAAK,EAAU,IACtC,KACC,EAAS,IAAM,EAAO,gBAG1B,GAAY,IAcT,YAAwB,EAA8B,CAC3D,MAAO,CACL,MAAQ,EAAG,YACX,OAAQ,EAAG,cAWR,YAA+B,EAA8B,CAClE,MAAO,CACL,MAAQ,EAAG,YACX,OAAQ,EAAG,cAyBR,YACL,EACyB,CACzB,MAAO,IACJ,KACC,EAAI,GAAY,EAAS,QAAQ,IACjC,EAAU,GAAY,GACnB,KACC,EAAO,CAAC,CAAE,YAAa,IAAW,GAClC,EAAS,IAAM,EAAS,UAAU,IAClC,EAAI,IAAM,GAAe,MAG7B,EAAU,GAAe,KC9FxB,YAA0B,EAAgC,CAC/D,MAAO,CACL,EAAG,EAAG,WACN,EAAG,EAAG,WAaH,YACL,EAC2B,CAC3B,MAAO,GACL,EAAU,EAAI,UACd,EAAU,OAAQ,WAEjB,KACC,EAAI,IAAM,GAAiB,IAC3B,EAAU,GAAiB,KAe1B,YACL,EAAiB,EAAY,GACR,CACrB,MAAO,IAAmB,GACvB,KACC,EAAI,CAAC,CAAE,OAAQ,CACb,GAAM,GAAU,GAAe,GACzB,EAAU,GAAsB,GACtC,MAAO,IACL,EAAQ,OAAS,EAAQ,OAAS,IAGtC,KC9EC,YACL,EACM,CACN,GAAI,YAAc,kBAChB,EAAG,aAEH,MAAM,IAAI,OAAM,mBCQpB,GAAM,IAA4C,CAChD,OAAQ,GAAkB,2BAC1B,OAAQ,GAAkB,4BAcrB,YAAmB,EAAuB,CAC/C,MAAO,IAAQ,GAAM,QAchB,YAAmB,EAAc,EAAsB,CAC5D,AAAI,GAAQ,GAAM,UAAY,GAC5B,GAAQ,GAAM,QAYX,YAAqB,EAAmC,CAC7D,GAAM,GAAK,GAAQ,GACnB,MAAO,GAAU,EAAI,UAClB,KACC,EAAI,IAAM,EAAG,SACb,EAAU,EAAG,UClCnB,YAAiC,EAA0B,CACzD,OAAQ,EAAG,aAGJ,YACA,aACA,WACH,MAAO,WAIP,MAAO,GAAG,mBAaT,aAA+C,CACpD,MAAO,GAAyB,OAAQ,WACrC,KACC,EAAO,GAAM,CAAE,GAAG,SAAW,EAAG,UAChC,EAAI,GAAO,EACT,KAAM,GAAU,UAAY,SAAW,SACvC,KAAM,EAAG,IACT,OAAQ,CACN,EAAG,iBACH,EAAG,sBAGP,EAAO,CAAC,CAAE,UAAW,CACnB,GAAI,IAAS,SAAU,CACrB,GAAM,GAAS,KACf,GAAI,MAAO,IAAW,YACpB,MAAO,CAAC,GAAwB,GAEpC,MAAO,KAET,MCnEC,aAA4B,CACjC,MAAO,IAAI,KAAI,SAAS,MAQnB,YAAqB,EAAgB,CAC1C,SAAS,KAAO,EAAI,KAUf,aAAuC,CAC5C,MAAO,IAAI,GCvBN,aAAmC,CACxC,MAAO,UAAS,KAAK,UAAU,GAa1B,YAAyB,EAAoB,CAClD,GAAM,GAAK,GAAc,KACzB,EAAG,KAAO,EACV,EAAG,iBAAiB,QAAS,GAAM,EAAG,mBACtC,EAAG,QAUE,aAAiD,CACtD,MAAO,GAA2B,OAAQ,cACvC,KACC,EAAI,IACJ,EAAU,MACV,EAAO,GAAQ,EAAK,OAAS,GAC7B,MASC,aAAwD,CAC7D,MAAO,MACJ,KACC,EAAU,GAAM,EAAG,GAAW,QAAQ,UChCrC,YAAoB,EAAoC,CAC7D,GAAM,GAAQ,WAAW,GACzB,MAAO,IAA0B,GAC/B,EAAM,YAAY,IAAM,EAAK,EAAM,WAElC,KACC,EAAU,EAAM,UASf,aAAwC,CAC7C,MAAO,GAAU,OAAQ,eACtB,KACC,GAAM,SAgBL,YACL,EAA6B,EACd,CACf,MAAO,GACJ,KACC,EAAU,GAAU,EAAS,IAAY,IC/CxC,YACL,EAAmB,EAAuB,CAAE,YAAa,eACnC,CACtB,MAAO,IAAK,MAAM,GAAG,IAAO,IACzB,KACC,EAAO,GAAO,EAAI,SAAW,MAc5B,YACL,EAAmB,EACJ,CACf,MAAO,IAAQ,EAAK,GACjB,KACC,EAAU,GAAO,EAAI,QACrB,GAAY,IAYX,YACL,EAAmB,EACG,CACtB,GAAM,GAAM,GAAI,WAChB,MAAO,IAAQ,EAAK,GACjB,KACC,EAAU,GAAO,EAAI,QACrB,EAAI,GAAO,EAAI,gBAAgB,EAAK,aACpC,GAAY,ICtCX,aAA6C,CAClD,MAAO,CACL,EAAG,KAAK,IAAI,EAAG,aACf,EAAG,KAAK,IAAI,EAAG,cASZ,YACL,CAAE,IAAG,KACC,CACN,OAAO,SAAS,GAAK,EAAG,GAAK,GAUxB,aAA2D,CAChE,MAAO,GACL,EAAU,OAAQ,SAAU,CAAE,QAAS,KACvC,EAAU,OAAQ,SAAU,CAAE,QAAS,MAEtC,KACC,EAAI,IACJ,EAAU,OCnCT,aAAyC,CAC9C,MAAO,CACL,MAAQ,WACR,OAAQ,aAWL,aAAuD,CAC5D,MAAO,GAAU,OAAQ,SAAU,CAAE,QAAS,KAC3C,KACC,EAAI,IACJ,EAAU,OCST,aAA+C,CACpD,MAAO,GAAc,CACnB,KACA,OAEC,KACC,EAAI,CAAC,CAAC,EAAQ,KAAW,EAAE,SAAQ,UACnC,GAAY,IAYX,YACL,EAAiB,CAAE,YAAW,WACR,CACtB,GAAM,GAAQ,EACX,KACC,EAAwB,SAItB,EAAU,EAAc,CAAC,EAAO,IACnC,KACC,EAAI,IAAuB,EACzB,EAAG,EAAG,WACN,EAAG,EAAG,cAKZ,MAAO,GAAc,CAAC,EAAS,EAAW,IACvC,KACC,EAAI,CAAC,CAAC,CAAE,UAAU,CAAE,SAAQ,QAAQ,CAAE,IAAG,QAAU,EACjD,OAAQ,CACN,EAAG,EAAO,EAAI,EACd,EAAG,EAAO,EAAI,EAAI,GAEpB,WChCD,YACL,EAAgB,CAAE,OACH,CAGf,GAAM,GAAM,EAAwB,EAAQ,WACzC,KACC,EAAI,CAAC,CAAE,UAAW,IAItB,MAAO,GACJ,KACC,GAAS,IAAM,EAAK,CAAE,QAAS,GAAM,SAAU,KAC/C,EAAI,GAAW,EAAO,YAAY,IAClC,GAAY,GACZ,MCRN,GAAM,IAAS,GAAkB,aAC3B,GAAiB,KAAK,MAAM,GAAO,aACzC,GAAO,KAAO,GAAI,KAAI,GAAO,KAAM,MAChC,WACA,QAAQ,MAAO,IAWX,aAAiC,CACtC,MAAO,IAUF,YAAiB,EAAqB,CAC3C,MAAO,IAAO,SAAS,SAAS,GAW3B,WACL,EAAkB,EACV,CACR,MAAO,OAAO,IAAU,YACpB,GAAO,aAAa,GAAK,QAAQ,IAAK,EAAM,YAC5C,GAAO,aAAa,GC7BnB,YACL,EAAS,EAAmB,SACP,CACrB,MAAO,IAAkB,sBAAsB,KAAS,GAanD,YACL,EAAS,EAAmB,SACL,CACvB,MAAO,GAAY,sBAAsB,KAAS,GCxGpD,OAAwB,SCUjB,YACL,EAAiB,EAAQ,EACnB,CACN,EAAG,aAAa,WAAY,EAAM,YAQ7B,YACL,EACM,CACN,EAAG,gBAAgB,YASd,YACL,EAAiB,EACX,CACN,EAAG,aAAa,gBAAiB,QACjC,EAAG,MAAM,IAAM,IAAI,MAQd,YACL,EACM,CACN,GAAM,GAAQ,GAAK,SAAS,EAAG,MAAM,IAAK,IAC1C,EAAG,gBAAgB,iBACnB,EAAG,MAAM,IAAM,GACX,GACF,OAAO,SAAS,EAAG,GC1ChB,YACL,EAAiB,EACX,CACN,EAAG,aAAa,gBAAiB,GAQ5B,YACL,EACM,CACN,EAAG,gBAAgB,iBAWd,YACL,EAAiB,EACX,CACN,EAAG,UAAU,OAAO,uBAAwB,GAQvC,YACL,EACM,CACN,EAAG,UAAU,OAAO,wBCvCf,YACL,EAAiB,EACX,CACN,EAAG,kBAAmB,UAAY,EAW7B,YACL,EAAiB,EACX,CACN,EAAG,aAAa,gBAAiB,GAQ5B,YACL,EACM,CACN,EAAG,gBAAgB,iBC5Bd,YACL,EAAiB,EACX,CACN,EAAG,aAAa,gBAAiB,GAQ5B,YACL,EACM,CACN,EAAG,gBAAgB,iBCdd,YACL,EAAiB,EACX,CACN,EAAG,aAAa,gBAAiB,GAQ5B,YACL,EACM,CACN,EAAG,gBAAgB,iBCZd,YACL,EAAsB,EAChB,CACN,EAAG,YAAc,EAQZ,YACL,EACM,CACN,EAAG,YAAc,EAAY,sBCO/B,YAAqB,EAAiB,EAA8B,CAGlE,GAAI,MAAO,IAAU,UAAY,MAAO,IAAU,SAChD,EAAG,WAAa,EAAM,mBAGb,YAAiB,MAC1B,EAAG,YAAY,WAGN,MAAM,QAAQ,GACvB,OAAW,KAAQ,GACjB,GAAY,EAAI,GAiBf,WACL,EAAa,KAAkC,EAClC,CACb,GAAM,GAAK,SAAS,cAAc,GAGlC,GAAI,EACF,OAAW,KAAQ,QAAO,KAAK,GAC7B,AAAI,MAAO,GAAW,IAAU,UAC9B,EAAG,aAAa,EAAM,EAAW,IAC1B,EAAW,IAClB,EAAG,aAAa,EAAM,IAG5B,OAAW,KAAS,GAClB,GAAY,EAAI,GAGlB,MAAO,GChEF,YAAkB,EAAe,EAAmB,CACzD,GAAI,GAAI,EACR,GAAI,EAAM,OAAS,EAAG,CACpB,KAAO,EAAM,KAAO,KAAO,EAAE,EAAI,GAAG,CACpC,MAAO,GAAG,EAAM,UAAU,EAAG,QAE/B,MAAO,GAmBF,YAAe,EAAuB,CAC3C,GAAI,EAAQ,IAAK,CACf,GAAM,GAAS,CAAG,IAAQ,KAAO,IAAO,IACxC,MAAO,GAAK,IAAQ,MAAY,KAAM,QAAQ,UAE9C,OAAO,GAAM,WClCV,YACL,EAAiB,EACX,CACN,OAAQ,OAGD,GACH,EAAG,YAAc,EAAY,sBAC7B,UAGG,GACH,EAAG,YAAc,EAAY,qBAC7B,cAIA,EAAG,YAAc,EAAY,sBAAuB,GAAM,KASzD,YACL,EACM,CACN,EAAG,YAAc,EAAY,6BAWxB,YACL,EAAiB,EACX,CACN,EAAG,YAAY,GAQV,YACL,EACM,CACN,EAAG,UAAY,GCzDV,YACL,EAAiB,EACX,CACN,EAAG,MAAM,IAAM,GAAG,MAQb,YACL,EACM,CACN,EAAG,MAAM,IAAM,GAwBV,YACL,EAAiB,EACX,CACN,GAAM,GAAa,EAAG,kBACtB,EAAW,MAAM,OAAS,GAAG,EAAQ,EAAI,EAAW,cAQ/C,YACL,EACM,CACN,GAAM,GAAa,EAAG,kBACtB,EAAW,MAAM,OAAS,GCtDrB,YACL,EAAiB,EACX,CACN,EAAG,iBAAkB,YAAY,GAS5B,YACL,EAAiB,EACX,CACN,EAAG,iBAAkB,aAAa,gBAAiB,GCf9C,YACL,EAAiB,EACX,CACN,EAAG,aAAa,gBAAiB,GAQ5B,YACL,EACM,CACN,EAAG,gBAAgB,iBCdd,YACL,EAAiB,EACX,CACN,EAAG,aAAa,gBAAiB,GAQ5B,YACL,EACM,CACN,EAAG,gBAAgB,iBAWd,YACL,EAAiB,EACX,CACN,EAAG,MAAM,IAAM,GAAG,MAQb,YACL,EACM,CACN,EAAG,MAAM,IAAM,GCnCV,YAA+B,EAAyB,CAC7D,MACE,GAAC,SAAD,CACE,MAAM,uBACN,MAAO,EAAY,kBACnB,wBAAuB,IAAI,aCJjC,GAAW,IAAX,UAAW,EAAX,CACE,WAAS,GAAT,SACA,WAAS,GAAT,WAFS,aAiBX,YACE,EAA2C,EAC9B,CACb,GAAM,GAAS,EAAO,EAChB,EAAS,EAAO,EAGhB,EAAU,OAAO,KAAK,EAAS,OAClC,OAAO,GAAO,CAAC,EAAS,MAAM,IAC9B,IAAI,GAAO,CAAC,EAAC,MAAD,KAAM,GAAY,MAC9B,OACA,MAAM,EAAG,IAGN,EAAM,EAAS,SACrB,MACE,GAAC,IAAD,CAAG,KAAM,EAAK,MAAM,yBAAyB,SAAU,IACrD,EAAC,UAAD,CACE,MAAO,CAAC,4BAA6B,GAAG,EACpC,CAAC,uCACD,IACF,KAAK,KACP,gBAAe,EAAS,MAAM,QAAQ,IAErC,EAAS,GAAK,EAAC,MAAD,CAAK,MAAM,mCAC1B,EAAC,KAAD,CAAI,MAAM,2BAA2B,EAAS,OAC7C,EAAS,GAAK,EAAS,KAAK,OAAS,GACpC,EAAC,IAAD,CAAG,MAAM,4BACN,GAAS,EAAS,KAAM,MAG5B,EAAS,GAAK,EAAQ,OAAS,GAC9B,EAAC,IAAD,CAAG,MAAM,2BACN,EAAY,8BAA8B,KAAM,KAmBtD,YACL,EACa,CACb,GAAM,GAAY,EAAO,GAAG,MACtB,EAAO,CAAC,GAAG,GAGX,EAAS,EAAK,UAAU,GAAO,CAAC,EAAI,SAAS,SAAS,MACtD,CAAC,GAAW,EAAK,OAAO,EAAQ,GAGlC,EAAQ,EAAK,UAAU,GAAO,EAAI,MAAQ,GAC9C,AAAI,IAAU,IACZ,GAAQ,EAAK,QAGf,GAAM,GAAO,EAAK,MAAM,EAAG,GACrB,EAAO,EAAK,MAAM,GAGlB,EAAW,CACf,GAAqB,EAAS,EAAc,CAAE,EAAC,GAAU,IAAU,IACnE,GAAG,EAAK,IAAI,GAAW,GAAqB,EAAS,IACrD,GAAG,EAAK,OAAS,CACf,EAAC,UAAD,CAAS,MAAM,0BACb,EAAC,UAAD,CAAS,SAAU,IAChB,EAAK,OAAS,GAAK,EAAK,SAAW,EAChC,EAAY,0BACZ,EAAY,2BAA4B,EAAK,SAG/C,EAAK,IAAI,GAAW,GAAqB,EAAS,MAEtD,IAIN,MACE,GAAC,KAAD,CAAI,MAAM,0BACP,GC7GA,YAA2B,EAAiC,CACjE,MACE,GAAC,KAAD,CAAI,MAAM,oBACP,OAAO,QAAQ,GAAO,IAAI,CAAC,CAAC,EAAK,KAChC,EAAC,KAAD,CAAI,MAAO,oCAAoC,KAC5C,MAAO,IAAU,SAAW,GAAM,GAAS,KCN/C,YAAqB,EAAiC,CAC3D,MACE,GAAC,MAAD,CAAK,MAAM,0BACT,EAAC,MAAD,CAAK,MAAM,qBACR,ICUT,YAAuB,EAA+B,CACpD,GAAM,GAAS,KAGT,EAAM,GAAI,KAAI,GAAG,EAAQ,WAAY,EAAO,MAClD,MACE,GAAC,KAAD,CAAI,MAAM,oBACR,EAAC,IAAD,CAAG,KAAM,EAAI,WAAY,MAAM,oBAC5B,EAAQ,QAiBV,YAA+B,EAAkC,CACtE,GAAM,GAAS,KAGT,CAAC,CAAE,GAAW,EAAO,KAAK,MAAM,eAChC,EACJ,EAAS,KAAK,CAAC,CAAE,UAAS,aACxB,IAAY,GAAW,EAAQ,SAAS,KACpC,EAAS,GAGjB,MACE,GAAC,MAAD,CAAK,MAAM,cACT,EAAC,SAAD,CACE,MAAM,sBACN,aAAY,EAAY,yBAEvB,EAAO,OAEV,EAAC,KAAD,CAAI,MAAM,oBACP,EAAS,IAAI,MlBNtB,GAAI,IAAQ,EAiBL,YACL,EAAiB,CAAE,aACI,CACvB,GAAM,GAAa,EAAG,GACnB,KACC,EAAU,GAAS,CACjB,GAAM,GAAY,EAAM,QAAQ,eAChC,MAAI,aAAqB,aAChB,EACL,GAAG,EAAY,QAAS,GACrB,IAAI,GAAS,EAAU,EAAO,YAG9B,KAKb,MAAO,GACL,EAAU,KAAK,EAAwB,SACvC,GAEC,KACC,EAAI,IAAM,CACR,GAAM,GAAU,GAAe,GAE/B,MAAO,CACL,OAAQ,AAFM,GAAsB,GAEpB,MAAQ,EAAQ,SAGpC,EAAwB,WAevB,YACL,EAAiB,EACiB,CAClC,GAAM,GAAY,GAAI,GAatB,GAZA,EACG,KACC,GAAe,GAAW,aAEzB,UAAU,CAAC,CAAC,CAAE,UAAU,KAAW,CAClC,AAAI,GAAU,EACZ,GAAa,GAEb,GAAe,KAInB,WAAY,cAAe,CAC7B,GAAM,GAAS,EAAG,QAAQ,OAC1B,EAAO,GAAK,UAAU,OACtB,EAAO,aACL,GAAsB,EAAO,IAC7B,GAKJ,MAAO,IAAe,EAAI,GACvB,KACC,EAAI,GACJ,EAAS,IAAM,EAAU,YACzB,EAAI,GAAU,GAAE,IAAK,GAAO,KmBzG3B,YACL,EAAwB,CAAE,UAAS,UACd,CACrB,MAAO,GACJ,KACC,EAAI,GAAU,EAAO,QAAQ,wBAC7B,EAAO,GAAW,IAAO,GACzB,GAAU,GACV,GAAM,IAeL,YACL,EAAwB,EACQ,CAChC,GAAM,GAAY,GAAI,GACtB,SAAU,UAAU,IAAM,CACxB,EAAG,aAAa,OAAQ,IACxB,EAAG,mBAIE,GAAa,EAAI,GACrB,KACC,EAAI,GACJ,EAAS,IAAM,EAAU,YACzB,GAAM,CAAE,IAAK,KCnEnB,GAAM,IAAW,GAAc,SAgBxB,YACL,EACkC,CAClC,UAAe,EAAI,IACnB,GAAe,GAAU,GAAY,IAG9B,EAAG,CAAE,IAAK,ICGZ,YACL,EAAiB,CAAE,UAAS,YAAW,UACP,CAChC,MAAO,GAGL,GAAG,EAAY,aAAc,GAC1B,IAAI,GAAS,GAAe,EAAO,CAAE,eAGxC,GAAG,EAAY,qBAAsB,GAClC,IAAI,GAAS,GAAe,IAG/B,GAAG,EAAY,UAAW,GACvB,IAAI,GAAS,GAAa,EAAO,CAAE,UAAS,aCE5C,YACL,EAAkB,CAAE,UACA,CACpB,MAAO,GACJ,KACC,EAAU,GAAW,EACnB,EAAG,IACH,EAAG,IAAO,KAAK,GAAM,OAEpB,KACC,EAAI,GAAS,EAAE,UAAS,aAiB3B,YACL,EAAiB,EACc,CAC/B,GAAM,GAAY,GAAI,GACtB,SACG,KACC,EAAU,IAET,UAAU,CAAC,CAAE,UAAS,UAAW,CAChC,GAAiB,EAAI,GACrB,AAAI,EACF,GAAe,EAAI,QAEnB,GAAiB,KAIlB,GAAY,EAAI,GACpB,KACC,EAAI,GACJ,EAAS,IAAM,EAAU,YACzB,EAAI,GAAU,GAAE,IAAK,GAAO,KCnClC,YAAkB,CAAE,aAAgD,CAClE,GAAI,CAAC,GAAQ,mBACX,MAAO,GAAG,IAGZ,GAAM,GAAa,EAChB,KACC,EAAI,CAAC,CAAE,OAAQ,CAAE,QAAU,GAC3B,GAAY,EAAG,GACf,EAAI,CAAC,CAAC,EAAG,KAAO,CAAC,EAAI,EAAG,IACxB,EAAwB,IAItB,EAAU,EAAc,CAAC,EAAW,IACvC,KACC,EAAO,CAAC,CAAC,CAAE,UAAU,CAAC,CAAE,MAAQ,KAAK,IAAI,EAAI,EAAO,GAAK,KACzD,EAAI,CAAC,CAAC,CAAE,CAAC,MAAgB,GACzB,KAIE,EAAU,GAAY,UAC5B,MAAO,GAAc,CAAC,EAAW,IAC9B,KACC,EAAI,CAAC,CAAC,CAAE,UAAU,KAAY,EAAO,EAAI,KAAO,CAAC,GACjD,IACA,EAAU,GAAU,EAAS,EAAU,EAAG,KAC1C,EAAU,KAgBT,YACL,EAAiB,EACG,CACpB,MAAO,IAAM,IAAM,CACjB,GAAM,GAAS,iBAAiB,GAChC,MAAO,GACL,EAAO,WAAa,UACpB,EAAO,WAAa,oBAGrB,KACC,GAAkB,GAAiB,GAAK,GAAS,IACjD,EAAI,CAAC,CAAC,EAAQ,CAAE,UAAU,KAAa,EACrC,OAAQ,EAAS,EAAS,EAC1B,SACA,YAEF,EAAqB,CAAC,EAAG,IACvB,EAAE,SAAW,EAAE,QACf,EAAE,SAAW,EAAE,QACf,EAAE,SAAW,EAAE,QAEjB,GAAY,IAeX,YACL,EAAiB,CAAE,UAAS,SACG,CAC/B,GAAM,GAAY,GAAI,GACtB,SACG,KACC,EAAwB,UACxB,GAAkB,GAClB,EAAU,IAET,UAAU,CAAC,CAAC,CAAE,UAAU,CAAE,aAAc,CACvC,AAAI,EACF,GAAe,EAAI,EAAS,SAAW,UAEvC,GAAiB,KAIzB,EAAM,UAAU,GAAQ,EAAU,KAAK,IAChC,EACJ,KACC,EAAI,GAAU,GAAE,IAAK,GAAO,KC9G3B,YACL,EAAwB,CAAE,YAAW,WACZ,CACzB,MAAO,IAAgB,EAAI,CAAE,UAAS,cACnC,KACC,EAAI,CAAC,CAAE,OAAQ,CAAE,QAAU,CACzB,GAAM,CAAE,UAAW,GAAe,GAClC,MAAO,CACL,OAAQ,GAAK,KAGjB,EAAwB,WAevB,YACL,EAAiB,EACmB,CACpC,GAAM,GAAY,GAAI,GACtB,EACG,KACC,EAAU,IAET,UAAU,CAAC,CAAE,YAAa,CACzB,AAAI,EACF,GAAoB,EAAI,UAExB,GAAsB,KAI9B,GAAM,GAAW,GAA+B,cAChD,MAAI,OAAO,IAAa,YACf,EAGF,GAAiB,EAAU,GAC/B,KACC,EAAI,GACJ,EAAS,IAAM,EAAU,YACzB,EAAI,GAAU,GAAE,IAAK,GAAO,KClE3B,YACL,EAAiB,CAAE,YAAW,WACZ,CAGlB,GAAM,GAAU,EACb,KACC,EAAI,CAAC,CAAE,YAAa,GACpB,KAIE,EAAU,EACb,KACC,EAAU,IAAM,GAAiB,GAC9B,KACC,EAAI,CAAC,CAAE,YAAc,EACnB,IAAQ,EAAG,UACX,OAAQ,EAAG,UAAY,KAEzB,EAAwB,aAMhC,MAAO,GAAc,CAAC,EAAS,EAAS,IACrC,KACC,EAAI,CAAC,CAAC,EAAQ,CAAE,MAAK,UAAU,CAAE,OAAQ,CAAE,KAAK,KAAM,CAAE,cACtD,GAAS,KAAK,IAAI,EAAG,EACjB,KAAK,IAAI,EAAG,EAAS,EAAI,GACzB,KAAK,IAAI,EAAG,EAAS,EAAI,IAEtB,CACL,OAAQ,EAAM,EACd,SACA,OAAQ,EAAM,GAAU,KAG5B,EAAqB,CAAC,EAAG,IACvB,EAAE,SAAW,EAAE,QACf,EAAE,SAAW,EAAE,QACf,EAAE,SAAW,EAAE,SC9ChB,YACL,EACqB,CACrB,GAAM,GAAO,aAAa,QAAQ,SAAS,cACrC,EAAU,KAAK,MAAM,IAAS,CAClC,MAAO,EAAO,UAAU,GACtB,WAAW,EAAM,aAAa,wBAAyB,UAKrD,EAAW,EAAG,GAAG,GACpB,KACC,GAAS,GAAS,EAAU,EAAO,UAChC,KACC,GAAM,KAGV,EAAU,EAAO,KAAK,IAAI,EAAG,EAAQ,SACrC,EAAI,GAAU,EACZ,MAAO,EAAO,QAAQ,GACtB,MAAO,CACL,OAAS,EAAM,aAAa,wBAC5B,QAAS,EAAM,aAAa,yBAC5B,OAAS,EAAM,aAAa,4BAGhC,GAAY,IAIhB,SAAS,UAAU,GAAW,CAC5B,aAAa,QAAQ,SAAS,aAAc,KAAK,UAAU,MAItD,EAUF,YACL,EACgC,CAChC,GAAM,GAAY,GAAI,GAGtB,EAAU,UAAU,GAAW,CAC7B,OAAW,CAAC,EAAK,IAAU,QAAO,QAAQ,EAAQ,OAChD,AAAI,MAAO,IAAU,UACnB,SAAS,KAAK,aAAa,iBAAiB,IAAO,GAGvD,OAAS,GAAQ,EAAG,EAAQ,EAAO,OAAQ,IAAS,CAClD,GAAM,GAAQ,EAAO,GAAO,mBAC5B,AAAI,YAAiB,cACnB,GAAM,OAAS,EAAQ,QAAU,MAKvC,GAAM,GAAS,EAA8B,QAAS,GACtD,MAAO,IAAa,GACjB,KACC,EAAI,GACJ,EAAS,IAAM,EAAU,YACzB,EAAI,GAAU,GAAE,IAAK,GAAO,KC3HlC,OAAwB,SAyBjB,YACL,CAAE,UACI,CACN,AAAI,WAAY,eACd,GAAI,GAA8B,GAAc,CAC9C,GAAI,YAAY,kDACb,GAAG,UAAW,GAAM,EAAW,KAAK,MAEtC,UAAU,IAAM,EAAO,KAAK,EAAY,sBC+C/C,YAAoB,EAA0B,CAC5C,GAAI,EAAK,OAAS,EAChB,MAAO,GAGT,GAAM,CAAC,EAAM,GAAQ,EAClB,KAAK,CAAC,EAAG,IAAM,EAAE,OAAS,EAAE,QAC5B,IAAI,GAAO,EAAI,QAAQ,SAAU,KAGhC,EAAQ,EACZ,GAAI,IAAS,EACX,EAAQ,EAAK,WAEb,MAAO,EAAK,WAAW,KAAW,EAAK,WAAW,IAChD,IAGJ,GAAM,GAAS,KACf,MAAO,GAAK,IAAI,GACd,EAAI,QAAQ,EAAK,MAAM,EAAG,GAAQ,GAAG,EAAO,UA6BzC,YACL,CAAE,YAAW,YAAW,aAClB,CACN,GAAM,GAAS,KACf,GAAI,SAAS,WAAa,QACxB,OAGF,AAAI,qBAAuB,UACzB,SAAQ,kBAAoB,SAG5B,EAAU,OAAQ,gBACf,UAAU,IAAM,CACf,QAAQ,kBAAoB,UAKlC,GAAM,GAAU,GAA4B,kBAC5C,AAAI,MAAO,IAAY,aACrB,GAAQ,KAAO,EAAQ,MAGzB,GAAM,GAAQ,GAAW,GAAG,EAAO,oBAChC,KACC,EAAI,GAAW,GAAW,EAAY,MAAO,GAC1C,IAAI,GAAQ,EAAK,eAEpB,EAAU,GAAQ,EAAsB,SAAS,KAAM,SACpD,KACC,EAAO,GAAM,CAAC,EAAG,SAAW,CAAC,EAAG,SAChC,EAAU,GAAM,CAGd,GAAI,EAAG,iBAAkB,SAAS,CAChC,GAAM,GAAK,EAAG,OAAO,QAAQ,KAC7B,GAAI,GAAM,CAAC,EAAG,QAAU,EAAK,SAAS,EAAG,MACvC,SAAG,iBACI,EAAG,CACR,IAAK,GAAI,KAAI,EAAG,QAItB,MAAO,OAIb,MAIE,EAAO,EAAyB,OAAQ,YAC3C,KACC,EAAO,GAAM,EAAG,QAAU,MAC1B,EAAI,GAAO,EACT,IAAK,GAAI,KAAI,SAAS,MACtB,OAAQ,EAAG,SAEb,MAIJ,EAAM,EAAO,GACV,KACC,EAAqB,CAAC,EAAG,IAAM,EAAE,IAAI,OAAS,EAAE,IAAI,MACpD,EAAI,CAAC,CAAE,SAAU,IAEhB,UAAU,GAGf,GAAM,GAAY,EACf,KACC,EAAwB,YACxB,EAAU,GAAO,GAAQ,EAAI,MAC1B,KACC,GAAW,IACT,IAAY,GACL,MAIb,MAIJ,EACG,KACC,GAAO,IAEN,UAAU,CAAC,CAAE,SAAU,CACtB,QAAQ,UAAU,GAAI,GAAI,GAAG,OAInC,GAAM,GAAM,GAAI,WAChB,EACG,KACC,EAAU,GAAO,EAAI,QACrB,EAAI,GAAO,EAAI,gBAAgB,EAAK,eAEnC,UAAU,GAGf,EAAM,EAAO,GACV,KACC,GAAO,IAEN,UAAU,CAAC,CAAE,MAAK,YAAa,CAC9B,AAAI,EAAI,MAAQ,CAAC,EACf,GAAgB,EAAI,MAEpB,GAAkB,GAAU,CAAE,EAAG,MAIzC,EACG,KACC,GAAK,IAEJ,UAAU,GAAe,CACxB,OAAW,KAAY,CAGrB,QACA,sBACA,oBACA,yBAGA,+BACA,gCACA,mCACA,qCACA,4BACC,CACD,GAAM,GAAS,GAAW,GACpB,EAAS,GAAW,EAAU,GACpC,AACE,MAAO,IAAW,aAClB,MAAO,IAAW,aAElB,GAAe,EAAQ,MAMjC,EACG,KACC,GAAK,GACL,EAAI,IAAM,GAAoB,cAC9B,EAAU,GAAM,EAAG,GAAG,EAAY,SAAU,KAC5C,GAAU,GAAM,CACd,GAAM,GAAS,GAAc,UAC7B,GAAI,EAAG,IAAK,CACV,OAAW,KAAQ,GAAG,oBACpB,EAAO,aAAa,EAAM,EAAG,aAAa,IAC5C,UAAe,EAAI,GAGZ,GAAI,GAAW,GAAY,CAChC,EAAO,OAAS,IAAM,EAAS,iBAKjC,UAAO,YAAc,EAAG,YACxB,GAAe,EAAI,GACZ,MAIV,YAGL,EACG,KACC,GAAU,GACV,GAAa,KACb,EAAwB,WAEvB,UAAU,CAAC,CAAE,YAAa,CACzB,QAAQ,aAAa,EAAQ,MAInC,EAAM,EAAO,GACV,KACC,GAAY,EAAG,GACf,EAAO,CAAC,CAAC,EAAG,KAAO,EAAE,IAAI,WAAa,EAAE,IAAI,UAC5C,EAAI,CAAC,CAAC,CAAE,KAAW,IAElB,UAAU,CAAC,CAAE,YAAa,CACzB,GAAkB,GAAU,CAAE,EAAG,MCnUzC,OAAuB,SCsChB,YAA0B,EAAuB,CACtD,MAAO,GACJ,MAAM,cACJ,IAAI,CAAC,EAAO,IAAU,EAAQ,EAC3B,EAAM,QAAQ,+BAAgC,MAC9C,GAEH,KAAK,IACP,QAAQ,kCAAmC,IAC3C,OCtCE,GAAW,IAAX,UAAW,EAAX,CACL,qBACA,qBACA,qBACA,yBAJgB,aA2EX,YACL,EAC+B,CAC/B,MAAO,GAAQ,OAAS,EAUnB,YACL,EAC+B,CAC/B,MAAO,GAAQ,OAAS,EAUnB,YACL,EACgC,CAChC,MAAO,GAAQ,OAAS,EC/E1B,YACE,CAAE,SAAQ,OAAM,SACH,CAGb,AAAI,EAAO,KAAK,SAAW,GAAK,EAAO,KAAK,KAAO,MACjD,GAAO,KAAO,CACZ,EAAY,wBAIZ,EAAO,YAAc,aACvB,GAAO,UAAY,EAAY,4BAGjC,GAAM,GAAW,EAAY,0BAC1B,MAAM,WACN,OAAO,SAGV,MAAO,CAAE,SAAQ,OAAM,QAAO,YAmBzB,YACL,EAAa,EACC,CACd,GAAM,GAAS,KACT,EAAS,GAAI,QAAO,GAGpB,EAAM,GAAI,GACV,EAAM,GAAY,EAAQ,CAAE,QAC/B,KACC,EAAI,GAAW,CACb,GAAI,GAAsB,GACxB,OAAW,KAAU,GAAQ,KAC3B,OAAW,KAAY,GACrB,EAAS,SAAW,GAAG,EAAO,QAAQ,EAAS,WAErD,MAAO,KAET,MAIJ,UAAK,GACF,KACC,EAAqC,GAAS,EAC5C,KAAM,GAAkB,MACxB,KAAM,GAAiB,OAGxB,UAAU,EAAI,KAAK,KAAK,IAGtB,CAAE,MAAK,OC9FT,aAAsC,CAC3C,GAAM,GAAS,KACf,GAAuB,GAAI,KAAI,gBAAiB,EAAO,OACpD,UAAU,GAAY,CAErB,AADc,GAAkB,qBAC1B,YAAY,GAAsB,MC8CvC,YACL,EACyB,CACzB,GAAM,GAAK,gCAAU,YAAa,GAG5B,EAAS,GAAkB,GAC3B,EAAS,EACb,EAAU,EAAI,SACd,EAAU,EAAI,SAAS,KAAK,GAAM,KAEjC,KACC,EAAI,IAAM,EAAG,EAAG,QAChB,KAIJ,MAAO,GAAc,CAAC,EAAQ,IAC3B,KACC,EAAI,CAAC,CAAC,EAAO,KAAY,EAAE,QAAO,YAYjC,YACL,EAAsB,CAAE,OAC8B,CACtD,GAAM,GAAY,GAAI,GAGtB,SACG,KACC,EAAwB,SACxB,EAAI,CAAC,CAAE,WAAiC,EACtC,KAAM,GAAkB,MACxB,KAAM,MAGP,UAAU,EAAI,KAAK,KAAK,IAG7B,EACG,KACC,EAAwB,UAEvB,UAAU,CAAC,CAAE,WAAY,CACxB,AAAI,EACF,IAAU,SAAU,GACpB,GAA0B,EAAI,KAE9B,GAA4B,KAKpC,EAAU,EAAG,KAAO,SACjB,KACC,GAAU,EAAU,KAAK,GAAS,MAEjC,UAAU,IAAM,GAAgB,IAG9B,GAAiB,GACrB,KACC,EAAI,GACJ,EAAS,IAAM,EAAU,YACzB,EAAI,GAAU,GAAE,IAAK,GAAO,KCvD3B,YACL,EAAiB,CAAE,OAAqB,CAAE,UACL,CACrC,GAAM,GAAY,GAAI,GAChB,EAAY,GAAsB,EAAG,eACxC,KACC,EAAO,UAIL,EAAO,GAAkB,wBAAyB,GAClD,EAAO,GAAkB,uBAAwB,GAGvD,SACG,KACC,EAAO,IACP,GAAK,IAEJ,UAAU,IAAM,CACf,GAAsB,KAI5B,EACG,KACC,EAAU,GACV,GAAe,IAEd,UAAU,CAAC,CAAC,CAAE,QAAQ,CAAE,YAAa,CACpC,AAAI,EACF,GAAoB,EAAM,EAAK,QAE/B,GAAsB,KAI9B,EACG,KACC,EAAU,GACV,EAAI,IAAM,GAAsB,IAChC,EAAU,CAAC,CAAE,UAAW,EACtB,EAAG,GAAG,EAAK,MAAM,EAAG,KACpB,EAAG,GAAG,EAAK,MAAM,KACd,KACC,GAAY,GACZ,GAAQ,GACR,EAAU,CAAC,CAAC,KAAW,EAAG,GAAG,QAIlC,UAAU,GAAU,CACnB,GAAsB,EAAM,GAAmB,MAY9C,AARS,EACb,KACC,EAAO,IACP,EAAI,CAAC,CAAE,UAAY,EAAE,UACrB,EAAU,CAAE,KAAM,MAKnB,KACC,EAAI,GACJ,EAAS,IAAM,EAAU,YACzB,EAAI,GAAU,GAAE,IAAK,GAAO,KCvF3B,YACL,EAAiB,CAAE,SAAQ,aACI,CAC/B,GAAM,GAAS,KACf,GAAI,CACF,GAAM,GAAS,GAAkB,EAAO,OAAQ,GAG1C,EAAS,GAAoB,eAAgB,GAC7C,EAAS,GAAoB,gBAAiB,GAG9C,CAAE,MAAK,OAAQ,EACrB,EACG,KACC,EAAO,IACP,GAAO,EAAI,KAAK,EAAO,MACvB,GAAK,IAEJ,UAAU,EAAI,KAAK,KAAK,IAG7B,EACG,KACC,EAAO,CAAC,CAAE,UAAW,IAAS,WAE7B,UAAU,GAAO,CAChB,GAAM,GAAS,KACf,OAAQ,EAAI,UAGL,QACH,AAAI,IAAW,GACb,EAAI,QACN,UAGG,aACA,MACH,GAAU,SAAU,IACpB,GAAgB,EAAO,IACvB,UAGG,cACA,YACH,GAAI,MAAO,IAAW,YACpB,GAAgB,OACX,CACL,GAAM,GAAM,CAAC,EAAO,GAAG,EACrB,wDACA,IAEI,EAAI,KAAK,IAAI,EACjB,MAAK,IAAI,EAAG,EAAI,QAAQ,IAAW,EAAI,OACrC,GAAI,OAAS,UAAY,GAAK,IAE9B,EAAI,QACR,GAAgB,EAAI,IAItB,EAAI,QACJ,cAIA,AAAI,IAAU,MACZ,GAAgB,MAK5B,EACG,KACC,EAAO,CAAC,CAAE,UAAW,IAAS,WAE7B,UAAU,GAAO,CAChB,OAAQ,EAAI,UAGL,QACA,QACA,IACH,GAAgB,GAChB,GAAoB,GACpB,EAAI,QACJ,SAKV,GAAM,GAAS,GAAiB,EAAO,GACvC,MAAO,GACL,EACA,GAAkB,EAAQ,EAAQ,CAAE,kBAI/B,EAAP,CACA,SAAG,OAAS,GACL,GCrFJ,YACL,EAAiB,CAAE,YAAW,SACT,CACrB,GAAM,GACJ,EAAG,cAAe,UAClB,EAAG,cAAe,cAAe,UAGnC,MAAO,GAAc,CAAC,EAAO,IAC1B,KACC,EAAI,CAAC,CAAC,CAAE,SAAQ,UAAU,CAAE,OAAQ,CAAE,SACpC,GAAS,EACL,KAAK,IAAI,EAAQ,KAAK,IAAI,EAAG,EAAI,IACjC,EACG,CACL,SACA,OAAQ,GAAK,EAAS,KAG1B,EAAqB,CAAC,EAAG,IACvB,EAAE,SAAW,EAAE,QACf,EAAE,SAAW,EAAE,SAahB,YACL,EAAiB,EACe,CADf,QAAE,YAAF,EAAc,KAAd,EAAc,CAAZ,YAEnB,GAAM,GAAY,GAAI,GACtB,SACG,KACC,EAAU,GACV,GAAe,IAEd,UAAU,CAGT,KAAK,CAAC,CAAE,UAAU,CAAE,OAAQ,IAAW,CACrC,GAAiB,EAAI,GACrB,GAAiB,EAAI,IAIvB,UAAW,CACT,GAAmB,GACnB,GAAmB,MAKpB,GAAa,EAAI,GACrB,KACC,EAAI,GACJ,EAAS,IAAM,EAAU,YACzB,EAAI,GAAU,GAAE,IAAK,GAAO,KC7G3B,YACL,EAAc,EACW,CACzB,GAAI,MAAO,IAAS,YAAa,CAC/B,GAAM,GAAM,gCAAgC,KAAQ,IACpD,MAAO,IAGL,GAAqB,GAAG,qBACrB,KACC,EAAI,GAAY,EACd,QAAS,EAAQ,YAEnB,GAAe,KAInB,GAAkB,GACf,KACC,EAAI,GAAS,EACX,MAAO,EAAK,iBACZ,MAAO,EAAK,eAEd,GAAe,MAGlB,KACC,EAAI,CAAC,CAAC,EAAS,KAAW,OAAK,GAAY,SAI1C,CACL,GAAM,GAAM,gCAAgC,IAC5C,MAAO,IAAkB,GACtB,KACC,EAAI,GAAS,EACX,aAAc,EAAK,gBAErB,GAAe,MCjDhB,YACL,EAAc,EACW,CACzB,GAAM,GAAM,WAAW,qBAAwB,mBAAmB,KAClE,MAAO,IAA2B,GAC/B,KACC,EAAI,CAAC,CAAE,aAAY,iBAAmB,EACpC,MAAO,EACP,MAAO,KAET,GAAe,KCed,YACL,EACyB,CACzB,GAAM,CAAC,GAAQ,EAAI,MAAM,sBAAwB,GACjD,OAAQ,EAAK,mBAGN,SACH,GAAM,CAAC,CAAE,EAAM,GAAQ,EAAI,MAAM,uCACjC,MAAO,IAA2B,EAAM,OAGrC,SACH,GAAM,CAAC,CAAE,EAAM,GAAQ,EAAI,MAAM,sCACjC,MAAO,IAA2B,EAAM,WAIxC,MAAO,IC7Bb,GAAI,IAgBG,YACL,EACoB,CACpB,MAAO,SAAW,GAAM,IAAM,CAC5B,GAAM,GAAO,eAAe,QAAQ,SAAS,aAC7C,GAAI,EACF,MAAO,GAAgB,KAAK,MAAM,IAC7B,CACL,GAAM,GAAS,GAAiB,EAAG,MACnC,SAAO,UAAU,GAAS,CACxB,GAAI,CACF,eAAe,QAAQ,SAAS,YAAa,KAAK,UAAU,UACrD,EAAP,KAMG,KAGR,KACC,GAAW,IAAM,GACjB,EAAO,GAAS,OAAO,KAAK,GAAO,OAAS,GAC5C,EAAI,GAAU,EAAE,WAChB,GAAY,KAWX,YACL,EAC+B,CAC/B,GAAM,GAAY,GAAI,GACtB,SAAU,UAAU,CAAC,CAAE,WAAY,CACjC,GAAe,EAAI,GAAkB,IACrC,GAAe,EAAI,UAId,GAAY,GAChB,KACC,EAAI,GACJ,EAAS,IAAM,EAAU,YACzB,EAAI,GAAU,GAAE,IAAK,GAAO,KCrC3B,YACL,EAAiB,CAAE,YAAW,WACZ,CAClB,MAAO,IAAiB,SAAS,MAC9B,KACC,EAAU,IAAM,GAAgB,EAAI,CAAE,UAAS,eAC/C,EAAI,CAAC,CAAE,OAAQ,CAAE,QACR,EACL,OAAQ,GAAK,MAGjB,EAAwB,WAevB,YACL,EAAiB,EACY,CAC7B,GAAM,GAAY,GAAI,GACtB,SACG,KACC,EAAU,IAET,UAAU,CAGT,KAAK,CAAE,UAAU,CACf,AAAI,EACF,GAAa,EAAI,UAEjB,GAAe,IAInB,UAAW,CACT,GAAe,MAKhB,GAAU,EAAI,GAClB,KACC,EAAI,GACJ,EAAS,IAAM,EAAU,YACzB,EAAI,GAAU,GAAE,IAAK,GAAO,KC3B3B,YACL,EAA8B,CAAE,YAAW,WACd,CAC7B,GAAM,GAAQ,GAAI,KAClB,OAAW,KAAU,GAAS,CAC5B,GAAM,GAAK,mBAAmB,EAAO,KAAK,UAAU,IAC9C,EAAS,GAAW,QAAQ,OAClC,AAAI,MAAO,IAAW,aACpB,EAAM,IAAI,EAAQ,GAItB,GAAM,GAAU,EACb,KACC,EAAI,GAAU,GAAK,EAAO,SA4E9B,MAAO,AAxEY,IAAiB,SAAS,MAC1C,KACC,EAAwB,UAGxB,EAAI,IAAM,CACR,GAAI,GAA4B,GAChC,MAAO,CAAC,GAAG,GAAO,OAAO,CAAC,EAAO,CAAC,EAAQ,KAAY,CACpD,KAAO,EAAK,QAEN,AADS,EAAM,IAAI,EAAK,EAAK,OAAS,IACjC,SAAW,EAAO,SACzB,EAAK,MAOT,GAAI,GAAS,EAAO,UACpB,KAAO,CAAC,GAAU,EAAO,eACvB,EAAS,EAAO,cAChB,EAAS,EAAO,UAIlB,MAAO,GAAM,IACX,CAAC,GAAG,EAAO,CAAC,GAAG,EAAM,IAAS,UAC9B,IAED,GAAI,QAIT,EAAI,GAAS,GAAI,KAAI,CAAC,GAAG,GAAO,KAAK,CAAC,CAAC,CAAE,GAAI,CAAC,CAAE,KAAO,EAAI,KAG3D,EAAU,GAAS,EAAc,CAAC,EAAS,IACxC,KACC,GAAK,CAAC,CAAC,EAAM,GAAO,CAAC,EAAQ,CAAE,OAAQ,CAAE,SAAW,CAGlD,KAAO,EAAK,QAAQ,CAClB,GAAM,CAAC,CAAE,GAAU,EAAK,GACxB,GAAI,EAAS,EAAS,EACpB,EAAO,CAAC,GAAG,EAAM,EAAK,aAEtB,OAKJ,KAAO,EAAK,QAAQ,CAClB,GAAM,CAAC,CAAE,GAAU,EAAK,EAAK,OAAS,GACtC,GAAI,EAAS,GAAU,EACrB,EAAO,CAAC,EAAK,MAAQ,GAAG,OAExB,OAKJ,MAAO,CAAC,EAAM,IACb,CAAC,GAAI,CAAC,GAAG,KACZ,EAAqB,CAAC,EAAG,IACvB,EAAE,KAAO,EAAE,IACX,EAAE,KAAO,EAAE,OAQlB,KACC,EAAI,CAAC,CAAC,EAAM,KAAW,EACrB,KAAM,EAAK,IAAI,CAAC,CAAC,KAAU,GAC3B,KAAM,EAAK,IAAI,CAAC,CAAC,KAAU,MAI7B,EAAU,CAAE,KAAM,GAAI,KAAM,KAC5B,GAAY,EAAG,GACf,EAAI,CAAC,CAAC,EAAG,KAGH,EAAE,KAAK,OAAS,EAAE,KAAK,OAClB,CACL,KAAM,EAAE,KAAK,MAAM,KAAK,IAAI,EAAG,EAAE,KAAK,OAAS,GAAI,EAAE,KAAK,QAC1D,KAAM,IAKD,CACL,KAAM,EAAE,KAAK,MAAM,IACnB,KAAM,EAAE,KAAK,MAAM,EAAG,EAAE,KAAK,OAAS,EAAE,KAAK,WAiBlD,YACL,EAAiB,EACuB,CACxC,GAAM,GAAY,GAAI,GACtB,EACG,KACC,EAAU,IAET,UAAU,CAAC,CAAE,OAAM,UAAW,CAG7B,OAAW,CAAC,IAAW,GACrB,GAAkB,GAClB,GAAiB,GAInB,OAAW,CAAC,EAAO,CAAC,KAAY,GAAK,UACnC,GAAgB,EAAQ,IAAU,EAAK,OAAS,GAChD,GAAe,EAAQ,UAK/B,GAAM,GAAU,EAA+B,cAAe,GAC9D,MAAO,IAAqB,EAAS,GAClC,KACC,EAAI,GACJ,EAAS,IAAM,EAAU,YACzB,EAAI,GAAU,GAAE,IAAK,GAAO,KChL3B,YACL,EAAkB,CAAE,YAAW,SACR,CAGvB,GAAM,GAAa,EAChB,KACC,EAAI,CAAC,CAAE,OAAQ,CAAE,QAAU,GAC3B,GAAY,EAAG,GACf,EAAI,CAAC,CAAC,EAAG,KAAO,EAAI,GAAK,GACzB,KAIE,EAAU,EACb,KACC,EAAwB,WAI5B,MAAO,GAAc,CAAC,EAAS,IAC5B,KACC,EAAI,CAAC,CAAC,CAAE,UAAU,KAAgB,EAChC,OAAQ,CAAE,IAAU,MAEtB,EAAqB,CAAC,EAAG,IACvB,EAAE,SAAW,EAAE,SAehB,YACL,EAAiB,CAAE,YAAW,UAAS,SACL,CAClC,GAAM,GAAY,GAAI,GACtB,SACG,KACC,EAAU,GACV,GAAe,EACZ,KACC,EAAwB,aAI3B,UAAU,CAGT,KAAK,CAAC,CAAE,UAAU,CAAE,WAAW,CAC7B,GAAmB,EAAI,EAAS,IAChC,AAAI,EACF,IAAkB,EAAI,UACtB,GAAgB,EAAI,KAEpB,GAAoB,IAKxB,UAAW,CACT,GAAqB,GACrB,GAAoB,MAKrB,GAAe,EAAI,CAAE,YAAW,UAAS,UAC7C,KACC,EAAI,GACJ,EAAS,IAAM,EAAU,YACzB,EAAI,GAAU,GAAE,IAAK,GAAO,KCrH3B,YACL,CAAE,YAAW,WACP,CACN,EACG,KACC,EAAU,IAAM,EAAG,GAAG,EACpB,mCAEF,EAAI,GAAM,CACR,EAAG,cAAgB,GACnB,EAAG,QAAU,KAEf,GAAS,GAAM,EAAU,EAAI,UAC1B,KACC,GAAU,IAAM,EAAG,aAAa,kBAChC,GAAM,KAGV,GAAe,IAEd,UAAU,CAAC,CAAC,EAAI,KAAY,CAC3B,EAAG,gBAAgB,iBACf,GACF,GAAG,QAAU,MC5BvB,aAAkC,CAChC,MAAO,qBAAqB,KAAK,UAAU,WAkBtC,YACL,CAAE,aACI,CACN,EACG,KACC,EAAU,IAAM,EAAG,GAAG,EAAY,yBAClC,EAAI,GAAM,EAAG,gBAAgB,sBAC7B,EAAO,IACP,GAAS,GAAM,EAAU,EAAI,cAC1B,KACC,GAAM,MAIT,UAAU,GAAM,CACf,GAAM,GAAM,EAAG,UAGf,AAAI,IAAQ,EACV,EAAG,UAAY,EAGN,EAAM,EAAG,eAAiB,EAAG,cACtC,GAAG,UAAY,EAAM,KC9BxB,YACL,CAAE,YAAW,WACP,CACN,EAAc,CAAC,GAAY,UAAW,IACnC,KACC,EAAI,CAAC,CAAC,EAAQ,KAAY,GAAU,CAAC,GACrC,EAAU,GAAU,EAAG,GACpB,KACC,GAAM,EAAS,IAAM,KACrB,EAAU,KAGd,GAAe,IAEd,UAAU,CAAC,CAAC,EAAQ,CAAE,OAAQ,CAAE,SAAU,CACzC,AAAI,EACF,GAAc,SAAS,KAAM,GAE7B,GAAgB,SAAS,QjLFnC,SAAS,gBAAgB,UAAU,OAAO,SAC1C,SAAS,gBAAgB,UAAU,IAAI,MAGvC,GAAM,IAAY,KACZ,GAAY,KACZ,GAAY,KACZ,GAAY,KAGZ,GAAY,KACZ,GAAY,GAAW,sBACvB,GAAY,GAAW,uBACvB,GAAY,KAGZ,GAAS,KACT,GAAS,SAAS,MAAM,UAAU,UACpC,gCAAU,QAAS,GACnB,GAAG,GAAO,iCAEV,EAGE,GAAS,GAAI,GACnB,GAAiB,CAAE,YAGnB,AAAI,GAAQ,uBACV,GAAoB,CAAE,aAAW,aAAW,eA9G9C,OAiHA,AAAI,QAAO,UAAP,eAAgB,YAAa,QAC/B,KAGF,EAAM,GAAW,IACd,KACC,GAAM,MAEL,UAAU,IAAM,CACf,GAAU,SAAU,IACpB,GAAU,SAAU,MAI1B,GACG,KACC,EAAO,CAAC,CAAE,UAAW,IAAS,WAE7B,UAAU,GAAO,CAChB,OAAQ,EAAI,UAGL,QACA,IACH,GAAM,GAAO,GAAW,oBACxB,AAAI,MAAO,IAAS,aAClB,EAAK,QACP,UAGG,QACA,IACH,GAAM,GAAO,GAAW,oBACxB,AAAI,MAAO,IAAS,aAClB,EAAK,QACP,SAKV,GAAmB,CAAE,aAAW,aAChC,GAAe,CAAE,eACjB,GAAgB,CAAE,aAAW,aAG7B,GAAM,IAAU,GAAY,GAAoB,UAAW,CAAE,eACvD,GAAQ,GACX,KACC,EAAI,IAAM,GAAoB,SAC9B,EAAU,GAAM,GAAU,EAAI,CAAE,aAAW,cAC3C,GAAY,IAIV,GAAW,EAGf,GAAG,GAAqB,UACrB,IAAI,GAAM,GAAY,EAAI,CAAE,aAG/B,GAAG,GAAqB,UACrB,IAAI,GAAM,GAAY,EAAI,CAAE,aAAW,WAAS,YAGnD,GAAG,GAAqB,WACrB,IAAI,GAAM,GAAa,IAG1B,GAAG,GAAqB,UACrB,IAAI,GAAM,GAAY,EAAI,CAAE,UAAQ,gBAGvC,GAAG,GAAqB,UACrB,IAAI,GAAM,GAAY,KAIrB,GAAW,GAAM,IAAM,EAG3B,GAAG,GAAqB,WACrB,IAAI,GAAM,GAAa,EAAI,CAAE,WAAS,aAAW,aAGpD,GAAG,GAAqB,gBACrB,IAAI,GAAM,GAAiB,EAAI,CAAE,aAAW,cAG/C,GAAG,GAAqB,WACrB,IAAI,GAAM,EAAG,aAAa,kBAAoB,aAC3C,GAAG,GAAS,IAAM,GAAa,EAAI,CAAE,aAAW,WAAS,YACzD,GAAG,GAAS,IAAM,GAAa,EAAI,CAAE,aAAW,WAAS,aAI/D,GAAG,GAAqB,QACrB,IAAI,GAAM,GAAU,EAAI,CAAE,aAAW,cAGxC,GAAG,GAAqB,OACrB,IAAI,GAAM,GAAqB,EAAI,CAAE,aAAW,cAGnD,GAAG,GAAqB,OACrB,IAAI,GAAM,GAAe,EAAI,CAAE,aAAW,WAAS,cAIlD,GAAa,GAChB,KACC,EAAU,IAAM,IAChB,GAAU,IACV,GAAY,IAIhB,GAAW,YAMX,OAAO,UAAa,GACpB,OAAO,UAAa,GACpB,OAAO,QAAa,GACpB,OAAO,UAAa,GACpB,OAAO,UAAa,GACpB,OAAO,QAAa,GACpB,OAAO,QAAa,GACpB,OAAO,OAAa,GACpB,OAAO,OAAa,GACpB,OAAO,WAAa", - "names": [] -} diff --git a/bes_theme/assets/javascripts/hammer.min.js b/bes_theme/assets/javascripts/hammer.min.js deleted file mode 100644 index dd66fa1f..00000000 --- a/bes_theme/assets/javascripts/hammer.min.js +++ /dev/null @@ -1,4 +0,0 @@ - - -!function(a,b){"use strict";function c(){d.READY||(d.event.determineEventTypes(),d.utils.each(d.gestures,function(a){d.detection.register(a)}),d.event.onTouch(d.DOCUMENT,d.EVENT_MOVE,d.detection.detect),d.event.onTouch(d.DOCUMENT,d.EVENT_END,d.detection.detect),d.READY=!0)}var d=function(a,b){return new d.Instance(a,b||{})};d.defaults={stop_browser_behavior:{userSelect:"none",touchAction:"none",touchCallout:"none",contentZooming:"none",userDrag:"none",tapHighlightColor:"rgba(0,0,0,0)"}},d.HAS_POINTEREVENTS=a.navigator.pointerEnabled||a.navigator.msPointerEnabled,d.HAS_TOUCHEVENTS="ontouchstart"in a,d.MOBILE_REGEX=/mobile|tablet|ip(ad|hone|od)|android|silk/i,d.NO_MOUSEEVENTS=d.HAS_TOUCHEVENTS&&a.navigator.userAgent.match(d.MOBILE_REGEX),d.EVENT_TYPES={},d.DIRECTION_DOWN="down",d.DIRECTION_LEFT="left",d.DIRECTION_UP="up",d.DIRECTION_RIGHT="right",d.POINTER_MOUSE="mouse",d.POINTER_TOUCH="touch",d.POINTER_PEN="pen",d.EVENT_START="start",d.EVENT_MOVE="move",d.EVENT_END="end",d.DOCUMENT=a.document,d.plugins=d.plugins||{},d.gestures=d.gestures||{},d.READY=!1,d.utils={extend:function(a,c,d){for(var e in c)a[e]!==b&&d||(a[e]=c[e]);return a},each:function(a,c,d){var e,f;if("forEach"in a)a.forEach(c,d);else if(a.length!==b){for(e=0,f=a.length;f>e;e++)if(c.call(d,a[e],e,a)===!1)return}else for(e in a)if(a.hasOwnProperty(e)&&c.call(d,a[e],e,a)===!1)return},hasParent:function(a,b){for(;a;){if(a==b)return!0;a=a.parentNode}return!1},getCenter:function(a){var b=[],c=[];return d.utils.each(a,function(a){b.push("undefined"!=typeof a.clientX?a.clientX:a.pageX),c.push("undefined"!=typeof a.clientY?a.clientY:a.pageY)}),{pageX:(Math.min.apply(Math,b)+Math.max.apply(Math,b))/2,pageY:(Math.min.apply(Math,c)+Math.max.apply(Math,c))/2}},getVelocity:function(a,b,c){return{x:Math.abs(b/a)||0,y:Math.abs(c/a)||0}},getAngle:function(a,b){var c=b.pageY-a.pageY,d=b.pageX-a.pageX;return 180*Math.atan2(c,d)/Math.PI},getDirection:function(a,b){var c=Math.abs(a.pageX-b.pageX),e=Math.abs(a.pageY-b.pageY);return c>=e?a.pageX-b.pageX>0?d.DIRECTION_LEFT:d.DIRECTION_RIGHT:a.pageY-b.pageY>0?d.DIRECTION_UP:d.DIRECTION_DOWN},getDistance:function(a,b){var c=b.pageX-a.pageX,d=b.pageY-a.pageY;return Math.sqrt(c*c+d*d)},getScale:function(a,b){return a.length>=2&&b.length>=2?this.getDistance(b[0],b[1])/this.getDistance(a[0],a[1]):1},getRotation:function(a,b){return a.length>=2&&b.length>=2?this.getAngle(b[1],b[0])-this.getAngle(a[1],a[0]):0},isVertical:function(a){return a==d.DIRECTION_UP||a==d.DIRECTION_DOWN},stopDefaultBrowserBehavior:function(a,b){b&&a&&a.style&&(d.utils.each(["webkit","khtml","moz","Moz","ms","o",""],function(c){d.utils.each(b,function(b){c&&(b=c+b.substring(0,1).toUpperCase()+b.substring(1)),b in a.style&&(a.style[b]=b)})}),"none"==b.userSelect&&(a.onselectstart=function(){return!1}),"none"==b.userDrag&&(a.ondragstart=function(){return!1}))}},d.Instance=function(a,b){var e=this;return c(),this.element=a,this.enabled=!0,this.options=d.utils.extend(d.utils.extend({},d.defaults),b||{}),this.options.stop_browser_behavior&&d.utils.stopDefaultBrowserBehavior(this.element,this.options.stop_browser_behavior),d.event.onTouch(a,d.EVENT_START,function(a){e.enabled&&d.detection.startDetect(e,a)}),this},d.Instance.prototype={on:function(a,b){var c=a.split(" ");return d.utils.each(c,function(a){this.element.addEventListener(a,b,!1)},this),this},off:function(a,b){var c=a.split(" ");return d.utils.each(c,function(a){this.element.removeEventListener(a,b,!1)},this),this},trigger:function(a,b){b||(b={});var c=d.DOCUMENT.createEvent("Event");c.initEvent(a,!0,!0),c.gesture=b;var e=this.element;return d.utils.hasParent(b.target,e)&&(e=b.target),e.dispatchEvent(c),this},enable:function(a){return this.enabled=a,this}};var e=null,f=!1,g=!1;d.event={bindDom:function(a,b,c){var e=b.split(" ");d.utils.each(e,function(b){a.addEventListener(b,c,!1)})},onTouch:function(a,b,c){var h=this;this.bindDom(a,d.EVENT_TYPES[b],function(i){var j=i.type.toLowerCase();if(!j.match(/mouse/)||!g){j.match(/touch/)||j.match(/pointerdown/)||j.match(/mouse/)&&1===i.which?f=!0:j.match(/mouse/)&&!i.which&&(f=!1),j.match(/touch|pointer/)&&(g=!0);var k=0;f&&(d.HAS_POINTEREVENTS&&b!=d.EVENT_END?k=d.PointerEvent.updatePointer(b,i):j.match(/touch/)?k=i.touches.length:g||(k=j.match(/up/)?0:1),k>0&&b==d.EVENT_END?b=d.EVENT_MOVE:k||(b=d.EVENT_END),(k||null===e)&&(e=i),c.call(d.detection,h.collectEventData(a,b,h.getTouchList(e,b),i)),d.HAS_POINTEREVENTS&&b==d.EVENT_END&&(k=d.PointerEvent.updatePointer(b,i))),k||(e=null,f=!1,g=!1,d.PointerEvent.reset())}})},determineEventTypes:function(){var a;a=d.HAS_POINTEREVENTS?d.PointerEvent.getEvents():d.NO_MOUSEEVENTS?["touchstart","touchmove","touchend touchcancel"]:["touchstart mousedown","touchmove mousemove","touchend touchcancel mouseup"],d.EVENT_TYPES[d.EVENT_START]=a[0],d.EVENT_TYPES[d.EVENT_MOVE]=a[1],d.EVENT_TYPES[d.EVENT_END]=a[2]},getTouchList:function(a){return d.HAS_POINTEREVENTS?d.PointerEvent.getTouchList():a.touches?a.touches:(a.identifier=1,[a])},collectEventData:function(a,b,c,e){var f=d.POINTER_TOUCH;return(e.type.match(/mouse/)||d.PointerEvent.matchType(d.POINTER_MOUSE,e))&&(f=d.POINTER_MOUSE),{center:d.utils.getCenter(c),timeStamp:(new Date).getTime(),target:e.target,touches:c,eventType:b,pointerType:f,srcEvent:e,preventDefault:function(){this.srcEvent.preventManipulation&&this.srcEvent.preventManipulation(),this.srcEvent.preventDefault&&this.srcEvent.preventDefault()},stopPropagation:function(){this.srcEvent.stopPropagation()},stopDetect:function(){return d.detection.stopDetect()}}}},d.PointerEvent={pointers:{},getTouchList:function(){var a=this,b=[];return d.utils.each(a.pointers,function(a){b.push(a)}),b},updatePointer:function(a,b){return a==d.EVENT_END?this.pointers={}:(b.identifier=b.pointerId,this.pointers[b.pointerId]=b),Object.keys(this.pointers).length},matchType:function(a,b){if(!b.pointerType)return!1;var c=b.pointerType,e={};return e[d.POINTER_MOUSE]=c===b.MSPOINTER_TYPE_MOUSE||c===d.POINTER_MOUSE,e[d.POINTER_TOUCH]=c===b.MSPOINTER_TYPE_TOUCH||c===d.POINTER_TOUCH,e[d.POINTER_PEN]=c===b.MSPOINTER_TYPE_PEN||c===d.POINTER_PEN,e[a]},getEvents:function(){return["pointerdown MSPointerDown","pointermove MSPointerMove","pointerup pointercancel MSPointerUp MSPointerCancel"]},reset:function(){this.pointers={}}},d.detection={gestures:[],current:null,previous:null,stopped:!1,startDetect:function(a,b){this.current||(this.stopped=!1,this.current={inst:a,startEvent:d.utils.extend({},b),lastEvent:!1,name:""},this.detect(b))},detect:function(a){if(this.current&&!this.stopped){a=this.extendEventData(a);var b=this.current.inst.options;return d.utils.each(this.gestures,function(c){return this.stopped||b[c.name]===!1||c.handler.call(c,a,this.current.inst)!==!1?void 0:(this.stopDetect(),!1)},this),this.current&&(this.current.lastEvent=a),a.eventType==d.EVENT_END&&!a.touches.length-1&&this.stopDetect(),a}},stopDetect:function(){this.previous=d.utils.extend({},this.current),this.current=null,this.stopped=!0},extendEventData:function(a){var b=this.current.startEvent;!b||a.touches.length==b.touches.length&&a.touches!==b.touches||(b.touches=[],d.utils.each(a.touches,function(a){b.touches.push(d.utils.extend({},a))}));var c,e,f=a.timeStamp-b.timeStamp,g=a.center.pageX-b.center.pageX,h=a.center.pageY-b.center.pageY,i=d.utils.getVelocity(f,g,h);return"end"===a.eventType?(c=this.current.lastEvent&&this.current.lastEvent.interimAngle,e=this.current.lastEvent&&this.current.lastEvent.interimDirection):(c=this.current.lastEvent&&d.utils.getAngle(this.current.lastEvent.center,a.center),e=this.current.lastEvent&&d.utils.getDirection(this.current.lastEvent.center,a.center)),d.utils.extend(a,{deltaTime:f,deltaX:g,deltaY:h,velocityX:i.x,velocityY:i.y,distance:d.utils.getDistance(b.center,a.center),angle:d.utils.getAngle(b.center,a.center),interimAngle:c,direction:d.utils.getDirection(b.center,a.center),interimDirection:e,scale:d.utils.getScale(b.touches,a.touches),rotation:d.utils.getRotation(b.touches,a.touches),startEvent:b}),a},register:function(a){var c=a.defaults||{};return c[a.name]===b&&(c[a.name]=!0),d.utils.extend(d.defaults,c,!0),a.index=a.index||1e3,this.gestures.push(a),this.gestures.sort(function(a,b){return a.indexb.index?1:0}),this.gestures}},d.gestures.Drag={name:"drag",index:50,defaults:{drag_min_distance:10,correct_for_drag_min_distance:!0,drag_max_touches:1,drag_block_horizontal:!1,drag_block_vertical:!1,drag_lock_to_axis:!1,drag_lock_min_distance:25},triggered:!1,handler:function(a,b){if(d.detection.current.name!=this.name&&this.triggered)return b.trigger(this.name+"end",a),this.triggered=!1,void 0;if(!(b.options.drag_max_touches>0&&a.touches.length>b.options.drag_max_touches))switch(a.eventType){case d.EVENT_START:this.triggered=!1;break;case d.EVENT_MOVE:if(a.distance0)){var c=Math.abs(b.options.drag_min_distance/a.distance);d.detection.current.startEvent.center.pageX+=a.deltaX*c,d.detection.current.startEvent.center.pageY+=a.deltaY*c,a=d.detection.extendEventData(a)}(d.detection.current.lastEvent.drag_locked_to_axis||b.options.drag_lock_to_axis&&b.options.drag_lock_min_distance<=a.distance)&&(a.drag_locked_to_axis=!0);var e=d.detection.current.lastEvent.direction;a.drag_locked_to_axis&&e!==a.direction&&(a.direction=d.utils.isVertical(e)?a.deltaY<0?d.DIRECTION_UP:d.DIRECTION_DOWN:a.deltaX<0?d.DIRECTION_LEFT:d.DIRECTION_RIGHT),this.triggered||(b.trigger(this.name+"start",a),this.triggered=!0),b.trigger(this.name,a),b.trigger(this.name+a.direction,a),(b.options.drag_block_vertical&&d.utils.isVertical(a.direction)||b.options.drag_block_horizontal&&!d.utils.isVertical(a.direction))&&a.preventDefault();break;case d.EVENT_END:this.triggered&&b.trigger(this.name+"end",a),this.triggered=!1}}},d.gestures.Hold={name:"hold",index:10,defaults:{hold_timeout:500,hold_threshold:1},timer:null,handler:function(a,b){switch(a.eventType){case d.EVENT_START:clearTimeout(this.timer),d.detection.current.name=this.name,this.timer=setTimeout(function(){"hold"==d.detection.current.name&&b.trigger("hold",a)},b.options.hold_timeout);break;case d.EVENT_MOVE:a.distance>b.options.hold_threshold&&clearTimeout(this.timer);break;case d.EVENT_END:clearTimeout(this.timer)}}},d.gestures.Release={name:"release",index:1/0,handler:function(a,b){a.eventType==d.EVENT_END&&b.trigger(this.name,a)}},d.gestures.Swipe={name:"swipe",index:40,defaults:{swipe_min_touches:1,swipe_max_touches:1,swipe_velocity:.7},handler:function(a,b){if(a.eventType==d.EVENT_END){if(b.options.swipe_max_touches>0&&a.touches.lengthb.options.swipe_max_touches)return;(a.velocityX>b.options.swipe_velocity||a.velocityY>b.options.swipe_velocity)&&(b.trigger(this.name,a),b.trigger(this.name+a.direction,a))}}},d.gestures.Tap={name:"tap",index:100,defaults:{tap_max_touchtime:250,tap_max_distance:10,tap_always:!0,doubletap_distance:20,doubletap_interval:300},handler:function(a,b){if(a.eventType==d.EVENT_END&&"touchcancel"!=a.srcEvent.type){var c=d.detection.previous,e=!1;if(a.deltaTime>b.options.tap_max_touchtime||a.distance>b.options.tap_max_distance)return;c&&"tap"==c.name&&a.timeStamp-c.lastEvent.timeStampb.options.transform_min_rotation&&b.trigger("rotate",a),c>b.options.transform_min_scale&&(b.trigger("pinch",a),b.trigger("pinch"+(a.scale<1?"in":"out"),a));break;case d.EVENT_END:this.triggered&&b.trigger(this.name+"end",a),this.triggered=!1}}},"function"==typeof define&&"object"==typeof define.amd&&define.amd?define(function(){return d}):"object"==typeof module&&"object"==typeof module.exports?module.exports=d:a.Hammer=d}(this); -//# sourceMappingURL=hammer.min.map \ No newline at end of file diff --git a/bes_theme/assets/javascripts/jqplot/excanvas.js b/bes_theme/assets/javascripts/jqplot/excanvas.js deleted file mode 100644 index 58ef98a0..00000000 --- a/bes_theme/assets/javascripts/jqplot/excanvas.js +++ /dev/null @@ -1,1423 +0,0 @@ - - - -// Known Issues: -// -// * Patterns only support repeat. -// * Radial gradient are not implemented. The VML version of these look very -// different from the canvas one. -// * Clipping paths are not implemented. -// * Coordsize. The width and height attribute have higher priority than the -// width and height style values which isn't correct. -// * Painting mode isn't implemented. -// * Canvas width/height should is using content-box by default. IE in -// Quirks mode will draw the canvas using border-box. Either change your -// doctype to HTML5 -// (http://www.whatwg.org/specs/web-apps/current-work/#the-doctype) -// or use Box Sizing Behavior from WebFX -// (http://webfx.eae.net/dhtml/boxsizing/boxsizing.html) -// * Non uniform scaling does not correctly scale strokes. -// * Optimize. There is always room for speed improvements. - -// Only add this code if we do not already have a canvas implementation -if (!document.createElement('canvas').getContext) { - -(function() { - - // alias some functions to make (compiled) code shorter - var m = Math; - var mr = m.round; - var ms = m.sin; - var mc = m.cos; - var abs = m.abs; - var sqrt = m.sqrt; - - // this is used for sub pixel precision - var Z = 10; - var Z2 = Z / 2; - - var IE_VERSION = +navigator.userAgent.match(/MSIE ([\d.]+)?/)[1]; - - /** - * This funtion is assigned to the elements as element.getContext(). - * @this {HTMLElement} - * @return {CanvasRenderingContext2D_} - */ - function getContext() { - return this.context_ || - (this.context_ = new CanvasRenderingContext2D_(this)); - } - - var slice = Array.prototype.slice; - - /** - * Binds a function to an object. The returned function will always use the - * passed in {@code obj} as {@code this}. - * - * Example: - * - * g = bind(f, obj, a, b) - * g(c, d) // will do f.call(obj, a, b, c, d) - * - * @param {Function} f The function to bind the object to - * @param {Object} obj The object that should act as this when the function - * is called - * @param {*} var_args Rest arguments that will be used as the initial - * arguments when the function is called - * @return {Function} A new function that has bound this - */ - function bind(f, obj, var_args) { - var a = slice.call(arguments, 2); - return function() { - return f.apply(obj, a.concat(slice.call(arguments))); - }; - } - - function encodeHtmlAttribute(s) { - return String(s).replace(/&/g, '&').replace(/"/g, '"'); - } - - function addNamespace(doc, prefix, urn) { - if (!doc.namespaces[prefix]) { - doc.namespaces.add(prefix, urn, '#default#VML'); - } - } - - function addNamespacesAndStylesheet(doc) { - addNamespace(doc, 'g_vml_', 'urn:schemas-microsoft-com:vml'); - addNamespace(doc, 'g_o_', 'urn:schemas-microsoft-com:office:office'); - - // Setup default CSS. Only add one style sheet per document - if (!doc.styleSheets['ex_canvas_']) { - var ss = doc.createStyleSheet(); - ss.owningElement.id = 'ex_canvas_'; - ss.cssText = 'canvas{display:inline-block;overflow:hidden;' + - // default size is 300x150 in Gecko and Opera - 'text-align:left;width:300px;height:150px}'; - } - } - - // Add namespaces and stylesheet at startup. - addNamespacesAndStylesheet(document); - - var G_vmlCanvasManager_ = { - init: function(opt_doc) { - var doc = opt_doc || document; - // Create a dummy element so that IE will allow canvas elements to be - // recognized. - doc.createElement('canvas'); - doc.attachEvent('onreadystatechange', bind(this.init_, this, doc)); - }, - - init_: function(doc) { - // find all canvas elements - var els = doc.getElementsByTagName('canvas'); - for (var i = 0; i < els.length; i++) { - this.initElement(els[i]); - } - }, - - /** - * Public initializes a canvas element so that it can be used as canvas - * element from now on. This is called automatically before the page is - * loaded but if you are creating elements using createElement you need to - * make sure this is called on the element. - * @param {HTMLElement} el The canvas element to initialize. - * @return {HTMLElement} the element that was created. - */ - initElement: function(el) { - if (!el.getContext) { - el.getContext = getContext; - - // Add namespaces and stylesheet to document of the element. - addNamespacesAndStylesheet(el.ownerDocument); - - // Remove fallback content. There is no way to hide text nodes so we - // just remove all childNodes. We could hide all elements and remove - // text nodes but who really cares about the fallback content. - el.innerHTML = ''; - - // do not use inline function because that will leak memory - el.attachEvent('onpropertychange', onPropertyChange); - el.attachEvent('onresize', onResize); - - var attrs = el.attributes; - if (attrs.width && attrs.width.specified) { - // TODO: use runtimeStyle and coordsize - // el.getContext().setWidth_(attrs.width.nodeValue); - el.style.width = attrs.width.nodeValue + 'px'; - } else { - el.width = el.clientWidth; - } - if (attrs.height && attrs.height.specified) { - // TODO: use runtimeStyle and coordsize - // el.getContext().setHeight_(attrs.height.nodeValue); - el.style.height = attrs.height.nodeValue + 'px'; - } else { - el.height = el.clientHeight; - } - //el.getContext().setCoordsize_() - } - return el; - }, - - // Memory Leaks patch : see http://code.google.com/p/explorercanvas/issues/detail?id=82 - uninitElement: function(el){ - if (el.getContext) { - var ctx = el.getContext(); - delete ctx.element_; - delete ctx.canvas; - el.innerHTML = ""; - //el.outerHTML = ""; - el.context_ = null; - el.getContext = null; - el.detachEvent("onpropertychange", onPropertyChange); - el.detachEvent("onresize", onResize); - } - } - }; - - function onPropertyChange(e) { - var el = e.srcElement; - - switch (e.propertyName) { - case 'width': - el.getContext().clearRect(); - el.style.width = el.attributes.width.nodeValue + 'px'; - // In IE8 this does not trigger onresize. - el.firstChild.style.width = el.clientWidth + 'px'; - break; - case 'height': - el.getContext().clearRect(); - el.style.height = el.attributes.height.nodeValue + 'px'; - el.firstChild.style.height = el.clientHeight + 'px'; - break; - } - } - - function onResize(e) { - var el = e.srcElement; - if (el.firstChild) { - el.firstChild.style.width = el.clientWidth + 'px'; - el.firstChild.style.height = el.clientHeight + 'px'; - } - } - - G_vmlCanvasManager_.init(); - - // precompute "00" to "FF" - var decToHex = []; - for (var i = 0; i < 16; i++) { - for (var j = 0; j < 16; j++) { - decToHex[i * 16 + j] = i.toString(16) + j.toString(16); - } - } - - function createMatrixIdentity() { - return [ - [1, 0, 0], - [0, 1, 0], - [0, 0, 1] - ]; - } - - function matrixMultiply(m1, m2) { - var result = createMatrixIdentity(); - - for (var x = 0; x < 3; x++) { - for (var y = 0; y < 3; y++) { - var sum = 0; - - for (var z = 0; z < 3; z++) { - sum += m1[x][z] * m2[z][y]; - } - - result[x][y] = sum; - } - } - return result; - } - - function copyState(o1, o2) { - o2.fillStyle = o1.fillStyle; - o2.lineCap = o1.lineCap; - o2.lineJoin = o1.lineJoin; - o2.lineWidth = o1.lineWidth; - o2.miterLimit = o1.miterLimit; - o2.shadowBlur = o1.shadowBlur; - o2.shadowColor = o1.shadowColor; - o2.shadowOffsetX = o1.shadowOffsetX; - o2.shadowOffsetY = o1.shadowOffsetY; - o2.strokeStyle = o1.strokeStyle; - o2.globalAlpha = o1.globalAlpha; - o2.font = o1.font; - o2.textAlign = o1.textAlign; - o2.textBaseline = o1.textBaseline; - o2.arcScaleX_ = o1.arcScaleX_; - o2.arcScaleY_ = o1.arcScaleY_; - o2.lineScale_ = o1.lineScale_; - } - - var colorData = { - aliceblue: '#F0F8FF', - antiquewhite: '#FAEBD7', - aquamarine: '#7FFFD4', - azure: '#F0FFFF', - beige: '#F5F5DC', - bisque: '#FFE4C4', - black: '#000000', - blanchedalmond: '#FFEBCD', - blueviolet: '#8A2BE2', - brown: '#A52A2A', - burlywood: '#DEB887', - cadetblue: '#5F9EA0', - chartreuse: '#7FFF00', - chocolate: '#D2691E', - coral: '#FF7F50', - cornflowerblue: '#6495ED', - cornsilk: '#FFF8DC', - crimson: '#DC143C', - cyan: '#00FFFF', - darkblue: '#00008B', - darkcyan: '#008B8B', - darkgoldenrod: '#B8860B', - darkgray: '#A9A9A9', - darkgreen: '#006400', - darkgrey: '#A9A9A9', - darkkhaki: '#BDB76B', - darkmagenta: '#8B008B', - darkolivegreen: '#556B2F', - darkorange: '#FF8C00', - darkorchid: '#9932CC', - darkred: '#8B0000', - darksalmon: '#E9967A', - darkseagreen: '#8FBC8F', - darkslateblue: '#483D8B', - darkslategray: '#2F4F4F', - darkslategrey: '#2F4F4F', - darkturquoise: '#00CED1', - darkviolet: '#9400D3', - deeppink: '#FF1493', - deepskyblue: '#00BFFF', - dimgray: '#696969', - dimgrey: '#696969', - dodgerblue: '#1E90FF', - firebrick: '#B22222', - floralwhite: '#FFFAF0', - forestgreen: '#228B22', - gainsboro: '#DCDCDC', - ghostwhite: '#F8F8FF', - gold: '#FFD700', - goldenrod: '#DAA520', - grey: '#808080', - greenyellow: '#ADFF2F', - honeydew: '#F0FFF0', - hotpink: '#FF69B4', - indianred: '#CD5C5C', - indigo: '#4B0082', - ivory: '#FFFFF0', - khaki: '#F0E68C', - lavender: '#E6E6FA', - lavenderblush: '#FFF0F5', - lawngreen: '#7CFC00', - lemonchiffon: '#FFFACD', - lightblue: '#ADD8E6', - lightcoral: '#F08080', - lightcyan: '#E0FFFF', - lightgoldenrodyellow: '#FAFAD2', - lightgreen: '#90EE90', - lightgrey: '#D3D3D3', - lightpink: '#FFB6C1', - lightsalmon: '#FFA07A', - lightseagreen: '#20B2AA', - lightskyblue: '#87CEFA', - lightslategray: '#778899', - lightslategrey: '#778899', - lightsteelblue: '#B0C4DE', - lightyellow: '#FFFFE0', - limegreen: '#32CD32', - linen: '#FAF0E6', - magenta: '#FF00FF', - mediumaquamarine: '#66CDAA', - mediumblue: '#0000CD', - mediumorchid: '#BA55D3', - mediumpurple: '#9370DB', - mediumseagreen: '#3CB371', - mediumslateblue: '#7B68EE', - mediumspringgreen: '#00FA9A', - mediumturquoise: '#48D1CC', - mediumvioletred: '#C71585', - midnightblue: '#191970', - mintcream: '#F5FFFA', - mistyrose: '#FFE4E1', - moccasin: '#FFE4B5', - navajowhite: '#FFDEAD', - oldlace: '#FDF5E6', - olivedrab: '#6B8E23', - orange: '#FFA500', - orangered: '#FF4500', - orchid: '#DA70D6', - palegoldenrod: '#EEE8AA', - palegreen: '#98FB98', - paleturquoise: '#AFEEEE', - palevioletred: '#DB7093', - papayawhip: '#FFEFD5', - peachpuff: '#FFDAB9', - peru: '#CD853F', - pink: '#FFC0CB', - plum: '#DDA0DD', - powderblue: '#B0E0E6', - rosybrown: '#BC8F8F', - royalblue: '#4169E1', - saddlebrown: '#8B4513', - salmon: '#FA8072', - sandybrown: '#F4A460', - seagreen: '#2E8B57', - seashell: '#FFF5EE', - sienna: '#A0522D', - skyblue: '#87CEEB', - slateblue: '#6A5ACD', - slategray: '#708090', - slategrey: '#708090', - snow: '#FFFAFA', - springgreen: '#00FF7F', - steelblue: '#4682B4', - tan: '#D2B48C', - thistle: '#D8BFD8', - tomato: '#FF6347', - turquoise: '#40E0D0', - violet: '#EE82EE', - wheat: '#F5DEB3', - whitesmoke: '#F5F5F5', - yellowgreen: '#9ACD32' - }; - - - function getRgbHslContent(styleString) { - var start = styleString.indexOf('(', 3); - var end = styleString.indexOf(')', start + 1); - var parts = styleString.substring(start + 1, end).split(','); - // add alpha if needed - if (parts.length != 4 || styleString.charAt(3) != 'a') { - parts[3] = 1; - } - return parts; - } - - function percent(s) { - return parseFloat(s) / 100; - } - - function clamp(v, min, max) { - return Math.min(max, Math.max(min, v)); - } - - function hslToRgb(parts){ - var r, g, b, h, s, l; - h = parseFloat(parts[0]) / 360 % 360; - if (h < 0) - h++; - s = clamp(percent(parts[1]), 0, 1); - l = clamp(percent(parts[2]), 0, 1); - if (s == 0) { - r = g = b = l; // achromatic - } else { - var q = l < 0.5 ? l * (1 + s) : l + s - l * s; - var p = 2 * l - q; - r = hueToRgb(p, q, h + 1 / 3); - g = hueToRgb(p, q, h); - b = hueToRgb(p, q, h - 1 / 3); - } - - return '#' + decToHex[Math.floor(r * 255)] + - decToHex[Math.floor(g * 255)] + - decToHex[Math.floor(b * 255)]; - } - - function hueToRgb(m1, m2, h) { - if (h < 0) - h++; - if (h > 1) - h--; - - if (6 * h < 1) - return m1 + (m2 - m1) * 6 * h; - else if (2 * h < 1) - return m2; - else if (3 * h < 2) - return m1 + (m2 - m1) * (2 / 3 - h) * 6; - else - return m1; - } - - var processStyleCache = {}; - - function processStyle(styleString) { - if (styleString in processStyleCache) { - return processStyleCache[styleString]; - } - - var str, alpha = 1; - - styleString = String(styleString); - if (styleString.charAt(0) == '#') { - str = styleString; - } else if (/^rgb/.test(styleString)) { - var parts = getRgbHslContent(styleString); - var str = '#', n; - for (var i = 0; i < 3; i++) { - if (parts[i].indexOf('%') != -1) { - n = Math.floor(percent(parts[i]) * 255); - } else { - n = +parts[i]; - } - str += decToHex[clamp(n, 0, 255)]; - } - alpha = +parts[3]; - } else if (/^hsl/.test(styleString)) { - var parts = getRgbHslContent(styleString); - str = hslToRgb(parts); - alpha = parts[3]; - } else { - str = colorData[styleString] || styleString; - } - return processStyleCache[styleString] = {color: str, alpha: alpha}; - } - - var DEFAULT_STYLE = { - style: 'normal', - variant: 'normal', - weight: 'normal', - size: 10, - family: 'sans-serif' - }; - - // Internal text style cache - var fontStyleCache = {}; - - function processFontStyle(styleString) { - if (fontStyleCache[styleString]) { - return fontStyleCache[styleString]; - } - - var el = document.createElement('div'); - var style = el.style; - try { - style.font = styleString; - } catch (ex) { - // Ignore failures to set to invalid font. - } - - return fontStyleCache[styleString] = { - style: style.fontStyle || DEFAULT_STYLE.style, - variant: style.fontVariant || DEFAULT_STYLE.variant, - weight: style.fontWeight || DEFAULT_STYLE.weight, - size: style.fontSize || DEFAULT_STYLE.size, - family: style.fontFamily || DEFAULT_STYLE.family - }; - } - - function getComputedStyle(style, element) { - var computedStyle = {}; - - for (var p in style) { - computedStyle[p] = style[p]; - } - - // Compute the size - var canvasFontSize = parseFloat(element.currentStyle.fontSize), - fontSize = parseFloat(style.size); - - if (typeof style.size == 'number') { - computedStyle.size = style.size; - } else if (style.size.indexOf('px') != -1) { - computedStyle.size = fontSize; - } else if (style.size.indexOf('em') != -1) { - computedStyle.size = canvasFontSize * fontSize; - } else if(style.size.indexOf('%') != -1) { - computedStyle.size = (canvasFontSize / 100) * fontSize; - } else if (style.size.indexOf('pt') != -1) { - computedStyle.size = fontSize / .75; - } else { - computedStyle.size = canvasFontSize; - } - - // Different scaling between normal text and VML text. This was found using - // trial and error to get the same size as non VML text. - computedStyle.size *= 0.981; - - // Fix for VML handling of bare font family names. Add a '' around font family names. - computedStyle.family = "'" + computedStyle.family.replace(/(\'|\")/g,'').replace(/\s*,\s*/g, "', '") + "'"; - - return computedStyle; - } - - function buildStyle(style) { - return style.style + ' ' + style.variant + ' ' + style.weight + ' ' + - style.size + 'px ' + style.family; - } - - var lineCapMap = { - 'butt': 'flat', - 'round': 'round' - }; - - function processLineCap(lineCap) { - return lineCapMap[lineCap] || 'square'; - } - - /** - * This class implements CanvasRenderingContext2D interface as described by - * the WHATWG. - * @param {HTMLElement} canvasElement The element that the 2D context should - * be associated with - */ - function CanvasRenderingContext2D_(canvasElement) { - this.m_ = createMatrixIdentity(); - - this.mStack_ = []; - this.aStack_ = []; - this.currentPath_ = []; - - // Canvas context properties - this.strokeStyle = '#000'; - this.fillStyle = '#000'; - - this.lineWidth = 1; - this.lineJoin = 'miter'; - this.lineCap = 'butt'; - this.miterLimit = Z * 1; - this.globalAlpha = 1; - this.font = '10px sans-serif'; - this.textAlign = 'left'; - this.textBaseline = 'alphabetic'; - this.canvas = canvasElement; - - var cssText = 'width:' + canvasElement.clientWidth + 'px;height:' + - canvasElement.clientHeight + 'px;overflow:hidden;position:absolute'; - var el = canvasElement.ownerDocument.createElement('div'); - el.style.cssText = cssText; - canvasElement.appendChild(el); - - var overlayEl = el.cloneNode(false); - // Use a non transparent background. - overlayEl.style.backgroundColor = 'red'; - overlayEl.style.filter = 'alpha(opacity=0)'; - canvasElement.appendChild(overlayEl); - - this.element_ = el; - this.arcScaleX_ = 1; - this.arcScaleY_ = 1; - this.lineScale_ = 1; - } - - var contextPrototype = CanvasRenderingContext2D_.prototype; - contextPrototype.clearRect = function() { - if (this.textMeasureEl_) { - this.textMeasureEl_.removeNode(true); - this.textMeasureEl_ = null; - } - this.element_.innerHTML = ''; - }; - - contextPrototype.beginPath = function() { - // TODO: Branch current matrix so that save/restore has no effect - // as per safari docs. - this.currentPath_ = []; - }; - - contextPrototype.moveTo = function(aX, aY) { - var p = getCoords(this, aX, aY); - this.currentPath_.push({type: 'moveTo', x: p.x, y: p.y}); - this.currentX_ = p.x; - this.currentY_ = p.y; - }; - - contextPrototype.lineTo = function(aX, aY) { - var p = getCoords(this, aX, aY); - this.currentPath_.push({type: 'lineTo', x: p.x, y: p.y}); - - this.currentX_ = p.x; - this.currentY_ = p.y; - }; - - contextPrototype.bezierCurveTo = function(aCP1x, aCP1y, - aCP2x, aCP2y, - aX, aY) { - var p = getCoords(this, aX, aY); - var cp1 = getCoords(this, aCP1x, aCP1y); - var cp2 = getCoords(this, aCP2x, aCP2y); - bezierCurveTo(this, cp1, cp2, p); - }; - - // Helper function that takes the already fixed cordinates. - function bezierCurveTo(self, cp1, cp2, p) { - self.currentPath_.push({ - type: 'bezierCurveTo', - cp1x: cp1.x, - cp1y: cp1.y, - cp2x: cp2.x, - cp2y: cp2.y, - x: p.x, - y: p.y - }); - self.currentX_ = p.x; - self.currentY_ = p.y; - } - - contextPrototype.quadraticCurveTo = function(aCPx, aCPy, aX, aY) { - // the following is lifted almost directly from - // http://developer.mozilla.org/en/docs/Canvas_tutorial:Drawing_shapes - - var cp = getCoords(this, aCPx, aCPy); - var p = getCoords(this, aX, aY); - - var cp1 = { - x: this.currentX_ + 2.0 / 3.0 * (cp.x - this.currentX_), - y: this.currentY_ + 2.0 / 3.0 * (cp.y - this.currentY_) - }; - var cp2 = { - x: cp1.x + (p.x - this.currentX_) / 3.0, - y: cp1.y + (p.y - this.currentY_) / 3.0 - }; - - bezierCurveTo(this, cp1, cp2, p); - }; - - contextPrototype.arc = function(aX, aY, aRadius, - aStartAngle, aEndAngle, aClockwise) { - aRadius *= Z; - var arcType = aClockwise ? 'at' : 'wa'; - - var xStart = aX + mc(aStartAngle) * aRadius - Z2; - var yStart = aY + ms(aStartAngle) * aRadius - Z2; - - var xEnd = aX + mc(aEndAngle) * aRadius - Z2; - var yEnd = aY + ms(aEndAngle) * aRadius - Z2; - - // IE won't render arches drawn counter clockwise if xStart == xEnd. - if (xStart == xEnd && !aClockwise) { - xStart += 0.125; // Offset xStart by 1/80 of a pixel. Use something - // that can be represented in binary - } - - var p = getCoords(this, aX, aY); - var pStart = getCoords(this, xStart, yStart); - var pEnd = getCoords(this, xEnd, yEnd); - - this.currentPath_.push({type: arcType, - x: p.x, - y: p.y, - radius: aRadius, - xStart: pStart.x, - yStart: pStart.y, - xEnd: pEnd.x, - yEnd: pEnd.y}); - - }; - - contextPrototype.rect = function(aX, aY, aWidth, aHeight) { - this.moveTo(aX, aY); - this.lineTo(aX + aWidth, aY); - this.lineTo(aX + aWidth, aY + aHeight); - this.lineTo(aX, aY + aHeight); - this.closePath(); - }; - - contextPrototype.strokeRect = function(aX, aY, aWidth, aHeight) { - var oldPath = this.currentPath_; - this.beginPath(); - - this.moveTo(aX, aY); - this.lineTo(aX + aWidth, aY); - this.lineTo(aX + aWidth, aY + aHeight); - this.lineTo(aX, aY + aHeight); - this.closePath(); - this.stroke(); - - this.currentPath_ = oldPath; - }; - - contextPrototype.fillRect = function(aX, aY, aWidth, aHeight) { - var oldPath = this.currentPath_; - this.beginPath(); - - this.moveTo(aX, aY); - this.lineTo(aX + aWidth, aY); - this.lineTo(aX + aWidth, aY + aHeight); - this.lineTo(aX, aY + aHeight); - this.closePath(); - this.fill(); - - this.currentPath_ = oldPath; - }; - - contextPrototype.createLinearGradient = function(aX0, aY0, aX1, aY1) { - var gradient = new CanvasGradient_('gradient'); - gradient.x0_ = aX0; - gradient.y0_ = aY0; - gradient.x1_ = aX1; - gradient.y1_ = aY1; - return gradient; - }; - - contextPrototype.createRadialGradient = function(aX0, aY0, aR0, - aX1, aY1, aR1) { - var gradient = new CanvasGradient_('gradientradial'); - gradient.x0_ = aX0; - gradient.y0_ = aY0; - gradient.r0_ = aR0; - gradient.x1_ = aX1; - gradient.y1_ = aY1; - gradient.r1_ = aR1; - return gradient; - }; - - contextPrototype.drawImage = function(image, var_args) { - var dx, dy, dw, dh, sx, sy, sw, sh; - - // to find the original width we overide the width and height - var oldRuntimeWidth = image.runtimeStyle.width; - var oldRuntimeHeight = image.runtimeStyle.height; - image.runtimeStyle.width = 'auto'; - image.runtimeStyle.height = 'auto'; - - // get the original size - var w = image.width; - var h = image.height; - - // and remove overides - image.runtimeStyle.width = oldRuntimeWidth; - image.runtimeStyle.height = oldRuntimeHeight; - - if (arguments.length == 3) { - dx = arguments[1]; - dy = arguments[2]; - sx = sy = 0; - sw = dw = w; - sh = dh = h; - } else if (arguments.length == 5) { - dx = arguments[1]; - dy = arguments[2]; - dw = arguments[3]; - dh = arguments[4]; - sx = sy = 0; - sw = w; - sh = h; - } else if (arguments.length == 9) { - sx = arguments[1]; - sy = arguments[2]; - sw = arguments[3]; - sh = arguments[4]; - dx = arguments[5]; - dy = arguments[6]; - dw = arguments[7]; - dh = arguments[8]; - } else { - throw Error('Invalid number of arguments'); - } - - var d = getCoords(this, dx, dy); - - var w2 = sw / 2; - var h2 = sh / 2; - - var vmlStr = []; - - var W = 10; - var H = 10; - - // For some reason that I've now forgotten, using divs didn't work - vmlStr.push(' ' , - '', - ''); - - this.element_.insertAdjacentHTML('BeforeEnd', vmlStr.join('')); - }; - - contextPrototype.stroke = function(aFill) { - var lineStr = []; - var lineOpen = false; - - var W = 10; - var H = 10; - - lineStr.push(''); - - if (!aFill) { - appendStroke(this, lineStr); - } else { - appendFill(this, lineStr, min, max); - } - - lineStr.push(''); - - this.element_.insertAdjacentHTML('beforeEnd', lineStr.join('')); - }; - - function appendStroke(ctx, lineStr) { - var a = processStyle(ctx.strokeStyle); - var color = a.color; - var opacity = a.alpha * ctx.globalAlpha; - var lineWidth = ctx.lineScale_ * ctx.lineWidth; - - // VML cannot correctly render a line if the width is less than 1px. - // In that case, we dilute the color to make the line look thinner. - if (lineWidth < 1) { - opacity *= lineWidth; - } - - lineStr.push( - '' - ); - } - - function appendFill(ctx, lineStr, min, max) { - var fillStyle = ctx.fillStyle; - var arcScaleX = ctx.arcScaleX_; - var arcScaleY = ctx.arcScaleY_; - var width = max.x - min.x; - var height = max.y - min.y; - if (fillStyle instanceof CanvasGradient_) { - // TODO: Gradients transformed with the transformation matrix. - var angle = 0; - var focus = {x: 0, y: 0}; - - // additional offset - var shift = 0; - // scale factor for offset - var expansion = 1; - - if (fillStyle.type_ == 'gradient') { - var x0 = fillStyle.x0_ / arcScaleX; - var y0 = fillStyle.y0_ / arcScaleY; - var x1 = fillStyle.x1_ / arcScaleX; - var y1 = fillStyle.y1_ / arcScaleY; - var p0 = getCoords(ctx, x0, y0); - var p1 = getCoords(ctx, x1, y1); - var dx = p1.x - p0.x; - var dy = p1.y - p0.y; - angle = Math.atan2(dx, dy) * 180 / Math.PI; - - // The angle should be a non-negative number. - if (angle < 0) { - angle += 360; - } - - // Very small angles produce an unexpected result because they are - // converted to a scientific notation string. - if (angle < 1e-6) { - angle = 0; - } - } else { - var p0 = getCoords(ctx, fillStyle.x0_, fillStyle.y0_); - focus = { - x: (p0.x - min.x) / width, - y: (p0.y - min.y) / height - }; - - width /= arcScaleX * Z; - height /= arcScaleY * Z; - var dimension = m.max(width, height); - shift = 2 * fillStyle.r0_ / dimension; - expansion = 2 * fillStyle.r1_ / dimension - shift; - } - - // We need to sort the color stops in ascending order by offset, - // otherwise IE won't interpret it correctly. - var stops = fillStyle.colors_; - stops.sort(function(cs1, cs2) { - return cs1.offset - cs2.offset; - }); - - var length = stops.length; - var color1 = stops[0].color; - var color2 = stops[length - 1].color; - var opacity1 = stops[0].alpha * ctx.globalAlpha; - var opacity2 = stops[length - 1].alpha * ctx.globalAlpha; - - var colors = []; - for (var i = 0; i < length; i++) { - var stop = stops[i]; - colors.push(stop.offset * expansion + shift + ' ' + stop.color); - } - - // When colors attribute is used, the meanings of opacity and o:opacity2 - // are reversed. - lineStr.push(''); - } else if (fillStyle instanceof CanvasPattern_) { - if (width && height) { - var deltaLeft = -min.x; - var deltaTop = -min.y; - lineStr.push(''); - } - } else { - var a = processStyle(ctx.fillStyle); - var color = a.color; - var opacity = a.alpha * ctx.globalAlpha; - lineStr.push(''); - } - } - - contextPrototype.fill = function() { - this.stroke(true); - }; - - contextPrototype.closePath = function() { - this.currentPath_.push({type: 'close'}); - }; - - function getCoords(ctx, aX, aY) { - var m = ctx.m_; - return { - x: Z * (aX * m[0][0] + aY * m[1][0] + m[2][0]) - Z2, - y: Z * (aX * m[0][1] + aY * m[1][1] + m[2][1]) - Z2 - }; - }; - - contextPrototype.save = function() { - var o = {}; - copyState(this, o); - this.aStack_.push(o); - this.mStack_.push(this.m_); - this.m_ = matrixMultiply(createMatrixIdentity(), this.m_); - }; - - contextPrototype.restore = function() { - if (this.aStack_.length) { - copyState(this.aStack_.pop(), this); - this.m_ = this.mStack_.pop(); - } - }; - - function matrixIsFinite(m) { - return isFinite(m[0][0]) && isFinite(m[0][1]) && - isFinite(m[1][0]) && isFinite(m[1][1]) && - isFinite(m[2][0]) && isFinite(m[2][1]); - } - - function setM(ctx, m, updateLineScale) { - if (!matrixIsFinite(m)) { - return; - } - ctx.m_ = m; - - if (updateLineScale) { - // Get the line scale. - // Determinant of this.m_ means how much the area is enlarged by the - // transformation. So its square root can be used as a scale factor - // for width. - var det = m[0][0] * m[1][1] - m[0][1] * m[1][0]; - ctx.lineScale_ = sqrt(abs(det)); - } - } - - contextPrototype.translate = function(aX, aY) { - var m1 = [ - [1, 0, 0], - [0, 1, 0], - [aX, aY, 1] - ]; - - setM(this, matrixMultiply(m1, this.m_), false); - }; - - contextPrototype.rotate = function(aRot) { - var c = mc(aRot); - var s = ms(aRot); - - var m1 = [ - [c, s, 0], - [-s, c, 0], - [0, 0, 1] - ]; - - setM(this, matrixMultiply(m1, this.m_), false); - }; - - contextPrototype.scale = function(aX, aY) { - this.arcScaleX_ *= aX; - this.arcScaleY_ *= aY; - var m1 = [ - [aX, 0, 0], - [0, aY, 0], - [0, 0, 1] - ]; - - setM(this, matrixMultiply(m1, this.m_), true); - }; - - contextPrototype.transform = function(m11, m12, m21, m22, dx, dy) { - var m1 = [ - [m11, m12, 0], - [m21, m22, 0], - [dx, dy, 1] - ]; - - setM(this, matrixMultiply(m1, this.m_), true); - }; - - contextPrototype.setTransform = function(m11, m12, m21, m22, dx, dy) { - var m = [ - [m11, m12, 0], - [m21, m22, 0], - [dx, dy, 1] - ]; - - setM(this, m, true); - }; - - /** - * The text drawing function. - * The maxWidth argument isn't taken in account, since no browser supports - * it yet. - */ - contextPrototype.drawText_ = function(text, x, y, maxWidth, stroke) { - var m = this.m_, - delta = 1000, - left = 0, - right = delta, - offset = {x: 0, y: 0}, - lineStr = []; - - var fontStyle = getComputedStyle(processFontStyle(this.font), this.element_); - - var fontStyleString = buildStyle(fontStyle); - - var elementStyle = this.element_.currentStyle; - var textAlign = this.textAlign.toLowerCase(); - switch (textAlign) { - case 'left': - case 'center': - case 'right': - break; - case 'end': - textAlign = elementStyle.direction == 'ltr' ? 'right' : 'left'; - break; - case 'start': - textAlign = elementStyle.direction == 'rtl' ? 'right' : 'left'; - break; - default: - textAlign = 'left'; - } - - // 1.75 is an arbitrary number, as there is no info about the text baseline - switch (this.textBaseline) { - case 'hanging': - case 'top': - offset.y = fontStyle.size / 1.75; - break; - case 'middle': - break; - default: - case null: - case 'alphabetic': - case 'ideographic': - case 'bottom': - offset.y = -fontStyle.size / 2.25; - break; - } - - switch(textAlign) { - case 'right': - left = delta; - right = 0.05; - break; - case 'center': - left = right = delta / 2; - break; - } - - var d = getCoords(this, x + offset.x, y + offset.y); - - lineStr.push(''); - - if (stroke) { - appendStroke(this, lineStr); - } else { - // TODO: Fix the min and max params. - appendFill(this, lineStr, {x: -left, y: 0}, - {x: right, y: fontStyle.size}); - } - - var skewM = m[0][0].toFixed(3) + ',' + m[1][0].toFixed(3) + ',' + - m[0][1].toFixed(3) + ',' + m[1][1].toFixed(3) + ',0,0'; - - var skewOffset = mr(d.x / Z + 1 - m[0][0]) + ',' + mr(d.y / Z - 2 * m[1][0]); - - - lineStr.push('', - '', - ''); - - this.element_.insertAdjacentHTML('beforeEnd', lineStr.join('')); - }; - - contextPrototype.fillText = function(text, x, y, maxWidth) { - this.drawText_(text, x, y, maxWidth, false); - }; - - contextPrototype.strokeText = function(text, x, y, maxWidth) { - this.drawText_(text, x, y, maxWidth, true); - }; - - contextPrototype.measureText = function(text) { - if (!this.textMeasureEl_) { - var s = ''; - this.element_.insertAdjacentHTML('beforeEnd', s); - this.textMeasureEl_ = this.element_.lastChild; - } - var doc = this.element_.ownerDocument; - this.textMeasureEl_.innerHTML = ''; - this.textMeasureEl_.style.font = this.font; - // Don't use innerHTML or innerText because they allow markup/whitespace. - this.textMeasureEl_.appendChild(doc.createTextNode(text)); - return {width: this.textMeasureEl_.offsetWidth}; - }; - - /******** STUBS ********/ - contextPrototype.clip = function() { - // TODO: Implement - }; - - contextPrototype.arcTo = function() { - // TODO: Implement - }; - - contextPrototype.createPattern = function(image, repetition) { - return new CanvasPattern_(image, repetition); - }; - - // Gradient / Pattern Stubs - function CanvasGradient_(aType) { - this.type_ = aType; - this.x0_ = 0; - this.y0_ = 0; - this.r0_ = 0; - this.x1_ = 0; - this.y1_ = 0; - this.r1_ = 0; - this.colors_ = []; - } - - CanvasGradient_.prototype.addColorStop = function(aOffset, aColor) { - aColor = processStyle(aColor); - this.colors_.push({offset: aOffset, - color: aColor.color, - alpha: aColor.alpha}); - }; - - function CanvasPattern_(image, repetition) { - assertImageIsValid(image); - switch (repetition) { - case 'repeat': - case null: - case '': - this.repetition_ = 'repeat'; - break; - case 'repeat-x': - case 'repeat-y': - case 'no-repeat': - this.repetition_ = repetition; - break; - default: - throwException('SYNTAX_ERR'); - } - - this.src_ = image.src; - this.width_ = image.width; - this.height_ = image.height; - } - - function throwException(s) { - throw new DOMException_(s); - } - - function assertImageIsValid(img) { - if (!img || img.nodeType != 1 || img.tagName != 'IMG') { - throwException('TYPE_MISMATCH_ERR'); - } - if (img.readyState != 'complete') { - throwException('INVALID_STATE_ERR'); - } - } - - function DOMException_(s) { - this.code = this[s]; - this.message = s +': DOM Exception ' + this.code; - } - var p = DOMException_.prototype = new Error; - p.INDEX_SIZE_ERR = 1; - p.DOMSTRING_SIZE_ERR = 2; - p.HIERARCHY_REQUEST_ERR = 3; - p.WRONG_DOCUMENT_ERR = 4; - p.INVALID_CHARACTER_ERR = 5; - p.NO_DATA_ALLOWED_ERR = 6; - p.NO_MODIFICATION_ALLOWED_ERR = 7; - p.NOT_FOUND_ERR = 8; - p.NOT_SUPPORTED_ERR = 9; - p.INUSE_ATTRIBUTE_ERR = 10; - p.INVALID_STATE_ERR = 11; - p.SYNTAX_ERR = 12; - p.INVALID_MODIFICATION_ERR = 13; - p.NAMESPACE_ERR = 14; - p.INVALID_ACCESS_ERR = 15; - p.VALIDATION_ERR = 16; - p.TYPE_MISMATCH_ERR = 17; - - // set up externs - G_vmlCanvasManager = G_vmlCanvasManager_; - CanvasRenderingContext2D = CanvasRenderingContext2D_; - CanvasGradient = CanvasGradient_; - CanvasPattern = CanvasPattern_; - DOMException = DOMException_; - G_vmlCanvasManager._version = 888; -})(); - -} // if diff --git a/bes_theme/assets/javascripts/jqplot/jquery.jqplot.min.js b/bes_theme/assets/javascripts/jqplot/jquery.jqplot.min.js deleted file mode 100644 index 3cac7796..00000000 --- a/bes_theme/assets/javascripts/jqplot/jquery.jqplot.min.js +++ /dev/null @@ -1,6 +0,0 @@ - -!function(a){function b(b){a.jqplot.ElemContainer.call(this),this.name=b,this._series=[],this.show=!1,this.tickRenderer=a.jqplot.AxisTickRenderer,this.tickOptions={},this.labelRenderer=a.jqplot.AxisLabelRenderer,this.labelOptions={},this.label=null,this.showLabel=!0,this.min=null,this.max=null,this.autoscale=!1,this.pad=1.2,this.padMax=null,this.padMin=null,this.ticks=[],this.numberTicks,this.tickInterval,this.renderer=a.jqplot.LinearAxisRenderer,this.rendererOptions={},this.showTicks=!0,this.showTickMarks=!0,this.showMinorTicks=!0,this.drawMajorGridlines=!0,this.drawMinorGridlines=!1,this.drawMajorTickMarks=!0,this.drawMinorTickMarks=!0,this.useSeriesColor=!1,this.borderWidth=null,this.borderColor=null,this.scaleToHiddenSeries=!1,this._dataBounds={min:null,max:null},this._intervalStats=[],this._offsets={min:null,max:null},this._ticks=[],this._label=null,this.syncTicks=null,this.tickSpacing=75,this._min=null,this._max=null,this._tickInterval=null,this._numberTicks=null,this.__ticks=null,this._options={}}function c(b){a.jqplot.ElemContainer.call(this),this.show=!1,this.location="ne",this.labels=[],this.showLabels=!0,this.showSwatches=!0,this.placement="insideGrid",this.xoffset=0,this.yoffset=0,this.border,this.background,this.textColor,this.fontFamily,this.fontSize,this.rowSpacing="0.5em",this.renderer=a.jqplot.TableLegendRenderer,this.rendererOptions={},this.preDraw=!1,this.marginTop=null,this.marginRight=null,this.marginBottom=null,this.marginLeft=null,this.escapeHtml=!1,this._series=[],a.extend(!0,this,b)}function d(b){a.jqplot.ElemContainer.call(this),this.text=b,this.show=!0,this.fontFamily,this.fontSize,this.textAlign,this.textColor,this.renderer=a.jqplot.DivTitleRenderer,this.rendererOptions={},this.escapeHtml=!1}function e(b){b=b||{},a.jqplot.ElemContainer.call(this),this.show=!0,this.xaxis="xaxis",this._xaxis,this.yaxis="yaxis",this._yaxis,this.gridBorderWidth=2,this.renderer=a.jqplot.LineRenderer,this.rendererOptions={},this.data=[],this.gridData=[],this.label="",this.showLabel=!0,this.color,this.negativeColor,this.lineWidth=2.5,this.lineJoin="round",this.lineCap="round",this.linePattern="solid",this.shadow=!0,this.shadowAngle=45,this.shadowOffset=1.25,this.shadowDepth=3,this.shadowAlpha="0.1",this.breakOnNull=!1,this.markerRenderer=a.jqplot.MarkerRenderer,this.markerOptions={},this.showLine=!0,this.showMarker=!0,this.index,this.fill=!1,this.fillColor,this.fillAlpha,this.fillAndStroke=!1,this.disableStack=!1,this._stack=!1,this.neighborThreshold=4,this.fillToZero=!1,this.fillToValue=0,this.fillAxis="y",this.useNegativeColors=!0,this._stackData=[],this._plotData=[],this._plotValues={x:[],y:[]},this._intervals={x:{},y:{}},this._prevPlotData=[],this._prevGridData=[],this._stackAxis="y",this._primaryAxis="_xaxis",this.canvas=new a.jqplot.GenericCanvas,this.shadowCanvas=new a.jqplot.GenericCanvas,this.plugins={},this._sumy=0,this._sumx=0,this._type="",this.step=!1}function f(){a.jqplot.ElemContainer.call(this),this.drawGridlines=!0,this.gridLineColor="#cccccc",this.gridLineWidth=1,this.background="#fffdf6",this.borderColor="#999999",this.borderWidth=2,this.drawBorder=!0,this.shadow=!0,this.shadowAngle=45,this.shadowOffset=1.5,this.shadowWidth=3,this.shadowDepth=3,this.shadowColor=null,this.shadowAlpha="0.07",this._left,this._top,this._right,this._bottom,this._width,this._height,this._axes=[],this.renderer=a.jqplot.CanvasGridRenderer,this.rendererOptions={},this._offsets={top:null,bottom:null,left:null,right:null}}function g(){function h(a){for(var b,c=0;cf;f++)if(d=!0,b=e[f],"x"==a[c]._stackAxis){for(var g=0;g0;b--)c=h[b-1],i[c].show&&(g[c]=i[c].series_p2u(f[c.charAt(0)]));return{offsets:e,gridPos:f,dataPos:g}}function j(b,c){function d(a,b,c){var d=(b[1]-c[1])/(b[0]-c[0]),e=b[1]-d*b[0],f=a+b[1];return[(f-e)/d,f]}var e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x=c.series;for(g=c.seriesStack.length-1;g>=0;g--)switch(e=c.seriesStack[g],h=x[e],u=h._highlightThreshold,h.renderer.constructor){case a.jqplot.BarRenderer:for(j=b.x,k=b.y,f=0;ft[0][0]&&jt[2][1]&&kt[0][1]))return{seriesIndex:h.index,pointIndex:f,gridData:s,data:h.data[f],points:h._barPoints[f]};break;case a.jqplot.PyramidRenderer:for(j=b.x,k=b.y,f=0;ft[0][0]+u[0][0]&&jt[2][1]&&k0&&-k>=0?l=2*Math.PI-Math.atan(-k/j):j>0&&0>-k?l=-Math.atan(-k/j):0>j?l=Math.PI-Math.atan(-k/j):0==j&&-k>0?l=3*Math.PI/2:0==j&&0>-k?l=Math.PI/2:0==j&&0==k&&(l=0),n&&(l-=n,0>l?l+=2*Math.PI:l>2*Math.PI&&(l-=2*Math.PI)),m=h.sliceMargin/180*Math.PI,ih._innerRadius)for(f=0;f0?h.gridData[f-1][1]+m:m,p=h.gridData[f][1],l>o&&p>l)return{seriesIndex:h.index,pointIndex:f,gridData:[b.x,b.y],data:h.data[f]};break;case a.jqplot.PieRenderer:if(n=h.startAngle/180*Math.PI,j=b.x-h._center[0],k=b.y-h._center[1],i=Math.sqrt(Math.pow(j,2)+Math.pow(k,2)),j>0&&-k>=0?l=2*Math.PI-Math.atan(-k/j):j>0&&0>-k?l=-Math.atan(-k/j):0>j?l=Math.PI-Math.atan(-k/j):0==j&&-k>0?l=3*Math.PI/2:0==j&&0>-k?l=Math.PI/2:0==j&&0==k&&(l=0),n&&(l-=n,0>l?l+=2*Math.PI:l>2*Math.PI&&(l-=2*Math.PI)),m=h.sliceMargin/180*Math.PI,i0?h.gridData[f-1][1]+m:m,p=h.gridData[f][1],l>o&&p>l)return{seriesIndex:h.index,pointIndex:f,gridData:[b.x,b.y],data:h.data[f]};break;case a.jqplot.BubbleRenderer:j=b.x,k=b.y;var y=null;if(h.show){for(var f=0;f=r||null==q)&&(q=r,y={seriesIndex:e,pointIndex:f,gridData:s,data:h.data[f]});if(null!=y)return y}break;case a.jqplot.FunnelRenderer:j=b.x,k=b.y;var z,A,B,C=h._vertices,D=C[0],E=C[C.length-1];for(z=d(k,D[0],E[3]),A=d(k,D[1],E[2]),f=0;f=B[0][1]&&k<=B[3][1]&&j>=z[0]&&j<=A[0])return{seriesIndex:h.index,pointIndex:f,gridData:null,data:h.data[f]};break;case a.jqplot.LineRenderer:if(j=b.x,k=b.y,i=h.renderer,h.show){if(!(!(h.fill||h.renderer.bands.show&&h.renderer.bands.fill)||c.plugins.highlighter&&c.plugins.highlighter.show)){var F=!1;if(j>h._boundingBox[0][0]&&jh._boundingBox[1][1]&&kG;G++){var I=[h._areaPoints[G][0],h._areaPoints[G][1]],J=[h._areaPoints[f][0],h._areaPoints[f][1]];(I[1]=k||J[1]=k)&&I[0]+(k-I[1])/(J[1]-I[1])*(J[0]-I[0])0?w:0;for(var f=0;f=s[0]-i._bodyWidth/2&&j<=s[0]+i._bodyWidth/2&&k>=K(h.data[f][2])&&k<=K(h.data[f][3]))return{seriesIndex:e,pointIndex:f,gridData:s,data:h.data[f]}}else if(i.hlc){var K=h._yaxis.series_u2p;if(j>=s[0]-i._tickLength&&j<=s[0]+i._tickLength&&k>=K(h.data[f][1])&&k<=K(h.data[f][2]))return{seriesIndex:e,pointIndex:f,gridData:s,data:h.data[f]}}else{var K=h._yaxis.series_u2p;if(j>=s[0]-i._tickLength&&j<=s[0]+i._tickLength&&k>=K(h.data[f][2])&&k<=K(h.data[f][3]))return{seriesIndex:e,pointIndex:f,gridData:s,data:h.data[f]}}else if(null!=s[0]&&null!=s[1]&&(r=Math.sqrt((j-s[0])*(j-s[0])+(k-s[1])*(k-s[1])),v>=r&&(q>=r||null==q)))return q=r,{seriesIndex:e,pointIndex:f,gridData:s,data:h.data[f]}}break;default:if(j=b.x,k=b.y,i=h.renderer,h.show){w=h.markerRenderer.size/2+h.neighborThreshold,v=w>0?w:0;for(var f=0;f=s[0]-i._bodyWidth/2&&j<=s[0]+i._bodyWidth/2&&k>=K(h.data[f][2])&&k<=K(h.data[f][3]))return{seriesIndex:e,pointIndex:f,gridData:s,data:h.data[f]}}else if(i.hlc){var K=h._yaxis.series_u2p;if(j>=s[0]-i._tickLength&&j<=s[0]+i._tickLength&&k>=K(h.data[f][1])&&k<=K(h.data[f][2]))return{seriesIndex:e,pointIndex:f,gridData:s,data:h.data[f]}}else{var K=h._yaxis.series_u2p;if(j>=s[0]-i._tickLength&&j<=s[0]+i._tickLength&&k>=K(h.data[f][2])&&k<=K(h.data[f][3]))return{seriesIndex:e,pointIndex:f,gridData:s,data:h.data[f]}}else if(r=Math.sqrt((j-s[0])*(j-s[0])+(k-s[1])*(k-s[1])),v>=r&&(q>=r||null==q))return q=r,{seriesIndex:e,pointIndex:f,gridData:s,data:h.data[f]}}}return null}this.animate=!1,this.animateReplot=!1,this.axes={xaxis:new b("xaxis"),yaxis:new b("yaxis"),x2axis:new b("x2axis"),y2axis:new b("y2axis"),y3axis:new b("y3axis"),y4axis:new b("y4axis"),y5axis:new b("y5axis"),y6axis:new b("y6axis"),y7axis:new b("y7axis"),y8axis:new b("y8axis"),y9axis:new b("y9axis"),yMidAxis:new b("yMidAxis")},this.baseCanvas=new a.jqplot.GenericCanvas,this.captureRightClick=!1,this.data=[],this.dataRenderer,this.dataRendererOptions,this.defaults={axesDefaults:{},axes:{xaxis:{},yaxis:{},x2axis:{},y2axis:{},y3axis:{},y4axis:{},y5axis:{},y6axis:{},y7axis:{},y8axis:{},y9axis:{},yMidAxis:{}},seriesDefaults:{},series:[]},this.defaultAxisStart=1,this.drawIfHidden=!1,this.eventCanvas=new a.jqplot.GenericCanvas,this.fillBetween={series1:null,series2:null,color:null,baseSeries:0,fill:!0},this.fontFamily,this.fontSize,this.grid=new f,this.legend=new c,this.noDataIndicator={show:!1,indicator:"Loading Data...",axes:{xaxis:{min:0,max:10,tickInterval:2,show:!0},yaxis:{min:0,max:12,tickInterval:3,show:!0}}},this.negativeSeriesColors=a.jqplot.config.defaultNegativeColors,this.options={},this.previousSeriesStack=[],this.plugins={},this.series=[],this.seriesStack=[],this.seriesColors=a.jqplot.config.defaultColors,this.sortData=!0,this.stackSeries=!1,this.syncXTicks=!0,this.syncYTicks=!0,this.target=null,this.targetId=null,this.textColor,this.title=new d,this._drawCount=0,this._sumy=0,this._sumx=0,this._stackData=[],this._plotData=[],this._width=null,this._height=null,this._plotDimensions={height:null,width:null},this._gridPadding={top:null,right:null,bottom:null,left:null},this._defaultGridPadding={top:10,right:10,bottom:23,left:10},this._addDomReference=a.jqplot.config.addDomReference,this.preInitHooks=new a.jqplot.HooksManager,this.postInitHooks=new a.jqplot.HooksManager,this.preParseOptionsHooks=new a.jqplot.HooksManager,this.postParseOptionsHooks=new a.jqplot.HooksManager,this.preDrawHooks=new a.jqplot.HooksManager,this.postDrawHooks=new a.jqplot.HooksManager,this.preDrawSeriesHooks=new a.jqplot.HooksManager,this.postDrawSeriesHooks=new a.jqplot.HooksManager,this.preDrawLegendHooks=new a.jqplot.HooksManager,this.addLegendRowHooks=new a.jqplot.HooksManager,this.preSeriesInitHooks=new a.jqplot.HooksManager,this.postSeriesInitHooks=new a.jqplot.HooksManager,this.preParseSeriesOptionsHooks=new a.jqplot.HooksManager,this.postParseSeriesOptionsHooks=new a.jqplot.HooksManager,this.eventListenerHooks=new a.jqplot.EventListenerManager,this.preDrawSeriesShadowHooks=new a.jqplot.HooksManager,this.postDrawSeriesShadowHooks=new a.jqplot.HooksManager,this.colorGenerator=new a.jqplot.ColorGenerator,this.negativeColorGenerator=new a.jqplot.ColorGenerator,this.canvasManager=new a.jqplot.CanvasManager,this.themeEngine=new a.jqplot.ThemeEngine;this.init=function(c,d,e){e=e||{};for(var f=0;ff;f++)this.axes[G[f]]=new b(G[f]);if(this._plotDimensions.height=this._height,this._plotDimensions.width=this._width,this.grid._plotDimensions=this._plotDimensions,this.title._plotDimensions=this._plotDimensions,this.baseCanvas._plotDimensions=this._plotDimensions,this.eventCanvas._plotDimensions=this._plotDimensions,this.legend._plotDimensions=this._plotDimensions,this._height<=0||this._width<=0||!this._height||!this._width)throw new Error("Canvas dimension not set");if(e.dataRenderer&&a.isFunction(e.dataRenderer)&&(e.dataRendererOptions&&(this.dataRendererOptions=e.dataRendererOptions),this.dataRenderer=e.dataRenderer,d=this.dataRenderer(d,this,this.dataRendererOptions)),e.noDataIndicator&&a.isPlainObject(e.noDataIndicator)&&a.extend(!0,this.noDataIndicator,e.noDataIndicator),null==d||0==a.isArray(d)||0==d.length||0==a.isArray(d[0])||0==d[0].length){if(0==this.noDataIndicator.show)throw new Error("No data specified");for(var k in this.noDataIndicator.axes)for(var l in this.noDataIndicator.axes[k])this.axes[k][l]=this.noDataIndicator.axes[k][l];this.postDrawHooks.add(function(){var b=this.eventCanvas.getHeight(),c=this.eventCanvas.getWidth(),d=a('
    ');this.target.append(d),d.height(b),d.width(c),d.css("top",this.eventCanvas._offsets.top),d.css("left",this.eventCanvas._offsets.left);var e=a('
    ');d.append(e),e.html(this.noDataIndicator.indicator);var f=e.height(),g=e.width();e.height(f),e.width(g),e.css("top",(b-f)/2+"px")})}this.data=a.extend(!0,[],d),this.parseOptions(e),this.textColor&&this.target.css("color",this.textColor),this.fontFamily&&this.target.css("font-family",this.fontFamily),this.fontSize&&this.target.css("font-size",this.fontSize),this.title.init(),this.legend.init(),this._sumy=0,this._sumx=0,this.computePlotData();for(var f=0;ff;f++)n=G[f],o=this.axes[n],o._plotDimensions=this._plotDimensions,o.init(),null==this.axes[n].borderColor&&("x"!==n.charAt(0)&&o.useSeriesColor===!0&&o.show?o.borderColor=o._series[0].color:o.borderColor=this.grid.borderColor);this.sortData&&h(this.series),this.grid.init(),this.grid._axes=this.axes,this.legend._series=this.series;for(var f=0;fi;i++){j=G[i],m=this.axes[j],k=m._ticks;for(var l=0,o=k.length;o>l;l++){var p=k[l]._elem;p&&(a.jqplot.use_excanvas&&window.G_vmlCanvasManager.uninitElement!==F&&window.G_vmlCanvasManager.uninitElement(p.get(0)),p.emptyForce(),p=null,k._elem=null)}k=null,delete m.ticks,delete m._ticks,this.axes[j]=new b(j),this.axes[j]._plotWidth=this._width,this.axes[j]._plotHeight=this._height}c&&(e.dataRenderer&&a.isFunction(e.dataRenderer)&&(e.dataRendererOptions&&(this.dataRendererOptions=e.dataRendererOptions),this.dataRenderer=e.dataRenderer,c=this.dataRenderer(c,this,this.dataRendererOptions)),this.data=a.extend(!0,[],c)),d&&this.parseOptions(e),this.title._plotWidth=this._width,this.textColor&&this.target.css("color",this.textColor),this.fontFamily&&this.target.css("font-family",this.fontFamily),this.fontSize&&this.target.css("font-size",this.fontSize),this.title.init(),this.legend.init(),this._sumy=0,this._sumx=0,this.seriesStack=[],this.previousSeriesStack=[],this.computePlotData();for(var i=0,n=this.series.length;n>i;i++){this.seriesStack.push(i),this.previousSeriesStack.push(i),this.series[i].shadowCanvas._plotDimensions=this._plotDimensions,this.series[i].canvas._plotDimensions=this._plotDimensions;for(var l=0;li;i++)j=G[i],m=this.axes[j],m._plotDimensions=this._plotDimensions,m.init(),null==m.borderColor&&("x"!==j.charAt(0)&&m.useSeriesColor===!0&&m.show?m.borderColor=m._series[0].color:m.borderColor=this.grid.borderColor);this.sortData&&h(this.series),this.grid.init(),this.grid._axes=this.axes,this.legend._series=this.series;for(var i=0,n=a.jqplot.postInitHooks.length;n>i;i++)a.jqplot.postInitHooks[i].call(this,f,this.data,e);for(var i=0,n=this.postInitHooks.hooks.length;n>i;i++)this.postInitHooks.hooks[i].call(this,f,this.data,e)},this.quickInit=function(){if(this._height=this.target.height(),this._width=this.target.width(),this._height<=0||this._width<=0||!this._height||!this._width)throw new Error("Target dimension not set");this._plotDimensions.height=this._height,this._plotDimensions.width=this._width,this.grid._plotDimensions=this._plotDimensions,this.title._plotDimensions=this._plotDimensions,this.baseCanvas._plotDimensions=this._plotDimensions,this.eventCanvas._plotDimensions=this._plotDimensions,this.legend._plotDimensions=this._plotDimensions;for(var b in this.axes)this.axes[b]._plotWidth=this._width,this.axes[b]._plotHeight=this._height;this.title._plotWidth=this._width,this.textColor&&this.target.css("color",this.textColor),this.fontFamily&&this.target.css("font-family",this.fontFamily),this.fontSize&&this.target.css("font-size",this.fontSize),this._sumy=0,this._sumx=0,this.computePlotData();for(var c=0;ce;e++){d=G[e];for(var f=this.axes[d]._ticks,c=0;cc;c++){b=this.series[c],this._plotData.push([]),this._stackData.push([]);var e=b.data;this._plotData[c]=a.extend(!0,[],e),this._stackData[c]=a.extend(!0,[],e),b._plotData=this._plotData[c],b._stackData=this._stackData[c];var f={x:[],y:[]};if(this.stackSeries&&!b.disableStack){b._stack=!0;for(var g="x"===b._stackAxis?0:1,h=0,i=e.length;i>h;h++){var j=e[h][g];if(null==j&&(j=0),this._plotData[c][h][g]=j,this._stackData[c][h][g]=j,c>0)for(var k=c;k--;){var l=this._plotData[k][h][g];if(j*l>=0){this._plotData[c][h][g]+=l,this._stackData[c][h][g]+=l;break}}}}else{for(var m=0;m0&&(b._prevPlotData=this.series[c-1]._plotData),b._sumy=0,b._sumx=0,m=b.data.length-1;m>-1;m--)b._sumy+=b.data[m][1],b._sumx+=b.data[m][0]}},this.populatePlotData=function(b,c){this._plotData=[],this._stackData=[],b._stackData=[],b._plotData=[];var d={x:[],y:[]};if(this.stackSeries&&!b.disableStack){b._stack=!0;for(var e,f,g,h,i="x"===b._stackAxis?0:1,j=a.extend(!0,[],b.data),k=a.extend(!0,[],b.data),l=0;c>l;l++)for(var m=this.series[l].data,n=0;n=0&&(k[n][i]+=h);for(var o=0;o0&&(b._prevPlotData=this.series[c-1]._plotData),b._sumy=0,b._sumx=0,o=b.data.length-1;o>-1;o--)b._sumy+=b.data[o][1],b._sumx+=b.data[o][0]},this.getNextSeriesColor=function(a){var b=0,c=a.seriesColors;return function(){return bc;c++)f=g[c],null!=d.fillBetween[f]&&(this.fillBetween[f]=d.fillBetween[f]);d.seriesColors&&(this.seriesColors=d.seriesColors),d.negativeSeriesColors&&(this.negativeSeriesColors=d.negativeSeriesColors),d.captureRightClick&&(this.captureRightClick=d.captureRightClick),this.defaultAxisStart=b&&null!=b.defaultAxisStart?b.defaultAxisStart:this.defaultAxisStart,this.colorGenerator.setColors(this.seriesColors),this.negativeColorGenerator.setColors(this.negativeSeriesColors),a.extend(!0,this._gridPadding,d.gridPadding),this.sortData=null!=d.sortData?d.sortData:this.sortData;for(var c=0;12>c;c++){var i=G[c],j=this.axes[i];j._options=a.extend(!0,{},d.axesDefaults,d.axes[i]),a.extend(!0,j,d.axesDefaults,d.axes[i]),j._plotWidth=this._width,j._plotHeight=this._height}var k=function(b,c,d){var e,f,g=[];if(c=c||"vertical",a.isArray(b[0]))a.extend(!0,g,b);else for(e=0,f=b.length;f>e;e++)"vertical"==c?g.push([d+e,b[e]]):g.push([b[e],d+e]);return g};this.series=[];for(var c=0;cc;c++){var i=G[c],j=this.axes[i];null==j.borderWidth&&(j.borderWidth=this.grid.borderWidth)}"string"==typeof this.options.title?this.title.text=this.options.title:"object"==typeof this.options.title&&a.extend(!0,this.title,this.options.title),this.title._plotWidth=this._width,this.legend.setOptions(this.options.legend);for(var c=0;cc;c++)this._sumy+=this.series[c]._sumy,this._sumx+=this.series[c]._sumx;this.draw(),this.target.trigger("jqplotPostRedraw")},this.draw=function(){if(this.drawIfHidden||this.target.is(":visible")){this.target.trigger("jqplotPreDraw");var b,c,d;for(b=0,d=a.jqplot.preDrawHooks.length;d>b;b++)a.jqplot.preDrawHooks[b].call(this);for(b=0,d=this.preDrawHooks.hooks.length;d>b;b++)this.preDrawHooks.hooks[b].apply(this,this.preDrawSeriesHooks.args[b]);this.target.append(this.baseCanvas.createElement({left:0,right:0,top:0,bottom:0},"jqplot-base-canvas",null,this)),this.baseCanvas.setContext(),this.target.append(this.title.draw()),this.title.pack({top:0,left:0});var e=this.legend.draw({},this),f={top:0,left:0,bottom:0,right:0};if("outsideGrid"==this.legend.placement){switch(this.target.append(e),this.legend.location){case"n":f.top+=this.legend.getHeight();break;case"s":f.bottom+=this.legend.getHeight();break;case"ne":case"e":case"se":f.right+=this.legend.getWidth();break;case"nw":case"w":case"sw":f.left+=this.legend.getWidth();break;default:f.right+=this.legend.getWidth()}e=e.detach()}var g,h=this.axes;for(b=0;12>b;b++)g=G[b],this.target.append(h[g].draw(this.baseCanvas._ctx,this)),h[g].set();h.yaxis.show&&(f.left+=h.yaxis.getWidth());var i,j=["y2axis","y3axis","y4axis","y5axis","y6axis","y7axis","y8axis","y9axis"],k=[0,0,0,0,0,0,0,0],l=0;for(i=0;8>i;i++)h[j[i]].show&&(l+=h[j[i]].getWidth(),k[i]=l);if(f.right+=l,h.x2axis.show&&(f.top+=h.x2axis.getHeight()),this.title.show&&(f.top+=this.title.getHeight()),h.xaxis.show&&(f.bottom+=h.xaxis.getHeight()),this.options.gridDimensions&&a.isPlainObject(this.options.gridDimensions)){var m=parseInt(this.options.gridDimensions.width,10)||0,n=parseInt(this.options.gridDimensions.height,10)||0,o=(this._width-f.left-f.right-m)/2,p=(this._height-f.top-f.bottom-n)/2;p>=0&&o>=0&&(f.top+=p,f.bottom+=p,f.left+=o,f.right+=o)}var q=["top","bottom","left","right"];for(var i in q)null==this._gridPadding[q[i]]&&f[q[i]]>0?this._gridPadding[q[i]]=f[q[i]]:null==this._gridPadding[q[i]]&&(this._gridPadding[q[i]]=this._defaultGridPadding[q[i]]);var r=this._gridPadding;for("outsideGrid"===this.legend.placement&&(r={top:this.title.getHeight(),left:0,right:0,bottom:0},"s"===this.legend.location&&(r.left=this._gridPadding.left,r.right=this._gridPadding.right)),h.xaxis.pack({position:"absolute",bottom:this._gridPadding.bottom-h.xaxis.getHeight(),left:0,width:this._width},{min:this._gridPadding.left,max:this._width-this._gridPadding.right}),h.yaxis.pack({position:"absolute",top:0,left:this._gridPadding.left-h.yaxis.getWidth(),height:this._height},{min:this._height-this._gridPadding.bottom,max:this._gridPadding.top}),h.x2axis.pack({position:"absolute",top:this._gridPadding.top-h.x2axis.getHeight(),left:0,width:this._width},{min:this._gridPadding.left,max:this._width-this._gridPadding.right}),b=8;b>0;b--)h[j[b-1]].pack({position:"absolute",top:0,right:this._gridPadding.right-k[b-1]},{min:this._height-this._gridPadding.bottom,max:this._gridPadding.top});var s=(this._width-this._gridPadding.left-this._gridPadding.right)/2+this._gridPadding.left-h.yMidAxis.getWidth()/2;h.yMidAxis.pack({position:"absolute",top:0,left:s,zIndex:9,textAlign:"center"},{min:this._height-this._gridPadding.bottom, -max:this._gridPadding.top}),this.target.append(this.grid.createElement(this._gridPadding,this)),this.grid.draw();var t=this.series,u=t.length;for(b=0,d=u;d>b;b++)c=this.seriesStack[b],this.target.append(t[c].shadowCanvas.createElement(this._gridPadding,"jqplot-series-shadowCanvas",null,this)),t[c].shadowCanvas.setContext(),t[c].shadowCanvas._elem.data("seriesIndex",c);for(b=0,d=u;d>b;b++)c=this.seriesStack[b],this.target.append(t[c].canvas.createElement(this._gridPadding,"jqplot-series-canvas",null,this)),t[c].canvas.setContext(),t[c].canvas._elem.data("seriesIndex",c);this.target.append(this.eventCanvas.createElement(this._gridPadding,"jqplot-event-canvas",null,this)),this.eventCanvas.setContext(),this.eventCanvas._ctx.fillStyle="rgba(0,0,0,0)",this.eventCanvas._ctx.fillRect(0,0,this.eventCanvas._ctx.canvas.width,this.eventCanvas._ctx.canvas.height),this.bindCustomEvents(),this.legend.preDraw?(this.eventCanvas._elem.before(e),this.legend.pack(r),this.legend._elem?this.drawSeries({legendInfo:{location:this.legend.location,placement:this.legend.placement,width:this.legend.getWidth(),height:this.legend.getHeight(),xoffset:this.legend.xoffset,yoffset:this.legend.yoffset}}):this.drawSeries()):(this.drawSeries(),u&&a(t[u-1].canvas._elem).after(e),this.legend.pack(r));for(var b=0,d=a.jqplot.eventListenerHooks.length;d>b;b++)this.eventCanvas._elem.bind(a.jqplot.eventListenerHooks[b][0],{plot:this},a.jqplot.eventListenerHooks[b][1]);for(var b=0,d=this.eventListenerHooks.hooks.length;d>b;b++)this.eventCanvas._elem.bind(this.eventListenerHooks.hooks[b][0],{plot:this},this.eventListenerHooks.hooks[b][1]);var v=this.fillBetween;if("number"==typeof v.series1)v.fill&&v.series1!==v.series2&&v.series1x&&u>y&&"line"===t[x]._type&&"line"===t[y]._type)){w=!1;break}w=!0}v.fill&&w&&this.doFillBetweenLines()}for(var b=0,d=a.jqplot.postDrawHooks.length;d>b;b++)a.jqplot.postDrawHooks[b].call(this);for(var b=0,d=this.postDrawHooks.hooks.length;d>b;b++)this.postDrawHooks.hooks[b].apply(this,this.postDrawHooks.args[b]);this.target.is(":visible")&&(this._drawCount+=1);var A,B,C,D;for(b=0,d=u;d>b;b++)A=t[b],B=A.renderer,C=".jqplot-point-label.jqplot-series-"+b,B.animation&&B.animation._supported&&B.animation.show&&(this._drawCount<2||this.animateReplot)&&(D=this.target.find(C),D.stop(!0,!0).hide(),A.canvas._elem.stop(!0,!0).hide(),A.shadowCanvas._elem.stop(!0,!0).hide(),A.canvas._elem.jqplotEffect("blind",{mode:"show",direction:B.animation.direction},B.animation.speed),A.shadowCanvas._elem.jqplotEffect("blind",{mode:"show",direction:B.animation.direction},B.animation.speed),D.fadeIn(.8*B.animation.speed));D=null,this.target.trigger("jqplotPostDraw",[this])}},g.prototype.doFillBetweenLines=function(){function a(a,e){var f=c[a],g=c[e];if(g.renderer.smooth)var h=g.renderer._smoothedData.slice(0).reverse();else var h=g.gridData.slice(0).reverse();if(f.renderer.smooth)var i=f.renderer._smoothedData.concat(h);else var i=f.gridData.concat(h);var j=null!==b.color?b.color:c[d].fillColor,k=null!==b.baseSeries?b.baseSeries:a,l=c[k].renderer.shapeRenderer,m={fillStyle:j,fill:!0,closePath:!0};l.draw(f.shadowCanvas._ctx,i,m)}var b=this.fillBetween,c=this.series,d=b.series1,e=b.series2,f=0,g=0;if("number"==typeof d&&"number"==typeof e)f=e>d?d:e,g=e>d?e:d,a(f,g);else for(var h=0;hd[h]?e[h]:d[h],a(f,g)},this.bindCustomEvents=function(){this.eventCanvas._elem.bind("click",{plot:this},this.onClick),this.eventCanvas._elem.bind("dblclick",{plot:this},this.onDblClick),this.eventCanvas._elem.bind("mousedown",{plot:this},this.onMouseDown),this.eventCanvas._elem.bind("mousemove",{plot:this},this.onMouseMove),this.eventCanvas._elem.bind("mouseenter",{plot:this},this.onMouseEnter),this.eventCanvas._elem.bind("mouseleave",{plot:this},this.onMouseLeave),this.captureRightClick?(this.eventCanvas._elem.bind("mouseup",{plot:this},this.onRightClick),this.eventCanvas._elem.get(0).oncontextmenu=function(){return!1}):this.eventCanvas._elem.bind("mouseup",{plot:this},this.onMouseUp)},this.onClick=function(b){var c=i(b),d=b.data.plot,e=j(c.gridPos,d),f=a.Event("jqplotClick");f.pageX=b.pageX,f.pageY=b.pageY,a(this).trigger(f,[c.gridPos,c.dataPos,e,d])},this.onDblClick=function(b){var c=i(b),d=b.data.plot,e=j(c.gridPos,d),f=a.Event("jqplotDblClick");f.pageX=b.pageX,f.pageY=b.pageY,a(this).trigger(f,[c.gridPos,c.dataPos,e,d])},this.onMouseDown=function(b){var c=i(b),d=b.data.plot,e=j(c.gridPos,d),f=a.Event("jqplotMouseDown");f.pageX=b.pageX,f.pageY=b.pageY,a(this).trigger(f,[c.gridPos,c.dataPos,e,d])},this.onMouseUp=function(b){var c=i(b),d=a.Event("jqplotMouseUp");d.pageX=b.pageX,d.pageY=b.pageY,a(this).trigger(d,[c.gridPos,c.dataPos,null,b.data.plot])},this.onRightClick=function(b){var c=i(b),d=b.data.plot,e=j(c.gridPos,d);if(d.captureRightClick)if(3==b.which){var f=a.Event("jqplotRightClick");f.pageX=b.pageX,f.pageY=b.pageY,a(this).trigger(f,[c.gridPos,c.dataPos,e,d])}else{var f=a.Event("jqplotMouseUp");f.pageX=b.pageX,f.pageY=b.pageY,a(this).trigger(f,[c.gridPos,c.dataPos,e,d])}},this.onMouseMove=function(b){var c=i(b),d=b.data.plot,e=j(c.gridPos,d),f=a.Event("jqplotMouseMove");f.pageX=b.pageX,f.pageY=b.pageY,a(this).trigger(f,[c.gridPos,c.dataPos,e,d])},this.onMouseEnter=function(b){var c=i(b),d=b.data.plot,e=a.Event("jqplotMouseEnter");e.pageX=b.pageX,e.pageY=b.pageY,e.relatedTarget=b.relatedTarget,a(this).trigger(e,[c.gridPos,c.dataPos,null,d])},this.onMouseLeave=function(b){var c=i(b),d=b.data.plot,e=a.Event("jqplotMouseLeave");e.pageX=b.pageX,e.pageY=b.pageY,e.relatedTarget=b.relatedTarget,a(this).trigger(e,[c.gridPos,c.dataPos,null,d])},this.drawSeries=function(b,c){var d,e,f;if(c="number"==typeof b&&null==c?b:c,b="object"==typeof b?b:{},c!=F)e=this.series[c],f=e.shadowCanvas._ctx,f.clearRect(0,0,f.canvas.width,f.canvas.height),e.drawShadow(f,b,this),f=e.canvas._ctx,f.clearRect(0,0,f.canvas.width,f.canvas.height),e.draw(f,b,this),e.renderer.constructor==a.jqplot.BezierCurveRenderer&&cn;n++)l.push(a[n][1]),m.push(a[n][0]);for(var p,q,r,s,t=a.length-1,u=1,v=a.length;v>u;u++){for(var w=[],x=[],y=0;2>y;y++){var n=u-1+y;0==n||n==t?w[y]=Math.pow(10,10):l[n+1]-l[n]==0||l[n]-l[n-1]==0?w[y]=0:(m[n+1]-m[n])/(l[n+1]-l[n])+(m[n]-m[n-1])/(l[n]-l[n-1])==0?w[y]=0:(l[n+1]-l[n])*(l[n]-l[n-1])<0?w[y]=0:w[y]=2/(b(m[n+1],m[n])/(l[n+1]-l[n])+b(m[n],m[n-1])/(l[n]-l[n-1]))}1==u?w[0]=1.5*(l[1]-l[0])/b(m[1],m[0])-w[1]/2:u==t&&(w[1]=1.5*(l[t]-l[t-1])/b(m[t],m[t-1])-w[0]/2),x[0]=-2*(w[1]+2*w[0])/b(m[u],m[u-1])+6*(l[u]-l[u-1])/Math.pow(b(m[u],m[u-1]),2),x[1]=2*(2*w[1]+w[0])/b(m[u],m[u-1])-6*(l[u]-l[u-1])/Math.pow(b(m[u],m[u-1]),2),s=1/6*(x[1]-x[0])/b(m[u],m[u-1]),r=.5*(m[u]*x[0]-m[u-1]*x[1])/b(m[u],m[u-1]),q=(l[u]-l[u-1]-r*(Math.pow(m[u],2)-Math.pow(m[u-1],2))-s*(Math.pow(m[u],3)-Math.pow(m[u-1],3)))/b(m[u],m[u-1]),p=l[u-1]-q*m[u-1]-r*Math.pow(m[u-1],2)-s*Math.pow(m[u-1],3);for(var z,A,B=(m[u]-m[u-1])/g,y=0,o=g;o>y;y++)z=[],A=m[u-1]+y*B,z.push(A),z.push(p+q*A+r*Math.pow(A,2)+s*Math.pow(A,3)),j.push(z),k.push([e(z[0]),f(z[1])])}return j.push(a[n]),k.push([e(a[n][0]),f(a[n][1])]),[j,k]}function k(a){var b,c,d,e,f,g,j,k,l,m,n,o,p,q,r,s,t,u,v=this.renderer.smooth,w=this.renderer.tension,x=this.canvas.getWidth(),y=this._xaxis.series_p2u,z=this._yaxis.series_p2u,A=null,B=null,C=null,D=null,E=null,F=null,G=null,H=a.length/x,I=[],J=[];A=isNaN(parseFloat(v))?h(H,.5):parseFloat(v),isNaN(parseFloat(w))||(w=parseFloat(w));for(var K=0,L=a.length-1;L>K;K++)for(null===w?(E=Math.abs((a[K+1][1]-a[K][1])/(a[K+1][0]-a[K][0])),q=.3,r=.6,s=(r-q)/2,t=2.5,u=-1.4,G=E/t+u,C=s*i(G)-s*i(u)+q,K>0&&(F=Math.abs((a[K][1]-a[K-1][1])/(a[K][0]-a[K-1][0]))),G=F/t+u,D=s*i(G)-s*i(u)+q,B=(C+D)/2):B=w,b=0;A>b;b++)c=b/A,d=(1+2*c)*Math.pow(1-c,2),e=c*Math.pow(1-c,2),f=Math.pow(c,2)*(3-2*c),g=Math.pow(c,2)*(c-1),a[K-1]?(j=B*(a[K+1][0]-a[K-1][0]),k=B*(a[K+1][1]-a[K-1][1])):(j=B*(a[K+1][0]-a[K][0]),k=B*(a[K+1][1]-a[K][1])),a[K+2]?(l=B*(a[K+2][0]-a[K][0]),m=B*(a[K+2][1]-a[K][1])):(l=B*(a[K+1][0]-a[K][0]),m=B*(a[K+1][1]-a[K][1])),n=d*a[K][0]+f*a[K+1][0]+e*j+g*l,o=d*a[K][1]+f*a[K+1][1]+e*k+g*m,p=[n,o],I.push(p),J.push([y(n),z(o)]);return I.push(a[L]),J.push([y(a[L][0]),z(a[L][1])]),[I,J]}function l(b,c,d){for(var e=0;e=10)b="%d";else if(a>1)b=a===parseInt(a,10)?"%d":"%.1f";else{var c=-Math.floor(Math.log(a)/Math.LN10);b="%."+c+"f"}return b}function v(b,c,d){for(var e,f,g,h,i,j,k,l=Math.floor(d/2),m=Math.ceil(1.5*d),n=Number.MAX_VALUE,o=c-b,p=a.jqplot.getSignificantFigures,q=0,r=m-l+1;r>q;q++)j=l+q,e=o/(j-1),f=p(e),e=Math.abs(d-j)+f.digitsRight,n>e?(n=e,g=j,k=f.digitsRight):e===n&&f.digitsRighte?f>5?10*e:f>2?5*e:f>1?2*e:e:f>5?10*e:f>4?5*e:f>3?4*e:f>2?3*e:f>1?2*e:e}function x(a,b){b=b||1;var c,d=Math.floor(Math.log(a)/Math.LN10),e=Math.pow(10,d),f=a/e;return f/=b,c=.38>=f?.1:1.6>=f?.2:4>=f?.5:8>=f?1:16>=f?2:5,c*e}function y(a,b){var c,d,e=Math.floor(Math.log(a)/Math.LN10),f=Math.pow(10,e),g=a/f;return g/=b,d=.38>=g?.1:1.6>=g?.2:4>=g?.5:8>=g?1:16>=g?2:5,c=d*f,[c,d,f]}function z(a,b){return a-b}function A(a){if(null==a||"object"!=typeof a)return a;var b=new a.constructor;for(var c in a)b[c]=A(a[c]);return b}function B(a,b){if(null!=b&&"object"==typeof b)for(var c in b)"highlightColors"==c&&(a[c]=A(b[c])),null!=b[c]&&"object"==typeof b[c]?(a.hasOwnProperty(c)||(a[c]={}),B(a[c],b[c])):a[c]=b[c]}function C(a,b){if(b.indexOf)return b.indexOf(a);for(var c=0,d=b.length;d>c;c++)if(b[c]===a)return c;return-1}function D(a){return null===a?"[object Null]":Object.prototype.toString.call(a)}function E(b,c,d,e){return a.isPlainObject(b)?b:(b={effect:b},c===F&&(c={}),a.isFunction(c)&&(e=c,d=null,c={}),("number"===a.type(c)||a.fx.speeds[c])&&(e=d,d=c,c={}),a.isFunction(d)&&(e=d,d=null),c&&a.extend(b,c),d=d||c.duration,b.duration=a.fx.off?0:"number"==typeof d?d:d in a.fx.speeds?a.fx.speeds[d]:a.fx.speeds._default,b.complete=e||c.complete,b)}var F;a.fn.emptyForce=function(){for(var b,c=0;null!=(b=a(this)[c]);c++){if(1===b.nodeType&&a.cleanData(b.getElementsByTagName("*")),a.jqplot.use_excanvas)b.outerHTML="";else for(;b.firstChild;)b.removeChild(b.firstChild);b=null}return a(this)},a.fn.removeChildForce=function(a){for(;a.firstChild;)this.removeChildForce(a.firstChild),a.removeChild(a.firstChild)},a.fn.jqplot=function(){for(var b=[],c=[],d=0,e=arguments.length;e>d;d++)a.isArray(arguments[d])?b.push(arguments[d]):a.isPlainObject(arguments[d])&&c.push(arguments[d]);return this.each(function(d){var e,f,g,h,i=a(this),j=b.length,k=c.length;g=j>d?b[d]:j?b[j-1]:null,h=k>d?c[d]:k?c[k-1]:null,e=i.attr("id"),e===F&&(e="jqplot_target_"+a.jqplot.targetCounter++,i.attr("id",e)),f=a.jqplot(e,g,h),i.data("jqplot",f)})},a.jqplot=function(b,c,d){var e=null,f=null;3===arguments.length?(e=c,f=d):2===arguments.length&&(a.isArray(c)?e=c:a.isPlainObject(c)&&(f=c)),null===e&&null!==f&&f.data&&(e=f.data);var h=new g;if(a("#"+b).removeClass("jqplot-error"),!a.jqplot.config.catchErrors)return h.init(b,e,f),h.draw(),h.themeEngine.init.call(h),h;try{return h.init(b,e,f),h.draw(),h.themeEngine.init.call(h),h}catch(i){var j=a.jqplot.config.errorMessage||i.message;a("#"+b).append('
    '+j+"
    "),a("#"+b).addClass("jqplot-error"),document.getElementById(b).style.background=a.jqplot.config.errorBackground,document.getElementById(b).style.border=a.jqplot.config.errorBorder,document.getElementById(b).style.fontFamily=a.jqplot.config.errorFontFamily,document.getElementById(b).style.fontSize=a.jqplot.config.errorFontSize,document.getElementById(b).style.fontStyle=a.jqplot.config.errorFontStyle,document.getElementById(b).style.fontWeight=a.jqplot.config.errorFontWeight}},a.jqplot.version="1.0.9",a.jqplot.revision="d96a669",a.jqplot.targetCounter=1,a.jqplot.CanvasManager=function(){"undefined"==typeof a.jqplot.CanvasManager.canvases&&(a.jqplot.CanvasManager.canvases=[],a.jqplot.CanvasManager.free=[]);var b=[];this.getCanvas=function(){var c,d=!0;if(!a.jqplot.use_excanvas)for(var e=0,f=a.jqplot.CanvasManager.canvases.length;f>e;e++)if(a.jqplot.CanvasManager.free[e]===!0){d=!1,c=a.jqplot.CanvasManager.canvases[e],a.jqplot.CanvasManager.free[e]=!1,b.push(e);break}return d&&(c=document.createElement("canvas"),b.push(a.jqplot.CanvasManager.canvases.length),a.jqplot.CanvasManager.canvases.push(c),a.jqplot.CanvasManager.free.push(!1)),c},this.initCanvas=function(b){if(a.jqplot.use_excanvas)return window.G_vmlCanvasManager.initElement(b);var c=b.getContext("2d"),d=1;window.devicePixelRatio>1&&(c.webkitBackingStorePixelRatio===F||c.webkitBackingStorePixelRatio<2)&&(d=window.devicePixelRatio);var e=b.width,f=b.height;return b.width=d*b.width,b.height=d*b.height,b.style.width=e+"px",b.style.height=f+"px",c.save(),c.scale(d,d),b},this.freeAllCanvases=function(){for(var a=0,c=b.length;c>a;a++)this.freeCanvas(b[a]);b=[]},this.freeCanvas=function(b){if(a.jqplot.use_excanvas&&window.G_vmlCanvasManager.uninitElement!==F)window.G_vmlCanvasManager.uninitElement(a.jqplot.CanvasManager.canvases[b]),a.jqplot.CanvasManager.canvases[b]=null;else{var c=a.jqplot.CanvasManager.canvases[b];c.getContext("2d").clearRect(0,0,c.width,c.height),a(c).unbind().removeAttr("class").removeAttr("style"),a(c).css({left:"",top:"",position:""}),c.width=0,c.height=0,a.jqplot.CanvasManager.free[b]=!0}}},a.jqplot.log=function(){window.console&&window.console.log.apply(window.console,arguments)},a.jqplot.config={addDomReference:!1,enablePlugins:!1,defaultHeight:300,defaultWidth:400,UTCAdjust:!1,timezoneOffset:new Date(6e4*(new Date).getTimezoneOffset()),errorMessage:"",errorBackground:"",errorBorder:"",errorFontFamily:"",errorFontSize:"",errorFontStyle:"",errorFontWeight:"",catchErrors:!1,defaultTickFormatString:"%.1f",defaultColors:["#4bb2c5","#EAA228","#c5b47f","#579575","#839557","#958c12","#953579","#4b5de4","#d8b83f","#ff5800","#0085cc","#c747a3","#cddf54","#FBD178","#26B4E3","#bd70c7"],defaultNegativeColors:["#498991","#C08840","#9F9274","#546D61","#646C4A","#6F6621","#6E3F5F","#4F64B0","#A89050","#C45923","#187399","#945381","#959E5C","#C7AF7B","#478396","#907294"],dashLength:4,gapLength:4,dotGapLength:2.5,srcLocation:"jqplot/src/",pluginLocation:"jqplot/src/plugins/"},a.jqplot.arrayMax=function(a){return Math.max.apply(Math,a)},a.jqplot.arrayMin=function(a){return Math.min.apply(Math,a)},a.jqplot.enablePlugins=a.jqplot.config.enablePlugins,a.jqplot.support_canvas=function(){return"undefined"==typeof a.jqplot.support_canvas.result&&(a.jqplot.support_canvas.result=!!document.createElement("canvas").getContext),a.jqplot.support_canvas.result},a.jqplot.support_canvas_text=function(){return"undefined"==typeof a.jqplot.support_canvas_text.result&&(window.G_vmlCanvasManager!==F&&window.G_vmlCanvasManager._version>887?a.jqplot.support_canvas_text.result=!0:a.jqplot.support_canvas_text.result=!(!document.createElement("canvas").getContext||"function"!=typeof document.createElement("canvas").getContext("2d").fillText)),a.jqplot.support_canvas_text.result},a.jqplot.use_excanvas=a.support.boxModel&&a.support.objectAll&&$support.leadingWhitespace||a.jqplot.support_canvas()?!1:!0,a.jqplot.preInitHooks=[],a.jqplot.postInitHooks=[],a.jqplot.preParseOptionsHooks=[],a.jqplot.postParseOptionsHooks=[],a.jqplot.preDrawHooks=[],a.jqplot.postDrawHooks=[],a.jqplot.preDrawSeriesHooks=[],a.jqplot.postDrawSeriesHooks=[],a.jqplot.preDrawLegendHooks=[],a.jqplot.addLegendRowHooks=[],a.jqplot.preSeriesInitHooks=[],a.jqplot.postSeriesInitHooks=[],a.jqplot.preParseSeriesOptionsHooks=[],a.jqplot.postParseSeriesOptionsHooks=[],a.jqplot.eventListenerHooks=[],a.jqplot.preDrawSeriesShadowHooks=[],a.jqplot.postDrawSeriesShadowHooks=[],a.jqplot.ElemContainer=function(){this._elem,this._plotWidth,this._plotHeight,this._plotDimensions={height:null,width:null}},a.jqplot.ElemContainer.prototype.createElement=function(b,c,d,e,f){this._offsets=c;var g=d||"jqplot",h=document.createElement(b);return this._elem=a(h),this._elem.addClass(g),this._elem.css(e),this._elem.attr(f),h=null,this._elem},a.jqplot.ElemContainer.prototype.getWidth=function(){return this._elem?this._elem.outerWidth(!0):null},a.jqplot.ElemContainer.prototype.getHeight=function(){return this._elem?this._elem.outerHeight(!0):null},a.jqplot.ElemContainer.prototype.getPosition=function(){return this._elem?this._elem.position():{top:null,left:null,bottom:null,right:null}},a.jqplot.ElemContainer.prototype.getTop=function(){return this.getPosition().top},a.jqplot.ElemContainer.prototype.getLeft=function(){return this.getPosition().left},a.jqplot.ElemContainer.prototype.getBottom=function(){return this._elem.css("bottom")},a.jqplot.ElemContainer.prototype.getRight=function(){return this._elem.css("right")},b.prototype=new a.jqplot.ElemContainer,b.prototype.constructor=b,b.prototype.init=function(){a.isFunction(this.renderer)&&(this.renderer=new this.renderer),this.tickOptions.axis=this.name,null==this.tickOptions.showMark&&(this.tickOptions.showMark=this.showTicks),null==this.tickOptions.showMark&&(this.tickOptions.showMark=this.showTickMarks),null==this.tickOptions.showLabel&&(this.tickOptions.showLabel=this.showTicks),null==this.label||""==this.label?this.showLabel=!1:this.labelOptions.label=this.label,0==this.showLabel&&(this.labelOptions.show=!1),0==this.pad&&(this.pad=1),0==this.padMax&&(this.padMax=1),0==this.padMin&&(this.padMin=1),null==this.padMax&&(this.padMax=(this.pad-1)/2+1),null==this.padMin&&(this.padMin=(this.pad-1)/2+1),this.pad=this.padMax+this.padMin-1,(null!=this.min||null!=this.max)&&(this.autoscale=!1),null==this.syncTicks&&this.name.indexOf("y")>-1?this.syncTicks=!0:null==this.syncTicks&&(this.syncTicks=!1),this.renderer.init.call(this,this.rendererOptions)},b.prototype.draw=function(a,b){return this.__ticks&&(this.__ticks=null),this.renderer.draw.call(this,a,b)},b.prototype.set=function(){this.renderer.set.call(this)},b.prototype.pack=function(a,b){this.show&&this.renderer.pack.call(this,a,b),null==this._min&&(this._min=this.min,this._max=this.max,this._tickInterval=this.tickInterval,this._numberTicks=this.numberTicks,this.__ticks=this._ticks)},b.prototype.reset=function(){this.renderer.reset.call(this)},b.prototype.resetScale=function(b){a.extend(!0,this,{min:null,max:null,numberTicks:null,tickInterval:null,_ticks:[],ticks:[]},b),this.resetDataBounds()},b.prototype.resetDataBounds=function(){var b=this._dataBounds;b.min=null,b.max=null;for(var c,d,e,f=this.show?!0:!1,g=0;gj;j++)"xaxis"==this.name||"x2axis"==this.name?((null!=e[j][0]&&e[j][0]b.max||null==b.max)&&(b.max=e[j][0])):((null!=e[j][h]&&e[j][h]b.max||null==b.max)&&(b.max=e[j][i]));f&&d.renderer.constructor!==a.jqplot.BarRenderer?f=!1:f&&this._options.hasOwnProperty("forceTickAt0")&&0==this._options.forceTickAt0?f=!1:f&&d.renderer.constructor===a.jqplot.BarRenderer&&("vertical"==d.barDirection&&"xaxis"!=this.name&&"x2axis"!=this.name?(null!=this._options.pad||null!=this._options.padMin)&&(f=!1):"horizontal"!=d.barDirection||"xaxis"!=this.name&&"x2axis"!=this.name||(null!=this._options.pad||null!=this._options.padMin)&&(f=!1))}f&&this.renderer.constructor===a.jqplot.LinearAxisRenderer&&b.min>=0&&(this.padMin=1,this.forceTickAt0=!0)},c.prototype=new a.jqplot.ElemContainer,c.prototype.constructor=c,c.prototype.setOptions=function(b){if(a.extend(!0,this,b),"inside"==this.placement&&(this.placement="insideGrid"),this.xoffset>0){if("insideGrid"==this.placement)switch(this.location){case"nw":case"w":case"sw":null==this.marginLeft&&(this.marginLeft=this.xoffset+"px"),this.marginRight="0px";break;case"ne":case"e":case"se":default:null==this.marginRight&&(this.marginRight=this.xoffset+"px"),this.marginLeft="0px"}else if("outside"==this.placement)switch(this.location){case"nw":case"w":case"sw":null==this.marginRight&&(this.marginRight=this.xoffset+"px"),this.marginLeft="0px";break;case"ne":case"e":case"se":default:null==this.marginLeft&&(this.marginLeft=this.xoffset+"px"),this.marginRight="0px"}this.xoffset=0}if(this.yoffset>0){if("outside"==this.placement)switch(this.location){case"sw":case"s":case"se":null==this.marginTop&&(this.marginTop=this.yoffset+"px"),this.marginBottom="0px";break;case"ne":case"n":case"nw":default:null==this.marginBottom&&(this.marginBottom=this.yoffset+"px"),this.marginTop="0px"}else if("insideGrid"==this.placement)switch(this.location){case"sw":case"s":case"se":null==this.marginBottom&&(this.marginBottom=this.yoffset+"px"),this.marginTop="0px";break;case"ne":case"n":case"nw":default:null==this.marginTop&&(this.marginTop=this.yoffset+"px"),this.marginBottom="0px"}this.yoffset=0}},c.prototype.init=function(){a.isFunction(this.renderer)&&(this.renderer=new this.renderer),this.renderer.init.call(this,this.rendererOptions)},c.prototype.draw=function(b,c){for(var d=0;de;e++)if(this.breakOnNull)h.push(g[e]);else{if(null==g[e]||null==g[e][0]||null==g[e][1])continue;h.push(g[e])}if(this.data=h,this.color||(this.color=d.colorGenerator.get(this.index)),this.negativeColor||(this.negativeColor=d.negativeColorGenerator.get(this.index)),this.fillColor||(this.fillColor=this.color),this.fillAlpha){var i=a.jqplot.normalize2rgb(this.fillColor),i=a.jqplot.getColorComponents(i);this.fillColor="rgba("+i[0]+","+i[1]+","+i[2]+","+this.fillAlpha+")"}a.isFunction(this.renderer)&&(this.renderer=new this.renderer),this.renderer.init.call(this,this.rendererOptions,d),this.markerRenderer=new this.markerRenderer,this.markerOptions.color||(this.markerOptions.color=this.color),null==this.markerOptions.show&&(this.markerOptions.show=this.showMarker),this.showMarker=this.markerOptions.show,this.markerRenderer.init(this.markerOptions)},e.prototype.draw=function(b,c,d){var e=c==F?{}:c;b=b==F?this.canvas._ctx:b;var f,g,h;for(f=0;fd;d++)this.hooks[d]==a&&(c=!0);c||(this.hooks.push(a),this.args.push(b))},a.jqplot.HooksManager.prototype.add=function(a,b){b=b||[],this.hooks.push(a),this.args.push(b)},a.jqplot.EventListenerManager=function(){this.hooks=[]},a.jqplot.EventListenerManager.prototype.addOnce=function(a,b){for(var c,d,e=!1,d=0,f=this.hooks.length;f>d;d++)c=this.hooks[d],c[0]==a&&c[1]==b&&(e=!0);e||this.hooks.push([a,b])},a.jqplot.EventListenerManager.prototype.add=function(a,b){this.hooks.push([a,b])};var G=["yMidAxis","xaxis","yaxis","x2axis","y2axis","y3axis","y4axis","y5axis","y6axis","y7axis","y8axis","y9axis"];a.jqplot.computeHighlightColors=function(b){var c;if(a.isArray(b)){c=[];for(var d=0;dh;h++)f[h]=g>660?.85*f[h]:.73*f[h]+90,f[h]=parseInt(f[h],10),f[h]>255?255:f[h];f[3]=.3+.35*e[3],c.push("rgba("+f[0]+","+f[1]+","+f[2]+","+f[3]+")")}}else{for(var e=a.jqplot.getColorComponents(b),f=[e[0],e[1],e[2]],g=f[0]+f[1]+f[2],h=0;3>h;h++)f[h]=g>660?.85*f[h]:.73*f[h]+90,f[h]=parseInt(f[h],10),f[h]>255?255:f[h];f[3]=.3+.35*e[3],c="rgba("+f[0]+","+f[1]+","+f[2]+","+f[3]+")"}return c},a.jqplot.ColorGenerator=function(b){b=b||a.jqplot.config.defaultColors;var c=0;this.next=function(){return c0?b[c--]:(c=b.length-1,b[c])},this.get=function(a){var c=a-b.length*Math.floor(a/b.length);return b[c]},this.setColors=function(a){b=a},this.reset=function(){c=0},this.getIndex=function(){return c},this.setIndex=function(a){c=a}},a.jqplot.hex2rgb=function(a,b){a=a.replace("#",""),3==a.length&&(a=a.charAt(0)+a.charAt(0)+a.charAt(1)+a.charAt(1)+a.charAt(2)+a.charAt(2));var c;return c="rgba("+parseInt(a.slice(0,2),16)+", "+parseInt(a.slice(2,4),16)+", "+parseInt(a.slice(4,6),16),b&&(c+=", "+b),c+=")"},a.jqplot.rgb2hex=function(a){for(var b=/rgba?\( *([0-9]{1,3}\.?[0-9]*%?) *, *([0-9]{1,3}\.?[0-9]*%?) *, *([0-9]{1,3}\.?[0-9]*%?) *(?:, *[0-9.]*)?\)/,c=a.match(b),d="#",e=1;4>e;e++){var f;-1!=c[e].search(/%/)?(f=parseInt(255*c[e]/100,10).toString(16),1==f.length&&(f="0"+f)):(f=parseInt(c[e],10).toString(16),1==f.length&&(f="0"+f)),d+=f}return d},a.jqplot.normalize2rgb=function(b,c){if(-1!=b.search(/^ *rgba?\(/))return b;if(-1!=b.search(/^ *#?[0-9a-fA-F]?[0-9a-fA-F]/))return a.jqplot.hex2rgb(b,c);throw new Error("Invalid color spec")},a.jqplot.getColorComponents=function(b){b=a.jqplot.colorKeywordMap[b]||b;for(var c=a.jqplot.normalize2rgb(b),d=/rgba?\( *([0-9]{1,3}\.?[0-9]*%?) *, *([0-9]{1,3}\.?[0-9]*%?) *, *([0-9]{1,3}\.?[0-9]*%?) *,? *([0-9.]* *)?\)/,e=c.match(d),f=[],g=1;4>g;g++)-1!=e[g].search(/%/)?f[g-1]=parseInt(255*e[g]/100,10):f[g-1]=parseInt(e[g],10);return f[3]=parseFloat(e[4])?parseFloat(e[4]):1,f},a.jqplot.colorKeywordMap={aliceblue:"rgb(240, 248, 255)",antiquewhite:"rgb(250, 235, 215)",aqua:"rgb( 0, 255, 255)",aquamarine:"rgb(127, 255, 212)",azure:"rgb(240, 255, 255)",beige:"rgb(245, 245, 220)",bisque:"rgb(255, 228, 196)",black:"rgb( 0, 0, 0)",blanchedalmond:"rgb(255, 235, 205)",blue:"rgb( 0, 0, 255)",blueviolet:"rgb(138, 43, 226)",brown:"rgb(165, 42, 42)",burlywood:"rgb(222, 184, 135)",cadetblue:"rgb( 95, 158, 160)",chartreuse:"rgb(127, 255, 0)",chocolate:"rgb(210, 105, 30)",coral:"rgb(255, 127, 80)",cornflowerblue:"rgb(100, 149, 237)",cornsilk:"rgb(255, 248, 220)",crimson:"rgb(220, 20, 60)",cyan:"rgb( 0, 255, 255)",darkblue:"rgb( 0, 0, 139)",darkcyan:"rgb( 0, 139, 139)",darkgoldenrod:"rgb(184, 134, 11)",darkgray:"rgb(169, 169, 169)",darkgreen:"rgb( 0, 100, 0)",darkgrey:"rgb(169, 169, 169)",darkkhaki:"rgb(189, 183, 107)",darkmagenta:"rgb(139, 0, 139)",darkolivegreen:"rgb( 85, 107, 47)",darkorange:"rgb(255, 140, 0)",darkorchid:"rgb(153, 50, 204)",darkred:"rgb(139, 0, 0)",darksalmon:"rgb(233, 150, 122)",darkseagreen:"rgb(143, 188, 143)",darkslateblue:"rgb( 72, 61, 139)",darkslategray:"rgb( 47, 79, 79)",darkslategrey:"rgb( 47, 79, 79)",darkturquoise:"rgb( 0, 206, 209)",darkviolet:"rgb(148, 0, 211)",deeppink:"rgb(255, 20, 147)",deepskyblue:"rgb( 0, 191, 255)",dimgray:"rgb(105, 105, 105)",dimgrey:"rgb(105, 105, 105)",dodgerblue:"rgb( 30, 144, 255)",firebrick:"rgb(178, 34, 34)",floralwhite:"rgb(255, 250, 240)",forestgreen:"rgb( 34, 139, 34)",fuchsia:"rgb(255, 0, 255)",gainsboro:"rgb(220, 220, 220)",ghostwhite:"rgb(248, 248, 255)",gold:"rgb(255, 215, 0)",goldenrod:"rgb(218, 165, 32)",gray:"rgb(128, 128, 128)",grey:"rgb(128, 128, 128)",green:"rgb( 0, 128, 0)",greenyellow:"rgb(173, 255, 47)",honeydew:"rgb(240, 255, 240)",hotpink:"rgb(255, 105, 180)",indianred:"rgb(205, 92, 92)",indigo:"rgb( 75, 0, 130)",ivory:"rgb(255, 255, 240)",khaki:"rgb(240, 230, 140)",lavender:"rgb(230, 230, 250)",lavenderblush:"rgb(255, 240, 245)",lawngreen:"rgb(124, 252, 0)",lemonchiffon:"rgb(255, 250, 205)",lightblue:"rgb(173, 216, 230)",lightcoral:"rgb(240, 128, 128)",lightcyan:"rgb(224, 255, 255)",lightgoldenrodyellow:"rgb(250, 250, 210)",lightgray:"rgb(211, 211, 211)",lightgreen:"rgb(144, 238, 144)",lightgrey:"rgb(211, 211, 211)",lightpink:"rgb(255, 182, 193)",lightsalmon:"rgb(255, 160, 122)",lightseagreen:"rgb( 32, 178, 170)",lightskyblue:"rgb(135, 206, 250)",lightslategray:"rgb(119, 136, 153)",lightslategrey:"rgb(119, 136, 153)",lightsteelblue:"rgb(176, 196, 222)",lightyellow:"rgb(255, 255, 224)",lime:"rgb( 0, 255, 0)",limegreen:"rgb( 50, 205, 50)",linen:"rgb(250, 240, 230)",magenta:"rgb(255, 0, 255)",maroon:"rgb(128, 0, 0)",mediumaquamarine:"rgb(102, 205, 170)",mediumblue:"rgb( 0, 0, 205)",mediumorchid:"rgb(186, 85, 211)",mediumpurple:"rgb(147, 112, 219)",mediumseagreen:"rgb( 60, 179, 113)",mediumslateblue:"rgb(123, 104, 238)",mediumspringgreen:"rgb( 0, 250, 154)",mediumturquoise:"rgb( 72, 209, 204)",mediumvioletred:"rgb(199, 21, 133)",midnightblue:"rgb( 25, 25, 112)",mintcream:"rgb(245, 255, 250)",mistyrose:"rgb(255, 228, 225)",moccasin:"rgb(255, 228, 181)",navajowhite:"rgb(255, 222, 173)",navy:"rgb( 0, 0, 128)",oldlace:"rgb(253, 245, 230)",olive:"rgb(128, 128, 0)",olivedrab:"rgb(107, 142, 35)",orange:"rgb(255, 165, 0)",orangered:"rgb(255, 69, 0)",orchid:"rgb(218, 112, 214)",palegoldenrod:"rgb(238, 232, 170)",palegreen:"rgb(152, 251, 152)",paleturquoise:"rgb(175, 238, 238)",palevioletred:"rgb(219, 112, 147)",papayawhip:"rgb(255, 239, 213)",peachpuff:"rgb(255, 218, 185)",peru:"rgb(205, 133, 63)",pink:"rgb(255, 192, 203)",plum:"rgb(221, 160, 221)",powderblue:"rgb(176, 224, 230)",purple:"rgb(128, 0, 128)",red:"rgb(255, 0, 0)",rosybrown:"rgb(188, 143, 143)",royalblue:"rgb( 65, 105, 225)",saddlebrown:"rgb(139, 69, 19)",salmon:"rgb(250, 128, 114)",sandybrown:"rgb(244, 164, 96)",seagreen:"rgb( 46, 139, 87)",seashell:"rgb(255, 245, 238)",sienna:"rgb(160, 82, 45)",silver:"rgb(192, 192, 192)",skyblue:"rgb(135, 206, 235)",slateblue:"rgb(106, 90, 205)",slategray:"rgb(112, 128, 144)",slategrey:"rgb(112, 128, 144)",snow:"rgb(255, 250, 250)",springgreen:"rgb( 0, 255, 127)",steelblue:"rgb( 70, 130, 180)",tan:"rgb(210, 180, 140)",teal:"rgb( 0, 128, 128)",thistle:"rgb(216, 191, 216)",tomato:"rgb(255, 99, 71)",turquoise:"rgb( 64, 224, 208)",violet:"rgb(238, 130, 238)",wheat:"rgb(245, 222, 179)",white:"rgb(255, 255, 255)",whitesmoke:"rgb(245, 245, 245)",yellow:"rgb(255, 255, 0)",yellowgreen:"rgb(154, 205, 50)"},a.jqplot.AxisLabelRenderer=function(b){a.jqplot.ElemContainer.call(this),this.axis,this.show=!0,this.label="",this.fontFamily=null,this.fontSize=null,this.textColor=null,this._elem,this.escapeHTML=!1,a.extend(!0,this,b)},a.jqplot.AxisLabelRenderer.prototype=new a.jqplot.ElemContainer,a.jqplot.AxisLabelRenderer.prototype.constructor=a.jqplot.AxisLabelRenderer,a.jqplot.AxisLabelRenderer.prototype.init=function(b){a.extend(!0,this,b)},a.jqplot.AxisLabelRenderer.prototype.draw=function(b,c){return this._elem&&(this._elem.emptyForce(),this._elem=null),this._elem=a('
    '),Number(this.label)&&this._elem.css("white-space","nowrap"),this.escapeHTML?this._elem.text(this.label):this._elem.html(this.label),this.fontFamily&&this._elem.css("font-family",this.fontFamily),this.fontSize&&this._elem.css("font-size",this.fontSize),this.textColor&&this._elem.css("color",this.textColor),this._elem},a.jqplot.AxisLabelRenderer.prototype.pack=function(){},a.jqplot.AxisTickRenderer=function(b){a.jqplot.ElemContainer.call(this),this.mark="outside",this.axis,this.showMark=!0,this.showGridline=!0,this.isMinorTick=!1,this.size=4,this.markSize=6,this.show=!0,this.showLabel=!0,this.label=null,this.value=null,this._styles={},this.formatter=a.jqplot.DefaultTickFormatter,this.prefix="",this.suffix="",this.formatString="",this.fontFamily,this.fontSize,this.textColor,this.escapeHTML=!1,this._elem,this._breakTick=!1,a.extend(!0,this,b)},a.jqplot.AxisTickRenderer.prototype.init=function(b){a.extend(!0,this,b)},a.jqplot.AxisTickRenderer.prototype=new a.jqplot.ElemContainer,a.jqplot.AxisTickRenderer.prototype.constructor=a.jqplot.AxisTickRenderer,a.jqplot.AxisTickRenderer.prototype.setTick=function(a,b,c){return this.value=a,this.axis=b,c&&(this.isMinorTick=!0),this},a.jqplot.AxisTickRenderer.prototype.draw=function(){null===this.label&&(this.label=this.prefix+this.formatter(this.formatString,this.value)+this.suffix);var b={position:"absolute"};Number(this.label)&&(b.whitSpace="nowrap"),this._elem&&(this._elem.emptyForce(),this._elem=null),this._elem=a(document.createElement("div")),this._elem.addClass("jqplot-"+this.axis+"-tick"),this.escapeHTML?this._elem.text(this.label):this._elem.html(this.label),this._elem.css(b);for(var c in this._styles)this._elem.css(c,this._styles[c]);return this.fontFamily&&this._elem.css("font-family",this.fontFamily),this.fontSize&&this._elem.css("font-size",this.fontSize),this.textColor&&this._elem.css("color",this.textColor),this._breakTick&&this._elem.addClass("jqplot-breakTick"),this._elem},a.jqplot.DefaultTickFormatter=function(b,c){return"number"==typeof c?(b||(b=a.jqplot.config.defaultTickFormatString),a.jqplot.sprintf(b,c)):String(c)},a.jqplot.PercentTickFormatter=function(b,c){return"number"==typeof c?(c=100*c,b||(b=a.jqplot.config.defaultTickFormatString),a.jqplot.sprintf(b,c)):String(c)},a.jqplot.AxisTickRenderer.prototype.pack=function(){},a.jqplot.CanvasGridRenderer=function(){this.shadowRenderer=new a.jqplot.ShadowRenderer},a.jqplot.CanvasGridRenderer.prototype.init=function(b){this._ctx,a.extend(!0,this,b);var c={lineJoin:"miter",lineCap:"round",fill:!1,isarc:!1,angle:this.shadowAngle,offset:this.shadowOffset,alpha:this.shadowAlpha,depth:this.shadowDepth,lineWidth:this.shadowWidth,closePath:!1,strokeStyle:this.shadowColor};this.renderer.shadowRenderer.init(c)},a.jqplot.CanvasGridRenderer.prototype.createElement=function(b){var c;this._elem&&(a.jqplot.use_excanvas&&window.G_vmlCanvasManager.uninitElement!==F&&(c=this._elem.get(0),window.G_vmlCanvasManager.uninitElement(c),c=null),this._elem.emptyForce(),this._elem=null),c=b.canvasManager.getCanvas();var d=this._plotDimensions.width,e=this._plotDimensions.height;return c.width=d,c.height=e,this._elem=a(c),this._elem.addClass("jqplot-grid-canvas"),this._elem.css({position:"absolute",left:0,top:0}),c=b.canvasManager.initCanvas(c),this._top=this._offsets.top,this._bottom=e-this._offsets.bottom,this._left=this._offsets.left,this._right=d-this._offsets.right,this._width=this._right-this._left,this._height=this._bottom-this._top,c=null,this._elem},a.jqplot.CanvasGridRenderer.prototype.draw=function(){function b(b,d,e,f,g){c.save(),g=g||{},(null==g.lineWidth||0!=g.lineWidth)&&(a.extend(!0,c,g),c.beginPath(),c.moveTo(b,d),c.lineTo(e,f),c.stroke(),c.restore())}this._ctx=this._elem.get(0).getContext("2d");var c=this._ctx,d=this._axes;c.save(),c.clearRect(0,0,this._plotDimensions.width,this._plotDimensions.height),c.fillStyle=this.backgroundColor||this.background,c.fillRect(this._left,this._top,this._width,this._height),c.save(),c.lineJoin="miter",c.lineCap="butt",c.lineWidth=this.gridLineWidth,c.strokeStyle=this.gridLineColor;for(var e,f,g,h,i=["xaxis","yaxis","x2axis","y2axis"],j=4;j>0;j--){var k=i[j-1],l=d[k],m=l._ticks,n=m.length;if(l.show){if(l.drawBaseline){var o={};switch(null!==l.baselineWidth&&(o.lineWidth=l.baselineWidth),null!==l.baselineColor&&(o.strokeStyle=l.baselineColor),k){case"xaxis":b(this._left,this._bottom,this._right,this._bottom,o);break;case"yaxis":b(this._left,this._bottom,this._left,this._top,o);break;case"x2axis":b(this._left,this._bottom,this._right,this._bottom,o);break;case"y2axis":b(this._right,this._bottom,this._right,this._top,o)}}for(var p=n;p>0;p--){var q=m[p-1];if(q.show){var r=Math.round(l.u2p(q.value))+.5;switch(k){case"xaxis":if(q.showGridline&&this.drawGridlines&&(!q.isMinorTick&&l.drawMajorGridlines||q.isMinorTick&&l.drawMinorGridlines)&&b(r,this._top,r,this._bottom),q.showMark&&q.mark&&(!q.isMinorTick&&l.drawMajorTickMarks||q.isMinorTick&&l.drawMinorTickMarks)){g=q.markSize,h=q.mark;var r=Math.round(l.u2p(q.value))+.5;switch(h){case"outside":e=this._bottom,f=this._bottom+g;break;case"inside":e=this._bottom-g,f=this._bottom;break;case"cross":e=this._bottom-g,f=this._bottom+g;break;default:e=this._bottom,f=this._bottom+g}this.shadow&&this.renderer.shadowRenderer.draw(c,[[r,e],[r,f]],{lineCap:"butt",lineWidth:this.gridLineWidth,offset:.75*this.gridLineWidth,depth:2,fill:!1,closePath:!1}),b(r,e,r,f)}break;case"yaxis":if(q.showGridline&&this.drawGridlines&&(!q.isMinorTick&&l.drawMajorGridlines||q.isMinorTick&&l.drawMinorGridlines)&&b(this._right,r,this._left,r),q.showMark&&q.mark&&(!q.isMinorTick&&l.drawMajorTickMarks||q.isMinorTick&&l.drawMinorTickMarks)){g=q.markSize,h=q.mark;var r=Math.round(l.u2p(q.value))+.5;switch(h){case"outside":e=this._left-g,f=this._left;break;case"inside":e=this._left,f=this._left+g;break;case"cross":e=this._left-g,f=this._left+g;break;default:e=this._left-g,f=this._left}this.shadow&&this.renderer.shadowRenderer.draw(c,[[e,r],[f,r]],{lineCap:"butt",lineWidth:1.5*this.gridLineWidth,offset:.75*this.gridLineWidth,fill:!1,closePath:!1}),b(e,r,f,r,{strokeStyle:l.borderColor})}break;case"x2axis":if(q.showGridline&&this.drawGridlines&&(!q.isMinorTick&&l.drawMajorGridlines||q.isMinorTick&&l.drawMinorGridlines)&&b(r,this._bottom,r,this._top),q.showMark&&q.mark&&(!q.isMinorTick&&l.drawMajorTickMarks||q.isMinorTick&&l.drawMinorTickMarks)){g=q.markSize,h=q.mark;var r=Math.round(l.u2p(q.value))+.5;switch(h){case"outside":e=this._top-g,f=this._top;break;case"inside":e=this._top,f=this._top+g;break;case"cross":e=this._top-g,f=this._top+g;break;default:e=this._top-g,f=this._top}this.shadow&&this.renderer.shadowRenderer.draw(c,[[r,e],[r,f]],{lineCap:"butt",lineWidth:this.gridLineWidth,offset:.75*this.gridLineWidth,depth:2,fill:!1,closePath:!1}),b(r,e,r,f)}break;case"y2axis":if(q.showGridline&&this.drawGridlines&&(!q.isMinorTick&&l.drawMajorGridlines||q.isMinorTick&&l.drawMinorGridlines)&&b(this._left,r,this._right,r),q.showMark&&q.mark&&(!q.isMinorTick&&l.drawMajorTickMarks||q.isMinorTick&&l.drawMinorTickMarks)){g=q.markSize,h=q.mark;var r=Math.round(l.u2p(q.value))+.5;switch(h){case"outside":e=this._right,f=this._right+g;break;case"inside":e=this._right-g,f=this._right;break;case"cross":e=this._right-g,f=this._right+g;break;default:e=this._right,f=this._right+g}this.shadow&&this.renderer.shadowRenderer.draw(c,[[e,r],[f,r]],{lineCap:"butt",lineWidth:1.5*this.gridLineWidth,offset:.75*this.gridLineWidth,fill:!1,closePath:!1}),b(e,r,f,r,{strokeStyle:l.borderColor})}}}}q=null}l=null,m=null}i=["y3axis","y4axis","y5axis","y6axis","y7axis","y8axis","y9axis","yMidAxis"];for(var j=7;j>0;j--){var l=d[i[j-1]],m=l._ticks;if(l.show){var s=m[l.numberTicks-1],t=m[0],u=l.getLeft(),v=[[u,s.getTop()+s.getHeight()/2],[u,t.getTop()+t.getHeight()/2+1]];this.shadow&&this.renderer.shadowRenderer.draw(c,v,{lineCap:"butt",fill:!1,closePath:!1}),b(v[0][0],v[0][1],v[1][0],v[1][1],{lineCap:"butt",strokeStyle:l.borderColor,lineWidth:l.borderWidth});for(var p=m.length;p>0;p--){var q=m[p-1];g=q.markSize,h=q.mark;var r=Math.round(l.u2p(q.value))+.5;if(q.showMark&&q.mark){switch(h){case"outside":e=u,f=u+g;break;case"inside":e=u-g,f=u;break;case"cross":e=u-g,f=u+g;break;default:e=u,f=u+g}v=[[e,r],[f,r]],this.shadow&&this.renderer.shadowRenderer.draw(c,v,{lineCap:"butt",lineWidth:1.5*this.gridLineWidth,offset:.75*this.gridLineWidth,fill:!1,closePath:!1}),b(e,r,f,r,{strokeStyle:l.borderColor})}q=null}t=null}l=null,m=null}if(c.restore(),this.shadow){var v=[[this._left,this._bottom],[this._right,this._bottom],[this._right,this._top]];this.renderer.shadowRenderer.draw(c,v)}0!=this.borderWidth&&this.drawBorder&&(b(this._left,this._top,this._right,this._top,{lineCap:"round",strokeStyle:d.x2axis.borderColor,lineWidth:d.x2axis.borderWidth}),b(this._right,this._top,this._right,this._bottom,{lineCap:"round",strokeStyle:d.y2axis.borderColor,lineWidth:d.y2axis.borderWidth}),b(this._right,this._bottom,this._left,this._bottom,{lineCap:"round",strokeStyle:d.xaxis.borderColor,lineWidth:d.xaxis.borderWidth}),b(this._left,this._bottom,this._left,this._top,{lineCap:"round",strokeStyle:d.yaxis.borderColor,lineWidth:d.yaxis.borderWidth})),c.restore(),c=null,d=null},a.jqplot.DivTitleRenderer=function(){},a.jqplot.DivTitleRenderer.prototype.init=function(b){a.extend(!0,this,b)},a.jqplot.DivTitleRenderer.prototype.draw=function(){this._elem&&(this._elem.emptyForce(),this._elem=null);var b=(this.renderer,document.createElement("div"));if(this._elem=a(b),this._elem.addClass("jqplot-title"),this.text){if(this.text){var c;this.color?c=this.color:this.textColor&&(c=this.textColor);var d={position:"absolute",top:"0px",left:"0px"};this._plotWidth&&(d.width=this._plotWidth+"px"),this.fontSize&&(d.fontSize=this.fontSize),"string"==typeof this.textAlign?d.textAlign=this.textAlign:d.textAlign="center",c&&(d.color=c),this.paddingBottom&&(d.paddingBottom=this.paddingBottom),this.fontFamily&&(d.fontFamily=this.fontFamily),this._elem.css(d),this.escapeHtml?this._elem.text(this.text):this._elem.html(this.text)}}else this.show=!1,this._elem.height(0),this._elem.width(0);return b=null,this._elem},a.jqplot.DivTitleRenderer.prototype.pack=function(){};var H=.1;a.jqplot.LinePattern=function(b,c){var d={dotted:[H,a.jqplot.config.dotGapLength],dashed:[a.jqplot.config.dashLength,a.jqplot.config.gapLength],solid:null};if("string"==typeof c)if("."===c[0]||"-"===c[0]){var e=c;c=[];for(var f=0,g=e.length;g>f;f++){if("."===e[f])c.push(H);else{if("-"!==e[f])continue;c.push(a.jqplot.config.dashLength)}c.push(a.jqplot.config.gapLength)}}else c=d[c];if(!c||!c.length)return b;var h=0,i=c[0],j=0,k=0,l=0,m=0,n=function(a,c){b.moveTo(a,c),j=a,k=c,l=a,m=c},o=function(a,d){var e=b.lineWidth,f=a-j,g=d-k,l=Math.sqrt(f*f+g*g);if(l>0&&e>0)for(f/=l,g/=l;;){var m=e*i;if(!(l>m)){j=a,k=d,0==(1&h)?b.lineTo(j,k):b.moveTo(j,k),i-=l/e;break}j+=m*f,k+=m*g,0==(1&h)?b.lineTo(j,k):b.moveTo(j,k),l-=m,h++,h>=c.length&&(h=0),i=c[h]}},p=function(){b.beginPath()},q=function(){o(l,m)};return{moveTo:n,lineTo:o,beginPath:p,closePath:q}},a.jqplot.LineRenderer=function(){this.shapeRenderer=new a.jqplot.ShapeRenderer,this.shadowRenderer=new a.jqplot.ShadowRenderer},a.jqplot.LineRenderer.prototype.init=function(b,c){b=b||{},this._type="line",this.renderer.animation={show:!1,direction:"left",speed:2500,_supported:!0},this.renderer.smooth=!1,this.renderer.tension=null,this.renderer.constrainSmoothing=!0,this.renderer._smoothedData=[],this.renderer._smoothedPlotData=[],this.renderer._hiBandGridData=[],this.renderer._lowBandGridData=[],this.renderer._hiBandSmoothedData=[],this.renderer._lowBandSmoothedData=[],this.renderer.bandData=[],this.renderer.bands={show:!1,hiData:[],lowData:[],color:this.color,showLines:!1,fill:!0,fillColor:null,_min:null,_max:null,interval:"3%"};var d={highlightMouseOver:b.highlightMouseOver,highlightMouseDown:b.highlightMouseDown,highlightColor:b.highlightColor};delete b.highlightMouseOver,delete b.highlightMouseDown,delete b.highlightColor,a.extend(!0,this.renderer,b),this.renderer.options=b,this.renderer.bandData.length>1&&(!b.bands||null==b.bands.show)?this.renderer.bands.show=!0:b.bands&&null==b.bands.show&&null!=b.bands.interval&&(this.renderer.bands.show=!0),this.fill&&(this.renderer.bands.show=!1),this.renderer.bands.show&&this.renderer.initBands.call(this,this.renderer.options,c),this._stack&&(this.renderer.smooth=!1);var e={lineJoin:this.lineJoin,lineCap:this.lineCap,fill:this.fill,isarc:!1,strokeStyle:this.color,fillStyle:this.fillColor,lineWidth:this.lineWidth,linePattern:this.linePattern,closePath:this.fill};this.renderer.shapeRenderer.init(e);var f=b.shadowOffset;null==f&&(f=this.lineWidth>2.5?1.25*(1+.6*(Math.atan(this.lineWidth/2.5)/.785398163-1)):1.25*Math.atan(this.lineWidth/2.5)/.785398163);var g={lineJoin:this.lineJoin,lineCap:this.lineCap,fill:this.fill,isarc:!1,angle:this.shadowAngle,offset:f,alpha:this.shadowAlpha,depth:this.shadowDepth,lineWidth:this.lineWidth,linePattern:this.linePattern,closePath:this.fill};if(this.renderer.shadowRenderer.init(g),this._areaPoints=[],this._boundingBox=[[],[]],!this.isTrendline&&this.fill||this.renderer.bands.show){if(this.highlightMouseOver=!0,this.highlightMouseDown=!1,this.highlightColor=null,d.highlightMouseDown&&null==d.highlightMouseOver&&(d.highlightMouseOver=!1),a.extend(!0,this,{highlightMouseOver:d.highlightMouseOver,highlightMouseDown:d.highlightMouseDown,highlightColor:d.highlightColor}),!this.highlightColor){var h=this.renderer.bands.show?this.renderer.bands.fillColor:this.fillColor;this.highlightColor=a.jqplot.computeHighlightColors(h)}this.highlighter&&(this.highlighter.show=!1)}!this.isTrendline&&c&&(c.plugins.lineRenderer={},c.postInitHooks.addOnce(l),c.postDrawHooks.addOnce(m),c.eventListenerHooks.addOnce("jqplotMouseMove",p),c.eventListenerHooks.addOnce("jqplotMouseDown",q),c.eventListenerHooks.addOnce("jqplotMouseUp",r),c.eventListenerHooks.addOnce("jqplotClick",s),c.eventListenerHooks.addOnce("jqplotRightClick",t))},a.jqplot.LineRenderer.prototype.initBands=function(b,c){var d=b.bandData||[],e=this.renderer.bands;e.hiData=[],e.lowData=[];var f=this.data;if(e._max=null,e._min=null,2==d.length)if(a.isArray(d[0][0])){for(var g,h=0,i=0,j=0,k=d[0].length;k>j;j++)g=d[0][j],(null!=g[1]&&g[1]>e._max||null==e._max)&&(e._max=g[1]),(null!=g[1]&&g[1]j;j++)g=d[1][j],(null!=g[1]&&g[1]>e._max||null==e._max)&&(e._max=g[1],i=1),(null!=g[1]&&g[1]d[1][0]?0:1,m=l?0:1,j=0,k=f.length;k>j;j++)e.hiData.push([f[j][0],d[l][j]]),e.lowData.push([f[j][0],d[m][j]]);else e.show=!1;else if(d.length>2&&!a.isArray(d[0][0]))for(var l=d[0][0]>d[0][1]?0:1,m=l?0:1,j=0,k=d.length;k>j;j++)e.hiData.push([f[j][0],d[j][l]]),e.lowData.push([f[j][0],d[j][m]]);else{var n=e.interval,o=null,p=null,q=null,r=null;if(a.isArray(n)?(o=n[0],p=n[1]):o=n,isNaN(o)?"%"===o.charAt(o.length-1)&&(q="multiply",o=parseFloat(o)/100+1):(o=parseFloat(o),q="add"),null!==p&&isNaN(p)?"%"===p.charAt(p.length-1)&&(r="multiply",p=parseFloat(p)/100+1):null!==p&&(p=parseFloat(p),r="add"),null!==o){if(null===p&&(p=-o,r=q,"multiply"===r&&(p+=2)),p>o){var s=o;o=p,p=s,s=q,q=r,r=s}for(var j=0,k=f.length;k>j;j++){switch(q){case"add":e.hiData.push([f[j][0],f[j][1]+o]);break;case"multiply":e.hiData.push([f[j][0],f[j][1]*o])}switch(r){case"add":e.lowData.push([f[j][0],f[j][1]+p]);break;case"multiply":e.lowData.push([f[j][0],f[j][1]*p])}}}else e.show=!1}for(var t=e.hiData,u=e.lowData,j=0,k=t.length;k>j;j++)(null!=t[j][1]&&t[j][1]>e._max||null==e._max)&&(e._max=t[j][1]);for(var j=0,k=u.length;k>j;j++)(null!=u[j][1]&&u[j][1]h;h++)null!=d[h][0]&&null!=d[h][1]?this.gridData.push([b.call(this._xaxis,d[h][0]),c.call(this._yaxis,d[h][1])]):null==d[h][0]?(g=!0,this.gridData.push([null,c.call(this._yaxis,d[h][1])])):null==d[h][1]&&(g=!0,this.gridData.push([b.call(this._xaxis,d[h][0]),null])),null!=e[h]&&null!=e[h][0]&&null!=e[h][1]?this._prevGridData.push([b.call(this._xaxis,e[h][0]),c.call(this._yaxis,e[h][1])]):null!=e[h]&&null==e[h][0]?this._prevGridData.push([null,c.call(this._yaxis,e[h][1])]):null!=e[h]&&null!=e[h][0]&&null==e[h][1]&&this._prevGridData.push([b.call(this._xaxis,e[h][0]),null]);if(g&&(this.renderer.smooth=!1,"line"===this._type&&(f.show=!1)),"line"===this._type&&f.show){for(var h=0,i=f.hiData.length;i>h;h++)this.renderer._hiBandGridData.push([b.call(this._xaxis,f.hiData[h][0]),c.call(this._yaxis,f.hiData[h][1])]);for(var h=0,i=f.lowData.length;i>h;h++)this.renderer._lowBandGridData.push([b.call(this._xaxis,f.lowData[h][0]),c.call(this._yaxis,f.lowData[h][1])])}if("line"===this._type&&this.renderer.smooth&&this.gridData.length>2){var l;this.renderer.constrainSmoothing?(l=j.call(this,this.gridData),this.renderer._smoothedData=l[0],this.renderer._smoothedPlotData=l[1],f.show&&(l=j.call(this,this.renderer._hiBandGridData),this.renderer._hiBandSmoothedData=l[0],l=j.call(this,this.renderer._lowBandGridData),this.renderer._lowBandSmoothedData=l[0]),l=null):(l=k.call(this,this.gridData),this.renderer._smoothedData=l[0],this.renderer._smoothedPlotData=l[1],f.show&&(l=k.call(this,this.renderer._hiBandGridData),this.renderer._hiBandSmoothedData=l[0],l=k.call(this,this.renderer._lowBandGridData),this.renderer._lowBandSmoothedData=l[0]),l=null)}},a.jqplot.LineRenderer.prototype.makeGridData=function(a,b){var c=this._xaxis.series_u2p,d=this._yaxis.series_u2p,e=[];this.renderer._smoothedData=[],this.renderer._smoothedPlotData=[],this.renderer._hiBandGridData=[],this.renderer._lowBandGridData=[],this.renderer._hiBandSmoothedData=[],this.renderer._lowBandSmoothedData=[];for(var f=this.renderer.bands,g=!1,h=0;h0&&e.push([c.call(this._xaxis,a[h][0]),d.call(this._yaxis,a[h-1][1])]),e.push([c.call(this._xaxis,a[h][0]),d.call(this._yaxis,a[h][1])])):null==a[h][0]?(g=!0,e.push([null,d.call(this._yaxis,a[h][1])])):null==a[h][1]&&(g=!0,e.push([c.call(this._xaxis,a[h][0]),null]));if(g&&(this.renderer.smooth=!1,"line"===this._type&&(f.show=!1)),"line"===this._type&&f.show){for(var h=0,i=f.hiData.length;i>h;h++)this.renderer._hiBandGridData.push([c.call(this._xaxis,f.hiData[h][0]),d.call(this._yaxis,f.hiData[h][1])]);for(var h=0,i=f.lowData.length;i>h;h++)this.renderer._lowBandGridData.push([c.call(this._xaxis,f.lowData[h][0]),d.call(this._yaxis,f.lowData[h][1])])}if("line"===this._type&&this.renderer.smooth&&e.length>2){var l;this.renderer.constrainSmoothing?(l=j.call(this,e),this.renderer._smoothedData=l[0],this.renderer._smoothedPlotData=l[1],f.show&&(l=j.call(this,this.renderer._hiBandGridData),this.renderer._hiBandSmoothedData=l[0],l=j.call(this,this.renderer._lowBandGridData),this.renderer._lowBandSmoothedData=l[0]),l=null):(l=k.call(this,e),this.renderer._smoothedData=l[0],this.renderer._smoothedPlotData=l[1],f.show&&(l=k.call(this,this.renderer._hiBandGridData),this.renderer._hiBandSmoothedData=l[0],l=k.call(this,this.renderer._lowBandGridData),this.renderer._lowBandSmoothedData=l[0]),l=null)}return e},a.jqplot.LineRenderer.prototype.draw=function(b,c,d,e){var f,g,h,i,j,k=a.extend(!0,{},d),l=k.shadow!=F?k.shadow:this.shadow,m=k.showLine!=F?k.showLine:this.showLine,n=k.fill!=F?k.fill:this.fill,o=k.fillAndStroke!=F?k.fillAndStroke:this.fillAndStroke;if(b.save(),c.length){if(m)if(n){if(this.fillToZero){var p=this.negativeColor;this.useNegativeColors||(p=k.fillStyle);var q=!1,r=k.fillStyle;if(o)var s=c.slice(0);if(0!=this.index&&this._stack){for(var t=this._prevGridData,f=t.length;f>0;f--)c.push(t[f-1]);l&&this.renderer.shadowRenderer.draw(b,c,k),this._areaPoints=c,this.renderer.shapeRenderer.draw(b,c,k)}else{var u=[],v=this.renderer.smooth?this.renderer._smoothedPlotData:this._plotData;this._areaPoints=[];var w=this._yaxis.series_u2p(this.fillToValue);this._xaxis.series_u2p(this.fillToValue);if(k.closePath=!0,"y"==this.fillAxis){u.push([c[0][0],w]),this._areaPoints.push([c[0][0],w]);for(var f=0;f0;f--)c.push(t[f-1]);else{var y=b.canvas.height;c.unshift([c[0][0],y]);var z=c.length;c.push([c[z-1][0],y])}this._areaPoints=c,l&&this.renderer.shadowRenderer.draw(b,c,k),this.renderer.shapeRenderer.draw(b,c,k)}if(o){var A=a.extend(!0,{},k,{fill:!1,closePath:!1});if(this.renderer.shapeRenderer.draw(b,s,A),this.markerRenderer.show)for(this.renderer.smooth&&(s=this.gridData),f=0;fD[0]||null==g)&&(g=D[0]),(jD[1]||null==h)&&(h=D[1])}if("line"===this.type&&this.renderer.bands.show&&(j=this._yaxis.series_u2p(this.renderer.bands._min),h=this._yaxis.series_u2p(this.renderer.bands._max)),this._boundingBox=[[g,j],[i,h]],this.markerRenderer.show&&!n)for(this.renderer.smooth&&(c=this.gridData),f=0;fc&&(c=b));g=null,h=null,f&&(d=this._label._elem.outerWidth(!0),e=this._label._elem.outerHeight(!0)),"xaxis"==this.name?(c+=e,this._elem.css({height:c+"px",left:"0px",bottom:"0px"})):"x2axis"==this.name?(c+=e,this._elem.css({height:c+"px",left:"0px",top:"0px"})):"yaxis"==this.name?(c+=d,this._elem.css({width:c+"px",left:"0px",top:"0px"}),f&&this._label.constructor==a.jqplot.AxisLabelRenderer&&this._label._elem.css("width",d+"px")):(c+=d,this._elem.css({width:c+"px",right:"0px",top:"0px"}),f&&this._label.constructor==a.jqplot.AxisLabelRenderer&&this._label._elem.css("width",d+"px"))}},a.jqplot.LinearAxisRenderer.prototype.createTicks=function(b){var c,d,e,f,g=this._ticks,h=this.ticks,i=this.name,j=this._dataBounds,k="x"===this.name.charAt(0)?this._plotDimensions.width:this._plotDimensions.height,l=this.min,m=this.max,n=this.numberTicks,o=this.tickInterval,p=30;if(this._scalefact=(Math.max(k,p+1)-p)/300,h.length){for(f=0;fthis.breakPoints[0]&&q[0]<=this.breakPoints[1]?(r.show=!1,r.showGridline=!1,r.label=q[1]):r.label=q[1]:r.label=q[1],r.setTick(q[0],this.name),this._ticks.push(r)):a.isPlainObject(q)?(a.extend(!0,r,q),r.axis=this.name,this._ticks.push(r)):(r.value=q,this.breakPoints&&(q==this.breakPoints[0]?(r.label=this.breakTickLabel,r._breakTick=!0,r.showGridline=!1,r.showMark=!1):q>this.breakPoints[0]&&q<=this.breakPoints[1]&&(r.show=!1,r.showGridline=!1)),r.setTick(q,this.name),this._ticks.push(r))}this.numberTicks=h.length,this.min=this._ticks[0].value,this.max=this._ticks[this.numberTicks-1].value,this.tickInterval=(this.max-this.min)/(this.numberTicks-1)}else{k="xaxis"==i||"x2axis"==i?this._plotDimensions.width:this._plotDimensions.height;var s=this.numberTicks;this.alignTicks&&("x2axis"===this.name&&b.axes.xaxis.show?s=b.axes.xaxis.numberTicks:"y"===this.name.charAt(0)&&"yaxis"!==this.name&&"yMidAxis"!==this.name&&b.axes.yaxis.show&&(s=b.axes.yaxis.numberTicks)),c=null!=this.min?this.min:j.min,d=null!=this.max?this.max:j.max;var t,u,v,w=d-c;if(null!=this.tickOptions&&this.tickOptions.formatString||(this._overrideFormatString=!0),null==this.min||null==this.max&&null==this.tickInterval&&!this.autoscale){this.forceTickAt0&&(c>0&&(c=0),0>d&&(d=0)),this.forceTickAt100&&(c>100&&(c=100),100>d&&(d=100));var x=!1,y=!1;null!=this.min?x=!0:null!=this.max&&(y=!0);var z=a.jqplot.LinearTickGenerator(c,d,this._scalefact,s,x,y),A=null!=this.min?c:c+w*(this.padMin-1),B=null!=this.max?d:d-w*(this.padMax-1);(A>c||d>B)&&(A=null!=this.min?c:c-w*(this.padMin-1),B=null!=this.max?d:d+w*(this.padMax-1),z=a.jqplot.LinearTickGenerator(A,B,this._scalefact,s,x,y)),this.min=z[0],this.max=z[1],this.numberTicks=z[2],this._autoFormatString=z[3],this.tickInterval=z[4]}else{if(c==d){var C=.05;c>0&&(C=Math.max(Math.log(c)/Math.LN10,.05)),c-=C,d+=C}if(this.autoscale&&null==this.min&&null==this.max){for(var D,E,F,G=!1,H=!1,f=0;fM&&(M=K[N]);var O=(M-L)/M;I.renderer.constructor==a.jqplot.BarRenderer?L>=0&&(I.fillToZero||O>.1)?G=!0:(G=!1,H=I.fill&&I.fillToZero&&0>L&&M>0?!0:!1):I.fill?L>=0&&(I.fillToZero||O>.1)?G=!0:0>L&&M>0&&I.fillToZero?(G=!1,H=!0):(G=!1,H=!1):0>L&&(G=!1)}}if(G)this.numberTicks=2+Math.ceil((k-(this.tickSpacing-1))/this.tickSpacing),this.min=0,l=0,E=d/(this.numberTicks-1),v=Math.pow(10,Math.abs(Math.floor(Math.log(E)/Math.LN10))),E/v==parseInt(E/v,10)&&(E+=v),this.tickInterval=Math.ceil(E/v)*v,this.max=this.tickInterval*(this.numberTicks-1);else if(H){this.numberTicks=2+Math.ceil((k-(this.tickSpacing-1))/this.tickSpacing);var P=Math.ceil(Math.abs(c)/w*(this.numberTicks-1)),Q=this.numberTicks-1-P;E=Math.max(Math.abs(c/P),Math.abs(d/Q)),v=Math.pow(10,Math.abs(Math.floor(Math.log(E)/Math.LN10))),this.tickInterval=Math.ceil(E/v)*v,this.max=this.tickInterval*Q,this.min=-this.tickInterval*P}else null==this.numberTicks&&(this.tickInterval?this.numberTicks=3+Math.ceil(w/this.tickInterval):this.numberTicks=2+Math.ceil((k-(this.tickSpacing-1))/this.tickSpacing)),null==this.tickInterval?(E=w/(this.numberTicks-1),v=1>E?Math.pow(10,Math.abs(Math.floor(Math.log(E)/Math.LN10))):1,this.tickInterval=Math.ceil(E*v*this.pad)/v):v=1/this.tickInterval,D=this.tickInterval*(this.numberTicks-1),F=(D-w)/2,null==this.min&&(this.min=Math.floor(v*(c-F))/v),null==this.max&&(this.max=this.min+D);var R,S=a.jqplot.getSignificantFigures(this.tickInterval);if(S.digitsLeft>=S.significantDigits)R="%d";else{var v=Math.max(0,5-S.digitsLeft);v=Math.min(v,S.digitsRight),R="%."+v+"f"}this._autoFormatString=R}else{t=null!=this.min?this.min:c-w*(this.padMin-1),u=null!=this.max?this.max:d+w*(this.padMax-1),w=u-t,null==this.numberTicks&&(null!=this.tickInterval?this.numberTicks=Math.ceil((u-t)/this.tickInterval)+1:k>100?this.numberTicks=parseInt(3+(k-100)/75,10):this.numberTicks=2),null==this.tickInterval&&(this.tickInterval=w/(this.numberTicks-1)),null==this.max&&(u=t+this.tickInterval*(this.numberTicks-1)),null==this.min&&(t=u-this.tickInterval*(this.numberTicks-1));var R,S=a.jqplot.getSignificantFigures(this.tickInterval);if(S.digitsLeft>=S.significantDigits)R="%d";else{var v=Math.max(0,5-S.digitsLeft);v=Math.min(v,S.digitsRight),R="%."+v+"f"}this._autoFormatString=R,this.min=t,this.max=u}if(this.renderer.constructor==a.jqplot.LinearAxisRenderer&&""==this._autoFormatString){w=this.max-this.min;var T=new this.tickRenderer(this.tickOptions),U=T.formatString||a.jqplot.config.defaultTickFormatString,U=U.match(a.jqplot.sprintf.regex)[0],V=0;if(U){if(U.search(/[fFeEgGpP]/)>-1){var W=U.match(/\%\.(\d{0,})?[eEfFgGpP]/);V=W?parseInt(W[1],10):6}else U.search(/[di]/)>-1&&(V=0);var X=Math.pow(10,-V);if(this.tickIntervalthis.breakPoints[0]&&athis.breakPoints[0]&&athis.breakPoints[0]&&a=this.breakPoints[1]?(a-e)*k/l:(a+this.breakPoints[1]-this.breakPoints[0]-e)*k/l},this.series_p2u=function(a){return a*l/k+e})):(this.p2u=function(a){return(a-h)*l/k+f},this.u2p=function(a){return(a-f)*k/l+h},"xaxis"==this.name||"x2axis"==this.name?(this.series_u2p=function(a){return(a-f)*k/l},this.series_p2u=function(a){return a*l/k+f}):(this.series_u2p=function(a){return(a-e)*k/l},this.series_p2u=function(a){return a*l/k+e})),this.show)if("xaxis"==this.name||"x2axis"==this.name){for(var m=0;m0?-n._textRenderer.height*Math.cos(-n._textRenderer.angle)/2:-n.getHeight()+n._textRenderer.height*Math.cos(n._textRenderer.angle)/2;break;case"middle":o=-n.getHeight()/2;break;default:o=-n.getHeight()/2}}else o=-n.getHeight()/2;var q=this.u2p(n.value)+o+"px";n._elem.css("top",q),n.pack()}}if(i){var s=this._label._elem.outerHeight(!0);this._label._elem.css("top",g-k/2-s/2+"px"),"yaxis"==this.name?this._label._elem.css("left","0px"):this._label._elem.css("right","0px"),this._label.pack()}}d=null};a.jqplot.LinearTickGenerator=function(b,c,d,e,f,g){if(f=null===f?!1:f,g=null===g||f?!1:g,b===c&&(c=c?0:1),d=d||1,b>c){var h=c;c=b,b=h}var i=[],j=x(c-b,d),k=a.jqplot.getSignificantFigures;if(null==e)if(f||g){if(f){i[0]=b,i[2]=Math.ceil((c-b)/j+1),i[1]=b+(i[2]-1)*j;var l=k(b).digitsRight,m=k(j).digitsRight;m>l?i[3]=u(j):i[3]="%."+l+"f",i[4]=j}else if(g){i[1]=c,i[2]=Math.ceil((c-b)/j+1),i[0]=c-(i[2]-1)*j;var n=k(c).digitsRight,m=k(j).digitsRight;m>n?i[3]=u(j):i[3]="%."+n+"f",i[4]=j}}else i[0]=Math.floor(b/j)*j,i[1]=Math.ceil(c/j)*j,i[2]=Math.round((i[1]-i[0])/j+1),i[3]=u(j),i[4]=j;else{var o=[];if(o[0]=Math.floor(b/j)*j,o[1]=Math.ceil(c/j)*j,o[2]=Math.round((o[1]-o[0])/j+1),o[3]=u(j),o[4]=j,o[2]===e)i=o;else{var p=w(o[1]-o[0],e);i[0]=o[0],i[2]=e,i[4]=p,i[3]=u(p),i[1]=i[0]+(i[2]-1)*i[4]}}return i},a.jqplot.LinearTickGenerator.bestLinearInterval=x,a.jqplot.LinearTickGenerator.bestInterval=w,a.jqplot.LinearTickGenerator.bestLinearComponents=y,a.jqplot.LinearTickGenerator.bestConstrainedInterval=v,a.jqplot.MarkerRenderer=function(b){this.show=!0,this.style="filledCircle",this.lineWidth=2,this.size=9,this.color="#666666",this.shadow=!0,this.shadowAngle=45,this.shadowOffset=1,this.shadowDepth=3,this.shadowAlpha="0.07",this.shadowRenderer=new a.jqplot.ShadowRenderer,this.shapeRenderer=new a.jqplot.ShapeRenderer,a.extend(!0,this,b)},a.jqplot.MarkerRenderer.prototype.init=function(b){a.extend(!0,this,b);var c={angle:this.shadowAngle,offset:this.shadowOffset,alpha:this.shadowAlpha,lineWidth:this.lineWidth,depth:this.shadowDepth,closePath:!0};-1!=this.style.indexOf("filled")&&(c.fill=!0),-1!=this.style.indexOf("ircle")&&(c.isarc=!0,c.closePath=!1),this.shadowRenderer.init(c);var d={fill:!1,isarc:!1,strokeStyle:this.color,fillStyle:this.color,lineWidth:this.lineWidth,closePath:!0};-1!=this.style.indexOf("filled")&&(d.fill=!0),-1!=this.style.indexOf("ircle")&&(d.isarc=!0,d.closePath=!1),this.shapeRenderer.init(d)},a.jqplot.MarkerRenderer.prototype.drawDiamond=function(a,b,c,d,e){var f=1.2,g=this.size/2/f,h=this.size/2*f,i=[[a-g,b],[a,b+h],[a+g,b],[a,b-h]];this.shadow&&this.shadowRenderer.draw(c,i),this.shapeRenderer.draw(c,i,e)},a.jqplot.MarkerRenderer.prototype.drawPlus=function(b,c,d,e,f){var g=1,h=this.size/2*g,i=this.size/2*g,j=[[b,c-i],[b,c+i]],k=[[b+h,c],[b-h,c]],l=a.extend(!0,{},this.options,{closePath:!1});this.shadow&&(this.shadowRenderer.draw(d,j,{closePath:!1}),this.shadowRenderer.draw(d,k,{closePath:!1})),this.shapeRenderer.draw(d,j,l),this.shapeRenderer.draw(d,k,l)},a.jqplot.MarkerRenderer.prototype.drawX=function(b,c,d,e,f){var g=1,h=this.size/2*g,i=this.size/2*g,j=a.extend(!0,{},this.options,{closePath:!1}),k=[[b-h,c-i],[b+h,c+i]],l=[[b-h,c+i],[b+h,c-i]];this.shadow&&(this.shadowRenderer.draw(d,k,{closePath:!1}),this.shadowRenderer.draw(d,l,{closePath:!1})),this.shapeRenderer.draw(d,k,j),this.shapeRenderer.draw(d,l,j)},a.jqplot.MarkerRenderer.prototype.drawDash=function(a,b,c,d,e){var f=1,g=this.size/2*f,h=(this.size/2*f,[[a-g,b],[a+g,b]]);this.shadow&&this.shadowRenderer.draw(c,h),this.shapeRenderer.draw(c,h,e)},a.jqplot.MarkerRenderer.prototype.drawLine=function(a,b,c,d,e){var f=[a,b];this.shadow&&this.shadowRenderer.draw(c,f),this.shapeRenderer.draw(c,f,e)},a.jqplot.MarkerRenderer.prototype.drawSquare=function(a,b,c,d,e){var f=1,g=this.size/2/f,h=this.size/2*f,i=[[a-g,b-h],[a-g,b+h],[a+g,b+h],[a+g,b-h]];this.shadow&&this.shadowRenderer.draw(c,i),this.shapeRenderer.draw(c,i,e)},a.jqplot.MarkerRenderer.prototype.drawCircle=function(a,b,c,d,e){var f=this.size/2,g=2*Math.PI,h=[a,b,f,0,g,!0];this.shadow&&this.shadowRenderer.draw(c,h),this.shapeRenderer.draw(c,h,e)},a.jqplot.MarkerRenderer.prototype.draw=function(a,b,c,d){if(d=d||{},null==d.show||0!=d.show)switch(d.color&&!d.fillStyle&&(d.fillStyle=d.color),d.color&&!d.strokeStyle&&(d.strokeStyle=d.color),this.style){case"diamond":this.drawDiamond(a,b,c,!1,d);break;case"filledDiamond":this.drawDiamond(a,b,c,!0,d);break;case"circle":this.drawCircle(a,b,c,!1,d);break;case"filledCircle":this.drawCircle(a,b,c,!0,d);break;case"square":this.drawSquare(a,b,c,!1,d);break;case"filledSquare":this.drawSquare(a,b,c,!0,d);break;case"x":this.drawX(a,b,c,!0,d);break;case"plus":this.drawPlus(a,b,c,!0,d);break;case"dash":this.drawDash(a,b,c,!0,d);break;case"line":this.drawLine(a,b,c,!1,d);break;default:this.drawDiamond(a,b,c,!1,d)}},a.jqplot.ShadowRenderer=function(b){this.angle=45,this.offset=1,this.alpha=.07,this.lineWidth=1.5,this.lineJoin="miter",this.lineCap="round",this.closePath=!1,this.fill=!1,this.depth=3,this.strokeStyle="rgba(0,0,0,0.1)",this.isarc=!1,a.extend(!0,this,b)},a.jqplot.ShadowRenderer.prototype.init=function(b){a.extend(!0,this,b)},a.jqplot.ShadowRenderer.prototype.draw=function(b,c,d){b.save();var e=null!=d?d:{},f=null!=e.fill?e.fill:this.fill,g=null!=e.fillRect?e.fillRect:this.fillRect,h=null!=e.closePath?e.closePath:this.closePath,i=null!=e.offset?e.offset:this.offset,j=null!=e.alpha?e.alpha:this.alpha,k=null!=e.depth?e.depth:this.depth,l=null!=e.isarc?e.isarc:this.isarc,m=null!=e.linePattern?e.linePattern:this.linePattern;b.lineWidth=null!=e.lineWidth?e.lineWidth:this.lineWidth,b.lineJoin=null!=e.lineJoin?e.lineJoin:this.lineJoin,b.lineCap=null!=e.lineCap?e.lineCap:this.lineCap,b.strokeStyle=e.strokeStyle||this.strokeStyle||"rgba(0,0,0,"+j+")",b.fillStyle=e.fillStyle||this.fillStyle||"rgba(0,0,0,"+j+")";for(var n=0;k>n;n++){var o=a.jqplot.LinePattern(b,m);if(b.translate(Math.cos(this.angle*Math.PI/180)*i,Math.sin(this.angle*Math.PI/180)*i),o.beginPath(),l)b.arc(c[0],c[1],c[2],c[3],c[4],!0);else if(g)g&&b.fillRect(c[0],c[1],c[2],c[3]);else if(c&&c.length)for(var p=!0,q=0;qd;d++)if(null!=(b=arguments[d]))for(var g in b){var h=c[g],i=b[g];c!==i&&(f&&i&&"object"==typeof i&&!i.nodeType?c[g]=a.jqplot.extend(f,h||(null!=i.length?[]:{}),i):i!==F&&(c[g]=i))}return c},a.jqplot.ThemeEngine.prototype.rename=function(a,b){if("Default"==a||"Default"==b)throw new Error("jqplot.ThemeEngine Error: Cannot rename from/to Default");if(this.themes.hasOwnProperty(b))throw new Error("jqplot.ThemeEngine Error: New name already in use.");if(this.themes.hasOwnProperty(a)){var c=this.copy(a,b);return this.remove(a),c}throw new Error("jqplot.ThemeEngine Error: Old name or new name invalid")},a.jqplot.ThemeEngine.prototype.copy=function(b,c,d){if("Default"==c)throw new Error("jqplot.ThemeEngine Error: Cannot copy over Default theme");if(!this.themes.hasOwnProperty(b)){var e="jqplot.ThemeEngine Error: Source name invalid";throw new Error(e)}if(this.themes.hasOwnProperty(c)){var e="jqplot.ThemeEngine Error: Target name invalid";throw new Error(e)}var f=A(this.themes[b]);return f._name=c,a.jqplot.extend(!0,f,d),this._add(f),f},a.jqplot.Theme=function(b,c){"object"==typeof b&&(c=c||b,b=null),b=b||Date.parse(new Date),this._name=b,this.target={backgroundColor:null},this.legend={textColor:null,fontFamily:null,fontSize:null,border:null,background:null},this.title={textColor:null,fontFamily:null,fontSize:null,textAlign:null},this.seriesStyles={},this.series=[],this.grid={drawGridlines:null,gridLineColor:null,gridLineWidth:null,backgroundColor:null,borderColor:null,borderWidth:null,shadow:null},this.axesStyles={label:{},ticks:{}},this.axes={},"string"==typeof c?this._name=c:"object"==typeof c&&a.jqplot.extend(!0,this,c)};var I=function(){this.borderColor=null,this.borderWidth=null,this.ticks=new J,this.label=new K},J=function(){this.show=null,this.showGridline=null,this.showLabel=null,this.showMark=null,this.size=null,this.textColor=null,this.whiteSpace=null,this.fontSize=null,this.fontFamily=null},K=function(){this.textColor=null,this.whiteSpace=null,this.fontSize=null, -this.fontFamily=null,this.fontWeight=null},L=function(){this.color=null,this.lineWidth=null,this.linePattern=null,this.shadow=null,this.fillColor=null,this.showMarker=null,this.markerOptions=new M},M=function(){this.show=null,this.style=null,this.lineWidth=null,this.size=null,this.color=null,this.shadow=null},N=function(){this.color=null,this.seriesColors=null,this.lineWidth=null,this.shadow=null,this.barPadding=null,this.barMargin=null,this.barWidth=null,this.highlightColors=null},O=function(){this.seriesColors=null,this.padding=null,this.sliceMargin=null,this.fill=null,this.shadow=null,this.startAngle=null,this.lineWidth=null,this.highlightColors=null},P=function(){this.seriesColors=null,this.padding=null,this.sliceMargin=null,this.fill=null,this.shadow=null,this.startAngle=null,this.lineWidth=null,this.innerDiameter=null,this.thickness=null,this.ringMargin=null,this.highlightColors=null},Q=function(){this.color=null,this.lineWidth=null,this.shadow=null,this.padding=null,this.sectionMargin=null,this.seriesColors=null,this.highlightColors=null},R=function(){this.padding=null,this.backgroundColor=null,this.ringColor=null,this.tickColor=null,this.ringWidth=null,this.intervalColors=null,this.intervalInnerRadius=null,this.intervalOuterRadius=null,this.hubRadius=null,this.needleThickness=null,this.needlePad=null};a.fn.jqplotChildText=function(){return a(this).contents().filter(function(){return 3==this.nodeType}).text()},a.fn.jqplotGetComputedFontStyle=function(){for(var a=window.getComputedStyle?window.getComputedStyle(this[0],""):this[0].currentStyle,b=a["font-style"]?["font-style","font-weight","font-size","font-family"]:["fontStyle","fontWeight","fontSize","fontFamily"],c=[],d=0;dq;q++)m+=k[q],d.measureText(m).width>j&&m.length>k[q].length&&(n.push(q),m="",q--);if(0===n.length)"center"===a(b).css("textAlign")&&(p=f+(h-d.measureText(m).width)/2-s),d.fillText(e,p,g);else{m=k.slice(0,n[0]).join(" "),"center"===a(b).css("textAlign")&&(p=f+(h-d.measureText(m).width)/2-s),d.fillText(m,p,o),o+=i;for(var q=1,r=n.length;r>q;q++)m=k.slice(n[q-1],n[q]).join(" "),"center"===a(b).css("textAlign")&&(p=f+(h-d.measureText(m).width)/2-s),d.fillText(m,p,o),o+=i;m=k.slice(n[q-1],k.length).join(" "),"center"===a(b).css("textAlign")&&(p=f+(h-d.measureText(m).width)/2-s),d.fillText(m,p,o)}}function e(b,c,f){var g=b.tagName.toLowerCase(),h=a(b).position(),i=window.getComputedStyle?window.getComputedStyle(b,""):b.currentStyle,j=c+h.left+parseInt(i.marginLeft,10)+parseInt(i.borderLeftWidth,10)+parseInt(i.paddingLeft,10),k=f+h.top+parseInt(i.marginTop,10)+parseInt(i.borderTopWidth,10)+parseInt(i.paddingTop,10),l=m.width;if("div"!=g&&"span"!=g||a(b).hasClass("jqplot-highlighter-tooltip"))if("table"===g&&a(b).hasClass("jqplot-table-legend")){w.strokeStyle=a(b).css("border-top-color"),w.fillStyle=a(b).css("background-color"),w.fillRect(j,k,a(b).innerWidth(),a(b).innerHeight()),parseInt(a(b).css("border-top-width"),10)>0&&w.strokeRect(j,k,a(b).innerWidth(),a(b).innerHeight()),a(b).find("div.jqplot-table-legend-swatch-outline").each(function(){var b=a(this);w.strokeStyle=b.css("border-top-color");var c=j+b.position().left,d=k+b.position().top;w.strokeRect(c,d,b.innerWidth(),b.innerHeight()),c+=parseInt(b.css("padding-left"),10),d+=parseInt(b.css("padding-top"),10);var e=b.innerHeight()-2*parseInt(b.css("padding-top"),10),f=b.innerWidth()-2*parseInt(b.css("padding-left"),10),g=b.children("div.jqplot-table-legend-swatch");w.fillStyle=g.css("background-color"),w.fillRect(c,d,f,e)}),a(b).find("td.jqplot-table-legend-label").each(function(){var b=a(this),c=j+b.position().left,e=k+b.position().top+parseInt(b.css("padding-top"),10);w.font=b.jqplotGetComputedFontStyle(),w.fillStyle=b.css("color"),d(b,w,b.text(),c,e,l)})}else"canvas"==g&&w.drawImage(b,j,k);else{a(b).children().each(function(){e(this,j,k)});var n=a(b).jqplotChildText();n&&(w.font=a(b).jqplotGetComputedFontStyle(),w.fillStyle=a(b).css("color"),d(b,w,n,j,k,l))}}b=b||{};var f=null==b.x_offset?0:b.x_offset,g=null==b.y_offset?0:b.y_offset,h=null==b.backgroundColor?"rgb(255,255,255)":b.backgroundColor;if(0==a(this).width()||0==a(this).height())return null;if(a.jqplot.use_excanvas)return null;for(var i,j,k,l,m=document.createElement("canvas"),n=a(this).outerHeight(!0),o=a(this).outerWidth(!0),p=a(this).offset(),q=p.left,r=p.top,s=0,t=0,u=["jqplot-table-legend","jqplot-xaxis-tick","jqplot-x2axis-tick","jqplot-yaxis-tick","jqplot-y2axis-tick","jqplot-y3axis-tick","jqplot-y4axis-tick","jqplot-y5axis-tick","jqplot-y6axis-tick","jqplot-y7axis-tick","jqplot-y8axis-tick","jqplot-y9axis-tick","jqplot-xaxis-label","jqplot-x2axis-label","jqplot-yaxis-label","jqplot-y2axis-label","jqplot-y3axis-label","jqplot-y4axis-label","jqplot-y5axis-label","jqplot-y6axis-label","jqplot-y7axis-label","jqplot-y8axis-label","jqplot-y9axis-label"],v=0;vj&&(o=o-s-j,s=-j),-t>i&&(n=n-t-i,t=-i),l>o&&(o=l),k>n&&(n=k)});m.width=o+Number(f),m.height=n+Number(g);var w=m.getContext("2d");return w.save(),w.fillStyle=h,w.fillRect(0,0,m.width,m.height),w.restore(),w.translate(s,t),w.textAlign="left",w.textBaseline="top",a(this).children().each(function(){e(this,f,g)}),m},a.fn.jqplotToImageStr=function(b){var c=a(this).jqplotToImageCanvas(b);return c?c.toDataURL("image/png"):null},a.fn.jqplotToImageElem=function(b){var c=document.createElement("img"),d=a(this).jqplotToImageStr(b);return c.src=d,c},a.fn.jqplotToImageElemStr=function(b){var c="";return c},a.fn.jqplotSaveImage=function(){var b=a(this).jqplotToImageStr({});b&&(window.location.href=b.replace("image/png","image/octet-stream"))},a.fn.jqplotViewImage=function(){var b=a(this).jqplotToImageElemStr({});a(this).jqplotToImageStr({});if(b){var c=window.open("");c.document.open("image/png"),c.document.write(b),c.document.close(),c=null}};var S=function(){switch(this.syntax=S.config.syntax,this._type="jsDate",this.proxy=new Date,this.options={},this.locale=S.regional.getLocale(),this.formatString="",this.defaultCentury=S.config.defaultCentury,arguments.length){case 0:break;case 1:if("[object Object]"==D(arguments[0])&&"jsDate"!=arguments[0]._type){var a=this.options=arguments[0];this.syntax=a.syntax||this.syntax,this.defaultCentury=a.defaultCentury||this.defaultCentury,this.proxy=S.createDate(a.date)}else this.proxy=S.createDate(arguments[0]);break;default:for(var b=[],c=0;c0?"floor":"ceil"](e)},S.prototype.getAbbrDayName=function(){return S.regional[this.locale].dayNamesShort[this.proxy.getDay()]},S.prototype.getAbbrMonthName=function(){return S.regional[this.locale].monthNamesShort[this.proxy.getMonth()]},S.prototype.getAMPM=function(){return this.proxy.getHours()>=12?"PM":"AM"},S.prototype.getAmPm=function(){return this.proxy.getHours()>=12?"pm":"am"},S.prototype.getCentury=function(){return parseInt(this.proxy.getFullYear()/100,10)},S.prototype.getDate=function(){return this.proxy.getDate()},S.prototype.getDay=function(){return this.proxy.getDay()},S.prototype.getDayOfWeek=function(){var a=this.proxy.getDay();return 0===a?7:a},S.prototype.getDayOfYear=function(){var a=this.proxy,b=a-new Date(""+a.getFullYear()+"/1/1 GMT");return b+=6e4*a.getTimezoneOffset(),a=null,parseInt(b/6e4/60/24,10)+1},S.prototype.getDayName=function(){return S.regional[this.locale].dayNames[this.proxy.getDay()]},S.prototype.getFullWeekOfYear=function(){var a=this.proxy,b=this.getDayOfYear(),c=6-a.getDay(),d=parseInt((b+c)/7,10);return d},S.prototype.getFullYear=function(){return this.proxy.getFullYear()},S.prototype.getGmtOffset=function(){var a=this.proxy.getTimezoneOffset()/60,b=0>a?"+":"-";return a=Math.abs(a),b+U(Math.floor(a),2)+":"+U(a%1*60,2)},S.prototype.getHours=function(){return this.proxy.getHours()},S.prototype.getHours12=function(){var a=this.proxy.getHours();return a>12?a-12:0==a?12:a},S.prototype.getIsoWeek=function(){var a=this.proxy,b=this.getWeekOfYear(),c=new Date(""+a.getFullYear()+"/1/1").getDay(),d=b+(c>4||1>=c?0:1);return 53==d&&new Date(""+a.getFullYear()+"/12/31").getDay()<4?d=1:0===d&&(a=new S(new Date(""+(a.getFullYear()-1)+"/12/31")),d=a.getIsoWeek()),a=null,d},S.prototype.getMilliseconds=function(){return this.proxy.getMilliseconds()},S.prototype.getMinutes=function(){return this.proxy.getMinutes()},S.prototype.getMonth=function(){return this.proxy.getMonth()},S.prototype.getMonthName=function(){return S.regional[this.locale].monthNames[this.proxy.getMonth()]},S.prototype.getMonthNumber=function(){return this.proxy.getMonth()+1},S.prototype.getSeconds=function(){return this.proxy.getSeconds()},S.prototype.getShortYear=function(){return this.proxy.getYear()%100},S.prototype.getTime=function(){return this.proxy.getTime()},S.prototype.getTimezoneAbbr=function(){return this.proxy.toString().replace(/^.*\(([^)]+)\)$/,"$1")},S.prototype.getTimezoneName=function(){var a=/(?:\((.+)\)$| ([A-Z]{3}) )/.exec(this.toString());return a[1]||a[2]||"GMT"+this.getGmtOffset()},S.prototype.getTimezoneOffset=function(){return this.proxy.getTimezoneOffset()},S.prototype.getWeekOfYear=function(){var a=this.getDayOfYear(),b=7-this.getDayOfWeek(),c=parseInt((a+b)/7,10);return c},S.prototype.getUnix=function(){return Math.round(this.proxy.getTime()/1e3,0)},S.prototype.getYear=function(){return this.proxy.getYear()},S.prototype.next=function(a){return a=a||"day",this.clone().add(1,a)},S.prototype.set=function(){switch(arguments.length){case 0:this.proxy=new Date;break;case 1:if("[object Object]"==D(arguments[0])&&"jsDate"!=arguments[0]._type){var a=this.options=arguments[0];this.syntax=a.syntax||this.syntax,this.defaultCentury=a.defaultCentury||this.defaultCentury,this.proxy=S.createDate(a.date)}else this.proxy=S.createDate(arguments[0]);break;default:for(var b=[],c=0;c0?"floor":"ceil"](b/12));var c=a.getMonth()+b%12;12==c?(c=0,a.setYear(a.getFullYear()+1)):-1==c&&(c=11,a.setYear(a.getFullYear()-1)),a.setMonth(c)},diff:function(a,b){var c=a.getFullYear()-b.getFullYear(),d=a.getMonth()-b.getMonth()+12*c,e=a.getDate()-b.getDate();return d+e/30}},year:{add:function(a,b){a.setYear(a.getFullYear()+Math[b>0?"floor":"ceil"](b))},diff:function(a,b){return V.month.diff(a,b)/12}}};for(var W in V)"s"!=W.substring(W.length-1)&&(V[W+"s"]=V[W]);var X=function(a,b,c){if(S.formats[c].shortcuts[b])return S.strftime(a,S.formats[c].shortcuts[b],c);var d=(S.formats[c].codes[b]||"").split("."),e=a["get"+d[0]]?a["get"+d[0]]():"";return d[1]&&(e=U(e,d[1])),e};S.strftime=function(a,b,c,d){var e="perl",f=S.regional.getLocale();c&&S.formats.hasOwnProperty(c)?e=c:c&&S.regional.hasOwnProperty(c)&&(f=c),d&&S.formats.hasOwnProperty(d)?e=d:d&&S.regional.hasOwnProperty(d)&&(f=d),("[object Object]"!=D(a)||"jsDate"!=a._type)&&(a=new S(a),a.locale=f),b||(b=a.formatString||S.regional[f].formatString);for(var g,h=b||"%Y-%m-%d",i="";h.length>0;)(g=h.match(S.formats[e].codes.matcher))?(i+=h.slice(0,g.index),i+=(g[1]||"")+X(a,g[2],e),h=h.slice(g.index+g[0].length)):(i+=h,h="");return i},S.formats={ISO:"%Y-%m-%dT%H:%M:%S.%N%G",SQL:"%Y-%m-%d %H:%M:%S"},S.formats.perl={codes:{matcher:/()%(#?(%|[a-z]))/i,Y:"FullYear",y:"ShortYear.2",m:"MonthNumber.2","#m":"MonthNumber",B:"MonthName",b:"AbbrMonthName",d:"Date.2","#d":"Date",e:"Date",A:"DayName",a:"AbbrDayName",w:"Day",H:"Hours.2","#H":"Hours",I:"Hours12.2","#I":"Hours12",p:"AMPM",M:"Minutes.2","#M":"Minutes",S:"Seconds.2","#S":"Seconds",s:"Unix",N:"Milliseconds.3","#N":"Milliseconds",O:"TimezoneOffset",Z:"TimezoneName",G:"GmtOffset"},shortcuts:{F:"%Y-%m-%d",T:"%H:%M:%S",X:"%H:%M:%S",x:"%m/%d/%y",D:"%m/%d/%y","#c":"%a %b %e %H:%M:%S %Y",v:"%e-%b-%Y",R:"%H:%M",r:"%I:%M:%S %p",t:" ",n:"\n","%":"%"}},S.formats.php={codes:{matcher:/()%((%|[a-z]))/i,a:"AbbrDayName",A:"DayName",d:"Date.2",e:"Date",j:"DayOfYear.3",u:"DayOfWeek",w:"Day",U:"FullWeekOfYear.2",V:"IsoWeek.2",W:"WeekOfYear.2",b:"AbbrMonthName",B:"MonthName",m:"MonthNumber.2",h:"AbbrMonthName",C:"Century.2",y:"ShortYear.2",Y:"FullYear",H:"Hours.2",I:"Hours12.2",l:"Hours12",p:"AMPM",P:"AmPm",M:"Minutes.2",S:"Seconds.2",s:"Unix",O:"TimezoneOffset",z:"GmtOffset",Z:"TimezoneAbbr"},shortcuts:{D:"%m/%d/%y",F:"%Y-%m-%d",T:"%H:%M:%S",X:"%H:%M:%S",x:"%m/%d/%y",R:"%H:%M",r:"%I:%M:%S %p",t:" ",n:"\n","%":"%"}},S.createDate=function(a){function b(a,b){var c,d,e,f,g=parseFloat(b[1]),h=parseFloat(b[2]),i=parseFloat(b[3]),j=S.config.defaultCentury;return g>31?(d=i,e=h,c=j+g):(d=h,e=g,c=j+i),f=e+"/"+d+"/"+c,a.replace(/^([0-9]{1,2})[-\/]([0-9]{1,2})[-\/]([0-9]{1,2})/,f)}if(null==a)return new Date;if(a instanceof Date)return a;if("number"==typeof a)return new Date(a);var c=String(a).replace(/^\s*(.+)\s*$/g,"$1");c=c.replace(/^([0-9]{1,4})-([0-9]{1,2})-([0-9]{1,4})/,"$1/$2/$3"),c=c.replace(/^(3[01]|[0-2]?\d)[-\/]([a-z]{3,})[-\/](\d{4})/i,"$1 $2 $3");var d=c.match(/^(3[01]|[0-2]?\d)[-\/]([a-z]{3,})[-\/](\d{2})\D*/i);if(d&&d.length>3){var e=parseFloat(d[3]),f=S.config.defaultCentury+e;f=String(f),c=c.replace(/^(3[01]|[0-2]?\d)[-\/]([a-z]{3,})[-\/](\d{2})\D*/i,d[1]+" "+d[2]+" "+f)}d=c.match(/^([0-9]{1,2})[-\/]([0-9]{1,2})[-\/]([0-9]{1,2})[^0-9]/),d&&d.length>3&&(c=b(c,d));var d=c.match(/^([0-9]{1,2})[-\/]([0-9]{1,2})[-\/]([0-9]{1,2})$/);d&&d.length>3&&(c=b(c,d));for(var g,h,i,j=0,k=S.matchers.length,l=c;k>j;){if(h=Date.parse(l),!isNaN(h))return new Date(h);if(g=S.matchers[j],"function"==typeof g){if(i=g.call(S,l),i instanceof Date)return i}else l=c.replace(g[0],g[1]);j++}return NaN},S.daysInMonth=function(a,b){return 2==b?29==new Date(a,1,29).getDate()?29:28:[F,31,F,31,30,31,30,31,31,30,31,30,31][b]},S.matchers=[[/(3[01]|[0-2]\d)\s*\.\s*(1[0-2]|0\d)\s*\.\s*([1-9]\d{3})/,"$2/$1/$3"],[/([1-9]\d{3})\s*-\s*(1[0-2]|0\d)\s*-\s*(3[01]|[0-2]\d)/,"$2/$3/$1"],function(a){var b=a.match(/^(?:(.+)\s+)?([012]?\d)(?:\s*\:\s*(\d\d))?(?:\s*\:\s*(\d\d(\.\d*)?))?\s*(am|pm)?\s*$/i);if(b){if(b[1]){var c=this.createDate(b[1]);if(isNaN(c))return}else{var c=new Date;c.setMilliseconds(0)}var d=parseFloat(b[2]);return b[6]&&(d="am"==b[6].toLowerCase()?12==d?0:d:12==d?12:d+12),c.setHours(d,parseInt(b[3]||0,10),parseInt(b[4]||0,10),1e3*(parseFloat(b[5]||0)||0)),c}return a},function(a){var b=a.match(/^(?:(.+))[T|\s+]([012]\d)(?:\:(\d\d))(?:\:(\d\d))(?:\.\d+)([\+\-]\d\d\:\d\d)$/i);if(b){if(b[1]){var c=this.createDate(b[1]);if(isNaN(c))return}else{var c=new Date;c.setMilliseconds(0)}var d=parseFloat(b[2]);return c.setHours(d,parseInt(b[3],10),parseInt(b[4],10),1e3*parseFloat(b[5])),c}return a},function(a){var b=a.match(/^([0-3]?\d)\s*[-\/.\s]{1}\s*([a-zA-Z]{3,9})\s*[-\/.\s]{1}\s*([0-3]?\d)$/);if(b){var c,d,e,f=new Date,g=S.config.defaultCentury,h=parseFloat(b[1]),i=parseFloat(b[3]);h>31?(d=i,c=g+h):(d=h,c=g+i);var e=C(b[2],S.regional[S.regional.getLocale()].monthNamesShort);return-1==e&&(e=C(b[2],S.regional[S.regional.getLocale()].monthNames)),f.setFullYear(c,e,d),f.setHours(0,0,0,0),f}return a}],a.jsDate=S,a.jqplot.sprintf=function(){function b(a,b,c,d){var e=a.length>=b?"":Array(1+b-a.length>>>0).join(c);return d?a+e:e+a}function c(b){for(var c=new String(b),d=10;d>0&&c!=(c=c.replace(/^(\d+)(\d{3})/,"$1"+a.jqplot.sprintf.thousandsSeparator+"$2"));d--);return c}function d(a,c,d,e,f,g){var h=e-a.length;if(h>0){var i=" ";g&&(i=" "),a=d||!f?b(a,e,i,d):a.slice(0,c.length)+b("",h,"0",!0)+a.slice(c.length)}return a}function e(a,c,e,f,g,h,i,j){var k=a>>>0;return e=e&&k&&{2:"0b",8:"0",16:"0x"}[c]||"",a=e+b(k.toString(c),h||0,"0",!1),d(a,e,f,g,i,j)}function f(a,b,c,e,f,g){return null!=e&&(a=a.slice(0,e)),d(a,"",b,c,f,g)}var g=arguments,h=0,i=g[h++];return i.replace(a.jqplot.sprintf.regex,function(i,j,k,l,m,n,o){if("%%"==i)return"%";for(var p=!1,q="",r=!1,s=!1,t=!1,u=!1,v=0;k&&vl&&(l=-l,p=!0),!isFinite(l))throw new Error("$.jqplot.sprintf: (minimum-)width must be finite");n=n?"*"==n?+g[h++]:"*"==n.charAt(0)?+g[n.slice(1,-1)]:+n:"fFeE".indexOf(o)>-1?6:"d"==o?0:void 0;var w=j?g[j.slice(0,-1)]:g[h++];switch(o){case"s":return null==w?"":f(String(w),p,l,n,r,t);case"c":return f(String.fromCharCode(+w),p,l,n,r,t);case"b":return e(w,2,s,p,l,n,r,t);case"o":return e(w,8,s,p,l,n,r,t);case"x":return e(w,16,s,p,l,n,r,t);case"X":return e(w,16,s,p,l,n,r,t).toUpperCase();case"u":return e(w,10,s,p,l,n,r,t);case"i":var x=parseInt(+w,10);if(isNaN(x))return"";var y=0>x?"-":q,z=u?c(String(Math.abs(x))):String(Math.abs(x));return w=y+b(z,n,"0",!1),d(w,y,p,l,r,t);case"d":var x=Math.round(+w);if(isNaN(x))return"";var y=0>x?"-":q,z=u?c(String(Math.abs(x))):String(Math.abs(x));return w=y+b(z,n,"0",!1),d(w,y,p,l,r,t);case"e":case"E":case"f":case"F":case"g":case"G":var x=+w;if(isNaN(x))return"";var y=0>x?"-":q,A=["toExponential","toFixed","toPrecision"]["efg".indexOf(o.toLowerCase())],B=["toString","toUpperCase"]["eEfFgG".indexOf(o)%2],z=Math.abs(x)[A](n),C=z.toString().split(".");C[0]=u?c(C[0]):C[0],z=C.join(a.jqplot.sprintf.decimalMark),w=y+z;var D=d(w,y,p,l,r,t)[B]();return D;case"p":case"P":var x=+w;if(isNaN(x))return"";var y=0>x?"-":q,C=String(Number(Math.abs(x)).toExponential()).split(/e|E/),E=-1!=C[0].indexOf(".")?C[0].length-1:String(x).length,F=C[1]<0?-C[1]-1:0;if(Math.abs(x)<1)w=n>=E+F?y+Math.abs(x).toPrecision(E):n-1>=E?y+Math.abs(x).toExponential(E-1):y+Math.abs(x).toExponential(n-1);else{var G=n>=E?E:n;w=y+Math.abs(x).toPrecision(G)}var B=["toString","toUpperCase"]["pP".indexOf(o)%2];return d(w,y,p,l,r,t)[B]();case"n":return"";default:return i}})},a.jqplot.sprintf.thousandsSeparator=",",a.jqplot.sprintf.decimalMark=".",a.jqplot.sprintf.regex=/%%|%(\d+\$)?([-+#0&\' ]*)(\*\d+\$|\*|\d+)?(\.(\*\d+\$|\*|\d+))?([nAscboxXuidfegpEGP])/g,a.jqplot.getSignificantFigures=function(a){var b=String(Number(Math.abs(a)).toExponential()).split(/e|E/),c=-1!=b[0].indexOf(".")?b[0].length-1:b[0].length,d=b[1]<0?-b[1]-1:0,e=parseInt(b[1],10),f=e+1>0?e+1:0,g=f>=c?0:c-e-1;return{significantDigits:c,digitsLeft:f,digitsRight:g,zeros:d,exponent:e}},a.jqplot.getPrecision=function(b){return a.jqplot.getSignificantFigures(b).digitsRight};var Y=a.uiBackCompat!==!1;a.jqplot.effects={effect:{}};var Z="jqplot.storage.";a.extend(a.jqplot.effects,{version:"1.9pre",save:function(a,b){for(var c=0;c").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0}),e={width:b.width(),height:b.height()},f=document.activeElement;return b.wrap(d),(b[0]===f||a.contains(b[0],f))&&a(f).focus(),d=b.parent(),"static"===b.css("position")?(d.css({position:"relative"}),b.css({position:"relative"})):(a.extend(c,{position:b.css("position"),zIndex:b.css("z-index")}),a.each(["top","left","bottom","right"],function(a,d){c[d]=b.css(d),isNaN(parseInt(c[d],10))&&(c[d]="auto")}),b.css({position:"relative",top:0,left:0,right:"auto",bottom:"auto"})),b.css(e),d.css(c).show()},removeWrapper:function(b){var c=document.activeElement;return b.parent().is(".ui-effects-wrapper")&&(b.parent().replaceWith(b),(b[0]===c||a.contains(b[0],c))&&a(c).focus()),b}}),a.fn.extend({jqplotEffect:function(b,c,d,e){function f(b){function c(){a.isFunction(e)&&e.call(d[0]),a.isFunction(b)&&b()}var d=a(this),e=g.complete,f=g.mode;(d.is(":hidden")?"hide"===f:"show"===f)?c():j.call(d[0],g,c)}var g=E.apply(this,arguments),h=g.mode,i=g.queue,j=a.jqplot.effects.effect[g.effect],k=!j&&Y&&a.jqplot.effects[g.effect];return a.fx.off||!j&&!k?h?this[h](g.duration,g.complete):this.each(function(){g.complete&&g.complete.call(this)}):j?i===!1?this.each(f):this.queue(i||"fx",f):k.call(this,{options:g,duration:g.duration,callback:g.complete,mode:g.mode})}});var $=/up|down|vertical/,_=/up|left|vertical|horizontal/;a.jqplot.effects.effect.blind=function(b,c){var d,e,f,g=a(this),h=["position","top","bottom","left","right","height","width"],i=a.jqplot.effects.setMode(g,b.mode||"hide"),j=b.direction||"up",k=$.test(j),l=k?"height":"width",m=k?"top":"left",n=_.test(j),o={},p="show"===i;g.parent().is(".ui-effects-wrapper")?a.jqplot.effects.save(g.parent(),h):a.jqplot.effects.save(g,h),g.show(),f=parseInt(g.css("top"),10),d=a.jqplot.effects.createWrapper(g).css({overflow:"hidden"}),e=k?d[l]()+f:d[l](),o[l]=p?String(e):"0",n||(g.css(k?"bottom":"right",0).css(k?"top":"left","").css({position:"absolute"}),o[m]=p?"0":String(e)),p&&(d.css(l,0),n||d.css(m,e)),d.animate(o,{duration:b.duration,easing:b.easing,queue:!1,complete:function(){"hide"===i&&g.hide(),a.jqplot.effects.restore(g,h),a.jqplot.effects.removeWrapper(g),c()}})}}(jQuery); \ No newline at end of file diff --git a/bes_theme/assets/javascripts/jqplot/plugins/jqplot.canvasAxisLabelRenderer.min.js b/bes_theme/assets/javascripts/jqplot/plugins/jqplot.canvasAxisLabelRenderer.min.js deleted file mode 100644 index 475f29f2..00000000 --- a/bes_theme/assets/javascripts/jqplot/plugins/jqplot.canvasAxisLabelRenderer.min.js +++ /dev/null @@ -1 +0,0 @@ -(function($){$.jqplot.CanvasAxisLabelRenderer=function(options){this.angle=0;this.axis;this.show=true;this.showLabel=true;this.label="";this.fontFamily='"Trebuchet MS", Arial, Helvetica, sans-serif';this.fontSize="11pt";this.fontWeight="normal";this.fontStretch=1;this.textColor="#666666";this.enableFontSupport=true;this.pt2px=null;this._elem;this._ctx;this._plotWidth;this._plotHeight;this._plotDimensions={height:null,width:null};$.extend(true,this,options);if(options.angle==null&&this.axis!="xaxis"&&this.axis!="x2axis"){this.angle=-90}var ropts={fontSize:this.fontSize,fontWeight:this.fontWeight,fontStretch:this.fontStretch,fillStyle:this.textColor,angle:this.getAngleRad(),fontFamily:this.fontFamily};if(this.pt2px){ropts.pt2px=this.pt2px}if(this.enableFontSupport){if($.jqplot.support_canvas_text()){this._textRenderer=new $.jqplot.CanvasFontRenderer(ropts)}else{this._textRenderer=new $.jqplot.CanvasTextRenderer(ropts)}}else{this._textRenderer=new $.jqplot.CanvasTextRenderer(ropts)}};$.jqplot.CanvasAxisLabelRenderer.prototype.init=function(options){$.extend(true,this,options);this._textRenderer.init({fontSize:this.fontSize,fontWeight:this.fontWeight,fontStretch:this.fontStretch,fillStyle:this.textColor,angle:this.getAngleRad(),fontFamily:this.fontFamily})};$.jqplot.CanvasAxisLabelRenderer.prototype.getWidth=function(ctx){if(this._elem){return this._elem.outerWidth(true)}else{var tr=this._textRenderer;var l=tr.getWidth(ctx);var h=tr.getHeight(ctx);var w=Math.abs(Math.sin(tr.angle)*h)+Math.abs(Math.cos(tr.angle)*l);return w}};$.jqplot.CanvasAxisLabelRenderer.prototype.getHeight=function(ctx){if(this._elem){return this._elem.outerHeight(true)}else{var tr=this._textRenderer;var l=tr.getWidth(ctx);var h=tr.getHeight(ctx);var w=Math.abs(Math.cos(tr.angle)*h)+Math.abs(Math.sin(tr.angle)*l);return w}};$.jqplot.CanvasAxisLabelRenderer.prototype.getAngleRad=function(){var a=this.angle*Math.PI/180;return a};$.jqplot.CanvasAxisLabelRenderer.prototype.draw=function(ctx,plot){if(this._elem){if($.jqplot.use_excanvas&&window.G_vmlCanvasManager.uninitElement!==undefined){window.G_vmlCanvasManager.uninitElement(this._elem.get(0))}this._elem.emptyForce();this._elem=null}var elem=plot.canvasManager.getCanvas();this._textRenderer.setText(this.label,ctx);var w=this.getWidth(ctx);var h=this.getHeight(ctx);elem.width=w;elem.height=h;elem.style.width=w;elem.style.height=h;elem=plot.canvasManager.initCanvas(elem);this._elem=$(elem);this._elem.css({position:"absolute"});this._elem.addClass("jqplot-"+this.axis+"-label");elem=null;return this._elem};$.jqplot.CanvasAxisLabelRenderer.prototype.pack=function(){this._textRenderer.draw(this._elem.get(0).getContext("2d"),this.label)}})(jQuery); \ No newline at end of file diff --git a/bes_theme/assets/javascripts/jqplot/plugins/jqplot.canvasTextRenderer.min.js b/bes_theme/assets/javascripts/jqplot/plugins/jqplot.canvasTextRenderer.min.js deleted file mode 100644 index 84c4fa57..00000000 --- a/bes_theme/assets/javascripts/jqplot/plugins/jqplot.canvasTextRenderer.min.js +++ /dev/null @@ -1 +0,0 @@ -(function($){$.jqplot.CanvasTextRenderer=function(options){this.fontStyle="normal";this.fontVariant="normal";this.fontWeight="normal";this.fontSize="10px";this.fontFamily="sans-serif";this.fontStretch=1;this.fillStyle="#666666";this.angle=0;this.textAlign="start";this.textBaseline="alphabetic";this.text;this.width;this.height;this.pt2px=1.28;$.extend(true,this,options);this.normalizedFontSize=this.normalizeFontSize(this.fontSize);this.setHeight()};$.jqplot.CanvasTextRenderer.prototype.init=function(options){$.extend(true,this,options);this.normalizedFontSize=this.normalizeFontSize(this.fontSize);this.setHeight()};$.jqplot.CanvasTextRenderer.prototype.normalizeFontSize=function(sz){sz=String(sz);var n=parseFloat(sz);if(sz.indexOf("px")>-1){return n/this.pt2px}else if(sz.indexOf("pt")>-1){return n}else if(sz.indexOf("em")>-1){return n*12}else if(sz.indexOf("%")>-1){return n*12/100}else{return n/this.pt2px}};$.jqplot.CanvasTextRenderer.prototype.fontWeight2Float=function(w){if(Number(w)){return w/400}else{switch(w){case"normal":return 1;break;case"bold":return 1.75;break;case"bolder":return 2.25;break;case"lighter":return.75;break;default:return 1;break}}};$.jqplot.CanvasTextRenderer.prototype.getText=function(){return this.text};$.jqplot.CanvasTextRenderer.prototype.setText=function(t,ctx){this.text=t;this.setWidth(ctx);return this};$.jqplot.CanvasTextRenderer.prototype.getWidth=function(ctx){return this.width};$.jqplot.CanvasTextRenderer.prototype.setWidth=function(ctx,w){if(!w){this.width=this.measure(ctx,this.text)}else{this.width=w}return this};$.jqplot.CanvasTextRenderer.prototype.getHeight=function(ctx){return this.height};$.jqplot.CanvasTextRenderer.prototype.setHeight=function(w){if(!w){this.height=this.normalizedFontSize*this.pt2px}else{this.height=w}return this};$.jqplot.CanvasTextRenderer.prototype.letter=function(ch){return this.letters[ch]};$.jqplot.CanvasTextRenderer.prototype.ascent=function(){return this.normalizedFontSize};$.jqplot.CanvasTextRenderer.prototype.descent=function(){return 7*this.normalizedFontSize/25};$.jqplot.CanvasTextRenderer.prototype.measure=function(ctx,str){var total=0;var len=str.length;for(var i=0;i30?2:2+(30-this.normalizedFontSize)/20;ctx.lineWidth=fact*mag*this.fontWeight2Float(this.fontWeight);for(var i=0;i":{width:24,points:[[4,18],[20,9],[4,0]]},"?":{width:18,points:[[3,16],[3,17],[4,19],[5,20],[7,21],[11,21],[13,20],[14,19],[15,17],[15,15],[14,13],[13,12],[9,10],[9,7],[-1,-1],[9,2],[8,1],[9,0],[10,1],[9,2]]},"@":{width:27,points:[[18,13],[17,15],[15,16],[12,16],[10,15],[9,14],[8,11],[8,8],[9,6],[11,5],[14,5],[16,6],[17,8],[-1,-1],[12,16],[10,14],[9,11],[9,8],[10,6],[11,5],[-1,-1],[18,16],[17,8],[17,6],[19,5],[21,5],[23,7],[24,10],[24,12],[23,15],[22,17],[20,19],[18,20],[15,21],[12,21],[9,20],[7,19],[5,17],[4,15],[3,12],[3,9],[4,6],[5,4],[7,2],[9,1],[12,0],[15,0],[18,1],[20,2],[21,3],[-1,-1],[19,16],[18,8],[18,6],[19,5]]},A:{width:18,points:[[9,21],[1,0],[-1,-1],[9,21],[17,0],[-1,-1],[4,7],[14,7]]},B:{width:21,points:[[4,21],[4,0],[-1,-1],[4,21],[13,21],[16,20],[17,19],[18,17],[18,15],[17,13],[16,12],[13,11],[-1,-1],[4,11],[13,11],[16,10],[17,9],[18,7],[18,4],[17,2],[16,1],[13,0],[4,0]]},C:{width:21,points:[[18,16],[17,18],[15,20],[13,21],[9,21],[7,20],[5,18],[4,16],[3,13],[3,8],[4,5],[5,3],[7,1],[9,0],[13,0],[15,1],[17,3],[18,5]]},D:{width:21,points:[[4,21],[4,0],[-1,-1],[4,21],[11,21],[14,20],[16,18],[17,16],[18,13],[18,8],[17,5],[16,3],[14,1],[11,0],[4,0]]},E:{width:19,points:[[4,21],[4,0],[-1,-1],[4,21],[17,21],[-1,-1],[4,11],[12,11],[-1,-1],[4,0],[17,0]]},F:{width:18,points:[[4,21],[4,0],[-1,-1],[4,21],[17,21],[-1,-1],[4,11],[12,11]]},G:{width:21,points:[[18,16],[17,18],[15,20],[13,21],[9,21],[7,20],[5,18],[4,16],[3,13],[3,8],[4,5],[5,3],[7,1],[9,0],[13,0],[15,1],[17,3],[18,5],[18,8],[-1,-1],[13,8],[18,8]]},H:{width:22,points:[[4,21],[4,0],[-1,-1],[18,21],[18,0],[-1,-1],[4,11],[18,11]]},I:{width:8,points:[[4,21],[4,0]]},J:{width:16,points:[[12,21],[12,5],[11,2],[10,1],[8,0],[6,0],[4,1],[3,2],[2,5],[2,7]]},K:{width:21,points:[[4,21],[4,0],[-1,-1],[18,21],[4,7],[-1,-1],[9,12],[18,0]]},L:{width:17,points:[[4,21],[4,0],[-1,-1],[4,0],[16,0]]},M:{width:24,points:[[4,21],[4,0],[-1,-1],[4,21],[12,0],[-1,-1],[20,21],[12,0],[-1,-1],[20,21],[20,0]]},N:{width:22,points:[[4,21],[4,0],[-1,-1],[4,21],[18,0],[-1,-1],[18,21],[18,0]]},O:{width:22,points:[[9,21],[7,20],[5,18],[4,16],[3,13],[3,8],[4,5],[5,3],[7,1],[9,0],[13,0],[15,1],[17,3],[18,5],[19,8],[19,13],[18,16],[17,18],[15,20],[13,21],[9,21]]},P:{width:21,points:[[4,21],[4,0],[-1,-1],[4,21],[13,21],[16,20],[17,19],[18,17],[18,14],[17,12],[16,11],[13,10],[4,10]]},Q:{width:22,points:[[9,21],[7,20],[5,18],[4,16],[3,13],[3,8],[4,5],[5,3],[7,1],[9,0],[13,0],[15,1],[17,3],[18,5],[19,8],[19,13],[18,16],[17,18],[15,20],[13,21],[9,21],[-1,-1],[12,4],[18,-2]]},R:{width:21,points:[[4,21],[4,0],[-1,-1],[4,21],[13,21],[16,20],[17,19],[18,17],[18,15],[17,13],[16,12],[13,11],[4,11],[-1,-1],[11,11],[18,0]]},S:{width:20,points:[[17,18],[15,20],[12,21],[8,21],[5,20],[3,18],[3,16],[4,14],[5,13],[7,12],[13,10],[15,9],[16,8],[17,6],[17,3],[15,1],[12,0],[8,0],[5,1],[3,3]]},T:{width:16,points:[[8,21],[8,0],[-1,-1],[1,21],[15,21]]},U:{width:22,points:[[4,21],[4,6],[5,3],[7,1],[10,0],[12,0],[15,1],[17,3],[18,6],[18,21]]},V:{width:18,points:[[1,21],[9,0],[-1,-1],[17,21],[9,0]]},W:{width:24,points:[[2,21],[7,0],[-1,-1],[12,21],[7,0],[-1,-1],[12,21],[17,0],[-1,-1],[22,21],[17,0]]},X:{width:20,points:[[3,21],[17,0],[-1,-1],[17,21],[3,0]]},Y:{width:18,points:[[1,21],[9,11],[9,0],[-1,-1],[17,21],[9,11]]},Z:{width:20,points:[[17,21],[3,0],[-1,-1],[3,21],[17,21],[-1,-1],[3,0],[17,0]]},"[":{width:14,points:[[4,25],[4,-7],[-1,-1],[5,25],[5,-7],[-1,-1],[4,25],[11,25],[-1,-1],[4,-7],[11,-7]]},"\\":{width:14,points:[[0,21],[14,-3]]},"]":{width:14,points:[[9,25],[9,-7],[-1,-1],[10,25],[10,-7],[-1,-1],[3,25],[10,25],[-1,-1],[3,-7],[10,-7]]},"^":{width:16,points:[[6,15],[8,18],[10,15],[-1,-1],[3,12],[8,17],[13,12],[-1,-1],[8,17],[8,0]]},_:{width:16,points:[[0,-2],[16,-2]]},"`":{width:10,points:[[6,21],[5,20],[4,18],[4,16],[5,15],[6,16],[5,17]]},a:{width:19,points:[[15,14],[15,0],[-1,-1],[15,11],[13,13],[11,14],[8,14],[6,13],[4,11],[3,8],[3,6],[4,3],[6,1],[8,0],[11,0],[13,1],[15,3]]},b:{width:19,points:[[4,21],[4,0],[-1,-1],[4,11],[6,13],[8,14],[11,14],[13,13],[15,11],[16,8],[16,6],[15,3],[13,1],[11,0],[8,0],[6,1],[4,3]]},c:{width:18,points:[[15,11],[13,13],[11,14],[8,14],[6,13],[4,11],[3,8],[3,6],[4,3],[6,1],[8,0],[11,0],[13,1],[15,3]]},d:{width:19,points:[[15,21],[15,0],[-1,-1],[15,11],[13,13],[11,14],[8,14],[6,13],[4,11],[3,8],[3,6],[4,3],[6,1],[8,0],[11,0],[13,1],[15,3]]},e:{width:18,points:[[3,8],[15,8],[15,10],[14,12],[13,13],[11,14],[8,14],[6,13],[4,11],[3,8],[3,6],[4,3],[6,1],[8,0],[11,0],[13,1],[15,3]]},f:{width:12,points:[[10,21],[8,21],[6,20],[5,17],[5,0],[-1,-1],[2,14],[9,14]]},g:{width:19,points:[[15,14],[15,-2],[14,-5],[13,-6],[11,-7],[8,-7],[6,-6],[-1,-1],[15,11],[13,13],[11,14],[8,14],[6,13],[4,11],[3,8],[3,6],[4,3],[6,1],[8,0],[11,0],[13,1],[15,3]]},h:{width:19,points:[[4,21],[4,0],[-1,-1],[4,10],[7,13],[9,14],[12,14],[14,13],[15,10],[15,0]]},i:{width:8,points:[[3,21],[4,20],[5,21],[4,22],[3,21],[-1,-1],[4,14],[4,0]]},j:{width:10,points:[[5,21],[6,20],[7,21],[6,22],[5,21],[-1,-1],[6,14],[6,-3],[5,-6],[3,-7],[1,-7]]},k:{width:17,points:[[4,21],[4,0],[-1,-1],[14,14],[4,4],[-1,-1],[8,8],[15,0]]},l:{width:8,points:[[4,21],[4,0]]},m:{width:30,points:[[4,14],[4,0],[-1,-1],[4,10],[7,13],[9,14],[12,14],[14,13],[15,10],[15,0],[-1,-1],[15,10],[18,13],[20,14],[23,14],[25,13],[26,10],[26,0]]},n:{width:19,points:[[4,14],[4,0],[-1,-1],[4,10],[7,13],[9,14],[12,14],[14,13],[15,10],[15,0]]},o:{width:19,points:[[8,14],[6,13],[4,11],[3,8],[3,6],[4,3],[6,1],[8,0],[11,0],[13,1],[15,3],[16,6],[16,8],[15,11],[13,13],[11,14],[8,14]]},p:{width:19,points:[[4,14],[4,-7],[-1,-1],[4,11],[6,13],[8,14],[11,14],[13,13],[15,11],[16,8],[16,6],[15,3],[13,1],[11,0],[8,0],[6,1],[4,3]]},q:{width:19,points:[[15,14],[15,-7],[-1,-1],[15,11],[13,13],[11,14],[8,14],[6,13],[4,11],[3,8],[3,6],[4,3],[6,1],[8,0],[11,0],[13,1],[15,3]]},r:{width:13,points:[[4,14],[4,0],[-1,-1],[4,8],[5,11],[7,13],[9,14],[12,14]]},s:{width:17,points:[[14,11],[13,13],[10,14],[7,14],[4,13],[3,11],[4,9],[6,8],[11,7],[13,6],[14,4],[14,3],[13,1],[10,0],[7,0],[4,1],[3,3]]},t:{width:12,points:[[5,21],[5,4],[6,1],[8,0],[10,0],[-1,-1],[2,14],[9,14]]},u:{width:19,points:[[4,14],[4,4],[5,1],[7,0],[10,0],[12,1],[15,4],[-1,-1],[15,14],[15,0]]},v:{width:16,points:[[2,14],[8,0],[-1,-1],[14,14],[8,0]]},w:{width:22,points:[[3,14],[7,0],[-1,-1],[11,14],[7,0],[-1,-1],[11,14],[15,0],[-1,-1],[19,14],[15,0]]},x:{width:17,points:[[3,14],[14,0],[-1,-1],[14,14],[3,0]]},y:{width:16,points:[[2,14],[8,0],[-1,-1],[14,14],[8,0],[6,-4],[4,-6],[2,-7],[1,-7]]},z:{width:17,points:[[14,14],[3,0],[-1,-1],[3,14],[14,14],[-1,-1],[3,0],[14,0]]},"{":{width:14,points:[[9,25],[7,24],[6,23],[5,21],[5,19],[6,17],[7,16],[8,14],[8,12],[6,10],[-1,-1],[7,24],[6,22],[6,20],[7,18],[8,17],[9,15],[9,13],[8,11],[4,9],[8,7],[9,5],[9,3],[8,1],[7,0],[6,-2],[6,-4],[7,-6],[-1,-1],[6,8],[8,6],[8,4],[7,2],[6,1],[5,-1],[5,-3],[6,-5],[7,-6],[9,-7]]},"|":{width:8,points:[[4,25],[4,-7]]},"}":{width:14,points:[[5,25],[7,24],[8,23],[9,21],[9,19],[8,17],[7,16],[6,14],[6,12],[8,10],[-1,-1],[7,24],[8,22],[8,20],[7,18],[6,17],[5,15],[5,13],[6,11],[10,9],[6,7],[5,5],[5,3],[6,1],[7,0],[8,-2],[8,-4],[7,-6],[-1,-1],[8,8],[6,6],[6,4],[7,2],[8,1],[9,-1],[9,-3],[8,-5],[7,-6],[5,-7]]},"~":{width:24,points:[[3,6],[3,8],[4,11],[6,12],[8,12],[10,11],[14,8],[16,7],[18,7],[20,8],[21,10],[-1,-1],[3,8],[4,10],[6,11],[8,11],[10,10],[14,7],[16,6],[18,6],[20,7],[21,10],[21,12]]}};$.jqplot.CanvasFontRenderer=function(options){options=options||{};if(!options.pt2px){options.pt2px=1.5}$.jqplot.CanvasTextRenderer.call(this,options)};$.jqplot.CanvasFontRenderer.prototype=new $.jqplot.CanvasTextRenderer({});$.jqplot.CanvasFontRenderer.prototype.constructor=$.jqplot.CanvasFontRenderer;$.jqplot.CanvasFontRenderer.prototype.measure=function(ctx,str){var fstyle=this.fontSize+" "+this.fontFamily;ctx.save();ctx.font=fstyle;var w=ctx.measureText(str).width;ctx.restore();return w};$.jqplot.CanvasFontRenderer.prototype.draw=function(ctx,str){var x=0;var y=this.height*.72;ctx.save();var tx,ty;if(-Math.PI/2<=this.angle&&this.angle<=0||Math.PI*3/2<=this.angle&&this.angle<=Math.PI*2){tx=0;ty=-Math.sin(this.angle)*this.width}else if(0');if(this.seriesToggle){this._elem.css("z-index","3")}var pad=false,reverse=false,nr,nc;if(this.numberRows){nr=this.numberRows;if(!this.numberColumns){nc=Math.ceil(series.length/nr)}else{nc=this.numberColumns}}else if(this.numberColumns){nc=this.numberColumns;nr=Math.ceil(series.length/this.numberColumns)}else{nr=series.length;nc=1}var i,j,tr,td1,td2,lt,rs,div,div0,div1;var idx=0;for(i=series.length-1;i>=0;i--){if(nc==1&&series[i]._stack||series[i].renderer.constructor==$.jqplot.BezierCurveRenderer){reverse=true}}for(i=0;i0){pad=true}else{pad=false}}else{if(i==nr-1){pad=false}else{pad=true}}rs=pad?this.rowSpacing:"0";td1=$(document.createElement("td"));td1.addClass("jqplot-table-legend jqplot-table-legend-swatch");td1.css({textAlign:"center",paddingTop:rs});div0=$(document.createElement("div"));div0.addClass("jqplot-table-legend-swatch-outline");div1=$(document.createElement("div"));div1.addClass("jqplot-table-legend-swatch");div1.css({backgroundColor:color,borderColor:color});td1.append(div0.append(div1));td2=$(document.createElement("td"));td2.addClass("jqplot-table-legend jqplot-table-legend-label");td2.css("paddingTop",rs);if(this.escapeHtml){td2.text(lt)}else{td2.html(lt)}if(reverse){if(this.showLabels){td2.prependTo(tr)}if(this.showSwatches){td1.prependTo(tr)}}else{if(this.showSwatches){td1.appendTo(tr)}if(this.showLabels){td2.appendTo(tr)}}if(this.seriesToggle){var speed;if(typeof this.seriesToggle==="string"||typeof this.seriesToggle==="number"){if(!$.jqplot.use_excanvas||!this.disableIEFading){speed=this.seriesToggle}}if(this.showSwatches){td1.bind("click",{series:s,speed:speed,plot:plot,replot:this.seriesToggleReplot},handleToggle);td1.addClass("jqplot-seriesToggle")}if(this.showLabels){td2.bind("click",{series:s,speed:speed,plot:plot,replot:this.seriesToggleReplot},handleToggle);td2.addClass("jqplot-seriesToggle")}if(!s.show&&s.showLabel){td1.addClass("jqplot-series-hidden");td2.addClass("jqplot-series-hidden")}}pad=true}}idx++}td1=td2=div0=div1=null}}return this._elem};var handleToggle=function(ev){var d=ev.data,s=d.series,replot=d.replot,plot=d.plot,speed=d.speed,sidx=s.index,showing=false;if(s.canvas._elem.is(":hidden")||!s.show){showing=true}var doLegendToggle=function(){if(replot){var opts={};if($.isPlainObject(replot)){$.extend(true,opts,replot)}plot.replot(opts);if(showing&&speed){var s=plot.series[sidx];if(s.shadowCanvas._elem){s.shadowCanvas._elem.hide().fadeIn(speed)}s.canvas._elem.hide().fadeIn(speed);s.canvas._elem.nextAll(".jqplot-point-label.jqplot-series-"+s.index).hide().fadeIn(speed)}}else{var s=plot.series[sidx];if(s.canvas._elem.is(":hidden")||!s.show){if(typeof plot.options.legend.showSwatches==="undefined"||plot.options.legend.showSwatches===true){plot.legend._elem.find("td").eq(sidx*2).addClass("jqplot-series-hidden")}if(typeof plot.options.legend.showLabels==="undefined"||plot.options.legend.showLabels===true){plot.legend._elem.find("td").eq(sidx*2+1).addClass("jqplot-series-hidden")}}else{if(typeof plot.options.legend.showSwatches==="undefined"||plot.options.legend.showSwatches===true){plot.legend._elem.find("td").eq(sidx*2).removeClass("jqplot-series-hidden")}if(typeof plot.options.legend.showLabels==="undefined"||plot.options.legend.showLabels===true){plot.legend._elem.find("td").eq(sidx*2+1).removeClass("jqplot-series-hidden")}}}};s.toggleDisplay(ev,doLegendToggle)};var postDraw=function(){if(this.legend.renderer.constructor==$.jqplot.EnhancedLegendRenderer&&this.legend.seriesToggle){var e=this.legend._elem.detach();this.eventCanvas._elem.after(e)}}})(jQuery); \ No newline at end of file diff --git a/bes_theme/assets/javascripts/jqplot/plugins/jqplot.highlighter.min.js b/bes_theme/assets/javascripts/jqplot/plugins/jqplot.highlighter.min.js deleted file mode 100644 index a5745f48..00000000 --- a/bes_theme/assets/javascripts/jqplot/plugins/jqplot.highlighter.min.js +++ /dev/null @@ -1 +0,0 @@ -(function($){$.jqplot.eventListenerHooks.push(["jqplotMouseMove",handleMove]);$.jqplot.Highlighter=function(options){this.show=$.jqplot.config.enablePlugins;this.markerRenderer=new $.jqplot.MarkerRenderer({shadow:false});this.showMarker=true;this.lineWidthAdjust=2.5;this.sizeAdjust=5;this.showTooltip=true;this.tooltipLocation="nw";this.fadeTooltip=true;this.tooltipFadeSpeed="fast";this.tooltipOffset=2;this.tooltipAxes="both";this.tooltipSeparator=", ";this.tooltipContentEditor=null;this.useAxesFormatters=true;this.tooltipFormatString="%.5P";this.formatString=null;this.yvalues=1;this.bringSeriesToFront=false;this._tooltipElem;this.isHighlighting=false;this.currentNeighbor=null;$.extend(true,this,options)};var locations=["nw","n","ne","e","se","s","sw","w"];var locationIndicies={nw:0,n:1,ne:2,e:3,se:4,s:5,sw:6,w:7};var oppositeLocations=["se","s","sw","w","nw","n","ne","e"];$.jqplot.Highlighter.init=function(target,data,opts){var options=opts||{};this.plugins.highlighter=new $.jqplot.Highlighter(options.highlighter)};$.jqplot.Highlighter.parseOptions=function(defaults,options){this.showHighlight=true};$.jqplot.Highlighter.postPlotDraw=function(){if(this.plugins.highlighter&&this.plugins.highlighter.highlightCanvas){this.plugins.highlighter.highlightCanvas.resetCanvas();this.plugins.highlighter.highlightCanvas=null}if(this.plugins.highlighter&&this.plugins.highlighter._tooltipElem){this.plugins.highlighter._tooltipElem.emptyForce();this.plugins.highlighter._tooltipElem=null}this.plugins.highlighter.highlightCanvas=new $.jqplot.GenericCanvas;this.eventCanvas._elem.before(this.plugins.highlighter.highlightCanvas.createElement(this._gridPadding,"jqplot-highlight-canvas",this._plotDimensions,this));this.plugins.highlighter.highlightCanvas.setContext();var elem=document.createElement("div");this.plugins.highlighter._tooltipElem=$(elem);elem=null;this.plugins.highlighter._tooltipElem.addClass("jqplot-highlighter-tooltip");this.plugins.highlighter._tooltipElem.css({position:"absolute",display:"none"});this.eventCanvas._elem.before(this.plugins.highlighter._tooltipElem)};$.jqplot.preInitHooks.push($.jqplot.Highlighter.init);$.jqplot.preParseSeriesOptionsHooks.push($.jqplot.Highlighter.parseOptions);$.jqplot.postDrawHooks.push($.jqplot.Highlighter.postPlotDraw);function draw(plot,neighbor){var hl=plot.plugins.highlighter;var s=plot.series[neighbor.seriesIndex];var smr=s.markerRenderer;var mr=hl.markerRenderer;mr.style=smr.style;mr.lineWidth=smr.lineWidth+hl.lineWidthAdjust;mr.size=smr.size+hl.sizeAdjust;var rgba=$.jqplot.getColorComponents(smr.color);var newrgb=[rgba[0],rgba[1],rgba[2]];var alpha=rgba[3]>=.6?rgba[3]*.6:rgba[3]*(2-rgba[3]);mr.color="rgba("+newrgb[0]+","+newrgb[1]+","+newrgb[2]+","+alpha+")";mr.init();mr.draw(s.gridData[neighbor.pointIndex][0],s.gridData[neighbor.pointIndex][1],hl.highlightCanvas._ctx)}function showTooltip(plot,series,neighbor){var hl=plot.plugins.highlighter;var elem=hl._tooltipElem;var serieshl=series.highlighter||{};var opts=$.extend(true,{},hl,serieshl);if(opts.useAxesFormatters){var xf=series._xaxis._ticks[0].formatter;var yf=series._yaxis._ticks[0].formatter;var xfstr=series._xaxis._ticks[0].formatString;var yfstr=series._yaxis._ticks[0].formatString;var str;var xstr=xf(xfstr,neighbor.data[0]);var ystrs=[];for(var i=1;i570?newrgb[j]*.8:newrgb[j]+.3*(255-newrgb[j]);newrgb[j]=parseInt(newrgb[j],10)}this.highlightColors.push("rgb("+newrgb[0]+","+newrgb[1]+","+newrgb[2]+")")}}this.highlightColorGenerator=new $.jqplot.ColorGenerator(this.highlightColors);plot.postParseOptionsHooks.addOnce(postParseOptions);plot.postInitHooks.addOnce(postInit);plot.eventListenerHooks.addOnce("jqplotMouseMove",handleMove);plot.eventListenerHooks.addOnce("jqplotMouseDown",handleMouseDown);plot.eventListenerHooks.addOnce("jqplotMouseUp",handleMouseUp);plot.eventListenerHooks.addOnce("jqplotClick",handleClick);plot.eventListenerHooks.addOnce("jqplotRightClick",handleRightClick);plot.postDrawHooks.addOnce(postPlotDraw)};$.jqplot.PieRenderer.prototype.setGridData=function(plot){var stack=[];var td=[];var sa=this.startAngle/180*Math.PI;var tot=0;this._drawData=false;for(var i=0;i0){stack[i]+=stack[i-1]}tot+=this.data[i][1]}var fact=Math.PI*2/stack[stack.length-1];for(var i=0;i0){stack[i]+=stack[i-1]}tot+=data[i][1]}var fact=Math.PI*2/stack[stack.length-1];for(var i=0;i0&&absang>.01&&absang<6.282){rprime=parseFloat(sm)/2/calcRadiusAdjustment(ang)}return rprime}$.jqplot.PieRenderer.prototype.drawSlice=function(ctx,ang1,ang2,color,isShadow){if(this._drawData){var r=this._radius;var fill=this.fill;var lineWidth=this.lineWidth;var sm=this.sliceMargin;if(this.fill==false){sm+=this.lineWidth}ctx.save();ctx.translate(this._center[0],this._center[1]);var rprime=calcRPrime(ang1,ang2,this.sliceMargin,this.fill,this.lineWidth);var transx=rprime*Math.cos((ang1+ang2)/2);var transy=rprime*Math.sin((ang1+ang2)/2);if(ang2-ang1<=Math.PI){r-=rprime}else{r+=rprime}ctx.translate(transx,transy);if(isShadow){for(var i=0,l=this.shadowDepth;i6.282+this.startAngle){ang2=6.282+this.startAngle;if(ang1>ang2){ang1=6.281+this.startAngle}}if(ang1>=ang2){return}ctx.beginPath();ctx.fillStyle=color;ctx.strokeStyle=color;ctx.lineWidth=lineWidth;ctx.arc(0,0,rad,ang1,ang2,false);ctx.lineTo(0,0);ctx.closePath();if(fill){ctx.fill()}else{ctx.stroke()}}};$.jqplot.PieRenderer.prototype.draw=function(ctx,gd,options,plot){var i;var opts=options!=undefined?options:{};var offx=0;var offy=0;var trans=1;var colorGenerator=new $.jqplot.ColorGenerator(this.seriesColors);var sliceColor;if(options.legendInfo&&options.legendInfo.placement=="insideGrid"){var li=options.legendInfo;switch(li.location){case"nw":offx=li.width+li.xoffset;break;case"w":offx=li.width+li.xoffset;break;case"sw":offx=li.width+li.xoffset;break;case"ne":offx=li.width+li.xoffset;trans=-1;break;case"e":offx=li.width+li.xoffset;trans=-1;break;case"se":offx=li.width+li.xoffset;trans=-1;break;case"n":offy=li.height+li.yoffset;break;case"s":offy=li.height+li.yoffset;trans=-1;break;default:break}}var shadow=opts.shadow!=undefined?opts.shadow:this.shadow;var fill=opts.fill!=undefined?opts.fill:this.fill;var cw=parseInt(ctx.canvas.style.width);var ch=parseInt(ctx.canvas.style.height);var w=cw-offx-2*this.padding;var h=ch-offy-2*this.padding;var mindim=Math.min(w,h);var d=mindim;this._sliceAngles=[];var sm=this.sliceMargin;if(this.fill==false){sm+=this.lineWidth}var rprime;var maxrprime=0;var ang,ang1,ang2,shadowColor;var sa=this.startAngle/180*Math.PI;for(var i=0,l=gd.length;iMath.PI){maxrprime=Math.max(rprime,maxrprime)}}if(this.diameter!=null&&this.diameter>0){this._diameter=this.diameter-2*maxrprime}else{this._diameter=d-2*maxrprime}if(this._diameter<6){$.jqplot.log("Diameter of pie too small, not rendering.");return}var r=this._radius=this._diameter/2;this._center=[(cw-trans*offx)/2+trans*offx+maxrprime*Math.cos(sa),(ch-trans*offy)/2+trans*offy+maxrprime*Math.sin(sa)];if(this.shadow){for(var i=0,l=gd.length;i=this.dataLabelThreshold){var fstr,avgang=(this._sliceAngles[i][0]+this._sliceAngles[i][1])/2,label;if(this.dataLabels=="label"){fstr=this.dataLabelFormatString||"%s";label=$.jqplot.sprintf(fstr,gd[i][0])}else if(this.dataLabels=="value"){fstr=this.dataLabelFormatString||"%d";label=$.jqplot.sprintf(fstr,this.data[i][1])}else if(this.dataLabels=="percent"){fstr=this.dataLabelFormatString||"%d%%";label=$.jqplot.sprintf(fstr,gd[i][2]*100)}else if(this.dataLabels.constructor==Array){fstr=this.dataLabelFormatString||"%s";label=$.jqplot.sprintf(fstr,this.dataLabels[i])}var fact=this._radius*this.dataLabelPositionFactor+this.sliceMargin+this.dataLabelNudge;var x=this._center[0]+Math.cos(avgang)*fact+this.canvas._offsets.left;var y=this._center[1]+Math.sin(avgang)*fact+this.canvas._offsets.top;var labelelem=$('
    '+label+"
    ").insertBefore(plot.eventCanvas._elem);if(this.dataLabelCenterOn){x-=labelelem.width()/2;y-=labelelem.height()/2}else{x-=labelelem.width()*Math.sin(avgang/2);y-=labelelem.height()/2}x=Math.round(x);y=Math.round(y);labelelem.css({left:x,top:y})}}}};$.jqplot.PieAxisRenderer=function(){$.jqplot.LinearAxisRenderer.call(this)};$.jqplot.PieAxisRenderer.prototype=new $.jqplot.LinearAxisRenderer;$.jqplot.PieAxisRenderer.prototype.constructor=$.jqplot.PieAxisRenderer;$.jqplot.PieAxisRenderer.prototype.init=function(options){this.tickRenderer=$.jqplot.PieTickRenderer;$.extend(true,this,options);this._dataBounds={min:0,max:100};this.min=0;this.max=100;this.showTicks=false;this.ticks=[];this.showMark=false;this.show=false};$.jqplot.PieLegendRenderer=function(){$.jqplot.TableLegendRenderer.call(this)};$.jqplot.PieLegendRenderer.prototype=new $.jqplot.TableLegendRenderer;$.jqplot.PieLegendRenderer.prototype.constructor=$.jqplot.PieLegendRenderer;$.jqplot.PieLegendRenderer.prototype.init=function(options){this.numberRows=null;this.numberColumns=null;this.width=null;$.extend(true,this,options)};$.jqplot.PieLegendRenderer.prototype.draw=function(){var legend=this;if(this.show){var series=this._series;this._elem=$(document.createElement("table"));this._elem.addClass("jqplot-table-legend");var ss={position:"absolute"};if(this.background){ss["background"]=this.background}if(this.border){ss["border"]=this.border}if(this.fontSize){ss["fontSize"]=this.fontSize}if(this.fontFamily){ss["fontFamily"]=this.fontFamily}if(this.textColor){ss["textColor"]=this.textColor}if(this.marginTop!=null){ss["marginTop"]=this.marginTop}if(this.marginBottom!=null){ss["marginBottom"]=this.marginBottom}if(this.marginLeft!=null){ss["marginLeft"]=this.marginLeft}if(this.marginRight!=null){ss["marginRight"]=this.marginRight}this._elem.css(ss);var pad=false,reverse=false,nr,nc;var s=series[0];var colorGenerator=new $.jqplot.ColorGenerator(s.seriesColors);if(s.show){var pd=s.data;if(this.numberRows){nr=this.numberRows;if(!this.numberColumns){nc=Math.ceil(pd.length/nr)}else{nc=this.numberColumns}}else if(this.numberColumns){nc=this.numberColumns;nr=Math.ceil(pd.length/this.numberColumns)}else{nr=pd.length;nc=1}var i,j;var tr,td1,td2;var lt,tt,rs,color;var idx=0;var div0,div1;for(i=0;i0){pad=true}else{pad=false}}else{if(i==nr-1){pad=false}else{pad=true}}rs=pad?this.rowSpacing:"0";td1=$(document.createElement("td"));td1.addClass("jqplot-table-legend jqplot-table-legend-swatch");td1.css({textAlign:"center",paddingTop:rs});div0=$(document.createElement("div"));div0.addClass("jqplot-table-legend-swatch-outline");if(tt!==""){div0.attr("title",tt)}div1=$(document.createElement("div"));div1.addClass("jqplot-table-legend-swatch");div1.css({backgroundColor:color,borderColor:color});td1.append(div0.append(div1));td2=$(document.createElement("td"));td2.addClass("jqplot-table-legend jqplot-table-legend-label");td2.css("paddingTop",rs);if(this.escapeHtml){td2.text(lt)}else{td2.html(''+lt+"")}if(reverse){td2.prependTo(tr);td1.prependTo(tr)}else{td1.appendTo(tr);td2.appendTo(tr)}pad=true}idx++}}}}return this._elem};$.jqplot.PieRenderer.prototype.handleMove=function(ev,gridpos,datapos,neighbor,plot){if(neighbor){var ins=[neighbor.seriesIndex,neighbor.pointIndex,neighbor.data];plot.target.trigger("jqplotDataMouseOver",ins);if(plot.series[ins[0]].highlightMouseOver&&!(ins[0]==plot.plugins.pieRenderer.highlightedSeriesIndex&&ins[1]==plot.series[ins[0]]._highlightedPoint)){plot.target.trigger("jqplotDataHighlight",ins);highlight(plot,ins[0],ins[1])}}else if(neighbor==null){unhighlight(plot)}};function preInit(target,data,options){options=options||{};options.axesDefaults=options.axesDefaults||{};options.legend=options.legend||{};options.seriesDefaults=options.seriesDefaults||{};var setopts=false;if(options.seriesDefaults.renderer==$.jqplot.PieRenderer){setopts=true}else if(options.series){for(var i=0;i)[^>]*|#([\w-]*))$/,C=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,k=/^-ms-/,N=/-([\da-z])/gi,E=function(e,t){return t.toUpperCase()},S=function(){o.removeEventListener("DOMContentLoaded",S,!1),e.removeEventListener("load",S,!1),x.ready()};x.fn=x.prototype={jquery:p,constructor:x,init:function(e,t,n){var r,i;if(!e)return this;if("string"==typeof e){if(r="<"===e.charAt(0)&&">"===e.charAt(e.length-1)&&e.length>=3?[null,e,null]:T.exec(e),!r||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof x?t[0]:t,x.merge(this,x.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:o,!0)),C.test(r[1])&&x.isPlainObject(t))for(r in t)x.isFunction(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return i=o.getElementById(r[2]),i&&i.parentNode&&(this.length=1,this[0]=i),this.context=o,this.selector=e,this}return e.nodeType?(this.context=this[0]=e,this.length=1,this):x.isFunction(e)?n.ready(e):(e.selector!==undefined&&(this.selector=e.selector,this.context=e.context),x.makeArray(e,this))},selector:"",length:0,toArray:function(){return d.call(this)},get:function(e){return null==e?this.toArray():0>e?this[this.length+e]:this[e]},pushStack:function(e){var t=x.merge(this.constructor(),e);return t.prevObject=this,t.context=this.context,t},each:function(e,t){return x.each(this,e,t)},ready:function(e){return x.ready.promise().done(e),this},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(e){var t=this.length,n=+e+(0>e?t:0);return this.pushStack(n>=0&&t>n?[this[n]]:[])},map:function(e){return this.pushStack(x.map(this,function(t,n){return e.call(t,n,t)}))},end:function(){return this.prevObject||this.constructor(null)},push:h,sort:[].sort,splice:[].splice},x.fn.init.prototype=x.fn,x.extend=x.fn.extend=function(){var e,t,n,r,i,o,s=arguments[0]||{},a=1,u=arguments.length,l=!1;for("boolean"==typeof s&&(l=s,s=arguments[1]||{},a=2),"object"==typeof s||x.isFunction(s)||(s={}),u===a&&(s=this,--a);u>a;a++)if(null!=(e=arguments[a]))for(t in e)n=s[t],r=e[t],s!==r&&(l&&r&&(x.isPlainObject(r)||(i=x.isArray(r)))?(i?(i=!1,o=n&&x.isArray(n)?n:[]):o=n&&x.isPlainObject(n)?n:{},s[t]=x.extend(l,o,r)):r!==undefined&&(s[t]=r));return s},x.extend({expando:"jQuery"+(p+Math.random()).replace(/\D/g,""),noConflict:function(t){return e.$===x&&(e.$=u),t&&e.jQuery===x&&(e.jQuery=a),x},isReady:!1,readyWait:1,holdReady:function(e){e?x.readyWait++:x.ready(!0)},ready:function(e){(e===!0?--x.readyWait:x.isReady)||(x.isReady=!0,e!==!0&&--x.readyWait>0||(n.resolveWith(o,[x]),x.fn.trigger&&x(o).trigger("ready").off("ready")))},isFunction:function(e){return"function"===x.type(e)},isArray:Array.isArray,isWindow:function(e){return null!=e&&e===e.window},isNumeric:function(e){return!isNaN(parseFloat(e))&&isFinite(e)},type:function(e){return null==e?e+"":"object"==typeof e||"function"==typeof e?l[m.call(e)]||"object":typeof e},isPlainObject:function(e){if("object"!==x.type(e)||e.nodeType||x.isWindow(e))return!1;try{if(e.constructor&&!y.call(e.constructor.prototype,"isPrototypeOf"))return!1}catch(t){return!1}return!0},isEmptyObject:function(e){var t;for(t in e)return!1;return!0},error:function(e){throw Error(e)},parseHTML:function(e,t,n){if(!e||"string"!=typeof e)return null;"boolean"==typeof t&&(n=t,t=!1),t=t||o;var r=C.exec(e),i=!n&&[];return r?[t.createElement(r[1])]:(r=x.buildFragment([e],t,i),i&&x(i).remove(),x.merge([],r.childNodes))},parseJSON:JSON.parse,parseXML:function(e){var t,n;if(!e||"string"!=typeof e)return null;try{n=new DOMParser,t=n.parseFromString(e,"text/xml")}catch(r){t=undefined}return(!t||t.getElementsByTagName("parsererror").length)&&x.error("Invalid XML: "+e),t},noop:function(){},globalEval:function(e){var t,n=eval;e=x.trim(e),e&&(1===e.indexOf("use strict")?(t=o.createElement("script"),t.text=e,o.head.appendChild(t).parentNode.removeChild(t)):n(e))},camelCase:function(e){return e.replace(k,"ms-").replace(N,E)},nodeName:function(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()},each:function(e,t,n){var r,i=0,o=e.length,s=j(e);if(n){if(s){for(;o>i;i++)if(r=t.apply(e[i],n),r===!1)break}else for(i in e)if(r=t.apply(e[i],n),r===!1)break}else if(s){for(;o>i;i++)if(r=t.call(e[i],i,e[i]),r===!1)break}else for(i in e)if(r=t.call(e[i],i,e[i]),r===!1)break;return e},trim:function(e){return null==e?"":v.call(e)},makeArray:function(e,t){var n=t||[];return null!=e&&(j(Object(e))?x.merge(n,"string"==typeof e?[e]:e):h.call(n,e)),n},inArray:function(e,t,n){return null==t?-1:g.call(t,e,n)},merge:function(e,t){var n=t.length,r=e.length,i=0;if("number"==typeof n)for(;n>i;i++)e[r++]=t[i];else while(t[i]!==undefined)e[r++]=t[i++];return e.length=r,e},grep:function(e,t,n){var r,i=[],o=0,s=e.length;for(n=!!n;s>o;o++)r=!!t(e[o],o),n!==r&&i.push(e[o]);return i},map:function(e,t,n){var r,i=0,o=e.length,s=j(e),a=[];if(s)for(;o>i;i++)r=t(e[i],i,n),null!=r&&(a[a.length]=r);else for(i in e)r=t(e[i],i,n),null!=r&&(a[a.length]=r);return f.apply([],a)},guid:1,proxy:function(e,t){var n,r,i;return"string"==typeof t&&(n=e[t],t=e,e=n),x.isFunction(e)?(r=d.call(arguments,2),i=function(){return e.apply(t||this,r.concat(d.call(arguments)))},i.guid=e.guid=e.guid||x.guid++,i):undefined},access:function(e,t,n,r,i,o,s){var a=0,u=e.length,l=null==n;if("object"===x.type(n)){i=!0;for(a in n)x.access(e,t,a,n[a],!0,o,s)}else if(r!==undefined&&(i=!0,x.isFunction(r)||(s=!0),l&&(s?(t.call(e,r),t=null):(l=t,t=function(e,t,n){return l.call(x(e),n)})),t))for(;u>a;a++)t(e[a],n,s?r:r.call(e[a],a,t(e[a],n)));return i?e:l?t.call(e):u?t(e[0],n):o},now:Date.now,swap:function(e,t,n,r){var i,o,s={};for(o in t)s[o]=e.style[o],e.style[o]=t[o];i=n.apply(e,r||[]);for(o in t)e.style[o]=s[o];return i}}),x.ready.promise=function(t){return n||(n=x.Deferred(),"complete"===o.readyState?setTimeout(x.ready):(o.addEventListener("DOMContentLoaded",S,!1),e.addEventListener("load",S,!1))),n.promise(t)},x.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(e,t){l["[object "+t+"]"]=t.toLowerCase()});function j(e){var t=e.length,n=x.type(e);return x.isWindow(e)?!1:1===e.nodeType&&t?!0:"array"===n||"function"!==n&&(0===t||"number"==typeof t&&t>0&&t-1 in e)}t=x(o),function(e,undefined){var t,n,r,i,o,s,a,u,l,c,p,f,h,d,g,m,y,v="sizzle"+-new Date,b=e.document,w=0,T=0,C=st(),k=st(),N=st(),E=!1,S=function(e,t){return e===t?(E=!0,0):0},j=typeof undefined,D=1<<31,A={}.hasOwnProperty,L=[],q=L.pop,H=L.push,O=L.push,F=L.slice,P=L.indexOf||function(e){var t=0,n=this.length;for(;n>t;t++)if(this[t]===e)return t;return-1},R="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",W="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",$=W.replace("w","w#"),B="\\["+M+"*("+W+")"+M+"*(?:([*^$|!~]?=)"+M+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+$+")|)|)"+M+"*\\]",I=":("+W+")(?:\\(((['\"])((?:\\\\.|[^\\\\])*?)\\3|((?:\\\\.|[^\\\\()[\\]]|"+B.replace(3,8)+")*)|.*)\\)|)",z=RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),_=RegExp("^"+M+"*,"+M+"*"),X=RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=RegExp(M+"*[+~]"),Y=RegExp("="+M+"*([^\\]'\"]*)"+M+"*\\]","g"),V=RegExp(I),G=RegExp("^"+$+"$"),J={ID:RegExp("^#("+W+")"),CLASS:RegExp("^\\.("+W+")"),TAG:RegExp("^("+W.replace("w","w*")+")"),ATTR:RegExp("^"+B),PSEUDO:RegExp("^"+I),CHILD:RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:RegExp("^(?:"+R+")$","i"),needsContext:RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Q=/^[^{]+\{\s*\[native \w/,K=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,Z=/^(?:input|select|textarea|button)$/i,et=/^h\d$/i,tt=/'|\\/g,nt=RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),rt=function(e,t,n){var r="0x"+t-65536;return r!==r||n?t:0>r?String.fromCharCode(r+65536):String.fromCharCode(55296|r>>10,56320|1023&r)};try{O.apply(L=F.call(b.childNodes),b.childNodes),L[b.childNodes.length].nodeType}catch(it){O={apply:L.length?function(e,t){H.apply(e,F.call(t))}:function(e,t){var n=e.length,r=0;while(e[n++]=t[r++]);e.length=n-1}}}function ot(e,t,r,i){var o,s,a,u,l,f,g,m,x,w;if((t?t.ownerDocument||t:b)!==p&&c(t),t=t||p,r=r||[],!e||"string"!=typeof e)return r;if(1!==(u=t.nodeType)&&9!==u)return[];if(h&&!i){if(o=K.exec(e))if(a=o[1]){if(9===u){if(s=t.getElementById(a),!s||!s.parentNode)return r;if(s.id===a)return r.push(s),r}else if(t.ownerDocument&&(s=t.ownerDocument.getElementById(a))&&y(t,s)&&s.id===a)return r.push(s),r}else{if(o[2])return O.apply(r,t.getElementsByTagName(e)),r;if((a=o[3])&&n.getElementsByClassName&&t.getElementsByClassName)return O.apply(r,t.getElementsByClassName(a)),r}if(n.qsa&&(!d||!d.test(e))){if(m=g=v,x=t,w=9===u&&e,1===u&&"object"!==t.nodeName.toLowerCase()){f=gt(e),(g=t.getAttribute("id"))?m=g.replace(tt,"\\$&"):t.setAttribute("id",m),m="[id='"+m+"'] ",l=f.length;while(l--)f[l]=m+mt(f[l]);x=U.test(e)&&t.parentNode||t,w=f.join(",")}if(w)try{return O.apply(r,x.querySelectorAll(w)),r}catch(T){}finally{g||t.removeAttribute("id")}}}return kt(e.replace(z,"$1"),t,r,i)}function st(){var e=[];function t(n,r){return e.push(n+=" ")>i.cacheLength&&delete t[e.shift()],t[n]=r}return t}function at(e){return e[v]=!0,e}function ut(e){var t=p.createElement("div");try{return!!e(t)}catch(n){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function lt(e,t){var n=e.split("|"),r=e.length;while(r--)i.attrHandle[n[r]]=t}function ct(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&(~t.sourceIndex||D)-(~e.sourceIndex||D);if(r)return r;if(n)while(n=n.nextSibling)if(n===t)return-1;return e?1:-1}function pt(e){return function(t){var n=t.nodeName.toLowerCase();return"input"===n&&t.type===e}}function ft(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function ht(e){return at(function(t){return t=+t,at(function(n,r){var i,o=e([],n.length,t),s=o.length;while(s--)n[i=o[s]]&&(n[i]=!(r[i]=n[i]))})})}s=ot.isXML=function(e){var t=e&&(e.ownerDocument||e).documentElement;return t?"HTML"!==t.nodeName:!1},n=ot.support={},c=ot.setDocument=function(e){var t=e?e.ownerDocument||e:b,r=t.defaultView;return t!==p&&9===t.nodeType&&t.documentElement?(p=t,f=t.documentElement,h=!s(t),r&&r.attachEvent&&r!==r.top&&r.attachEvent("onbeforeunload",function(){c()}),n.attributes=ut(function(e){return e.className="i",!e.getAttribute("className")}),n.getElementsByTagName=ut(function(e){return e.appendChild(t.createComment("")),!e.getElementsByTagName("*").length}),n.getElementsByClassName=ut(function(e){return e.innerHTML="
    ",e.firstChild.className="i",2===e.getElementsByClassName("i").length}),n.getById=ut(function(e){return f.appendChild(e).id=v,!t.getElementsByName||!t.getElementsByName(v).length}),n.getById?(i.find.ID=function(e,t){if(typeof t.getElementById!==j&&h){var n=t.getElementById(e);return n&&n.parentNode?[n]:[]}},i.filter.ID=function(e){var t=e.replace(nt,rt);return function(e){return e.getAttribute("id")===t}}):(delete i.find.ID,i.filter.ID=function(e){var t=e.replace(nt,rt);return function(e){var n=typeof e.getAttributeNode!==j&&e.getAttributeNode("id");return n&&n.value===t}}),i.find.TAG=n.getElementsByTagName?function(e,t){return typeof t.getElementsByTagName!==j?t.getElementsByTagName(e):undefined}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){while(n=o[i++])1===n.nodeType&&r.push(n);return r}return o},i.find.CLASS=n.getElementsByClassName&&function(e,t){return typeof t.getElementsByClassName!==j&&h?t.getElementsByClassName(e):undefined},g=[],d=[],(n.qsa=Q.test(t.querySelectorAll))&&(ut(function(e){e.innerHTML="",e.querySelectorAll("[selected]").length||d.push("\\["+M+"*(?:value|"+R+")"),e.querySelectorAll(":checked").length||d.push(":checked")}),ut(function(e){var n=t.createElement("input");n.setAttribute("type","hidden"),e.appendChild(n).setAttribute("t",""),e.querySelectorAll("[t^='']").length&&d.push("[*^$]="+M+"*(?:''|\"\")"),e.querySelectorAll(":enabled").length||d.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),d.push(",.*:")})),(n.matchesSelector=Q.test(m=f.webkitMatchesSelector||f.mozMatchesSelector||f.oMatchesSelector||f.msMatchesSelector))&&ut(function(e){n.disconnectedMatch=m.call(e,"div"),m.call(e,"[s!='']:x"),g.push("!=",I)}),d=d.length&&RegExp(d.join("|")),g=g.length&&RegExp(g.join("|")),y=Q.test(f.contains)||f.compareDocumentPosition?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)while(t=t.parentNode)if(t===e)return!0;return!1},S=f.compareDocumentPosition?function(e,r){if(e===r)return E=!0,0;var i=r.compareDocumentPosition&&e.compareDocumentPosition&&e.compareDocumentPosition(r);return i?1&i||!n.sortDetached&&r.compareDocumentPosition(e)===i?e===t||y(b,e)?-1:r===t||y(b,r)?1:l?P.call(l,e)-P.call(l,r):0:4&i?-1:1:e.compareDocumentPosition?-1:1}:function(e,n){var r,i=0,o=e.parentNode,s=n.parentNode,a=[e],u=[n];if(e===n)return E=!0,0;if(!o||!s)return e===t?-1:n===t?1:o?-1:s?1:l?P.call(l,e)-P.call(l,n):0;if(o===s)return ct(e,n);r=e;while(r=r.parentNode)a.unshift(r);r=n;while(r=r.parentNode)u.unshift(r);while(a[i]===u[i])i++;return i?ct(a[i],u[i]):a[i]===b?-1:u[i]===b?1:0},t):p},ot.matches=function(e,t){return ot(e,null,null,t)},ot.matchesSelector=function(e,t){if((e.ownerDocument||e)!==p&&c(e),t=t.replace(Y,"='$1']"),!(!n.matchesSelector||!h||g&&g.test(t)||d&&d.test(t)))try{var r=m.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(i){}return ot(t,p,null,[e]).length>0},ot.contains=function(e,t){return(e.ownerDocument||e)!==p&&c(e),y(e,t)},ot.attr=function(e,t){(e.ownerDocument||e)!==p&&c(e);var r=i.attrHandle[t.toLowerCase()],o=r&&A.call(i.attrHandle,t.toLowerCase())?r(e,t,!h):undefined;return o===undefined?n.attributes||!h?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null:o},ot.error=function(e){throw Error("Syntax error, unrecognized expression: "+e)},ot.uniqueSort=function(e){var t,r=[],i=0,o=0;if(E=!n.detectDuplicates,l=!n.sortStable&&e.slice(0),e.sort(S),E){while(t=e[o++])t===e[o]&&(i=r.push(o));while(i--)e.splice(r[i],1)}return e},o=ot.getText=function(e){var t,n="",r=0,i=e.nodeType;if(i){if(1===i||9===i||11===i){if("string"==typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=o(e)}else if(3===i||4===i)return e.nodeValue}else for(;t=e[r];r++)n+=o(t);return n},i=ot.selectors={cacheLength:50,createPseudo:at,match:J,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(nt,rt),e[3]=(e[4]||e[5]||"").replace(nt,rt),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||ot.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&ot.error(e[0]),e},PSEUDO:function(e){var t,n=!e[5]&&e[2];return J.CHILD.test(e[0])?null:(e[3]&&e[4]!==undefined?e[2]=e[4]:n&&V.test(n)&&(t=gt(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(nt,rt).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=C[e+" "];return t||(t=RegExp("(^|"+M+")"+e+"("+M+"|$)"))&&C(e,function(e){return t.test("string"==typeof e.className&&e.className||typeof e.getAttribute!==j&&e.getAttribute("class")||"")})},ATTR:function(e,t,n){return function(r){var i=ot.attr(r,e);return null==i?"!="===t:t?(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i+" ").indexOf(n)>-1:"|="===t?i===n||i.slice(0,n.length+1)===n+"-":!1):!0}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),s="last"!==e.slice(-4),a="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var l,c,p,f,h,d,g=o!==s?"nextSibling":"previousSibling",m=t.parentNode,y=a&&t.nodeName.toLowerCase(),x=!u&&!a;if(m){if(o){while(g){p=t;while(p=p[g])if(a?p.nodeName.toLowerCase()===y:1===p.nodeType)return!1;d=g="only"===e&&!d&&"nextSibling"}return!0}if(d=[s?m.firstChild:m.lastChild],s&&x){c=m[v]||(m[v]={}),l=c[e]||[],h=l[0]===w&&l[1],f=l[0]===w&&l[2],p=h&&m.childNodes[h];while(p=++h&&p&&p[g]||(f=h=0)||d.pop())if(1===p.nodeType&&++f&&p===t){c[e]=[w,h,f];break}}else if(x&&(l=(t[v]||(t[v]={}))[e])&&l[0]===w)f=l[1];else while(p=++h&&p&&p[g]||(f=h=0)||d.pop())if((a?p.nodeName.toLowerCase()===y:1===p.nodeType)&&++f&&(x&&((p[v]||(p[v]={}))[e]=[w,f]),p===t))break;return f-=i,f===r||0===f%r&&f/r>=0}}},PSEUDO:function(e,t){var n,r=i.pseudos[e]||i.setFilters[e.toLowerCase()]||ot.error("unsupported pseudo: "+e);return r[v]?r(t):r.length>1?(n=[e,e,"",t],i.setFilters.hasOwnProperty(e.toLowerCase())?at(function(e,n){var i,o=r(e,t),s=o.length;while(s--)i=P.call(e,o[s]),e[i]=!(n[i]=o[s])}):function(e){return r(e,0,n)}):r}},pseudos:{not:at(function(e){var t=[],n=[],r=a(e.replace(z,"$1"));return r[v]?at(function(e,t,n,i){var o,s=r(e,null,i,[]),a=e.length;while(a--)(o=s[a])&&(e[a]=!(t[a]=o))}):function(e,i,o){return t[0]=e,r(t,null,o,n),!n.pop()}}),has:at(function(e){return function(t){return ot(e,t).length>0}}),contains:at(function(e){return function(t){return(t.textContent||t.innerText||o(t)).indexOf(e)>-1}}),lang:at(function(e){return G.test(e||"")||ot.error("unsupported lang: "+e),e=e.replace(nt,rt).toLowerCase(),function(t){var n;do if(n=h?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return n=n.toLowerCase(),n===e||0===n.indexOf(e+"-");while((t=t.parentNode)&&1===t.nodeType);return!1}}),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===f},focus:function(e){return e===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:function(e){return e.disabled===!1},disabled:function(e){return e.disabled===!0},checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,e.selected===!0},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeName>"@"||3===e.nodeType||4===e.nodeType)return!1;return!0},parent:function(e){return!i.pseudos.empty(e)},header:function(e){return et.test(e.nodeName)},input:function(e){return Z.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||t.toLowerCase()===e.type)},first:ht(function(){return[0]}),last:ht(function(e,t){return[t-1]}),eq:ht(function(e,t,n){return[0>n?n+t:n]}),even:ht(function(e,t){var n=0;for(;t>n;n+=2)e.push(n);return e}),odd:ht(function(e,t){var n=1;for(;t>n;n+=2)e.push(n);return e}),lt:ht(function(e,t,n){var r=0>n?n+t:n;for(;--r>=0;)e.push(r);return e}),gt:ht(function(e,t,n){var r=0>n?n+t:n;for(;t>++r;)e.push(r);return e})}},i.pseudos.nth=i.pseudos.eq;for(t in{radio:!0,checkbox:!0,file:!0,password:!0,image:!0})i.pseudos[t]=pt(t);for(t in{submit:!0,reset:!0})i.pseudos[t]=ft(t);function dt(){}dt.prototype=i.filters=i.pseudos,i.setFilters=new dt;function gt(e,t){var n,r,o,s,a,u,l,c=k[e+" "];if(c)return t?0:c.slice(0);a=e,u=[],l=i.preFilter;while(a){(!n||(r=_.exec(a)))&&(r&&(a=a.slice(r[0].length)||a),u.push(o=[])),n=!1,(r=X.exec(a))&&(n=r.shift(),o.push({value:n,type:r[0].replace(z," ")}),a=a.slice(n.length));for(s in i.filter)!(r=J[s].exec(a))||l[s]&&!(r=l[s](r))||(n=r.shift(),o.push({value:n,type:s,matches:r}),a=a.slice(n.length));if(!n)break}return t?a.length:a?ot.error(e):k(e,u).slice(0)}function mt(e){var t=0,n=e.length,r="";for(;n>t;t++)r+=e[t].value;return r}function yt(e,t,n){var i=t.dir,o=n&&"parentNode"===i,s=T++;return t.first?function(t,n,r){while(t=t[i])if(1===t.nodeType||o)return e(t,n,r)}:function(t,n,a){var u,l,c,p=w+" "+s;if(a){while(t=t[i])if((1===t.nodeType||o)&&e(t,n,a))return!0}else while(t=t[i])if(1===t.nodeType||o)if(c=t[v]||(t[v]={}),(l=c[i])&&l[0]===p){if((u=l[1])===!0||u===r)return u===!0}else if(l=c[i]=[p],l[1]=e(t,n,a)||r,l[1]===!0)return!0}}function vt(e){return e.length>1?function(t,n,r){var i=e.length;while(i--)if(!e[i](t,n,r))return!1;return!0}:e[0]}function xt(e,t,n,r,i){var o,s=[],a=0,u=e.length,l=null!=t;for(;u>a;a++)(o=e[a])&&(!n||n(o,r,i))&&(s.push(o),l&&t.push(a));return s}function bt(e,t,n,r,i,o){return r&&!r[v]&&(r=bt(r)),i&&!i[v]&&(i=bt(i,o)),at(function(o,s,a,u){var l,c,p,f=[],h=[],d=s.length,g=o||Ct(t||"*",a.nodeType?[a]:a,[]),m=!e||!o&&t?g:xt(g,f,e,a,u),y=n?i||(o?e:d||r)?[]:s:m;if(n&&n(m,y,a,u),r){l=xt(y,h),r(l,[],a,u),c=l.length;while(c--)(p=l[c])&&(y[h[c]]=!(m[h[c]]=p))}if(o){if(i||e){if(i){l=[],c=y.length;while(c--)(p=y[c])&&l.push(m[c]=p);i(null,y=[],l,u)}c=y.length;while(c--)(p=y[c])&&(l=i?P.call(o,p):f[c])>-1&&(o[l]=!(s[l]=p))}}else y=xt(y===s?y.splice(d,y.length):y),i?i(null,s,y,u):O.apply(s,y)})}function wt(e){var t,n,r,o=e.length,s=i.relative[e[0].type],a=s||i.relative[" "],l=s?1:0,c=yt(function(e){return e===t},a,!0),p=yt(function(e){return P.call(t,e)>-1},a,!0),f=[function(e,n,r){return!s&&(r||n!==u)||((t=n).nodeType?c(e,n,r):p(e,n,r))}];for(;o>l;l++)if(n=i.relative[e[l].type])f=[yt(vt(f),n)];else{if(n=i.filter[e[l].type].apply(null,e[l].matches),n[v]){for(r=++l;o>r;r++)if(i.relative[e[r].type])break;return bt(l>1&&vt(f),l>1&&mt(e.slice(0,l-1).concat({value:" "===e[l-2].type?"*":""})).replace(z,"$1"),n,r>l&&wt(e.slice(l,r)),o>r&&wt(e=e.slice(r)),o>r&&mt(e))}f.push(n)}return vt(f)}function Tt(e,t){var n=0,o=t.length>0,s=e.length>0,a=function(a,l,c,f,h){var d,g,m,y=[],v=0,x="0",b=a&&[],T=null!=h,C=u,k=a||s&&i.find.TAG("*",h&&l.parentNode||l),N=w+=null==C?1:Math.random()||.1;for(T&&(u=l!==p&&l,r=n);null!=(d=k[x]);x++){if(s&&d){g=0;while(m=e[g++])if(m(d,l,c)){f.push(d);break}T&&(w=N,r=++n)}o&&((d=!m&&d)&&v--,a&&b.push(d))}if(v+=x,o&&x!==v){g=0;while(m=t[g++])m(b,y,l,c);if(a){if(v>0)while(x--)b[x]||y[x]||(y[x]=q.call(f));y=xt(y)}O.apply(f,y),T&&!a&&y.length>0&&v+t.length>1&&ot.uniqueSort(f)}return T&&(w=N,u=C),b};return o?at(a):a}a=ot.compile=function(e,t){var n,r=[],i=[],o=N[e+" "];if(!o){t||(t=gt(e)),n=t.length;while(n--)o=wt(t[n]),o[v]?r.push(o):i.push(o);o=N(e,Tt(i,r))}return o};function Ct(e,t,n){var r=0,i=t.length;for(;i>r;r++)ot(e,t[r],n);return n}function kt(e,t,r,o){var s,u,l,c,p,f=gt(e);if(!o&&1===f.length){if(u=f[0]=f[0].slice(0),u.length>2&&"ID"===(l=u[0]).type&&n.getById&&9===t.nodeType&&h&&i.relative[u[1].type]){if(t=(i.find.ID(l.matches[0].replace(nt,rt),t)||[])[0],!t)return r;e=e.slice(u.shift().value.length)}s=J.needsContext.test(e)?0:u.length;while(s--){if(l=u[s],i.relative[c=l.type])break;if((p=i.find[c])&&(o=p(l.matches[0].replace(nt,rt),U.test(u[0].type)&&t.parentNode||t))){if(u.splice(s,1),e=o.length&&mt(u),!e)return O.apply(r,o),r;break}}}return a(e,f)(o,t,!h,r,U.test(e)),r}n.sortStable=v.split("").sort(S).join("")===v,n.detectDuplicates=E,c(),n.sortDetached=ut(function(e){return 1&e.compareDocumentPosition(p.createElement("div"))}),ut(function(e){return e.innerHTML="","#"===e.firstChild.getAttribute("href")})||lt("type|href|height|width",function(e,t,n){return n?undefined:e.getAttribute(t,"type"===t.toLowerCase()?1:2)}),n.attributes&&ut(function(e){return e.innerHTML="",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")})||lt("value",function(e,t,n){return n||"input"!==e.nodeName.toLowerCase()?undefined:e.defaultValue}),ut(function(e){return null==e.getAttribute("disabled")})||lt(R,function(e,t,n){var r;return n?undefined:(r=e.getAttributeNode(t))&&r.specified?r.value:e[t]===!0?t.toLowerCase():null}),x.find=ot,x.expr=ot.selectors,x.expr[":"]=x.expr.pseudos,x.unique=ot.uniqueSort,x.text=ot.getText,x.isXMLDoc=ot.isXML,x.contains=ot.contains}(e);var D={};function A(e){var t=D[e]={};return x.each(e.match(w)||[],function(e,n){t[n]=!0}),t}x.Callbacks=function(e){e="string"==typeof e?D[e]||A(e):x.extend({},e);var t,n,r,i,o,s,a=[],u=!e.once&&[],l=function(p){for(t=e.memory&&p,n=!0,s=i||0,i=0,o=a.length,r=!0;a&&o>s;s++)if(a[s].apply(p[0],p[1])===!1&&e.stopOnFalse){t=!1;break}r=!1,a&&(u?u.length&&l(u.shift()):t?a=[]:c.disable())},c={add:function(){if(a){var n=a.length;(function s(t){x.each(t,function(t,n){var r=x.type(n);"function"===r?e.unique&&c.has(n)||a.push(n):n&&n.length&&"string"!==r&&s(n)})})(arguments),r?o=a.length:t&&(i=n,l(t))}return this},remove:function(){return a&&x.each(arguments,function(e,t){var n;while((n=x.inArray(t,a,n))>-1)a.splice(n,1),r&&(o>=n&&o--,s>=n&&s--)}),this},has:function(e){return e?x.inArray(e,a)>-1:!(!a||!a.length)},empty:function(){return a=[],o=0,this},disable:function(){return a=u=t=undefined,this},disabled:function(){return!a},lock:function(){return u=undefined,t||c.disable(),this},locked:function(){return!u},fireWith:function(e,t){return!a||n&&!u||(t=t||[],t=[e,t.slice?t.slice():t],r?u.push(t):l(t)),this},fire:function(){return c.fireWith(this,arguments),this},fired:function(){return!!n}};return c},x.extend({Deferred:function(e){var t=[["resolve","done",x.Callbacks("once memory"),"resolved"],["reject","fail",x.Callbacks("once memory"),"rejected"],["notify","progress",x.Callbacks("memory")]],n="pending",r={state:function(){return n},always:function(){return i.done(arguments).fail(arguments),this},then:function(){var e=arguments;return x.Deferred(function(n){x.each(t,function(t,o){var s=o[0],a=x.isFunction(e[t])&&e[t];i[o[1]](function(){var e=a&&a.apply(this,arguments);e&&x.isFunction(e.promise)?e.promise().done(n.resolve).fail(n.reject).progress(n.notify):n[s+"With"](this===r?n.promise():this,a?[e]:arguments)})}),e=null}).promise()},promise:function(e){return null!=e?x.extend(e,r):r}},i={};return r.pipe=r.then,x.each(t,function(e,o){var s=o[2],a=o[3];r[o[1]]=s.add,a&&s.add(function(){n=a},t[1^e][2].disable,t[2][2].lock),i[o[0]]=function(){return i[o[0]+"With"](this===i?r:this,arguments),this},i[o[0]+"With"]=s.fireWith}),r.promise(i),e&&e.call(i,i),i},when:function(e){var t=0,n=d.call(arguments),r=n.length,i=1!==r||e&&x.isFunction(e.promise)?r:0,o=1===i?e:x.Deferred(),s=function(e,t,n){return function(r){t[e]=this,n[e]=arguments.length>1?d.call(arguments):r,n===a?o.notifyWith(t,n):--i||o.resolveWith(t,n)}},a,u,l;if(r>1)for(a=Array(r),u=Array(r),l=Array(r);r>t;t++)n[t]&&x.isFunction(n[t].promise)?n[t].promise().done(s(t,l,n)).fail(o.reject).progress(s(t,u,a)):--i;return i||o.resolveWith(l,n),o.promise()}}),x.support=function(t){var n=o.createElement("input"),r=o.createDocumentFragment(),i=o.createElement("div"),s=o.createElement("select"),a=s.appendChild(o.createElement("option"));return n.type?(n.type="checkbox",t.checkOn=""!==n.value,t.optSelected=a.selected,t.reliableMarginRight=!0,t.boxSizingReliable=!0,t.pixelPosition=!1,n.checked=!0,t.noCloneChecked=n.cloneNode(!0).checked,s.disabled=!0,t.optDisabled=!a.disabled,n=o.createElement("input"),n.value="t",n.type="radio",t.radioValue="t"===n.value,n.setAttribute("checked","t"),n.setAttribute("name","t"),r.appendChild(n),t.checkClone=r.cloneNode(!0).cloneNode(!0).lastChild.checked,t.focusinBubbles="onfocusin"in e,i.style.backgroundClip="content-box",i.cloneNode(!0).style.backgroundClip="",t.clearCloneStyle="content-box"===i.style.backgroundClip,x(function(){var n,r,s="padding:0;margin:0;border:0;display:block;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box",a=o.getElementsByTagName("body")[0];a&&(n=o.createElement("div"),n.style.cssText="border:0;width:0;height:0;position:absolute;top:0;left:-9999px;margin-top:1px",a.appendChild(n).appendChild(i),i.innerHTML="",i.style.cssText="-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%",x.swap(a,null!=a.style.zoom?{zoom:1}:{},function(){t.boxSizing=4===i.offsetWidth}),e.getComputedStyle&&(t.pixelPosition="1%"!==(e.getComputedStyle(i,null)||{}).top,t.boxSizingReliable="4px"===(e.getComputedStyle(i,null)||{width:"4px"}).width,r=i.appendChild(o.createElement("div")),r.style.cssText=i.style.cssText=s,r.style.marginRight=r.style.width="0",i.style.width="1px",t.reliableMarginRight=!parseFloat((e.getComputedStyle(r,null)||{}).marginRight)),a.removeChild(n))}),t):t}({});var L,q,H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,O=/([A-Z])/g;function F(){Object.defineProperty(this.cache={},0,{get:function(){return{}}}),this.expando=x.expando+Math.random()}F.uid=1,F.accepts=function(e){return e.nodeType?1===e.nodeType||9===e.nodeType:!0},F.prototype={key:function(e){if(!F.accepts(e))return 0;var t={},n=e[this.expando];if(!n){n=F.uid++;try{t[this.expando]={value:n},Object.defineProperties(e,t)}catch(r){t[this.expando]=n,x.extend(e,t)}}return this.cache[n]||(this.cache[n]={}),n},set:function(e,t,n){var r,i=this.key(e),o=this.cache[i];if("string"==typeof t)o[t]=n;else if(x.isEmptyObject(o))x.extend(this.cache[i],t);else for(r in t)o[r]=t[r];return o},get:function(e,t){var n=this.cache[this.key(e)];return t===undefined?n:n[t]},access:function(e,t,n){var r;return t===undefined||t&&"string"==typeof t&&n===undefined?(r=this.get(e,t),r!==undefined?r:this.get(e,x.camelCase(t))):(this.set(e,t,n),n!==undefined?n:t)},remove:function(e,t){var n,r,i,o=this.key(e),s=this.cache[o];if(t===undefined)this.cache[o]={};else{x.isArray(t)?r=t.concat(t.map(x.camelCase)):(i=x.camelCase(t),t in s?r=[t,i]:(r=i,r=r in s?[r]:r.match(w)||[])),n=r.length;while(n--)delete s[r[n]]}},hasData:function(e){return!x.isEmptyObject(this.cache[e[this.expando]]||{})},discard:function(e){e[this.expando]&&delete this.cache[e[this.expando]]}},L=new F,q=new F,x.extend({acceptData:F.accepts,hasData:function(e){return L.hasData(e)||q.hasData(e)},data:function(e,t,n){return L.access(e,t,n)},removeData:function(e,t){L.remove(e,t)},_data:function(e,t,n){return q.access(e,t,n)},_removeData:function(e,t){q.remove(e,t)}}),x.fn.extend({data:function(e,t){var n,r,i=this[0],o=0,s=null;if(e===undefined){if(this.length&&(s=L.get(i),1===i.nodeType&&!q.get(i,"hasDataAttrs"))){for(n=i.attributes;n.length>o;o++)r=n[o].name,0===r.indexOf("data-")&&(r=x.camelCase(r.slice(5)),P(i,r,s[r]));q.set(i,"hasDataAttrs",!0)}return s}return"object"==typeof e?this.each(function(){L.set(this,e)}):x.access(this,function(t){var n,r=x.camelCase(e);if(i&&t===undefined){if(n=L.get(i,e),n!==undefined)return n;if(n=L.get(i,r),n!==undefined)return n;if(n=P(i,r,undefined),n!==undefined)return n}else this.each(function(){var n=L.get(this,r);L.set(this,r,t),-1!==e.indexOf("-")&&n!==undefined&&L.set(this,e,t)})},null,t,arguments.length>1,null,!0)},removeData:function(e){return this.each(function(){L.remove(this,e)})}});function P(e,t,n){var r;if(n===undefined&&1===e.nodeType)if(r="data-"+t.replace(O,"-$1").toLowerCase(),n=e.getAttribute(r),"string"==typeof n){try{n="true"===n?!0:"false"===n?!1:"null"===n?null:+n+""===n?+n:H.test(n)?JSON.parse(n):n}catch(i){}L.set(e,t,n)}else n=undefined;return n}x.extend({queue:function(e,t,n){var r;return e?(t=(t||"fx")+"queue",r=q.get(e,t),n&&(!r||x.isArray(n)?r=q.access(e,t,x.makeArray(n)):r.push(n)),r||[]):undefined},dequeue:function(e,t){t=t||"fx";var n=x.queue(e,t),r=n.length,i=n.shift(),o=x._queueHooks(e,t),s=function(){x.dequeue(e,t) -};"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,s,o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return q.get(e,n)||q.access(e,n,{empty:x.Callbacks("once memory").add(function(){q.remove(e,[t+"queue",n])})})}}),x.fn.extend({queue:function(e,t){var n=2;return"string"!=typeof e&&(t=e,e="fx",n--),n>arguments.length?x.queue(this[0],e):t===undefined?this:this.each(function(){var n=x.queue(this,e,t);x._queueHooks(this,e),"fx"===e&&"inprogress"!==n[0]&&x.dequeue(this,e)})},dequeue:function(e){return this.each(function(){x.dequeue(this,e)})},delay:function(e,t){return e=x.fx?x.fx.speeds[e]||e:e,t=t||"fx",this.queue(t,function(t,n){var r=setTimeout(t,e);n.stop=function(){clearTimeout(r)}})},clearQueue:function(e){return this.queue(e||"fx",[])},promise:function(e,t){var n,r=1,i=x.Deferred(),o=this,s=this.length,a=function(){--r||i.resolveWith(o,[o])};"string"!=typeof e&&(t=e,e=undefined),e=e||"fx";while(s--)n=q.get(o[s],e+"queueHooks"),n&&n.empty&&(r++,n.empty.add(a));return a(),i.promise(t)}});var R,M,W=/[\t\r\n\f]/g,$=/\r/g,B=/^(?:input|select|textarea|button)$/i;x.fn.extend({attr:function(e,t){return x.access(this,x.attr,e,t,arguments.length>1)},removeAttr:function(e){return this.each(function(){x.removeAttr(this,e)})},prop:function(e,t){return x.access(this,x.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each(function(){delete this[x.propFix[e]||e]})},addClass:function(e){var t,n,r,i,o,s=0,a=this.length,u="string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).addClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];a>s;s++)if(n=this[s],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(W," "):" ")){o=0;while(i=t[o++])0>r.indexOf(" "+i+" ")&&(r+=i+" ");n.className=x.trim(r)}return this},removeClass:function(e){var t,n,r,i,o,s=0,a=this.length,u=0===arguments.length||"string"==typeof e&&e;if(x.isFunction(e))return this.each(function(t){x(this).removeClass(e.call(this,t,this.className))});if(u)for(t=(e||"").match(w)||[];a>s;s++)if(n=this[s],r=1===n.nodeType&&(n.className?(" "+n.className+" ").replace(W," "):"")){o=0;while(i=t[o++])while(r.indexOf(" "+i+" ")>=0)r=r.replace(" "+i+" "," ");n.className=e?x.trim(r):""}return this},toggleClass:function(e,t){var n=typeof e;return"boolean"==typeof t&&"string"===n?t?this.addClass(e):this.removeClass(e):x.isFunction(e)?this.each(function(n){x(this).toggleClass(e.call(this,n,this.className,t),t)}):this.each(function(){if("string"===n){var t,i=0,o=x(this),s=e.match(w)||[];while(t=s[i++])o.hasClass(t)?o.removeClass(t):o.addClass(t)}else(n===r||"boolean"===n)&&(this.className&&q.set(this,"__className__",this.className),this.className=this.className||e===!1?"":q.get(this,"__className__")||"")})},hasClass:function(e){var t=" "+e+" ",n=0,r=this.length;for(;r>n;n++)if(1===this[n].nodeType&&(" "+this[n].className+" ").replace(W," ").indexOf(t)>=0)return!0;return!1},val:function(e){var t,n,r,i=this[0];{if(arguments.length)return r=x.isFunction(e),this.each(function(n){var i;1===this.nodeType&&(i=r?e.call(this,n,x(this).val()):e,null==i?i="":"number"==typeof i?i+="":x.isArray(i)&&(i=x.map(i,function(e){return null==e?"":e+""})),t=x.valHooks[this.type]||x.valHooks[this.nodeName.toLowerCase()],t&&"set"in t&&t.set(this,i,"value")!==undefined||(this.value=i))});if(i)return t=x.valHooks[i.type]||x.valHooks[i.nodeName.toLowerCase()],t&&"get"in t&&(n=t.get(i,"value"))!==undefined?n:(n=i.value,"string"==typeof n?n.replace($,""):null==n?"":n)}}}),x.extend({valHooks:{option:{get:function(e){var t=e.attributes.value;return!t||t.specified?e.value:e.text}},select:{get:function(e){var t,n,r=e.options,i=e.selectedIndex,o="select-one"===e.type||0>i,s=o?null:[],a=o?i+1:r.length,u=0>i?a:o?i:0;for(;a>u;u++)if(n=r[u],!(!n.selected&&u!==i||(x.support.optDisabled?n.disabled:null!==n.getAttribute("disabled"))||n.parentNode.disabled&&x.nodeName(n.parentNode,"optgroup"))){if(t=x(n).val(),o)return t;s.push(t)}return s},set:function(e,t){var n,r,i=e.options,o=x.makeArray(t),s=i.length;while(s--)r=i[s],(r.selected=x.inArray(x(r).val(),o)>=0)&&(n=!0);return n||(e.selectedIndex=-1),o}}},attr:function(e,t,n){var i,o,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return typeof e.getAttribute===r?x.prop(e,t,n):(1===s&&x.isXMLDoc(e)||(t=t.toLowerCase(),i=x.attrHooks[t]||(x.expr.match.bool.test(t)?M:R)),n===undefined?i&&"get"in i&&null!==(o=i.get(e,t))?o:(o=x.find.attr(e,t),null==o?undefined:o):null!==n?i&&"set"in i&&(o=i.set(e,n,t))!==undefined?o:(e.setAttribute(t,n+""),n):(x.removeAttr(e,t),undefined))},removeAttr:function(e,t){var n,r,i=0,o=t&&t.match(w);if(o&&1===e.nodeType)while(n=o[i++])r=x.propFix[n]||n,x.expr.match.bool.test(n)&&(e[r]=!1),e.removeAttribute(n)},attrHooks:{type:{set:function(e,t){if(!x.support.radioValue&&"radio"===t&&x.nodeName(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},propFix:{"for":"htmlFor","class":"className"},prop:function(e,t,n){var r,i,o,s=e.nodeType;if(e&&3!==s&&8!==s&&2!==s)return o=1!==s||!x.isXMLDoc(e),o&&(t=x.propFix[t]||t,i=x.propHooks[t]),n!==undefined?i&&"set"in i&&(r=i.set(e,n,t))!==undefined?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){return e.hasAttribute("tabindex")||B.test(e.nodeName)||e.href?e.tabIndex:-1}}}}),M={set:function(e,t,n){return t===!1?x.removeAttr(e,n):e.setAttribute(n,n),n}},x.each(x.expr.match.bool.source.match(/\w+/g),function(e,t){var n=x.expr.attrHandle[t]||x.find.attr;x.expr.attrHandle[t]=function(e,t,r){var i=x.expr.attrHandle[t],o=r?undefined:(x.expr.attrHandle[t]=undefined)!=n(e,t,r)?t.toLowerCase():null;return x.expr.attrHandle[t]=i,o}}),x.support.optSelected||(x.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null}}),x.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],function(){x.propFix[this.toLowerCase()]=this}),x.each(["radio","checkbox"],function(){x.valHooks[this]={set:function(e,t){return x.isArray(t)?e.checked=x.inArray(x(e).val(),t)>=0:undefined}},x.support.checkOn||(x.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})});var I=/^key/,z=/^(?:mouse|contextmenu)|click/,_=/^(?:focusinfocus|focusoutblur)$/,X=/^([^.]*)(?:\.(.+)|)$/;function U(){return!0}function Y(){return!1}function V(){try{return o.activeElement}catch(e){}}x.event={global:{},add:function(e,t,n,i,o){var s,a,u,l,c,p,f,h,d,g,m,y=q.get(e);if(y){n.handler&&(s=n,n=s.handler,o=s.selector),n.guid||(n.guid=x.guid++),(l=y.events)||(l=y.events={}),(a=y.handle)||(a=y.handle=function(e){return typeof x===r||e&&x.event.triggered===e.type?undefined:x.event.dispatch.apply(a.elem,arguments)},a.elem=e),t=(t||"").match(w)||[""],c=t.length;while(c--)u=X.exec(t[c])||[],d=m=u[1],g=(u[2]||"").split(".").sort(),d&&(f=x.event.special[d]||{},d=(o?f.delegateType:f.bindType)||d,f=x.event.special[d]||{},p=x.extend({type:d,origType:m,data:i,handler:n,guid:n.guid,selector:o,needsContext:o&&x.expr.match.needsContext.test(o),namespace:g.join(".")},s),(h=l[d])||(h=l[d]=[],h.delegateCount=0,f.setup&&f.setup.call(e,i,g,a)!==!1||e.addEventListener&&e.addEventListener(d,a,!1)),f.add&&(f.add.call(e,p),p.handler.guid||(p.handler.guid=n.guid)),o?h.splice(h.delegateCount++,0,p):h.push(p),x.event.global[d]=!0);e=null}},remove:function(e,t,n,r,i){var o,s,a,u,l,c,p,f,h,d,g,m=q.hasData(e)&&q.get(e);if(m&&(u=m.events)){t=(t||"").match(w)||[""],l=t.length;while(l--)if(a=X.exec(t[l])||[],h=g=a[1],d=(a[2]||"").split(".").sort(),h){p=x.event.special[h]||{},h=(r?p.delegateType:p.bindType)||h,f=u[h]||[],a=a[2]&&RegExp("(^|\\.)"+d.join("\\.(?:.*\\.|)")+"(\\.|$)"),s=o=f.length;while(o--)c=f[o],!i&&g!==c.origType||n&&n.guid!==c.guid||a&&!a.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(f.splice(o,1),c.selector&&f.delegateCount--,p.remove&&p.remove.call(e,c));s&&!f.length&&(p.teardown&&p.teardown.call(e,d,m.handle)!==!1||x.removeEvent(e,h,m.handle),delete u[h])}else for(h in u)x.event.remove(e,h+t[l],n,r,!0);x.isEmptyObject(u)&&(delete m.handle,q.remove(e,"events"))}},trigger:function(t,n,r,i){var s,a,u,l,c,p,f,h=[r||o],d=y.call(t,"type")?t.type:t,g=y.call(t,"namespace")?t.namespace.split("."):[];if(a=u=r=r||o,3!==r.nodeType&&8!==r.nodeType&&!_.test(d+x.event.triggered)&&(d.indexOf(".")>=0&&(g=d.split("."),d=g.shift(),g.sort()),c=0>d.indexOf(":")&&"on"+d,t=t[x.expando]?t:new x.Event(d,"object"==typeof t&&t),t.isTrigger=i?2:3,t.namespace=g.join("."),t.namespace_re=t.namespace?RegExp("(^|\\.)"+g.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,t.result=undefined,t.target||(t.target=r),n=null==n?[t]:x.makeArray(n,[t]),f=x.event.special[d]||{},i||!f.trigger||f.trigger.apply(r,n)!==!1)){if(!i&&!f.noBubble&&!x.isWindow(r)){for(l=f.delegateType||d,_.test(l+d)||(a=a.parentNode);a;a=a.parentNode)h.push(a),u=a;u===(r.ownerDocument||o)&&h.push(u.defaultView||u.parentWindow||e)}s=0;while((a=h[s++])&&!t.isPropagationStopped())t.type=s>1?l:f.bindType||d,p=(q.get(a,"events")||{})[t.type]&&q.get(a,"handle"),p&&p.apply(a,n),p=c&&a[c],p&&x.acceptData(a)&&p.apply&&p.apply(a,n)===!1&&t.preventDefault();return t.type=d,i||t.isDefaultPrevented()||f._default&&f._default.apply(h.pop(),n)!==!1||!x.acceptData(r)||c&&x.isFunction(r[d])&&!x.isWindow(r)&&(u=r[c],u&&(r[c]=null),x.event.triggered=d,r[d](),x.event.triggered=undefined,u&&(r[c]=u)),t.result}},dispatch:function(e){e=x.event.fix(e);var t,n,r,i,o,s=[],a=d.call(arguments),u=(q.get(this,"events")||{})[e.type]||[],l=x.event.special[e.type]||{};if(a[0]=e,e.delegateTarget=this,!l.preDispatch||l.preDispatch.call(this,e)!==!1){s=x.event.handlers.call(this,e,u),t=0;while((i=s[t++])&&!e.isPropagationStopped()){e.currentTarget=i.elem,n=0;while((o=i.handlers[n++])&&!e.isImmediatePropagationStopped())(!e.namespace_re||e.namespace_re.test(o.namespace))&&(e.handleObj=o,e.data=o.data,r=((x.event.special[o.origType]||{}).handle||o.handler).apply(i.elem,a),r!==undefined&&(e.result=r)===!1&&(e.preventDefault(),e.stopPropagation()))}return l.postDispatch&&l.postDispatch.call(this,e),e.result}},handlers:function(e,t){var n,r,i,o,s=[],a=t.delegateCount,u=e.target;if(a&&u.nodeType&&(!e.button||"click"!==e.type))for(;u!==this;u=u.parentNode||this)if(u.disabled!==!0||"click"!==e.type){for(r=[],n=0;a>n;n++)o=t[n],i=o.selector+" ",r[i]===undefined&&(r[i]=o.needsContext?x(i,this).index(u)>=0:x.find(i,this,null,[u]).length),r[i]&&r.push(o);r.length&&s.push({elem:u,handlers:r})}return t.length>a&&s.push({elem:this,handlers:t.slice(a)}),s},props:"altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "),fixHooks:{},keyHooks:{props:"char charCode key keyCode".split(" "),filter:function(e,t){return null==e.which&&(e.which=null!=t.charCode?t.charCode:t.keyCode),e}},mouseHooks:{props:"button buttons clientX clientY offsetX offsetY pageX pageY screenX screenY toElement".split(" "),filter:function(e,t){var n,r,i,s=t.button;return null==e.pageX&&null!=t.clientX&&(n=e.target.ownerDocument||o,r=n.documentElement,i=n.body,e.pageX=t.clientX+(r&&r.scrollLeft||i&&i.scrollLeft||0)-(r&&r.clientLeft||i&&i.clientLeft||0),e.pageY=t.clientY+(r&&r.scrollTop||i&&i.scrollTop||0)-(r&&r.clientTop||i&&i.clientTop||0)),e.which||s===undefined||(e.which=1&s?1:2&s?3:4&s?2:0),e}},fix:function(e){if(e[x.expando])return e;var t,n,r,i=e.type,s=e,a=this.fixHooks[i];a||(this.fixHooks[i]=a=z.test(i)?this.mouseHooks:I.test(i)?this.keyHooks:{}),r=a.props?this.props.concat(a.props):this.props,e=new x.Event(s),t=r.length;while(t--)n=r[t],e[n]=s[n];return e.target||(e.target=o),3===e.target.nodeType&&(e.target=e.target.parentNode),a.filter?a.filter(e,s):e},special:{load:{noBubble:!0},focus:{trigger:function(){return this!==V()&&this.focus?(this.focus(),!1):undefined},delegateType:"focusin"},blur:{trigger:function(){return this===V()&&this.blur?(this.blur(),!1):undefined},delegateType:"focusout"},click:{trigger:function(){return"checkbox"===this.type&&this.click&&x.nodeName(this,"input")?(this.click(),!1):undefined},_default:function(e){return x.nodeName(e.target,"a")}},beforeunload:{postDispatch:function(e){e.result!==undefined&&(e.originalEvent.returnValue=e.result)}}},simulate:function(e,t,n,r){var i=x.extend(new x.Event,n,{type:e,isSimulated:!0,originalEvent:{}});r?x.event.trigger(i,null,t):x.event.dispatch.call(t,i),i.isDefaultPrevented()&&n.preventDefault()}},x.removeEvent=function(e,t,n){e.removeEventListener&&e.removeEventListener(t,n,!1)},x.Event=function(e,t){return this instanceof x.Event?(e&&e.type?(this.originalEvent=e,this.type=e.type,this.isDefaultPrevented=e.defaultPrevented||e.getPreventDefault&&e.getPreventDefault()?U:Y):this.type=e,t&&x.extend(this,t),this.timeStamp=e&&e.timeStamp||x.now(),this[x.expando]=!0,undefined):new x.Event(e,t)},x.Event.prototype={isDefaultPrevented:Y,isPropagationStopped:Y,isImmediatePropagationStopped:Y,preventDefault:function(){var e=this.originalEvent;this.isDefaultPrevented=U,e&&e.preventDefault&&e.preventDefault()},stopPropagation:function(){var e=this.originalEvent;this.isPropagationStopped=U,e&&e.stopPropagation&&e.stopPropagation()},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=U,this.stopPropagation()}},x.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(e,t){x.event.special[e]={delegateType:t,bindType:t,handle:function(e){var n,r=this,i=e.relatedTarget,o=e.handleObj;return(!i||i!==r&&!x.contains(r,i))&&(e.type=o.origType,n=o.handler.apply(this,arguments),e.type=t),n}}}),x.support.focusinBubbles||x.each({focus:"focusin",blur:"focusout"},function(e,t){var n=0,r=function(e){x.event.simulate(t,e.target,x.event.fix(e),!0)};x.event.special[t]={setup:function(){0===n++&&o.addEventListener(e,r,!0)},teardown:function(){0===--n&&o.removeEventListener(e,r,!0)}}}),x.fn.extend({on:function(e,t,n,r,i){var o,s;if("object"==typeof e){"string"!=typeof t&&(n=n||t,t=undefined);for(s in e)this.on(s,t,n,e[s],i);return this}if(null==n&&null==r?(r=t,n=t=undefined):null==r&&("string"==typeof t?(r=n,n=undefined):(r=n,n=t,t=undefined)),r===!1)r=Y;else if(!r)return this;return 1===i&&(o=r,r=function(e){return x().off(e),o.apply(this,arguments)},r.guid=o.guid||(o.guid=x.guid++)),this.each(function(){x.event.add(this,e,r,n,t)})},one:function(e,t,n,r){return this.on(e,t,n,r,1)},off:function(e,t,n){var r,i;if(e&&e.preventDefault&&e.handleObj)return r=e.handleObj,x(e.delegateTarget).off(r.namespace?r.origType+"."+r.namespace:r.origType,r.selector,r.handler),this;if("object"==typeof e){for(i in e)this.off(i,t,e[i]);return this}return(t===!1||"function"==typeof t)&&(n=t,t=undefined),n===!1&&(n=Y),this.each(function(){x.event.remove(this,e,n,t)})},trigger:function(e,t){return this.each(function(){x.event.trigger(e,t,this)})},triggerHandler:function(e,t){var n=this[0];return n?x.event.trigger(e,t,n,!0):undefined}});var G=/^.[^:#\[\.,]*$/,J=/^(?:parents|prev(?:Until|All))/,Q=x.expr.match.needsContext,K={children:!0,contents:!0,next:!0,prev:!0};x.fn.extend({find:function(e){var t,n=[],r=this,i=r.length;if("string"!=typeof e)return this.pushStack(x(e).filter(function(){for(t=0;i>t;t++)if(x.contains(r[t],this))return!0}));for(t=0;i>t;t++)x.find(e,r[t],n);return n=this.pushStack(i>1?x.unique(n):n),n.selector=this.selector?this.selector+" "+e:e,n},has:function(e){var t=x(e,this),n=t.length;return this.filter(function(){var e=0;for(;n>e;e++)if(x.contains(this,t[e]))return!0})},not:function(e){return this.pushStack(et(this,e||[],!0))},filter:function(e){return this.pushStack(et(this,e||[],!1))},is:function(e){return!!et(this,"string"==typeof e&&Q.test(e)?x(e):e||[],!1).length},closest:function(e,t){var n,r=0,i=this.length,o=[],s=Q.test(e)||"string"!=typeof e?x(e,t||this.context):0;for(;i>r;r++)for(n=this[r];n&&n!==t;n=n.parentNode)if(11>n.nodeType&&(s?s.index(n)>-1:1===n.nodeType&&x.find.matchesSelector(n,e))){n=o.push(n);break}return this.pushStack(o.length>1?x.unique(o):o)},index:function(e){return e?"string"==typeof e?g.call(x(e),this[0]):g.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){var n="string"==typeof e?x(e,t):x.makeArray(e&&e.nodeType?[e]:e),r=x.merge(this.get(),n);return this.pushStack(x.unique(r))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}});function Z(e,t){while((e=e[t])&&1!==e.nodeType);return e}x.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return x.dir(e,"parentNode")},parentsUntil:function(e,t,n){return x.dir(e,"parentNode",n)},next:function(e){return Z(e,"nextSibling")},prev:function(e){return Z(e,"previousSibling")},nextAll:function(e){return x.dir(e,"nextSibling")},prevAll:function(e){return x.dir(e,"previousSibling")},nextUntil:function(e,t,n){return x.dir(e,"nextSibling",n)},prevUntil:function(e,t,n){return x.dir(e,"previousSibling",n)},siblings:function(e){return x.sibling((e.parentNode||{}).firstChild,e)},children:function(e){return x.sibling(e.firstChild)},contents:function(e){return e.contentDocument||x.merge([],e.childNodes)}},function(e,t){x.fn[e]=function(n,r){var i=x.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"==typeof r&&(i=x.filter(r,i)),this.length>1&&(K[e]||x.unique(i),J.test(e)&&i.reverse()),this.pushStack(i)}}),x.extend({filter:function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?x.find.matchesSelector(r,e)?[r]:[]:x.find.matches(e,x.grep(t,function(e){return 1===e.nodeType}))},dir:function(e,t,n){var r=[],i=n!==undefined;while((e=e[t])&&9!==e.nodeType)if(1===e.nodeType){if(i&&x(e).is(n))break;r.push(e)}return r},sibling:function(e,t){var n=[];for(;e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n}});function et(e,t,n){if(x.isFunction(t))return x.grep(e,function(e,r){return!!t.call(e,r,e)!==n});if(t.nodeType)return x.grep(e,function(e){return e===t!==n});if("string"==typeof t){if(G.test(t))return x.filter(t,e,n);t=x.filter(t,e)}return x.grep(e,function(e){return g.call(t,e)>=0!==n})}var tt=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,nt=/<([\w:]+)/,rt=/<|&#?\w+;/,it=/<(?:script|style|link)/i,ot=/^(?:checkbox|radio)$/i,st=/checked\s*(?:[^=]|=\s*.checked.)/i,at=/^$|\/(?:java|ecma)script/i,ut=/^true\/(.*)/,lt=/^\s*\s*$/g,ct={option:[1,""],thead:[1,"","
    "],col:[2,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],_default:[0,"",""]};ct.optgroup=ct.option,ct.tbody=ct.tfoot=ct.colgroup=ct.caption=ct.thead,ct.th=ct.td,x.fn.extend({text:function(e){return x.access(this,function(e){return e===undefined?x.text(this):this.empty().append((this[0]&&this[0].ownerDocument||o).createTextNode(e))},null,e,arguments.length)},append:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=pt(this,e);t.appendChild(e)}})},prepend:function(){return this.domManip(arguments,function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=pt(this,e);t.insertBefore(e,t.firstChild)}})},before:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this)})},after:function(){return this.domManip(arguments,function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)})},remove:function(e,t){var n,r=e?x.filter(e,this):this,i=0;for(;null!=(n=r[i]);i++)t||1!==n.nodeType||x.cleanData(mt(n)),n.parentNode&&(t&&x.contains(n.ownerDocument,n)&&dt(mt(n,"script")),n.parentNode.removeChild(n));return this},empty:function(){var e,t=0;for(;null!=(e=this[t]);t++)1===e.nodeType&&(x.cleanData(mt(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null==e?!1:e,t=null==t?e:t,this.map(function(){return x.clone(this,e,t)})},html:function(e){return x.access(this,function(e){var t=this[0]||{},n=0,r=this.length;if(e===undefined&&1===t.nodeType)return t.innerHTML;if("string"==typeof e&&!it.test(e)&&!ct[(nt.exec(e)||["",""])[1].toLowerCase()]){e=e.replace(tt,"<$1>");try{for(;r>n;n++)t=this[n]||{},1===t.nodeType&&(x.cleanData(mt(t,!1)),t.innerHTML=e);t=0}catch(i){}}t&&this.empty().append(e)},null,e,arguments.length)},replaceWith:function(){var e=x.map(this,function(e){return[e.nextSibling,e.parentNode]}),t=0;return this.domManip(arguments,function(n){var r=e[t++],i=e[t++];i&&(r&&r.parentNode!==i&&(r=this.nextSibling),x(this).remove(),i.insertBefore(n,r))},!0),t?this:this.remove()},detach:function(e){return this.remove(e,!0)},domManip:function(e,t,n){e=f.apply([],e);var r,i,o,s,a,u,l=0,c=this.length,p=this,h=c-1,d=e[0],g=x.isFunction(d);if(g||!(1>=c||"string"!=typeof d||x.support.checkClone)&&st.test(d))return this.each(function(r){var i=p.eq(r);g&&(e[0]=d.call(this,r,i.html())),i.domManip(e,t,n)});if(c&&(r=x.buildFragment(e,this[0].ownerDocument,!1,!n&&this),i=r.firstChild,1===r.childNodes.length&&(r=i),i)){for(o=x.map(mt(r,"script"),ft),s=o.length;c>l;l++)a=r,l!==h&&(a=x.clone(a,!0,!0),s&&x.merge(o,mt(a,"script"))),t.call(this[l],a,l);if(s)for(u=o[o.length-1].ownerDocument,x.map(o,ht),l=0;s>l;l++)a=o[l],at.test(a.type||"")&&!q.access(a,"globalEval")&&x.contains(u,a)&&(a.src?x._evalUrl(a.src):x.globalEval(a.textContent.replace(lt,"")))}return this}}),x.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(e,t){x.fn[e]=function(e){var n,r=[],i=x(e),o=i.length-1,s=0;for(;o>=s;s++)n=s===o?this:this.clone(!0),x(i[s])[t](n),h.apply(r,n.get());return this.pushStack(r)}}),x.extend({clone:function(e,t,n){var r,i,o,s,a=e.cloneNode(!0),u=x.contains(e.ownerDocument,e);if(!(x.support.noCloneChecked||1!==e.nodeType&&11!==e.nodeType||x.isXMLDoc(e)))for(s=mt(a),o=mt(e),r=0,i=o.length;i>r;r++)yt(o[r],s[r]);if(t)if(n)for(o=o||mt(e),s=s||mt(a),r=0,i=o.length;i>r;r++)gt(o[r],s[r]);else gt(e,a);return s=mt(a,"script"),s.length>0&&dt(s,!u&&mt(e,"script")),a},buildFragment:function(e,t,n,r){var i,o,s,a,u,l,c=0,p=e.length,f=t.createDocumentFragment(),h=[];for(;p>c;c++)if(i=e[c],i||0===i)if("object"===x.type(i))x.merge(h,i.nodeType?[i]:i);else if(rt.test(i)){o=o||f.appendChild(t.createElement("div")),s=(nt.exec(i)||["",""])[1].toLowerCase(),a=ct[s]||ct._default,o.innerHTML=a[1]+i.replace(tt,"<$1>")+a[2],l=a[0];while(l--)o=o.lastChild;x.merge(h,o.childNodes),o=f.firstChild,o.textContent=""}else h.push(t.createTextNode(i));f.textContent="",c=0;while(i=h[c++])if((!r||-1===x.inArray(i,r))&&(u=x.contains(i.ownerDocument,i),o=mt(f.appendChild(i),"script"),u&&dt(o),n)){l=0;while(i=o[l++])at.test(i.type||"")&&n.push(i)}return f},cleanData:function(e){var t,n,r,i,o,s,a=x.event.special,u=0;for(;(n=e[u])!==undefined;u++){if(F.accepts(n)&&(o=n[q.expando],o&&(t=q.cache[o]))){if(r=Object.keys(t.events||{}),r.length)for(s=0;(i=r[s])!==undefined;s++)a[i]?x.event.remove(n,i):x.removeEvent(n,i,t.handle);q.cache[o]&&delete q.cache[o]}delete L.cache[n[L.expando]]}},_evalUrl:function(e){return x.ajax({url:e,type:"GET",dataType:"script",async:!1,global:!1,"throws":!0})}});function pt(e,t){return x.nodeName(e,"table")&&x.nodeName(1===t.nodeType?t:t.firstChild,"tr")?e.getElementsByTagName("tbody")[0]||e.appendChild(e.ownerDocument.createElement("tbody")):e}function ft(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function ht(e){var t=ut.exec(e.type);return t?e.type=t[1]:e.removeAttribute("type"),e}function dt(e,t){var n=e.length,r=0;for(;n>r;r++)q.set(e[r],"globalEval",!t||q.get(t[r],"globalEval"))}function gt(e,t){var n,r,i,o,s,a,u,l;if(1===t.nodeType){if(q.hasData(e)&&(o=q.access(e),s=q.set(t,o),l=o.events)){delete s.handle,s.events={};for(i in l)for(n=0,r=l[i].length;r>n;n++)x.event.add(t,i,l[i][n])}L.hasData(e)&&(a=L.access(e),u=x.extend({},a),L.set(t,u))}}function mt(e,t){var n=e.getElementsByTagName?e.getElementsByTagName(t||"*"):e.querySelectorAll?e.querySelectorAll(t||"*"):[];return t===undefined||t&&x.nodeName(e,t)?x.merge([e],n):n}function yt(e,t){var n=t.nodeName.toLowerCase();"input"===n&&ot.test(e.type)?t.checked=e.checked:("input"===n||"textarea"===n)&&(t.defaultValue=e.defaultValue)}x.fn.extend({wrapAll:function(e){var t;return x.isFunction(e)?this.each(function(t){x(this).wrapAll(e.call(this,t))}):(this[0]&&(t=x(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map(function(){var e=this;while(e.firstElementChild)e=e.firstElementChild;return e}).append(this)),this)},wrapInner:function(e){return x.isFunction(e)?this.each(function(t){x(this).wrapInner(e.call(this,t))}):this.each(function(){var t=x(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)})},wrap:function(e){var t=x.isFunction(e);return this.each(function(n){x(this).wrapAll(t?e.call(this,n):e)})},unwrap:function(){return this.parent().each(function(){x.nodeName(this,"body")||x(this).replaceWith(this.childNodes)}).end()}});var vt,xt,bt=/^(none|table(?!-c[ea]).+)/,wt=/^margin/,Tt=RegExp("^("+b+")(.*)$","i"),Ct=RegExp("^("+b+")(?!px)[a-z%]+$","i"),kt=RegExp("^([+-])=("+b+")","i"),Nt={BODY:"block"},Et={position:"absolute",visibility:"hidden",display:"block"},St={letterSpacing:0,fontWeight:400},jt=["Top","Right","Bottom","Left"],Dt=["Webkit","O","Moz","ms"];function At(e,t){if(t in e)return t;var n=t.charAt(0).toUpperCase()+t.slice(1),r=t,i=Dt.length;while(i--)if(t=Dt[i]+n,t in e)return t;return r}function Lt(e,t){return e=t||e,"none"===x.css(e,"display")||!x.contains(e.ownerDocument,e)}function qt(t){return e.getComputedStyle(t,null)}function Ht(e,t){var n,r,i,o=[],s=0,a=e.length;for(;a>s;s++)r=e[s],r.style&&(o[s]=q.get(r,"olddisplay"),n=r.style.display,t?(o[s]||"none"!==n||(r.style.display=""),""===r.style.display&&Lt(r)&&(o[s]=q.access(r,"olddisplay",Rt(r.nodeName)))):o[s]||(i=Lt(r),(n&&"none"!==n||!i)&&q.set(r,"olddisplay",i?n:x.css(r,"display"))));for(s=0;a>s;s++)r=e[s],r.style&&(t&&"none"!==r.style.display&&""!==r.style.display||(r.style.display=t?o[s]||"":"none"));return e}x.fn.extend({css:function(e,t){return x.access(this,function(e,t,n){var r,i,o={},s=0;if(x.isArray(t)){for(r=qt(e),i=t.length;i>s;s++)o[t[s]]=x.css(e,t[s],!1,r);return o}return n!==undefined?x.style(e,t,n):x.css(e,t)},e,t,arguments.length>1)},show:function(){return Ht(this,!0)},hide:function(){return Ht(this)},toggle:function(e){return"boolean"==typeof e?e?this.show():this.hide():this.each(function(){Lt(this)?x(this).show():x(this).hide()})}}),x.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=vt(e,"opacity");return""===n?"1":n}}}},cssNumber:{columnCount:!0,fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":"cssFloat"},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,s,a=x.camelCase(t),u=e.style;return t=x.cssProps[a]||(x.cssProps[a]=At(u,a)),s=x.cssHooks[t]||x.cssHooks[a],n===undefined?s&&"get"in s&&(i=s.get(e,!1,r))!==undefined?i:u[t]:(o=typeof n,"string"===o&&(i=kt.exec(n))&&(n=(i[1]+1)*i[2]+parseFloat(x.css(e,t)),o="number"),null==n||"number"===o&&isNaN(n)||("number"!==o||x.cssNumber[a]||(n+="px"),x.support.clearCloneStyle||""!==n||0!==t.indexOf("background")||(u[t]="inherit"),s&&"set"in s&&(n=s.set(e,n,r))===undefined||(u[t]=n)),undefined)}},css:function(e,t,n,r){var i,o,s,a=x.camelCase(t);return t=x.cssProps[a]||(x.cssProps[a]=At(e.style,a)),s=x.cssHooks[t]||x.cssHooks[a],s&&"get"in s&&(i=s.get(e,!0,n)),i===undefined&&(i=vt(e,t,r)),"normal"===i&&t in St&&(i=St[t]),""===n||n?(o=parseFloat(i),n===!0||x.isNumeric(o)?o||0:i):i}}),vt=function(e,t,n){var r,i,o,s=n||qt(e),a=s?s.getPropertyValue(t)||s[t]:undefined,u=e.style;return s&&(""!==a||x.contains(e.ownerDocument,e)||(a=x.style(e,t)),Ct.test(a)&&wt.test(t)&&(r=u.width,i=u.minWidth,o=u.maxWidth,u.minWidth=u.maxWidth=u.width=a,a=s.width,u.width=r,u.minWidth=i,u.maxWidth=o)),a};function Ot(e,t,n){var r=Tt.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2]||"px"):t}function Ft(e,t,n,r,i){var o=n===(r?"border":"content")?4:"width"===t?1:0,s=0;for(;4>o;o+=2)"margin"===n&&(s+=x.css(e,n+jt[o],!0,i)),r?("content"===n&&(s-=x.css(e,"padding"+jt[o],!0,i)),"margin"!==n&&(s-=x.css(e,"border"+jt[o]+"Width",!0,i))):(s+=x.css(e,"padding"+jt[o],!0,i),"padding"!==n&&(s+=x.css(e,"border"+jt[o]+"Width",!0,i)));return s}function Pt(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=qt(e),s=x.support.boxSizing&&"border-box"===x.css(e,"boxSizing",!1,o);if(0>=i||null==i){if(i=vt(e,t,o),(0>i||null==i)&&(i=e.style[t]),Ct.test(i))return i;r=s&&(x.support.boxSizingReliable||i===e.style[t]),i=parseFloat(i)||0}return i+Ft(e,t,n||(s?"border":"content"),r,o)+"px"}function Rt(e){var t=o,n=Nt[e];return n||(n=Mt(e,t),"none"!==n&&n||(xt=(xt||x("