[
  {
    "path": ".gitattributes",
    "content": "# Set the default behavior, in case people don't have core.autocrlf set.\n* text=auto\n\n# Files that will always have UNIX line-endings LF rather than Windows-style CRLF.\n*.css text eol=lf\n*.js text eol=lf\n*.md text eol=lf\n*.svg text eol=lf\n*.xml text eol=lf\n\n# Denote all files that are truly binary and should not be modified.\n# (binary is a macro for -text -diff)\n*.png binary\n"
  },
  {
    "path": ".github/.python-version",
    "content": "3.12\n"
  },
  {
    "path": ".github/FUNDING.yml",
    "content": "# These are supported funding model platforms\n\ngithub: [edent] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]\npatreon: edent # Replace with a single Patreon username\nopen_collective: edent # Replace with a single Open Collective username\nko_fi: edent # Replace with a single Ko-fi username\ntidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel\ncommunity_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry\ncustom: https://www.amazon.co.uk/hz/wishlist/ls/13GFCFR2B2IX4?tag=edentgithub-21\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/logo-request.md",
    "content": "---\nname: Logo request\nabout: Suggest an icon for this project\ntitle: \"[Request]\"\nlabels: new icon\nassignees: ''\n\n---\n\n<!-- Please fill in as many of these as you can. -->\n\nThe icon I want is: \n\n* Name: \n* Website: \n* Link to icon: \n* Link to SVG version of icon: \n* Link to brand guidelines: \n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/logo-update.md",
    "content": "---\nname: Logo update\nabout: Update to an existing icon\ntitle: \"[Update]\"\nlabels: [\"Update\"]\nassignees: ''\n\n---\n\n<!-- Please fill in as many of these as you can. -->\n\nThe icon I want to update is: \n\n* Name: \n* Website: \n* Link to icon: \n* Link to SVG version of icon: \n* Link to brand guidelines: \n"
  },
  {
    "path": ".github/dependabot.yml",
    "content": "version: 2\nupdates:\n  - package-ecosystem: \"github-actions\"\n    directory: \"/\"\n    schedule:\n      interval: \"weekly\"\n  - package-ecosystem: \"npm\"\n    directory: \"/\"\n    schedule:\n      interval: \"weekly\"\n  # waiting for uv to be available: https://docs.astral.sh/uv/guides/integration/dependency-bots/#dependabot\n  # - package-ecosystem: \"npm\"\n  #   directory: \"/\"\n  #   schedule:\n  #     interval: \"weekly\"\n"
  },
  {
    "path": ".github/generate_readme.py",
    "content": "import os\nimport xml.etree.ElementTree as ET\nimport re\nimport sys\nfrom pathlib import Path\n\ntable_columns = 6\nimg_domain = \"https://edent.github.io/SuperTinyIcons/images/svg/\"\nparent_dir = Path(\".\").parent.absolute()\nsvg_dir = f\"{parent_dir}/images/svg/\"\nprint(f\"Getting SVGs from {svg_dir}\")\n\nsvg_list = sorted(os.listdir( svg_dir ))\nsvg_data = {}\ntotal_bytes = 0\n\n#\tSet up the tables\nreadme_table = \"<table>\\n\"\n\ncounter = 0\n#\tLoop through all the SVG data\nfor svg_file in svg_list:\n\tname     = ET.parse(f'{svg_dir}{svg_file}').getroot().attrib[\"aria-label\"]\n\tbytes    = os.stat(f'{svg_dir}{svg_file}').st_size\n\ttotal_bytes += bytes\n\n\tprint(f\"{name} {bytes}\")\n\n\tif counter == 0 :\n\t\treadme_table += \"<tr>\\n\"\n\t\t\n\treadme_table += f'<td>{name}<br>'\n\treadme_table += f'<img src=\"{img_domain}{svg_file}\" width=\"100\" title=\"{name}\"><br>'\n\treadme_table += f'{bytes} bytes</td>\\n'\n\t\n\tcounter +=1\n\n\tif counter == table_columns:\n\t\treadme_table += \"</tr>\\n\\n\"\n\t\tcounter = 0\n\t\t\nif counter != 0 :\n\t\treadme_table += \"</tr>\\n\\n\"\n\t\t\nreadme_table += \"</table>\"\n\n#\tCalculate the number of icons and average size\nreadme_summary_text = f\"There are currently {len(svg_list)} icons and the average size is _under_ {round(total_bytes / len(svg_list))} bytes!\"\n\nprint(readme_summary_text)\n\n#\tReplace the table and desciption in README with the new ones\nwith open(f\"{parent_dir}/README.md\",'r+', encoding=\"utf-8\") as f: \n\tfile = f.read() \n\t\n\tfile = re.sub(r\"There are currently \\d* icons and the average size is _under_ \\d* bytes\\!\", readme_summary_text, file) \n\n\tfile = re.sub(r\"(?s)<table>.*?</table>\", readme_table, file)\n\n\tf.seek(0)\n\tf.write(file)\n\tf.truncate()"
  },
  {
    "path": ".github/pull_request_template.md",
    "content": "Thank you for your contribution!  Before sending this Pull Request, please confirm the following:\n\n* [ ] I have read [the contributing guidelines](https://github.com/edent/SuperTinyIcons/blob/master/CONTRIBUTING.md)\n* [ ] I have run `python check.py` and received a ✅\n* [ ] The icon's size is *under* 1,024 Bytes\n* [ ] The layout of the SVG looks like this *including* newlines\n```svg\n<svg xmlns=\"http://www.w3.org/2000/svg\"\naria-label=\"...\" role=\"img\"\nviewBox=\"0 0 512 512\"><path\nd=\"m0 0H512V512H0\"\nfill=\"#fff\"/> ... </svg>\n```\n\nIf you have done the above, please send the Pull Request.\n"
  },
  {
    "path": ".github/workflows/page.yml",
    "content": "name: Deploy with GitHub Pages\n\non:\n  push:\n    branches: [\"master\"]\n\n  # Allows you to run this workflow manually from the Actions tab\n  workflow_dispatch:\n\n# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages\npermissions:\n  contents: write\n  pages: write\n  id-token: write\n\n# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.\n# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.\nconcurrency:\n  group: \"pages\"\n  cancel-in-progress: false\n\njobs:\n  # Build job\n  build:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v6\n      - name: Setup Pages\n        uses: actions/configure-pages@v5\n      - name: Install uv\n        uses: astral-sh/setup-uv@v7\n        with:\n          enable-cache: true\n          cache-dependency-glob: \"uv.lock\"\n      - name: \"Set up Python\"\n        uses: actions/setup-python@v6\n        with:\n          python-version-file: \".github/.python-version\"\n      - name: Generate pages\n        run: uv run -- sti -o _site\n      - name: Copy images\n        run: cp -at _site/ images\n      - name: Upload artifact\n        uses: actions/upload-pages-artifact@v4\n      - name: Generate Readme\n        run: uv run .github/generate_readme.py\n      - name: Commit and push changes\n        run: |\n          git config user.name \"github-actions[bot]\"\n          git config user.email \"github-actions[bot]@users.noreply.github.com\"\n          git add README.md\n          git commit -m \"Update README [skip ci]\" || echo \"No changes to commit\"\n          git push\n\n  # Deployment job\n  deploy:\n    environment:\n      name: github-pages\n      url: ${{ steps.deployment.outputs.page_url }}\n    runs-on: ubuntu-latest\n    needs: build\n    steps:\n      - name: Deploy to GitHub Pages\n        id: deployment\n        uses: actions/deploy-pages@v4\n"
  },
  {
    "path": ".github/workflows/test.yml",
    "content": "name: Run tests\n\non:\n  [push, pull_request]\n\njobs:\n  test:\n    runs-on: ubuntu-latest\n    name: Test new SVG files\n    steps:\n      - uses: actions/checkout@v6\n      - name: Get changed files\n        id: changed-files\n        uses: tj-actions/changed-files@v47\n        with:\n          files: |\n            images/svg/**.svg\n      - name: List all changed SVG files\n        env:\n          CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}\n        run: |\n          for file in ${CHANGED_FILES}; do\n            echo \"$file was changed\"\n          done\n      - uses: actions/setup-node@v6\n      - run: npm install\n      - run: npm test\n        env:\n          CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}\n"
  },
  {
    "path": ".gitignore",
    "content": "# OS files #\n._*\n.DS_Store\n.Spotlight-V100\n.Trashes\nThumbs.db\n\n# Other files #\n/node_modules/\n\n# Python\n__pycache__/\n*.py[cod]\ndist/\nsdist/\n*.egg-info/\n*.egg\n"
  },
  {
    "path": "CODE_OF_CONDUCT.md",
    "content": "# Contributor Covenant Code of Conduct\n\n## Our Pledge\n\nIn the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation.\n\n## Our Standards\n\nExamples of behavior that contributes to creating a positive environment include:\n\n* Using welcoming and inclusive language\n* Being respectful of differing viewpoints and experiences\n* Gracefully accepting constructive criticism\n* Focusing on what is best for the community\n* Showing empathy towards other community members\n\nExamples of unacceptable behavior by participants include:\n\n* The use of sexualized language or imagery and unwelcome sexual attention or advances\n* Trolling, insulting/derogatory comments, and personal or political attacks\n* Public or private harassment\n* Publishing others' private information, such as a physical or electronic address, without explicit permission\n* Other conduct which could reasonably be considered inappropriate in a professional setting\n\n## Our Responsibilities\n\nProject maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.\n\nProject maintainers 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, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.\n\n## Scope\n\nThis Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.\n\n## Enforcement\n\nInstances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at supertinyiconsconduct@shkspr.mobi. The project team will review and investigate all complaints, and will respond in a way that it deems appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.\n\nProject maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.\n\n## Attribution\n\nThis Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version]\n\n[homepage]: http://contributor-covenant.org\n[version]: http://contributor-covenant.org/version/1/4/\n"
  },
  {
    "path": "CONTRIBUTING.md",
    "content": "Thanks for submitting or fixing an icon! Here is a helpful guide to what you need to include.\n\n- [ ] New file which is *under* 1,024 bytes.\n- [ ] Which matches the guidelines.\n- [ ] Add reference image.\n- [ ] Add official brand guidelines URl.\n- [ ] Run `python check.py` to makes sure everything is correct.\n\n## New File\n\n* The filename should be `nameofservice.svg` - all in lower-case.\n* If a special character must be used, please replace it with an underscore (not a dot nor a dash). \n   * For example `arch_linux.svg`\n* Place the file in `/images/svg/`\n* At a minimum, your icon needs these components, in this layout:\n  * The first `...` should be `nameofservice`\n  * The second `...` should be the SVG paths/objects that make up the logo\n\n```svg\n<svg xmlns=\"http://www.w3.org/2000/svg\"\naria-label=\"...\" role=\"img\"\nviewBox=\"0 0 512 512\"><path\nd=\"m0 0H512V512H0\"\nfill=\"#fff\"/> ... </svg>\n```\n\n## Shrinking\n\nYou can shrink the file size using tools like:\n* [Yann Armelin's SVG Path Editor](https://yqnn.github.io/svg-path-editor/).\n* [svgo](https://svgo.dev/).\n* [svgcleaner](https://github.com/RazrFalcon/svgcleaner).\n* [SVGOMG](https://jakearchibald.github.io/svgomg/).\n\n### Guidelines\n\nThis is the standard guideline. Use this to help with sizing your icons and they will look good no matter what border radius is chosen.\n\n<img src=\"https://edent.github.io/SuperTinyIcons/images/guidelines/guideline.svg\" width=\"256\" alt=\"A template for logos\" />\n\n- **Green** is the safe zone, where the main body of the icon should be.\n- **Yellow** is like a road shoulder, it is there if more space is needed. It should be used for protruding elements, like corners or ornaments.\n- **Red** is off limits. It should not be touched by the icons. Red is also how a circular icon would look.\n\n## Reference Image and Brand Guidelines URl\n\n* Find an *official* logo.\n* Add it to `/images/reference/`\n* It must have the same filename as the image you added to `/images/svg/`\n   * It's OK if it has a different extension. `nameofservice.png` is fine.\n* Add the brand guidelines URl in a new file within `/images/svg/`\n   * For example, create a file called `/images/reference/nameofservice.url` with the contents `https://example.com/brand-guidelines`\n   * The aim of this is to find an *official* source of the logo. Ideally with information about colours etc. If not, a link to the homepage or favicon will do.\n\n## (Optional) Create Android Version\n\nThis is a manual process.\n\nTo convert in Android Studio, use [Vector Asset Studio](https://developer.android.com/studio/write/vector-asset-studio#running) and [import the SVG](https://developer.android.com/studio/write/vector-asset-studio#svg).\n\nYou can also use the [command line `vd-tool`](https://github.com/rharter/vd-tool) to batch convert images.\n\nPlease check the file carefully to see if the preview matches the original. You can check the image in Vector Asset Studio, [online](https://vd.floo.app/), or using `npx vector-drawable-svg logo.xml logo.svg`\n\nIf it does render correctly, add the file to `/images/android-vector-drawable/`"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nSuperTiny Icons Copyright ⓒ 2017 Terence Eden\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\nThe Nu Validator is Copyright ⓒ 2007-2016 Mozilla Foundation\nhttps://github.com/validator/validator"
  },
  {
    "path": "README.md",
    "content": "# Super Tiny Icons\n\nUnder 1KB each! Super Tiny Web Icons are minuscule SVG versions of your favourite logos. There are currently 475 icons and the average size is _under_ 534 bytes!\n\nThe logos have a 512x512 viewbox, they will fit in a circle with radius 256. They will scale up and down to suit your needs.\n\n[![DOI](https://zenodo.org/badge/88214511.svg)](https://doi.org/10.5281/zenodo.16944294)\n\n## How Small?\n\n| 527 Bytes SVG | 3,328 Bytes PNG | 352 Bytes SVG | 2,987 Bytes PNG | 235 Bytes SVG | 1,615 Bytes PNG |\n| ------------- | --------------- | ------------- | --------------- | ------------- | --------------- |\n| <img src=\"https://edent.github.io/SuperTinyIcons/images/svg/github.svg\" width=\"100\" /> | <img src=\"https://edent.github.io/SuperTinyIcons/images/png/github.png\" width=\"100\" /> | <img src=\"https://edent.github.io/SuperTinyIcons/images/svg/twitter.svg\" width=\"100\" /> | <img src=\"https://edent.github.io/SuperTinyIcons/images/png/twitter.png\" width=\"100\" /> | <img src=\"https://edent.github.io/SuperTinyIcons/images/svg/flickr.svg\" width=\"100\" /> | <img src=\"https://edent.github.io/SuperTinyIcons/images/png/flickr.png\" width=\"100\" /> |\n\n## What's Available so far?\n\n<table>\n<tr>\n<td>1Password<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/1password.svg\" width=\"100\" title=\"1Password\"><br>360 bytes</td>\n<td>Acast<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/acast.svg\" width=\"100\" title=\"Acast\"><br>420 bytes</td>\n<td>Access<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/access.svg\" width=\"100\" title=\"Access\"><br>349 bytes</td>\n<td>ActivityPub<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/activitypub.svg\" width=\"100\" title=\"ActivityPub\"><br>337 bytes</td>\n<td>Adobe<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/adobe.svg\" width=\"100\" title=\"Adobe\"><br>220 bytes</td>\n<td>Adyen<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/adyen.svg\" width=\"100\" title=\"Adyen\"><br>642 bytes</td>\n</tr>\n\n<tr>\n<td>Airbnb<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/airbnb.svg\" width=\"100\" title=\"Airbnb\"><br>356 bytes</td>\n<td>Alpine Linux<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/alpinelinux.svg\" width=\"100\" title=\"Alpine Linux\"><br>541 bytes</td>\n<td>Amazon<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/amazon.svg\" width=\"100\" title=\"Amazon\"><br>642 bytes</td>\n<td>Amazon Alexa<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/amazon_alexa.svg\" width=\"100\" title=\"Amazon Alexa\"><br>252 bytes</td>\n<td>Amazon Simple Storage Service<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/amazon_s3.svg\" width=\"100\" title=\"Amazon Simple Storage Service\"><br>527 bytes</td>\n<td>Amber Framework<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/amberframework.svg\" width=\"100\" title=\"Amber Framework\"><br>415 bytes</td>\n</tr>\n\n<tr>\n<td>andOTP<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/andotp.svg\" width=\"100\" title=\"andOTP\"><br>253 bytes</td>\n<td>Android<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/android.svg\" width=\"100\" title=\"Android\"><br>780 bytes</td>\n<td>AngelList<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/angellist.svg\" width=\"100\" title=\"AngelList\"><br>965 bytes</td>\n<td>Angular<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/angular.svg\" width=\"100\" title=\"Angular\"><br>247 bytes</td>\n<td>Ansible<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/ansible.svg\" width=\"100\" title=\"Ansible\"><br>311 bytes</td>\n<td>Apache AGE<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/apache_age.svg\" width=\"100\" title=\"Apache AGE\"><br>720 bytes</td>\n</tr>\n\n<tr>\n<td>Apereo Foundation<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/apereo.svg\" width=\"100\" title=\"Apereo Foundation\"><br>453 bytes</td>\n<td>Apple<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/apple.svg\" width=\"100\" title=\"Apple\"><br>354 bytes</td>\n<td>Apple Music<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/apple_music.svg\" width=\"100\" title=\"Apple Music\"><br>490 bytes</td>\n<td>Apple Podcasts<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/applepodcasts.svg\" width=\"100\" title=\"Apple Podcasts\"><br>939 bytes</td>\n<td>appwrite<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/appwrite.svg\" width=\"100\" title=\"appwrite\"><br>724 bytes</td>\n<td>Arch Linux<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/arch_linux.svg\" width=\"100\" title=\"Arch Linux\"><br>308 bytes</td>\n</tr>\n\n<tr>\n<td>arduino<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/arduino.svg\" width=\"100\" title=\"arduino\"><br>869 bytes</td>\n<td>Atom<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/atom.svg\" width=\"100\" title=\"Atom\"><br>347 bytes</td>\n<td>Auth0<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/auth0.svg\" width=\"100\" title=\"Auth0\"><br>599 bytes</td>\n<td>Authy<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/authy.svg\" width=\"100\" title=\"Authy\"><br>329 bytes</td>\n<td>Azure<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/azure.svg\" width=\"100\" title=\"Azure\"><br>841 bytes</td>\n<td>Backbone<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/backbone.svg\" width=\"100\" title=\"Backbone\"><br>337 bytes</td>\n</tr>\n\n<tr>\n<td>Badoo<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/badoo.svg\" width=\"100\" title=\"Badoo\"><br>298 bytes</td>\n<td>Baidu<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/baidu.svg\" width=\"100\" title=\"Baidu\"><br>783 bytes</td>\n<td>Bandcamp<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/bandcamp.svg\" width=\"100\" title=\"Bandcamp\"><br>188 bytes</td>\n<td>Bash<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/bash.svg\" width=\"100\" title=\"Bash\"><br>756 bytes</td>\n<td>Behance<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/behance.svg\" width=\"100\" title=\"Behance\"><br>666 bytes</td>\n<td>Bing<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/bing.svg\" width=\"100\" title=\"Bing\"><br>939 bytes</td>\n</tr>\n\n<tr>\n<td>Bitbucket<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/bitbucket.svg\" width=\"100\" title=\"Bitbucket\"><br>665 bytes</td>\n<td>Bitcoin<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/bitcoin.svg\" width=\"100\" title=\"Bitcoin\"><br>514 bytes</td>\n<td>Bitwarden<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/bitwarden.svg\" width=\"100\" title=\"Bitwarden\"><br>286 bytes</td>\n<td>Blender<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/blender.svg\" width=\"100\" title=\"Blender\"><br>368 bytes</td>\n<td>Blogger<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/blogger.svg\" width=\"100\" title=\"Blogger\"><br>339 bytes</td>\n<td>Bluesky<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/bluesky.svg\" width=\"100\" title=\"Bluesky\"><br>397 bytes</td>\n</tr>\n\n<tr>\n<td>Bluetooth<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/bluetooth.svg\" width=\"100\" title=\"Bluetooth\"><br>366 bytes</td>\n<td>Brave<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/brave.svg\" width=\"100\" title=\"Brave\"><br>996 bytes</td>\n<td>Briar<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/briar.svg\" width=\"100\" title=\"Briar\"><br>436 bytes</td>\n<td>Buffer<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/buffer.svg\" width=\"100\" title=\"Buffer\"><br>422 bytes</td>\n<td>Bugcrowd<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/bugcrowd.svg\" width=\"100\" title=\"Bugcrowd\"><br>774 bytes</td>\n<td>Bun<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/bun.svg\" width=\"100\" title=\"Bun\"><br>1012 bytes</td>\n</tr>\n\n<tr>\n<td>C<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/c.svg\" width=\"100\" title=\"C\"><br>592 bytes</td>\n<td>Calendar<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/calendar.svg\" width=\"100\" title=\"Calendar\"><br>744 bytes</td>\n<td>Cash App<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/cash_app.svg\" width=\"100\" title=\"Cash App\"><br>772 bytes</td>\n<td>CentOS<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/centos.svg\" width=\"100\" title=\"CentOS\"><br>856 bytes</td>\n<td>ChatGPT<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/chatgpt.svg\" width=\"100\" title=\"ChatGPT\"><br>763 bytes</td>\n<td>Chrome<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/chrome.svg\" width=\"100\" title=\"Chrome\"><br>401 bytes</td>\n</tr>\n\n<tr>\n<td>Chromium<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/chromium.svg\" width=\"100\" title=\"Chromium\"><br>403 bytes</td>\n<td>Citrix<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/citrix.svg\" width=\"100\" title=\"Citrix\"><br>743 bytes</td>\n<td>Citrix<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/citrix_compact.svg\" width=\"100\" title=\"Citrix\"><br>348 bytes</td>\n<td>ClickHouse<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/clickhouse.svg\" width=\"100\" title=\"ClickHouse\"><br>595 bytes</td>\n<td>Clojure<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/clojure.svg\" width=\"100\" title=\"Clojure\"><br>560 bytes</td>\n<td>Cloudflare<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/cloudflare.svg\" width=\"100\" title=\"Cloudflare\"><br>478 bytes</td>\n</tr>\n\n<tr>\n<td>Codeberg<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/codeberg.svg\" width=\"100\" title=\"Codeberg\"><br>463 bytes</td>\n<td>CodePen<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/codepen.svg\" width=\"100\" title=\"CodePen\"><br>303 bytes</td>\n<td>CodeRabbit<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/coderabbit.svg\" width=\"100\" title=\"CodeRabbit\"><br>484 bytes</td>\n<td>Coderwall<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/coderwall.svg\" width=\"100\" title=\"Coderwall\"><br>244 bytes</td>\n<td>CoffeeScript<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/coffeescript.svg\" width=\"100\" title=\"CoffeeScript\"><br>513 bytes</td>\n<td>Coil<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/coil.svg\" width=\"100\" title=\"Coil\"><br>500 bytes</td>\n</tr>\n\n<tr>\n<td>coinpot<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/coinpot.svg\" width=\"100\" title=\"coinpot\"><br>722 bytes</td>\n<td>Google Colab<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/colaboratory.svg\" width=\"100\" title=\"Google Colab\"><br>373 bytes</td>\n<td>Coursera<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/coursera.svg\" width=\"100\" title=\"Coursera\"><br>295 bytes</td>\n<td>C++<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/cplusplus.svg\" width=\"100\" title=\"C++\"><br>666 bytes</td>\n<td>Crystal<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/crystal.svg\" width=\"100\" title=\"Crystal\"><br>214 bytes</td>\n<td>CSS3<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/css3.svg\" width=\"100\" title=\"CSS3\"><br>384 bytes</td>\n</tr>\n\n<tr>\n<td>Dart<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/dart.svg\" width=\"100\" title=\"Dart\"><br>545 bytes</td>\n<td>DataCamp<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/datacamp.svg\" width=\"100\" title=\"DataCamp\"><br>476 bytes</td>\n<td>Debian<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/debian.svg\" width=\"100\" title=\"Debian\"><br>922 bytes</td>\n<td>Deezer<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/deezer.svg\" width=\"100\" title=\"Deezer\"><br>690 bytes</td>\n<td>Delicious<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/delicious.svg\" width=\"100\" title=\"Delicious\"><br>259 bytes</td>\n<td>dev.to<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/dev_to.svg\" width=\"100\" title=\"dev.to\"><br>521 bytes</td>\n</tr>\n\n<tr>\n<td>DeviantArt<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/deviantart.svg\" width=\"100\" title=\"DeviantArt\"><br>263 bytes</td>\n<td>Digidentity<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/digidentity.svg\" width=\"100\" title=\"Digidentity\"><br>366 bytes</td>\n<td>DigitalOcean<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/digitalocean.svg\" width=\"100\" title=\"DigitalOcean\"><br>244 bytes</td>\n<td>Discord<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/discord.svg\" width=\"100\" title=\"Discord\"><br>345 bytes</td>\n<td>Disqus<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/disqus.svg\" width=\"100\" title=\"Disqus\"><br>259 bytes</td>\n<td>Django Project<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/djangoproject.svg\" width=\"100\" title=\"Django Project\"><br>428 bytes</td>\n</tr>\n\n<tr>\n<td>Docker<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/docker.svg\" width=\"100\" title=\"Docker\"><br>416 bytes</td>\n<td>Dolibarr<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/dolibarr.svg\" width=\"100\" title=\"Dolibarr\"><br>308 bytes</td>\n<td>Dovecot<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/dovecot.svg\" width=\"100\" title=\"Dovecot\"><br>523 bytes</td>\n<td>Downpour<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/downpour.svg\" width=\"100\" title=\"Downpour\"><br>981 bytes</td>\n<td>Draw.io<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/drawio.svg\" width=\"100\" title=\"Draw.io\"><br>425 bytes</td>\n<td>Dribble<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/dribbble.svg\" width=\"100\" title=\"Dribble\"><br>368 bytes</td>\n</tr>\n\n<tr>\n<td>Drone<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/drone.svg\" width=\"100\" title=\"Drone\"><br>291 bytes</td>\n<td>Dropbox<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/dropbox.svg\" width=\"100\" title=\"Dropbox\"><br>246 bytes</td>\n<td>Drupal<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/drupal.svg\" width=\"100\" title=\"Drupal\"><br>857 bytes</td>\n<td>Drupal<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/druplicon.svg\" width=\"100\" title=\"Drupal\"><br>842 bytes</td>\n<td>DuckDuckGo<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/duckduckgo.svg\" width=\"100\" title=\"DuckDuckGo\"><br>877 bytes</td>\n<td>Electronic Arts<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/ea.svg\" width=\"100\" title=\"Electronic Arts\"><br>279 bytes</td>\n</tr>\n\n<tr>\n<td>eBay<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/ebay.svg\" width=\"100\" title=\"eBay\"><br>800 bytes</td>\n<td>Ecosia<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/ecosia.svg\" width=\"100\" title=\"Ecosia\"><br>730 bytes</td>\n<td>Edge<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/edge.svg\" width=\"100\" title=\"Edge\"><br>1013 bytes</td>\n<td>elastic<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/elastic.svg\" width=\"100\" title=\"elastic\"><br>695 bytes</td>\n<td>Element<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/element.svg\" width=\"100\" title=\"Element\"><br>414 bytes</td>\n<td>Elementary OS<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/elementaryos.svg\" width=\"100\" title=\"Elementary OS\"><br>451 bytes</td>\n</tr>\n\n<tr>\n<td>Email<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/email.svg\" width=\"100\" title=\"Email\"><br>326 bytes</td>\n<td>Endeavour OS<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/endeavouros.svg\" width=\"100\" title=\"Endeavour OS\"><br>622 bytes</td>\n<td>Ente Auth<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/ente_auth.svg\" width=\"100\" title=\"Ente Auth\"><br>574 bytes</td>\n<td>ePub<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/epub.svg\" width=\"100\" title=\"ePub\"><br>308 bytes</td>\n<td>Espressif<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/espressif.svg\" width=\"100\" title=\"Espressif\"><br>577 bytes</td>\n<td>Ethereum<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/ethereum.svg\" width=\"100\" title=\"Ethereum\"><br>381 bytes</td>\n</tr>\n\n<tr>\n<td>Etsy<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/etsy.svg\" width=\"100\" title=\"Etsy\"><br>462 bytes</td>\n<td>Evernote<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/evernote.svg\" width=\"100\" title=\"Evernote\"><br>610 bytes</td>\n<td>ExpressionEngine<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/expressionengine.svg\" width=\"100\" title=\"ExpressionEngine\"><br>628 bytes</td>\n<td>Express.js<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/expressjs.svg\" width=\"100\" title=\"Express.js\"><br>633 bytes</td>\n<td>F-Droid<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/f-droid.svg\" width=\"100\" title=\"F-Droid\"><br>960 bytes</td>\n<td>Facebook<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/facebook.svg\" width=\"100\" title=\"Facebook\"><br>258 bytes</td>\n</tr>\n\n<tr>\n<td>Fediverse<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/fediverse.svg\" width=\"100\" title=\"Fediverse\"><br>1003 bytes</td>\n<td>Fedora<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/fedora.svg\" width=\"100\" title=\"Fedora\"><br>461 bytes</td>\n<td>Figma<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/figma.svg\" width=\"100\" title=\"Figma\"><br>619 bytes</td>\n<td>Filestash<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/filestash.svg\" width=\"100\" title=\"Filestash\"><br>267 bytes</td>\n<td>Finder<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/finder.svg\" width=\"100\" title=\"Finder\"><br>661 bytes</td>\n<td>Firebase<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/firebase.svg\" width=\"100\" title=\"Firebase\"><br>688 bytes</td>\n</tr>\n\n<tr>\n<td>Firefox<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/firefox.svg\" width=\"100\" title=\"Firefox\"><br>1005 bytes</td>\n<td>Fitbit<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/fitbit.svg\" width=\"100\" title=\"Fitbit\"><br>600 bytes</td>\n<td>Flask<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/flask.svg\" width=\"100\" title=\"Flask\"><br>877 bytes</td>\n<td>Flatpak<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/flatpak.svg\" width=\"100\" title=\"Flatpak\"><br>561 bytes</td>\n<td>Flattr<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/flattr.svg\" width=\"100\" title=\"Flattr\"><br>331 bytes</td>\n<td>Flickr<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/flickr.svg\" width=\"100\" title=\"Flickr\"><br>235 bytes</td>\n</tr>\n\n<tr>\n<td>Floatplane<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/floatplane.svg\" width=\"100\" title=\"Floatplane\"><br>823 bytes</td>\n<td>Flutter<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/flutter.svg\" width=\"100\" title=\"Flutter\"><br>489 bytes</td>\n<td>foobar2000<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/foobar2000.svg\" width=\"100\" title=\"foobar2000\"><br>455 bytes</td>\n<td>FreeBSD<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/freebsd.svg\" width=\"100\" title=\"FreeBSD\"><br>700 bytes</td>\n<td>freeCodeCamp<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/freecodecamp.svg\" width=\"100\" title=\"freeCodeCamp\"><br>701 bytes</td>\n<td>Friendica<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/friendica.svg\" width=\"100\" title=\"Friendica\"><br>821 bytes</td>\n</tr>\n\n<tr>\n<td>Fritz!<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/fritz.svg\" width=\"100\" title=\"Fritz!\"><br>567 bytes</td>\n<td>Gandi<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/gandi.svg\" width=\"100\" title=\"Gandi\"><br>749 bytes</td>\n<td>GateHub<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/gatehub.svg\" width=\"100\" title=\"GateHub\"><br>391 bytes</td>\n<td>GeeksForGeeks<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/geeksForGeeks.svg\" width=\"100\" title=\"GeeksForGeeks\"><br>504 bytes</td>\n<td>Gemini<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/gemini.svg\" width=\"100\" title=\"Gemini\"><br>614 bytes</td>\n<td>Ghost<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/ghost.svg\" width=\"100\" title=\"Ghost\"><br>256 bytes</td>\n</tr>\n\n<tr>\n<td>Git<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/git.svg\" width=\"100\" title=\"Git\"><br>365 bytes</td>\n<td>Gitea<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/gitea.svg\" width=\"100\" title=\"Gitea\"><br>748 bytes</td>\n<td>GitHub<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/github.svg\" width=\"100\" title=\"GitHub\"><br>514 bytes</td>\n<td>GitLab<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/gitlab.svg\" width=\"100\" title=\"GitLab\"><br>425 bytes</td>\n<td>Gitpod<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/gitpod.svg\" width=\"100\" title=\"Gitpod\"><br>543 bytes</td>\n<td>Glitch<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/glitch.svg\" width=\"100\" title=\"Glitch\"><br>962 bytes</td>\n</tr>\n\n<tr>\n<td>Gmail<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/gmail.svg\" width=\"100\" title=\"Gmail\"><br>442 bytes</td>\n<td>Gmail<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/gmail_old.svg\" width=\"100\" title=\"Gmail\"><br>567 bytes</td>\n<td>Go<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/go.svg\" width=\"100\" title=\"Go\"><br>566 bytes</td>\n<td>Godot<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/godot.svg\" width=\"100\" title=\"Godot\"><br>568 bytes</td>\n<td>GOG.com<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/gogcom.svg\" width=\"100\" title=\"GOG.com\"><br>648 bytes</td>\n<td>Gojek<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/gojek.svg\" width=\"100\" title=\"Gojek\"><br>258 bytes</td>\n</tr>\n\n<tr>\n<td>Goodreads<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/goodreads.svg\" width=\"100\" title=\"Goodreads\"><br>716 bytes</td>\n<td>Google<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/google.svg\" width=\"100\" title=\"Google\"><br>447 bytes</td>\n<td>Google Assistant<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/google_assistant.svg\" width=\"100\" title=\"Google Assistant\"><br>366 bytes</td>\n<td>Google Authenticator<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/google_authenticator.svg\" width=\"100\" title=\"Google Authenticator\"><br>640 bytes</td>\n<td>Google Calendar<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/google_calendar.svg\" width=\"100\" title=\"Google Calendar\"><br>579 bytes</td>\n<td>Google Collaborative content tools<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/google_collaborative_content_tools.svg\" width=\"100\" title=\"Google Collaborative content tools\"><br>485 bytes</td>\n</tr>\n\n<tr>\n<td>Google Docs Editors<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/google_docs_editors.svg\" width=\"100\" title=\"Google Docs Editors\"><br>470 bytes</td>\n<td>Google Drive<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/google_drive.svg\" width=\"100\" title=\"Google Drive\"><br>560 bytes</td>\n<td>Google Drive<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/google_drive_old.svg\" width=\"100\" title=\"Google Drive\"><br>298 bytes</td>\n<td>Google Find Hub<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/google_findhub.svg\" width=\"100\" title=\"Google Find Hub\"><br>684 bytes</td>\n<td>Google Fit<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/google_fit.svg\" width=\"100\" title=\"Google Fit\"><br>893 bytes</td>\n<td>Google Maps<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/google_maps.svg\" width=\"100\" title=\"Google Maps\"><br>553 bytes</td>\n</tr>\n\n<tr>\n<td>Google Maps<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/google_maps_old.svg\" width=\"100\" title=\"Google Maps\"><br>634 bytes</td>\n<td>Google Meet<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/google_meet.svg\" width=\"100\" title=\"Google Meet\"><br>513 bytes</td>\n<td>GPay<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/google_pay_old.svg\" width=\"100\" title=\"GPay\"><br>834 bytes</td>\n<td>Google Photos<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/google_photos.svg\" width=\"100\" title=\"Google Photos\"><br>475 bytes</td>\n<td>Google Play<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/google_play.svg\" width=\"100\" title=\"Google Play\"><br>420 bytes</td>\n<td>Google+<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/google_plus.svg\" width=\"100\" title=\"Google+\"><br>380 bytes</td>\n</tr>\n\n<tr>\n<td>Google Podcasts<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/google_podcasts.svg\" width=\"100\" title=\"Google Podcasts\"><br>444 bytes</td>\n<td>Google Scholar<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/google_scholar.svg\" width=\"100\" title=\"Google Scholar\"><br>517 bytes</td>\n<td>Google TV<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/google_tv.svg\" width=\"100\" title=\"Google TV\"><br>552 bytes</td>\n<td>Google Wallet<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/google_wallet.svg\" width=\"100\" title=\"Google Wallet\"><br>510 bytes</td>\n<td>Gradle<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/gradle.svg\" width=\"100\" title=\"Gradle\"><br>815 bytes</td>\n<td>Grafana<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/grafana.svg\" width=\"100\" title=\"Grafana\"><br>674 bytes</td>\n</tr>\n\n<tr>\n<td>Loki<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/grafana_loki.svg\" width=\"100\" title=\"Loki\"><br>566 bytes</td>\n<td>GrapheneOS<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/grapheneos.svg\" width=\"100\" title=\"GrapheneOS\"><br>748 bytes</td>\n<td>GraphQL<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/graphql.svg\" width=\"100\" title=\"GraphQL\"><br>509 bytes</td>\n<td>Grok<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/grok.svg\" width=\"100\" title=\"Grok\"><br>552 bytes</td>\n<td>Guacamole<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/guacamole.svg\" width=\"100\" title=\"Guacamole\"><br>655 bytes</td>\n<td>Guilded<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/guilded.svg\" width=\"100\" title=\"Guilded\"><br>330 bytes</td>\n</tr>\n\n<tr>\n<td>h-card<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/h-card.svg\" width=\"100\" title=\"h-card\"><br>399 bytes</td>\n<td>h-entry<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/h-entry.svg\" width=\"100\" title=\"h-entry\"><br>385 bytes</td>\n<td>h-feed<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/h-feed.svg\" width=\"100\" title=\"h-feed\"><br>474 bytes</td>\n<td>Hacker News<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/hackernews.svg\" width=\"100\" title=\"Hacker News\"><br>213 bytes</td>\n<td>HackerOne<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/hackerone.svg\" width=\"100\" title=\"HackerOne\"><br>426 bytes</td>\n<td>HAML<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/haml.svg\" width=\"100\" title=\"HAML\"><br>873 bytes</td>\n</tr>\n\n<tr>\n<td>Heroku<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/heroku.svg\" width=\"100\" title=\"Heroku\"><br>435 bytes</td>\n<td>Homekit<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/homekit.svg\" width=\"100\" title=\"Homekit\"><br>732 bytes</td>\n<td>HP<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/hp.svg\" width=\"100\" title=\"HP\"><br>471 bytes</td>\n<td>HTML5<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/html5.svg\" width=\"100\" title=\"HTML5\"><br>435 bytes</td>\n<td>Hulu<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/hulu.svg\" width=\"100\" title=\"Hulu\"><br>459 bytes</td>\n<td>Humble Bundle<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/humblebundle.svg\" width=\"100\" title=\"Humble Bundle\"><br>399 bytes</td>\n</tr>\n\n<tr>\n<td>i18next<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/i18next.svg\" width=\"100\" title=\"i18next\"><br>713 bytes</td>\n<td>IBM<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/ibm.svg\" width=\"100\" title=\"IBM\"><br>477 bytes</td>\n<td>iHeartRadio<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/iheartradio.svg\" width=\"100\" title=\"iHeartRadio\"><br>768 bytes</td>\n<td>IMDb<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/imdb.svg\" width=\"100\" title=\"IMDb\"><br>506 bytes</td>\n<td>Imgur<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/imgur.svg\" width=\"100\" title=\"Imgur\"><br>263 bytes</td>\n<td>Inkscape<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/inkscape.svg\" width=\"100\" title=\"Inkscape\"><br>886 bytes</td>\n</tr>\n\n<tr>\n<td>Instagram<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/instagram.svg\" width=\"100\" title=\"Instagram\"><br>697 bytes</td>\n<td>Intel<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/intel.svg\" width=\"100\" title=\"Intel\"><br>553 bytes</td>\n<td>Intercom<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/intercom.svg\" width=\"100\" title=\"Intercom\"><br>414 bytes</td>\n<td>Internet Archive<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/internet_archive.svg\" width=\"100\" title=\"Internet Archive\"><br>800 bytes</td>\n<td>itch.io<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/itch_io.svg\" width=\"100\" title=\"itch.io\"><br>852 bytes</td>\n<td>iTunes<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/itunes_podcasts.svg\" width=\"100\" title=\"iTunes\"><br>744 bytes</td>\n</tr>\n\n<tr>\n<td>Jacobin<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/jacobin.svg\" width=\"100\" title=\"Jacobin\"><br>238 bytes</td>\n<td>Java<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/java.svg\" width=\"100\" title=\"Java\"><br>779 bytes</td>\n<td>JavaScript<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/javascript.svg\" width=\"100\" title=\"JavaScript\"><br>404 bytes</td>\n<td>Jellyfin<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/jellyfin.svg\" width=\"100\" title=\"Jellyfin\"><br>612 bytes</td>\n<td>jQuery<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/jquery.svg\" width=\"100\" title=\"jQuery\"><br>984 bytes</td>\n<td>JSON-LD<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/json-ld.svg\" width=\"100\" title=\"JSON-LD\"><br>890 bytes</td>\n</tr>\n\n<tr>\n<td>JSON<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/json.svg\" width=\"100\" title=\"JSON\"><br>508 bytes</td>\n<td>JSON Feed<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/jsonfeed.svg\" width=\"100\" title=\"JSON Feed\"><br>665 bytes</td>\n<td>JSR<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/jsr.svg\" width=\"100\" title=\"JSR\"><br>411 bytes</td>\n<td>Julia<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/julia.svg\" width=\"100\" title=\"Julia\"><br>283 bytes</td>\n<td>JustGiving<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/justgiving.svg\" width=\"100\" title=\"JustGiving\"><br>351 bytes</td>\n<td>Kaggle<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/kaggle.svg\" width=\"100\" title=\"Kaggle\"><br>297 bytes</td>\n</tr>\n\n<tr>\n<td>Kagi<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/kagi.svg\" width=\"100\" title=\"Kagi\"><br>479 bytes</td>\n<td>KeePassDX<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/keepassdx.svg\" width=\"100\" title=\"KeePassDX\"><br>516 bytes</td>\n<td>KeePassXC<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/keepassxc.svg\" width=\"100\" title=\"KeePassXC\"><br>673 bytes</td>\n<td>Kemal Framework<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/kemal.svg\" width=\"100\" title=\"Kemal Framework\"><br>325 bytes</td>\n<td>Keskonfai<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/keskonfai.svg\" width=\"100\" title=\"Keskonfai\"><br>679 bytes</td>\n<td>Keybase<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/keybase.svg\" width=\"100\" title=\"Keybase\"><br>632 bytes</td>\n</tr>\n\n<tr>\n<td>Kickstarter<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/kickstarter.svg\" width=\"100\" title=\"Kickstarter\"><br>273 bytes</td>\n<td>Ko-fi<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/ko-fi.svg\" width=\"100\" title=\"Ko-fi\"><br>916 bytes</td>\n<td>Kodi<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/kodi.svg\" width=\"100\" title=\"Kodi\"><br>752 bytes</td>\n<td>Kotlin<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/kotlin.svg\" width=\"100\" title=\"Kotlin\"><br>382 bytes</td>\n<td>Language Icon<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/language-icon.svg\" width=\"100\" title=\"Language Icon\"><br>803 bytes</td>\n<td>Laravel<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/laravel.svg\" width=\"100\" title=\"Laravel\"><br>384 bytes</td>\n</tr>\n\n<tr>\n<td>lastfm<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/lastfm.svg\" width=\"100\" title=\"lastfm\"><br>549 bytes</td>\n<td>LastPass<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/lastpass.svg\" width=\"100\" title=\"LastPass\"><br>281 bytes</td>\n<td>LeetCode<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/leetcode.svg\" width=\"100\" title=\"LeetCode\"><br>553 bytes</td>\n<td>Liberapay<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/liberapay.svg\" width=\"100\" title=\"Liberapay\"><br>544 bytes</td>\n<td>LibreSpeed<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/librespeed.svg\" width=\"100\" title=\"LibreSpeed\"><br>942 bytes</td>\n<td>LINE<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/line.svg\" width=\"100\" title=\"LINE\"><br>454 bytes</td>\n</tr>\n\n<tr>\n<td>Linear<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/linearapp.svg\" width=\"100\" title=\"Linear\"><br>390 bytes</td>\n<td>LinkedIn<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/linkedin.svg\" width=\"100\" title=\"LinkedIn\"><br>355 bytes</td>\n<td>Linux Foundation<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/linux-foundation.svg\" width=\"100\" title=\"Linux Foundation\"><br>290 bytes</td>\n<td>Linux<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/linux.svg\" width=\"100\" title=\"Linux\"><br>950 bytes</td>\n<td>Linux Mint<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/linux_mint.svg\" width=\"100\" title=\"Linux Mint\"><br>355 bytes</td>\n<td>LinuxContainers<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/linuxcontainers.svg\" width=\"100\" title=\"LinuxContainers\"><br>548 bytes</td>\n</tr>\n\n<tr>\n<td>Lobste.rs<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/lobsters.svg\" width=\"100\" title=\"Lobste.rs\"><br>504 bytes</td>\n<td>Lock<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/lock.svg\" width=\"100\" title=\"Lock\"><br>377 bytes</td>\n<td>Logitech<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/logitech.svg\" width=\"100\" title=\"Logitech\"><br>309 bytes</td>\n<td>Lucky Framework<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/luckyframework.svg\" width=\"100\" title=\"Lucky Framework\"><br>471 bytes</td>\n<td>macOS<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/macos.svg\" width=\"100\" title=\"macOS\"><br>754 bytes</td>\n<td>Mail<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/mail.svg\" width=\"100\" title=\"Mail\"><br>551 bytes</td>\n</tr>\n\n<tr>\n<td>Mailchimp<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/mailchimp.svg\" width=\"100\" title=\"Mailchimp\"><br>981 bytes</td>\n<td>Malt<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/malt.svg\" width=\"100\" title=\"Malt\"><br>412 bytes</td>\n<td>Manjaro<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/manjaro.svg\" width=\"100\" title=\"Manjaro\"><br>222 bytes</td>\n<td>Markdown<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/markdown.svg\" width=\"100\" title=\"Markdown\"><br>418 bytes</td>\n<td>mastercard<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/mastercard.svg\" width=\"100\" title=\"mastercard\"><br>322 bytes</td>\n<td>Mastodon<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/mastodon.svg\" width=\"100\" title=\"Mastodon\"><br>574 bytes</td>\n</tr>\n\n<tr>\n<td>matrix<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/matrix.svg\" width=\"100\" title=\"matrix\"><br>641 bytes</td>\n<td>Mattermost<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/mattermost.svg\" width=\"100\" title=\"Mattermost\"><br>291 bytes</td>\n<td>McAfee<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/mcafee.svg\" width=\"100\" title=\"McAfee\"><br>262 bytes</td>\n<td>McDonald's<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/mcdonald_s.svg\" width=\"100\" title=\"McDonald's\"><br>402 bytes</td>\n<td>MediaWiki<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/mediawiki.svg\" width=\"100\" title=\"MediaWiki\"><br>899 bytes</td>\n<td>Medium<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/medium.svg\" width=\"100\" title=\"Medium\"><br>225 bytes</td>\n</tr>\n\n<tr>\n<td>Meetup<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/meetup.svg\" width=\"100\" title=\"Meetup\"><br>898 bytes</td>\n<td>Messenger<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/messenger.svg\" width=\"100\" title=\"Messenger\"><br>491 bytes</td>\n<td>microformats<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/microformats.svg\" width=\"100\" title=\"microformats\"><br>783 bytes</td>\n<td>micropython<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/micropython.svg\" width=\"100\" title=\"micropython\"><br>256 bytes</td>\n<td>Microsoft<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/microsoft.svg\" width=\"100\" title=\"Microsoft\"><br>321 bytes</td>\n<td>Minecraft<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/minecraft.svg\" width=\"100\" title=\"Minecraft\"><br>953 bytes</td>\n</tr>\n\n<tr>\n<td>MongoDB<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/mongodb.svg\" width=\"100\" title=\"MongoDB\"><br>353 bytes</td>\n<td>MySQL<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/mysql.svg\" width=\"100\" title=\"MySQL\"><br>1007 bytes</td>\n<td>NetBeans<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/netbeans.svg\" width=\"100\" title=\"NetBeans\"><br>521 bytes</td>\n<td>NetBSD<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/netbsd.svg\" width=\"100\" title=\"NetBSD\"><br>419 bytes</td>\n<td>Netflix<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/netflix.svg\" width=\"100\" title=\"Netflix\"><br>435 bytes</td>\n<td>NewPipe<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/newpipe.svg\" width=\"100\" title=\"NewPipe\"><br>260 bytes</td>\n</tr>\n\n<tr>\n<td>NextCloud<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/nextcloud.svg\" width=\"100\" title=\"NextCloud\"><br>250 bytes</td>\n<td>NGINX<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/nginx.svg\" width=\"100\" title=\"NGINX\"><br>450 bytes</td>\n<td>NHS<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/nhs.svg\" width=\"100\" title=\"NHS\"><br>474 bytes</td>\n<td>NixOS<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/nixos.svg\" width=\"100\" title=\"NixOS\"><br>528 bytes</td>\n<td>nobara<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/nobara.svg\" width=\"100\" title=\"nobara\"><br>834 bytes</td>\n<td>Node.js<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/nodejs.svg\" width=\"100\" title=\"Node.js\"><br>651 bytes</td>\n</tr>\n\n<tr>\n<td>NordVPN<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/nordvpn.svg\" width=\"100\" title=\"NordVPN\"><br>382 bytes</td>\n<td>Notion<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/notion.svg\" width=\"100\" title=\"Notion\"><br>967 bytes</td>\n<td>npm<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/npm.svg\" width=\"100\" title=\"npm\"><br>277 bytes</td>\n<td>obs-logo<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/obs.svg\" width=\"100\" title=\"obs-logo\"><br>743 bytes</td>\n<td>OK.ru<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/ok.svg\" width=\"100\" title=\"OK.ru\"><br>348 bytes</td>\n<td>Olympic Rings<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/olympics.svg\" width=\"100\" title=\"Olympic Rings\"><br>661 bytes</td>\n</tr>\n\n<tr>\n<td>OnlyFans<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/onlyfans.svg\" width=\"100\" title=\"OnlyFans\"><br>401 bytes</td>\n<td>OpenBenches<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/openbenches.svg\" width=\"100\" title=\"OpenBenches\"><br>613 bytes</td>\n<td>Open Bug Bounty<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/openbugbounty.svg\" width=\"100\" title=\"Open Bug Bounty\"><br>487 bytes</td>\n<td>Opencast<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/opencast.svg\" width=\"100\" title=\"Opencast\"><br>294 bytes</td>\n<td>Open Collective<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/opencollective.svg\" width=\"100\" title=\"Open Collective\"><br>304 bytes</td>\n<td>OpenCores<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/opencores.svg\" width=\"100\" title=\"OpenCores\"><br>265 bytes</td>\n</tr>\n\n<tr>\n<td>Open Source<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/opensource.svg\" width=\"100\" title=\"Open Source\"><br>278 bytes</td>\n<td>OpenStreetMap<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/openstreetmap.svg\" width=\"100\" title=\"OpenStreetMap\"><br>951 bytes</td>\n<td>OpenVPN<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/openvpn.svg\" width=\"100\" title=\"OpenVPN\"><br>278 bytes</td>\n<td>Opera<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/opera.svg\" width=\"100\" title=\"Opera\"><br>293 bytes</td>\n<td>Orcid<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/orcid.svg\" width=\"100\" title=\"Orcid\"><br>311 bytes</td>\n<td>Origin<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/origin.svg\" width=\"100\" title=\"Origin\"><br>630 bytes</td>\n</tr>\n\n<tr>\n<td>Outlook<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/outlook.svg\" width=\"100\" title=\"Outlook\"><br>876 bytes</td>\n<td>Overcast<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/overcast.svg\" width=\"100\" title=\"Overcast\"><br>760 bytes</td>\n<td>Overleaf<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/overleaf.svg\" width=\"100\" title=\"Overleaf\"><br>437 bytes</td>\n<td>ParrotOS<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/parrotos.svg\" width=\"100\" title=\"ParrotOS\"><br>512 bytes</td>\n<td>Patreon<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/patreon.svg\" width=\"100\" title=\"Patreon\"><br>379 bytes</td>\n<td>PayPal<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/paypal.svg\" width=\"100\" title=\"PayPal\"><br>495 bytes</td>\n</tr>\n\n<tr>\n<td>PDF<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/pdf.svg\" width=\"100\" title=\"PDF\"><br>650 bytes</td>\n<td>PeerTube<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/peertube.svg\" width=\"100\" title=\"PeerTube\"><br>278 bytes</td>\n<td>Perplexity<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/perplexity.svg\" width=\"100\" title=\"Perplexity\"><br>423 bytes</td>\n<td>Phone<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/phone.svg\" width=\"100\" title=\"Phone\"><br>574 bytes</td>\n<td>Photoshop<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/photoshop.svg\" width=\"100\" title=\"Photoshop\"><br>630 bytes</td>\n<td>PHP<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/php.svg\" width=\"100\" title=\"PHP\"><br>524 bytes</td>\n</tr>\n\n<tr>\n<td>Pinboard<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/pinboard.svg\" width=\"100\" title=\"Pinboard\"><br>241 bytes</td>\n<td>Pinterest<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/pinterest.svg\" width=\"100\" title=\"Pinterest\"><br>508 bytes</td>\n<td>Pixelfed<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/pixelfed.svg\" width=\"100\" title=\"Pixelfed\"><br>971 bytes</td>\n<td>Plausible<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/plausible.svg\" width=\"100\" title=\"Plausible\"><br>960 bytes</td>\n<td>PlayStation<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/playstation.svg\" width=\"100\" title=\"PlayStation\"><br>515 bytes</td>\n<td>Plex<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/plex.svg\" width=\"100\" title=\"Plex\"><br>205 bytes</td>\n</tr>\n\n<tr>\n<td>pnpm<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/pnpm.svg\" width=\"100\" title=\"pnpm\"><br>356 bytes</td>\n<td>Pocket<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/pocket.svg\" width=\"100\" title=\"Pocket\"><br>293 bytes</td>\n<td>Pocket Casts<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/pocketcasts.svg\" width=\"100\" title=\"Pocket Casts\"><br>263 bytes</td>\n<td>Pop!_OS<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/popos.svg\" width=\"100\" title=\"Pop!_OS\"><br>427 bytes</td>\n<td>Pornhub<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/pornhub.svg\" width=\"100\" title=\"Pornhub\"><br>811 bytes</td>\n<td>portronics<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/portronics.svg\" width=\"100\" title=\"portronics\"><br>837 bytes</td>\n</tr>\n\n<tr>\n<td>PostGreSQL<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/postgresql.svg\" width=\"100\" title=\"PostGreSQL\"><br>1002 bytes</td>\n<td>Postman<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/postman.svg\" width=\"100\" title=\"Postman\"><br>730 bytes</td>\n<td>postmarketOS<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/postmarketos.svg\" width=\"100\" title=\"postmarketOS\"><br>384 bytes</td>\n<td>PowerShell<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/powershell.svg\" width=\"100\" title=\"PowerShell\"><br>943 bytes</td>\n<td>Preact<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/preact.svg\" width=\"100\" title=\"Preact\"><br>333 bytes</td>\n<td>Printer<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/print.svg\" width=\"100\" title=\"Printer\"><br>272 bytes</td>\n</tr>\n\n<tr>\n<td>Prisma<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/prisma.svg\" width=\"100\" title=\"Prisma\"><br>354 bytes</td>\n<td>ProductHunt<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/producthunt.svg\" width=\"100\" title=\"ProductHunt\"><br>400 bytes</td>\n<td>Prometheus<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/prometheus.svg\" width=\"100\" title=\"Prometheus\"><br>979 bytes</td>\n<td>Proton Drive<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/proton_drive.svg\" width=\"100\" title=\"Proton Drive\"><br>930 bytes</td>\n<td>Proton VPN<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/proton_vpn.svg\" width=\"100\" title=\"Proton VPN\"><br>1012 bytes</td>\n<td>Proton Mail<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/protonmail.svg\" width=\"100\" title=\"Proton Mail\"><br>628 bytes</td>\n</tr>\n\n<tr>\n<td>Python<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/python.svg\" width=\"100\" title=\"Python\"><br>495 bytes</td>\n<td>QQ<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/qq.svg\" width=\"100\" title=\"QQ\"><br>924 bytes</td>\n<td>quora<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/quora.svg\" width=\"100\" title=\"quora\"><br>264 bytes</td>\n<td>R<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/r.svg\" width=\"100\" title=\"R\"><br>952 bytes</td>\n<td>Raspberry Pi<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/raspberry_pi.svg\" width=\"100\" title=\"Raspberry Pi\"><br>905 bytes</td>\n<td>React<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/react.svg\" width=\"100\" title=\"React\"><br>339 bytes</td>\n</tr>\n\n<tr>\n<td>Reddit<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/reddit.svg\" width=\"100\" title=\"Reddit\"><br>716 bytes</td>\n<td>RedHat<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/redhat.svg\" width=\"100\" title=\"RedHat\"><br>534 bytes</td>\n<td>Redis<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/redis.svg\" width=\"100\" title=\"Redis\"><br>491 bytes</td>\n<td>Replit<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/replit.svg\" width=\"100\" title=\"Replit\"><br>531 bytes</td>\n<td>Research Gate<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/researchgate.svg\" width=\"100\" title=\"Research Gate\"><br>866 bytes</td>\n<td>Riot<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/riot.svg\" width=\"100\" title=\"Riot\"><br>385 bytes</td>\n</tr>\n\n<tr>\n<td>Roblox<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/roblox.svg\" width=\"100\" title=\"Roblox\"><br>281 bytes</td>\n<td>Rockstar Games<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/rockstar.svg\" width=\"100\" title=\"Rockstar Games\"><br>835 bytes</td>\n<td>Roundcube<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/roundcube.svg\" width=\"100\" title=\"Roundcube\"><br>514 bytes</td>\n<td>RSS<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/rss.svg\" width=\"100\" title=\"RSS\"><br>276 bytes</td>\n<td>Ruby<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/ruby.svg\" width=\"100\" title=\"Ruby\"><br>941 bytes</td>\n<td>Ruby Gems<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/rubygems.svg\" width=\"100\" title=\"Ruby Gems\"><br>271 bytes</td>\n</tr>\n\n<tr>\n<td>Ruby On Rails<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/rubyonrails.svg\" width=\"100\" title=\"Ruby On Rails\"><br>447 bytes</td>\n<td>Rust<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/rust.svg\" width=\"100\" title=\"Rust\"><br>900 bytes</td>\n<td>Safari<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/safari.svg\" width=\"100\" title=\"Safari\"><br>685 bytes</td>\n<td>Samsung<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/samsung.svg\" width=\"100\" title=\"Samsung\"><br>830 bytes</td>\n<td>Samsung Internet<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/samsung_internet.svg\" width=\"100\" title=\"Samsung Internet\"><br>312 bytes</td>\n<td>Samsung<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/samsung_s.svg\" width=\"100\" title=\"Samsung\"><br>602 bytes</td>\n</tr>\n\n<tr>\n<td>Samsung<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/samsung_swoop.svg\" width=\"100\" title=\"Samsung\"><br>867 bytes</td>\n<td>Sass<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/sass.svg\" width=\"100\" title=\"Sass\"><br>501 bytes</td>\n<td>Semantic Web<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/semantic_web.svg\" width=\"100\" title=\"Semantic Web\"><br>411 bytes</td>\n<td>Semaphore CI<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/semaphoreci.svg\" width=\"100\" title=\"Semaphore CI\"><br>385 bytes</td>\n<td>Sentry<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/sentry.svg\" width=\"100\" title=\"Sentry\"><br>359 bytes</td>\n<td>Signal<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/signal.svg\" width=\"100\" title=\"Signal\"><br>423 bytes</td>\n</tr>\n\n<tr>\n<td>Sketch<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/sketch.svg\" width=\"100\" title=\"Sketch\"><br>353 bytes</td>\n<td>Skype<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/skype.svg\" width=\"100\" title=\"Skype\"><br>468 bytes</td>\n<td>Slack<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/slack.svg\" width=\"100\" title=\"Slack\"><br>384 bytes</td>\n<td>SlideShare<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/slideshare.svg\" width=\"100\" title=\"SlideShare\"><br>646 bytes</td>\n<td>Snapchat<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/snapchat.svg\" width=\"100\" title=\"Snapchat\"><br>674 bytes</td>\n<td>socket_io<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/socket_io.svg\" width=\"100\" title=\"socket_io\"><br>305 bytes</td>\n</tr>\n\n<tr>\n<td>SOGo<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/sogo.svg\" width=\"100\" title=\"SOGo\"><br>824 bytes</td>\n<td>solana<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/solana.svg\" width=\"100\" title=\"solana\"><br>394 bytes</td>\n<td>Solidity<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/solidity.svg\" width=\"100\" title=\"Solidity\"><br>548 bytes</td>\n<td>SonarQube Community<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/sonarqube-community.svg\" width=\"100\" title=\"SonarQube Community\"><br>360 bytes</td>\n<td>SonarQube Server<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/sonarqube-server.svg\" width=\"100\" title=\"SonarQube Server\"><br>376 bytes</td>\n<td>SoundCloud<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/soundcloud.svg\" width=\"100\" title=\"SoundCloud\"><br>944 bytes</td>\n</tr>\n\n<tr>\n<td>SPARQL<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/sparql.svg\" width=\"100\" title=\"SPARQL\"><br>784 bytes</td>\n<td>Spotify<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/spotify.svg\" width=\"100\" title=\"Spotify\"><br>418 bytes</td>\n<td>SQLite<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/sqlite.svg\" width=\"100\" title=\"SQLite\"><br>851 bytes</td>\n<td>Stack Exchange<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/stackexchange.svg\" width=\"100\" title=\"Stack Exchange\"><br>385 bytes</td>\n<td>Stack Overflow<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/stackoverflow.svg\" width=\"100\" title=\"Stack Overflow\"><br>286 bytes</td>\n<td>Steam<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/steam.svg\" width=\"100\" title=\"Steam\"><br>440 bytes</td>\n</tr>\n\n<tr>\n<td>Stitcher<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/stitcher.svg\" width=\"100\" title=\"Stitcher\"><br>372 bytes</td>\n<td>Strava<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/strava.svg\" width=\"100\" title=\"Strava\"><br>269 bytes</td>\n<td>StumbleUpon<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/stumbleupon.svg\" width=\"100\" title=\"StumbleUpon\"><br>343 bytes</td>\n<td>Sublime Merge<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/sublimemerge.svg\" width=\"100\" title=\"Sublime Merge\"><br>551 bytes</td>\n<td>Sublime Text<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/sublimetext.svg\" width=\"100\" title=\"Sublime Text\"><br>589 bytes</td>\n<td>SubscribeStar<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/subscribestar.svg\" width=\"100\" title=\"SubscribeStar\"><br>584 bytes</td>\n</tr>\n\n<tr>\n<td>Supabase<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/supabase.svg\" width=\"100\" title=\"Supabase\"><br>798 bytes</td>\n<td>Svelte<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/svelte.svg\" width=\"100\" title=\"Svelte\"><br>470 bytes</td>\n<td>SVG<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/svg.svg\" width=\"100\" title=\"SVG\"><br>746 bytes</td>\n<td>SVGOMG<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/svgomg.svg\" width=\"100\" title=\"SVGOMG\"><br>345 bytes</td>\n<td>Swift<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/swift.svg\" width=\"100\" title=\"Swift\"><br>659 bytes</td>\n<td>Symantec<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/symantec.svg\" width=\"100\" title=\"Symantec\"><br>596 bytes</td>\n</tr>\n\n<tr>\n<td>Symfony<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/symfony.svg\" width=\"100\" title=\"Symfony\"><br>609 bytes</td>\n<td>taiga.io<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/taiga.svg\" width=\"100\" title=\"taiga.io\"><br>731 bytes</td>\n<td>Tailwind CSS<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/tailwindCss.svg\" width=\"100\" title=\"Tailwind CSS\"><br>536 bytes</td>\n<td>TATA<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/tata.svg\" width=\"100\" title=\"TATA\"><br>1009 bytes</td>\n<td>Teamspeak<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/teamspeak.svg\" width=\"100\" title=\"Teamspeak\"><br>921 bytes</td>\n<td>Telegram<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/telegram.svg\" width=\"100\" title=\"Telegram\"><br>476 bytes</td>\n</tr>\n\n<tr>\n<td>TensorFlow<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/tensorflow.svg\" width=\"100\" title=\"TensorFlow\"><br>435 bytes</td>\n<td>Terraform<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/terraform.svg\" width=\"100\" title=\"Terraform\"><br>284 bytes</td>\n<td>Tezos<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/tezos.svg\" width=\"100\" title=\"Tezos\"><br>490 bytes</td>\n<td>This American Life<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/thisamericanlife.svg\" width=\"100\" title=\"This American Life\"><br>277 bytes</td>\n<td>Threads<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/threads.svg\" width=\"100\" title=\"Threads\"><br>365 bytes</td>\n<td>Threema<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/threema.svg\" width=\"100\" title=\"Threema\"><br>483 bytes</td>\n</tr>\n\n<tr>\n<td>TikTok<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/tiktok.svg\" width=\"100\" title=\"TikTok\"><br>339 bytes</td>\n<td>Todoist<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/todoist.svg\" width=\"100\" title=\"Todoist\"><br>737 bytes</td>\n<td>Tox<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/tox.svg\" width=\"100\" title=\"Tox\"><br>479 bytes</td>\n<td>Trello<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/trello.svg\" width=\"100\" title=\"Trello\"><br>261 bytes</td>\n<td>TripAdvisor<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/tripadvisor.svg\" width=\"100\" title=\"TripAdvisor\"><br>642 bytes</td>\n<td>Tumblr<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/tumblr.svg\" width=\"100\" title=\"Tumblr\"><br>251 bytes</td>\n</tr>\n\n<tr>\n<td>TuneIn<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/tunein.svg\" width=\"100\" title=\"TuneIn\"><br>570 bytes</td>\n<td>Tuta<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/tuta.svg\" width=\"100\" title=\"Tuta\"><br>319 bytes</td>\n<td>Tutanota<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/tutanota.svg\" width=\"100\" title=\"Tutanota\"><br>522 bytes</td>\n<td>Twilio<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/twilio.svg\" width=\"100\" title=\"Twilio\"><br>311 bytes</td>\n<td>Twitch<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/twitch.svg\" width=\"100\" title=\"Twitch\"><br>271 bytes</td>\n<td>Twitter<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/twitter.svg\" width=\"100\" title=\"Twitter\"><br>352 bytes</td>\n</tr>\n\n<tr>\n<td>TypeScript<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/typescript.svg\" width=\"100\" title=\"TypeScript\"><br>435 bytes</td>\n<td>Uber<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/uber.svg\" width=\"100\" title=\"Uber\"><br>588 bytes</td>\n<td>Ubiquiti<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/ubiquiti.svg\" width=\"100\" title=\"Ubiquiti\"><br>637 bytes</td>\n<td>Ubisoft<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/ubisoft.svg\" width=\"100\" title=\"Ubisoft\"><br>504 bytes</td>\n<td>Ubuntu<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/ubuntu.svg\" width=\"100\" title=\"Ubuntu\"><br>438 bytes</td>\n<td>Udemy<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/udemy.svg\" width=\"100\" title=\"Udemy\"><br>289 bytes</td>\n</tr>\n\n<tr>\n<td>Unicode<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/unicode.svg\" width=\"100\" title=\"Unicode\"><br>360 bytes</td>\n<td>Unreal Engine<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/unreal.svg\" width=\"100\" title=\"Unreal Engine\"><br>953 bytes</td>\n<td>Untappd<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/untappd.svg\" width=\"100\" title=\"Untappd\"><br>395 bytes</td>\n<td>Uphold<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/uphold.svg\" width=\"100\" title=\"Uphold\"><br>800 bytes</td>\n<td>UPI<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/upi.svg\" width=\"100\" title=\"UPI\"><br>242 bytes</td>\n<td>Uplay<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/uplay.svg\" width=\"100\" title=\"Uplay\"><br>517 bytes</td>\n</tr>\n\n<tr>\n<td>Upstash<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/upstash.svg\" width=\"100\" title=\"Upstash\"><br>615 bytes</td>\n<td>Upwork<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/upwork.svg\" width=\"100\" title=\"Upwork\"><br>484 bytes</td>\n<td>Vagrant<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/vagrant.svg\" width=\"100\" title=\"Vagrant\"><br>288 bytes</td>\n<td>Vegetarian<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/vegetarian.svg\" width=\"100\" title=\"Vegetarian\"><br>668 bytes</td>\n<td>Venmo<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/venmo.svg\" width=\"100\" title=\"Venmo\"><br>271 bytes</td>\n<td>Vercel<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/vercel.svg\" width=\"100\" title=\"Vercel\"><br>180 bytes</td>\n</tr>\n\n<tr>\n<td>Viber<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/viber.svg\" width=\"100\" title=\"Viber\"><br>692 bytes</td>\n<td>VictoriaMetrics<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/victoriametrics.svg\" width=\"100\" title=\"VictoriaMetrics\"><br>372 bytes</td>\n<td>Vim<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/vim.svg\" width=\"100\" title=\"Vim\"><br>699 bytes</td>\n<td>Vimeo<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/vimeo.svg\" width=\"100\" title=\"Vimeo\"><br>332 bytes</td>\n<td>visa<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/visa.svg\" width=\"100\" title=\"visa\"><br>623 bytes</td>\n<td>Visual Studio Code<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/visualstudiocode.svg\" width=\"100\" title=\"Visual Studio Code\"><br>895 bytes</td>\n</tr>\n\n<tr>\n<td>Vivino<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/vivino.svg\" width=\"100\" title=\"Vivino\"><br>279 bytes</td>\n<td>VK<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/vk.svg\" width=\"100\" title=\"VK\"><br>519 bytes</td>\n<td>VLC<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/vlc.svg\" width=\"100\" title=\"VLC\"><br>636 bytes</td>\n<td>Vue<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/vue.svg\" width=\"100\" title=\"Vue\"><br>257 bytes</td>\n<td>W3C<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/w3c.svg\" width=\"100\" title=\"W3C\"><br>523 bytes</td>\n<td>Wayland<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/wayland.svg\" width=\"100\" title=\"Wayland\"><br>905 bytes</td>\n</tr>\n\n<tr>\n<td>Wear OS<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/wear_os.svg\" width=\"100\" title=\"Wear OS\"><br>428 bytes</td>\n<td>WebAssembly<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/webassembly.svg\" width=\"100\" title=\"WebAssembly\"><br>475 bytes</td>\n<td>WebMention<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/webmention.svg\" width=\"100\" title=\"WebMention\"><br>261 bytes</td>\n<td>WebToons<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/webtoons.svg\" width=\"100\" title=\"WebToons\"><br>973 bytes</td>\n<td>WeChat<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/wechat.svg\" width=\"100\" title=\"WeChat\"><br>606 bytes</td>\n<td>Wekan<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/wekan.svg\" width=\"100\" title=\"Wekan\"><br>966 bytes</td>\n</tr>\n\n<tr>\n<td>WhatsApp<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/whatsapp.svg\" width=\"100\" title=\"WhatsApp\"><br>435 bytes</td>\n<td>WHATWG<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/whatwg.svg\" width=\"100\" title=\"WHATWG\"><br>313 bytes</td>\n<td>WiFi<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/wifi.svg\" width=\"100\" title=\"WiFi\"><br>562 bytes</td>\n<td>Wikipedia<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/wikipedia.svg\" width=\"100\" title=\"Wikipedia\"><br>563 bytes</td>\n<td>Windows<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/windows.svg\" width=\"100\" title=\"Windows\"><br>226 bytes</td>\n<td>Wire<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/wire.svg\" width=\"100\" title=\"Wire\"><br>256 bytes</td>\n</tr>\n\n<tr>\n<td>WireGuard<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/wireguard.svg\" width=\"100\" title=\"WireGuard\"><br>948 bytes</td>\n<td>WordPress<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/wordpress.svg\" width=\"100\" title=\"WordPress\"><br>488 bytes</td>\n<td>Workato<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/workato.svg\" width=\"100\" title=\"Workato\"><br>899 bytes</td>\n<td>X<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/x.svg\" width=\"100\" title=\"X\"><br>287 bytes</td>\n<td>X11<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/x11.svg\" width=\"100\" title=\"X11\"><br>659 bytes</td>\n<td>Xbox<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/xbox.svg\" width=\"100\" title=\"Xbox\"><br>493 bytes</td>\n</tr>\n\n<tr>\n<td>XING<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/xing.svg\" width=\"100\" title=\"XING\"><br>347 bytes</td>\n<td>XMPP<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/xmpp.svg\" width=\"100\" title=\"XMPP\"><br>677 bytes</td>\n<td>Yahoo!<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/yahoo.svg\" width=\"100\" title=\"Yahoo!\"><br>280 bytes</td>\n<td>YAML<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/yaml.svg\" width=\"100\" title=\"YAML\"><br>396 bytes</td>\n<td>Yammer<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/yammer.svg\" width=\"100\" title=\"Yammer\"><br>464 bytes</td>\n<td>Yarn<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/yarn.svg\" width=\"100\" title=\"Yarn\"><br>497 bytes</td>\n</tr>\n\n<tr>\n<td>Yelp<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/yelp.svg\" width=\"100\" title=\"Yelp\"><br>448 bytes</td>\n<td>Yii<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/yii.svg\" width=\"100\" title=\"Yii\"><br>763 bytes</td>\n<td>YouTube<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/youtube.svg\" width=\"100\" title=\"YouTube\"><br>333 bytes</td>\n<td>Youtube Music<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/ytmusic.svg\" width=\"100\" title=\"Youtube Music\"><br>324 bytes</td>\n<td>Yubico<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/yubico.svg\" width=\"100\" title=\"Yubico\"><br>250 bytes</td>\n<td>Zoom<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/zoom.svg\" width=\"100\" title=\"Zoom\"><br>635 bytes</td>\n</tr>\n\n<tr>\n<td>Zorinos<br><img src=\"https://edent.github.io/SuperTinyIcons/images/svg/zorinos.svg\" width=\"100\" title=\"Zorinos\"><br>254 bytes</td>\n</tr>\n\n</table>\n\n## Why so smallious?\n\nBytes cost money. They cost money to store, transport, and process. Simplicity should be our goal in all endeavours.\n\n## Scream if you want to go smaller\n\nThese files were edited by hand in Inkscape, Illustrator, or a text editor, then were minified using [Yann Armelin's SVG Path Editor](https://yqnn.github.io/svg-path-editor/), [svgo](https://github.com/svg/svgo), and [svgcleaner](https://github.com/RazrFalcon/svgcleaner). Further smallification may be possible. Try it!\n\n- Each of these has an `xmlns=\"http://www.w3.org/2000/svg\"` in the `<svg>` tag. This isn't strictly necessary - but some web browsers won't display them as an image without it.\n- The background colour can also be excluded if you're including it elsewhere.\n- Colours can be simplified. `#FF0000` becomes `red`.\n- The precision of the paths is _mostly_ 0 decimal places. A few logos have 1 or 2 dp to make them look more accurate. The precision can be reduced if necessary.\n\nThink you can make them smaller? Tell me by raising an issue!\n\nWant more icons? Tell me by raising an issue!\n\nThink the icons look wrong? [Compare them against the official logos](https://github.com/edent/SuperTinyIcons/blob/master/REFERENCE.md). If they still look wrong, tell me by raising an issue!\n\n## Android Vector Drawables\n\nIcons also available as [Android Vector Drawables](https://developer.android.com/guide/topics/graphics/vector-drawable-resources.html), so you can easily use them in Android apps.\n\nThey are **not** guaranteed to be under 1KB.\n\n## Submitting Icons\n\nI'd _love_ you to submit something 😸 The rules are simple, your icon must:\n\n- be **under** 1024 bytes. That is, the maximum file size is 1023 bytes. No arguments.\n- fit inside a circle with radius 256 pixels. Set `rx=\"50%\"` to check.\n- represent a popular service's current logo.\n\n### Template\n\nAt a minimum, your icon needs these components:\n\n```svg\n<svg xmlns=\"http://www.w3.org/2000/svg\"\naria-label=\"...\" role=\"img\"\nviewBox=\"0 0 512 512\"><path\nd=\"m0 0H512V512H0\"\nfill=\"#fff\"/> ... </svg>\n```\n\n### Icon accessibility\n\nThe super tiny icons are accessible by default. Each icon has:\n\n- `role=\"img\"`, to expose the `<svg>` elements as images in the browser's accessibility tree\n- `aria-label=\"XYZ\"` (where XYZ is the icon's brand name), to give the icon an accessible name\n\n`Note:` if using the `<svg>` as the `src` for an `<img>` element, the `alt` attribute should still be used on the `<img>` element because the ARIA is not recognised in this context.\n\nCSS-Tricks has also an [article about accessible SVG icons](https://css-tricks.com/accessible-svgs/).\n\n### Guidelines\n\nThis is the standard guideline. Use this to help with sizing your icons and they will look good no matter what border radius is chosen.\n\n<img src=\"https://edent.github.io/SuperTinyIcons/images/guidelines/guideline.svg\" width=\"256\" alt=\"A template for logos\" />\n\n- **Green** is the safe zone, where the main body of the icon should be.\n- **Yellow** is like a road shoulder, it is there if more space is needed. It should be used for protruding elements, like corners or ornaments.\n- **Red** is off limits. It should not be touched by the icons. Red is also how a circular icon would look.\n\n## Installation\n\n```sh\nnpm install --save super-tiny-icons\n```\n\n## Usage\n\nThe old-school way:\n\n```html\n<img src=\"./node_modules/super-tiny-icons/images/svg/github.svg\" />\n```\n\nThe modern way, the React (JSX) example:\n\n```jsx\nimport logo from \"super-tiny-icons/images/svg/github.svg\";\n\n<img src={logo} />;\n```\n\n[CSS](https://developer.mozilla.org/docs/Web/CSS) can be used to customize an icon's appearance. The following example shows styles for small/medium/large icons with square/rounded/circular frames:\n\n```html\n<style>\n  .small-square {\n    width: 20px;\n  }\n  .medium-rounded {\n    width: 50px;\n    border-radius: 10%;\n  }\n  .large-circular {\n    width: 100px;\n    border-radius: 50%;\n  }\n</style>\n\n<img src=\"images/svg/reddit.svg\" class=\"small-square\" />\n<img src=\"images/svg/reddit.svg\" class=\"medium-rounded\" />\n<img src=\"images/svg/reddit.svg\" class=\"large-circular\" />\n```\n\n## Contributors\n\n### Code Contributors\n\nThis project exists thanks to all the people who contribute. [[Contribute](CONTRIBUTING.md)].\n<a href=\"https://github.com/edent/SuperTinyIcons/graphs/contributors\"><img src=\"https://opencollective.com/SuperTinyIcons/contributors.svg?width=890&button=false\" /></a>\n\n### Financial Contributors\n\nBecome a financial contributor and help us sustain our community. [[Contribute](https://opencollective.com/SuperTinyIcons/contribute)]\n\n#### Individuals\n\n<a href=\"https://opencollective.com/SuperTinyIcons\"><img src=\"https://opencollective.com/SuperTinyIcons/individuals.svg?width=890\"></a>\n\n#### Organizations\n\nSupport this project with your organization. Your logo will show up here with a link to your website. [[Contribute](https://opencollective.com/SuperTinyIcons/contribute)]\n\n<a href=\"https://opencollective.com/SuperTinyIcons/organization/0/website\"><img src=\"https://opencollective.com/SuperTinyIcons/organization/0/avatar.svg\"></a>\n<a href=\"https://opencollective.com/SuperTinyIcons/organization/1/website\"><img src=\"https://opencollective.com/SuperTinyIcons/organization/1/avatar.svg\"></a>\n<a href=\"https://opencollective.com/SuperTinyIcons/organization/2/website\"><img src=\"https://opencollective.com/SuperTinyIcons/organization/2/avatar.svg\"></a>\n<a href=\"https://opencollective.com/SuperTinyIcons/organization/3/website\"><img src=\"https://opencollective.com/SuperTinyIcons/organization/3/avatar.svg\"></a>\n<a href=\"https://opencollective.com/SuperTinyIcons/organization/4/website\"><img src=\"https://opencollective.com/SuperTinyIcons/organization/4/avatar.svg\"></a>\n<a href=\"https://opencollective.com/SuperTinyIcons/organization/5/website\"><img src=\"https://opencollective.com/SuperTinyIcons/organization/5/avatar.svg\"></a>\n<a href=\"https://opencollective.com/SuperTinyIcons/organization/6/website\"><img src=\"https://opencollective.com/SuperTinyIcons/organization/6/avatar.svg\"></a>\n<a href=\"https://opencollective.com/SuperTinyIcons/organization/7/website\"><img src=\"https://opencollective.com/SuperTinyIcons/organization/7/avatar.svg\"></a>\n<a href=\"https://opencollective.com/SuperTinyIcons/organization/8/website\"><img src=\"https://opencollective.com/SuperTinyIcons/organization/8/avatar.svg\"></a>\n<a href=\"https://opencollective.com/SuperTinyIcons/organization/9/website\"><img src=\"https://opencollective.com/SuperTinyIcons/organization/9/avatar.svg\"></a>\n\n## Licenses\n\nThe majority of these vector logos are based on someone else's work.\n\n- [Social Media Icons by Aha-Soft](https://www.iconfinder.com/iconsets/social-flat-rounded-rects) - CC-BY\n- [Phone Icon](https://www.iconfinder.com/icons/1807538/phone_icon#size=128) - Free\n- [Lock Icon](https://www.iconfinder.com/icons/1814107/lock_padlock_secure_icon#size=512) - MIT\n- [Wire Logo](https://commons.wikimedia.org/wiki/File:Wire_software_logo.svg) - Public Domain\n- [Signal Logo](https://github.com/WhisperSystems/Signal-iOS/blob/master/Signal/Images.xcassets/logoSignal.imageset/logoSignal.pdf) - GPLv3\n- [RSS Icon](https://commons.wikimedia.org/wiki/File:Generic_Feed-icon.svg) - MPL 1.1\n- [PDF Icon](https://www.iconfinder.com/iconsets/line-icons-set) - Free\n- [Google+](https://commons.wikimedia.org/wiki/File:Google_Plus_logo_2015.svg) - Public Domain\n- [Google](http://svgshare.com/s/q)\n- [Mastodon](https://github.com/tootsuite/mastodon/blob/0ad694f96b7f0e951950e7525bde52cd11454cb2/app/assets/images/logo.svg) - AGPLv3\n- [GitLab](https://about.gitlab.com/press/)\n- [HTML5 Shield](https://www.w3.org/html/logo/) - CC-BY\n- [npm Logo](https://commons.wikimedia.org/wiki/File:Npm-logo.svg) - CC-BY\n- [Docker Logo](https://github.com/docker/docker.github.io/blob/master/LICENSE) - Apache\n- [Steam](https://commons.wikimedia.org/wiki/File:Steam_icon_logo.svg)\n- [Symantec](https://commons.wikimedia.org/wiki/File:Symantec_logo10.svg)\n- [Yubico](https://github.com/Yubico/yubikey-manager-qt/blob/master/resources/icons/ykman.png) - BSD\n- [Keybase](https://github.com/keybase/client/blob/master/shared/images/iconfont/kb-iconfont-keybase-16.svg) - BSD\n- [eBay](https://commons.wikimedia.org/wiki/File:EBay_logo.svg)\n- [Kickstarter](https://www.kickstarter.com/help/brand_assets)\n- [Bitcoin](https://commons.wikimedia.org/wiki/File:Bitcoin_logo.svg) - CC0\n- [Bluetooth](https://commons.wikimedia.org/wiki/File:Bluetooth.svg)\n- [Blogger](https://commons.wikimedia.org/wiki/File:Blogger_icon.svg)\n- [Medium](https://medium.design/logos-and-brand-guidelines-f1a01a733592)\n- [Ghost](https://commons.wikimedia.org/wiki/File:Ghost-Logo.svg)\n- [Tumblr](https://www.tumblr.com/logo)\n- [Intel](https://commons.wikimedia.org/wiki/File:Intel-logo.svg)\n- [Badoo](https://team.badoo.com/new/)\n- [YouTube](https://www.youtube.com/yt/about/brand-resources/#logos-icons-colors)\n- [Google Play](https://commons.wikimedia.org/wiki/File:Google_Play_symbol_2016.svg)\n- [Gmail](https://commons.wikimedia.org/wiki/File:Gmail_Icon.svg)\n- [Samsung Internet](https://github.com/edent/SuperTinyIcons/pull/74/commits/8824bdaf1346a472ab425347f958e8e64c0948ee)\n- [Plex](https://github.com/plexinc/plex-media-player/blob/master/resources/images/icon.svg) - GPLv2\n- [NHS](https://www.england.nhs.uk/nhsidentity/identity-guidelines/nhs-logo/)\n- [Threema.](https://threema.ch/de/press)\n- [CoreUI](https://github.com/coreui/coreui-icons) - CC-BY\n- [NixOS](https://github.com/NixOS/nixos-artwork) - CC-BY\n- [Yii PHP Framework](https://www.yiiframework.com/logo) - CC BY-ND 3.0\n\nFrom [SVGporn](https://github.com/gilbarbara/logos/) - CC0\n\nIBM, Yammer, Android, Authy, Cloudflare, CodePen, DigitalOcean, Discord, Airbnb, WiFi, Delicious, Open Source, Patreon, Tim Cuthbertson\n\nWhere possible, they retain their original licenses. Some logos may be subject to copyright and trademark laws, but these files are small enough to memorise.\n\n[The Nu Validator is Copyright ⓒ 2007-2016 Mozilla Foundation](https://github.com/validator/validator)"
  },
  {
    "path": "check.py",
    "content": "# /// script\n# dependencies = [\n#   \"requests\",\n# ]\n# ///\n\n#\tRun with either:\n#\tuv run check.py\n#\tor\n#\tpython3 check.py\n\nimport atexit\nimport os\nimport re\nimport requests\nimport shutil\nimport subprocess\nimport sys\nimport time\nimport xml.etree.ElementTree as ET\nfrom pathlib import Path\n\n#\tColour for console text.\nclass terminal:\n\tOK   = '\\033[92m'\n\tWARN = '\\033[93m'\n\tFAIL = '\\033[91m'\n\n#\tFlag\nsuccess = True\n\n#\tFile Locations\nsvg_dir = Path(__file__).parent / \"images\" / \"svg/\"\nref_dir = Path(__file__).parent / \"images\" / \"reference/\"\n\n#\tStart the Nu Validator server\nif not shutil.which(\"java\"):\n\traise RuntimeError(\"Java not found. Please install it or add it to PATH.\")\n\njar_dir = Path(__file__).parent / \"test\" / \"vnu.jar\"\njar_port = 8888\nserver = subprocess.Popen(\n\t[\n\t\t\"java\",\n\t\t\"-cp\", str(jar_dir),\n\t\t\"nu.validator.servlet.Main\",\n\t\tstr(jar_port)\n\t],\n\tstdout=subprocess.DEVNULL,\n\tstderr=subprocess.DEVNULL,\n)\n#\tTerminate on exit\natexit.register(server.terminate)\n\n#\tWait for the server to start\nurl = f\"http://localhost:{jar_port}/\"\nfor _ in range(50):\n\ttry:\n\t\trequests.get(url, timeout=0.5)\n\t\tbreak\n\texcept requests.ConnectionError:\n\t\ttime.sleep(0.5)\nelse:\n\tserver.terminate()\n\tsuccess = False\n\traise RuntimeError(\"Validator did not start in time\")\n\n#\tValidator needs to be supplied with HTML\nhtml_boilerplate = '<!doctype html><html lang=\"en\"><head><title>test</title></head><body>'\n#\tValidator options\nurl = f\"http://localhost:{jar_port}/?out=gnu\"\nheaders = {\"Content-Type\": \"text/html; charset=utf-8\"}\n\n#\tFiles\nsvg_list = sorted(os.listdir( svg_dir ))\nref_list = sorted(os.listdir( ref_dir ))\nsvg_data = {}\ntotal_bytes = 0\n\n#\tLoop through all the SVGs\nfor svg_file in svg_list:\n\t#\tWarn about anything which isn't an .svg\n\tif not svg_file.endswith('.svg'):\n\t\tprint(f\"{terminal.WARN}⚠️  Filetype: {svg_file} does not end with .svg\")\n\t\tsuccess = False\n\t\tcontinue\n\t#\tIs this a valid SVG?\n\ttry:\n\t\tET.parse( svg_dir / svg_file )\n\texcept Exception as err:\n\t\tprint( f\"{terminal.FAIL}❌ {svg_file} is not valid: {err}\")\n\t\tsuccess = False\n\t#\tCheck and correct common whitespace issues.\n\twith open( svg_dir / svg_file, 'r', encoding=\"utf-8\" ) as open_file:\n\t\tcontent = open_file.read()\n\t\t#\tReplace Windows line endings (CRLF) with Unix (LF)\n\t\tcontent = content.replace('\\r\\n', '\\n')\n\t\t#\tReplace double spaces with single space.\n\t\tcontent = content.replace('  ', ' ')\n\t\t#\tReplace space newline with newline\n\t\tcontent = content.replace(' \\n', '\\n')\n\t\t#\tRemove trailing newline\n\t\tcontent = content.strip()\n\t\t#\tCheck the file contents are in the right order.\n\t\tlines = content.splitlines()\n\t\t#\tCheck aria-label.\n\t\tif ( lines[1].startswith(\"aria\") is False ):\n\t\t\tprint(f\"{terminal.WARN}⚠️  Layout: {svg_file} aria-label not in expected place.\")\n\t\t\tsuccess = False\n\t\t#\tCheck viewBox (exception for DuckDuckGo).\n\t\tif ( lines[2].startswith('viewBox=\"0 0 512 512\"') is False and svg_file != \"duckduckgo.svg\"):\n\t\t\tsuccess = False\n\t\t\tprint(f\"{terminal.WARN}⚠️  Layout: {svg_file} viewBox not in expected format.\")\n\t#\tValidate against Nu\n\thtml = html_boilerplate + content\n\t#\tSend to Nu\n\tresponse = requests.post(url, headers=headers, data=html.encode(\"utf-8\"))\n\tif len(response.text) > 0:\n\t\t\tprint( f\"{terminal.FAIL}❌ {svg_file} errors: {response.text}\")\n\t\t\tsuccess = False\n\t#\tSave the corrected file\n\twith open( svg_dir / svg_file, 'w' ) as open_file:\n\t\topen_file.write(content)\n\t#\tGet the filename of the service. E.g. service.svg\n\tsvg = svg_file.split('.')[0]\n\tsvg_data[svg] = { 'svg_file' : svg_file }\n\t#\tGet the file size\n\tbytes = os.stat(f'{svg_dir}/{svg_file}').st_size\n\tsvg_data[svg]['bytes'] = bytes\n\tif (bytes > 1023):\n\t\tprint( f\"{terminal.FAIL}❌ {svg_file} is {bytes} bytes. Files must be under 1,024 Bytes.\")\n\t\tsuccess = False\n\ttotal_bytes += bytes\n\t#\tCheck for reference URl\n\tservice = svg_file[:-4]\n\tref_url = service + \".url\"\n\tif ref_url not in ref_list:\n\t\tsuccess = False\n\t\tprint(f\"{terminal.WARN}⚠️  Reference URl file: {ref_url} should exist in {ref_dir}\")\n\t#\tCheck for reference image\n\tref_imgs = [ service + \".png\", service + \".jpg\", service + \".svg\", service + \".ico\", service + \".webp\" ]\n\tif [img for img in ref_imgs if img in ref_list] == []:\n\t\tsuccess = False\n\t\tprint(f\"{terminal.WARN}⚠️  Reference image: {ref_imgs[0]} should exist in {ref_dir}\")\n\t\nif success:\n\tprint( f\"{terminal.OK}✅ All files in the correct format and under 1,024 Bytes.\")\n\n#\tShut down the Nu Validator\nserver.terminate()"
  },
  {
    "path": "images/android-vector-drawable/1password.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m255,64a192,192 0,1 0,2 0m-37,92c0,-8 6,-14 14,-14h44c8,0 14,6 14,14v106q0,3 -2,5l-15,13c-2,2 -1,4 0,5l15,12q2,2 2,5v54c0,8 -6,14 -14,14h-44c-8,0 -14,-6 -14,-14V250q0,-3 2,-5l15,-13c2,-2 1,-4 0,-5l-15,-12q-2,-2 -2,-5\"\n      android:fillColor=\"#1a285e\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/acast.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#01091c\"/>\n  <path\n      android:pathData=\"M270,247l-34,-95 -34,95ZM420,338s4,6 -2,22c-9,18 -9,20 -40,20 -46,0 -67,-23 -84,-69l-14,-40c-1,6 -7,21 -28,21L186,292l-4,10c-5,13 -9,24 -9,31 0,9 4,14 24,18l9,2v26L91,379L91,353l5,-1c21,-5 33,-17 46,-51 0,0 38,-100 65,-172 17,-47 35,-53 82,-55 0,0 74,202 82,222 7,18 18,41 34,41 8,0 16,-1 15,0Z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/access.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#155196\"/>\n  <path\n      android:pathData=\"m422,357.5 l10.7,25.3 -68.7,27L311.6,287H183.9l-12.4,-174.3a35,35 0,1 1,33.8 17.7l4,70h89v32.7h-85.7l1.6,22 118.7,-0.8 50.7,117m-49.8,9.3A128.2,128.2 0,1 1,165.6 206.7l2.9,37.9A93,93 0,1 0,311 334\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/activitypub.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M203.6,195.5v161.2l35,20.2V135L64,235.8v40.3m35,20 l69.8,-40.2v80.5\"\n      android:fillColor=\"#6d6d6d\"/>\n  <path\n      android:pathData=\"m413,256 l-139.7,80.6V377L447.8,276.2V235.8L273.3,135v40.3m0,40.4v80.6L343,256\"\n      android:fillColor=\"#f1007e\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/adobe.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fa0f00\"/>\n  <path\n      android:pathData=\"M296,120h114v272zM216,120L102,120v272zM255,219 L207,337h52l23,55h46\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/airbnb.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#ff5a5f\"/>\n  <path\n      android:pathData=\"m211,115q-50,95 -96,197 -24,52 12,83c59,46 112,-20 129,-38s48,-64 48,-95 -22,-49 -48,-49 -48,18 -48,49 31,77 48,95 70,84 129,38q36,-31 12,-83 -46,-102 -96,-197c-21,-39 -69,-39 -90,0z\"\n      android:strokeWidth=\"23\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/alpinelinux.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M174.37,285.55c8.69,6.05 19,11.16 29.13,11.29L203.5,256.38ZM268.64,220.81 L293.61,245.51 298.95,240.18a6328.44,6328.44 0,0 0,53.48 53.3c1.6,1.56 15.67,10.45 41.9,-7.8 -32.09,-31.44 -95.37,-95.2 -95.37,-95.2ZM114.61,285.53c26.21,18.25 40.26,9.38 41.86,7.8l66.7,-65.98s43.95,43.91 65.65,66.13c1.54,1.57 15.63,10.47 41.9,-7.81L223.45,177.91ZM352.02,89.7 L448,256 352.02,422.3L159.98,422.3L64,256 159.98,89.7Z\"\n      android:fillColor=\"#0d597f\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/amazon.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#f90\"/>\n  <path\n      android:pathData=\"M283,187c-62,2 -121,19 -121,81 0,43 26,64 61,64 31,0 51,-12 68,-30 8,11 10,16 24,27q5,3 10,-1l31,-27q4,-4 0,-10c-7,-11 -15,-19 -15,-39v-64c0,-27 2,-52 -18,-70 -17,-16 -38,-20 -62,-21 -53,-1 -88,28 -93,62q-1,8 7,9l37,5c6,1 9,-4 10,-8 6,-22 29,-28 43,-23 20,6 18,29 18,45m-36,105c-15,0 -25,-13 -25,-30 1,-36 29,-42 61,-42v18c0,32 -17,54 -36,54m168,106c13,-11 26,-38 25,-57 0,-7 -1,-8 -8,-10 -13,-4 -46,-5 -62,10 -3,3 -2,5 1,5 11,-2 45,-6 50,2 4,7 -8,35 -12,47 -2,5 2,6 6,3M58,342c96,91 247,94 345,25 7,-4 0,-12 -6,-9A376,376 0,0 1,62 337c-4,-3 -8,2 -4,5\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/amazon_s3.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m123,131v250l137,-33V163\"\n      android:fillColor=\"#e05243\"/>\n  <path\n      android:pathData=\"m97,144V368l26,13V131m75,-38v82h58v33l-58,7v82l58,7v33h-58v82l58,29 4,-98 129,31V131l-129,31 -4,-98\"\n      android:fillColor=\"#8c3123\"/>\n  <path\n      android:pathData=\"m256,448V64l58,29v82h-58v33l58,7v82l-58,7v33h58v82m75,-38V131l26,12v225\"\n      android:fillColor=\"#e05243\"/>\n  <path\n      android:pathData=\"m314,175 l-58,11 -58,-11 58,-14\"\n      android:fillColor=\"#5e1f18\"/>\n  <path\n      android:pathData=\"m314,337 l-58,-11 -58,11 58,14\"\n      android:fillColor=\"#f2b0a9\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/amberframework.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256,446 L87,351l44,-79L256,66l169,95v190\"\n      android:fillColor=\"#e67e25\"/>\n  <path\n      android:pathData=\"m87,161 l169,-95 -125,206\"\n      android:fillColor=\"#f3c095\"/>\n  <path\n      android:pathData=\"m256,66 l-125,206 240,-69m54,148 l-109,7 -60,88\"\n      android:fillColor=\"#eb994f\"/>\n  <path\n      android:pathData=\"M87,351V161l44,111 185,86 55,-155 54,148 -109,7 -60,88 -125,-174\"\n      android:fillColor=\"#e88b3d\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/andotp.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#6abf69\"/>\n  <path\n      android:pathData=\"M256,64a192,192 0,1 0,0 0M122,217.3a140,142 0,0 1,268 0M244,328.6a27,27 0,1 1,24 0l22,49h-68\"\n      android:fillColor=\"#fc0\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/android.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M433,320a184,184 0,0 1,1 8H74a181,181 0,0 1,1 -10,180 180,0 0,1 18,-54 180,180 0,0 1,13 -21,182 182,0 0,1 20,-23 182,182 0,0 1,32 -26l-11,-19 -18,-32a17,17 0,0 1,-2 -13,16 16,0 0,1 8,-10 16,16 0,0 1,7 -2,17 17,0 0,1 16,8 10000,10000 0,0 0,8 13l11,18 11,19 1,2 6,-2a180,180 0,0 1,58 -10h2c22,0 44,4 64,11l2,1 1,-2 11,-19 11,-18 8,-13a17,17 0,0 1,10 -8,17 17,0 0,1 6,0 17,17 0,0 1,7 2,16 16,0 0,1 6,6 17,17 0,0 1,2 14l-1,3a9000,9000 0,0 1,-8 13l-11,18 -11,19a181,181 0,0 1,32 25,181 181,0 0,1 20,23 182,182 0,0 1,13 21,180 180,0 0,1 18,54v2Z\"\n      android:fillColor=\"#34a853\"/>\n  <path\n      android:pathData=\"M350,276c7,-5 8,-16 2,-25s-17,-12 -24,-7 -8,16 -2,25 17,12 24,7m-163,-7c6,-9 5,-20 -2,-25s-18,-1 -24,7c-6,9 -5,20 2,25s18,1 24,-7\"\n      android:fillColor=\"#202124\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/angellist.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M323,225l-36,-7 29,-82c4,-13 19,-56 36,-56 23,0 4,49 1,59 -8,22 -17,52 -30,86ZM284,302c-12,8 -23,18 -32,30 -3,-14 -8,-25 -13,-38 13,6 30,8 45,8ZM252,214c-11,-2 -27,-3 -37,4 -14,-34 -24,-63 -31,-85 -3,-11 -22,-62 4,-62 14,0 28,44 32,56l32,87ZM224,354c-19,0 -32,-18 -42,-32 -12,-15 -37,-47 -19,-65s36,3 46,20c7,10 50,77 15,77ZM138,348c-3,3 -4,10 -4,14 0,26 31,52 55,52 22,0 31,-20 27,-38 7,1 15,2 20,-3 0,17 1,54 27,54 0,-7 -2,-14 -4,-21a79,79 0,0 1,34 -86c13,-10 30,-13 43,-23 0,-6 -3,-12 -9,-12 -28,0 -57,0 -83,-9 -20,-8 -33,-44 -3,-44 24,0 48,2 71,8 19,4 51,9 54,33 9,48 -1,99 -34,136 -38,41 -99,52 -149,29 -34,-15 -65,-51 -65,-89 0,-15 9,-36 26,-36 21,0 68,73 39,76 -23,0 -32,-28 -45,-41ZM342,230c14,-40 73,-170 7,-170 -35,0 -69,119 -80,145 -9,-28 -44,-156 -78,-153 -70,6 -10,123 5,181 -7,-5 -15,-8 -24,-8 -18,0 -38,22 -38,40 0,9 6,20 9,28 -29,8 -44,27 -44,57 1,33 15,62 40,84 41,38 104,46 155,25 62,-26 95,-89 95,-154 0,-32 -8,-71 -47,-75Z\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/angular.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M430,133 L298,72l119,259zM328,344L184,344l-19,45 91,51 91,-51zM256,170 L208,286h95zM94,331 L215,72 82,133z\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/ansible.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256,256m-192,0a192,192 0,1 1,384 0a192,192 0,1 1,-384 0\"\n      android:fillColor=\"#1a1918\"/>\n  <path\n      android:pathData=\"m256,184 l49.7,122.9 -75.2,-59.3m37.3,-96.8a13,13 0,0 0,-24.1 0l-84,202.3h28.7l33.3,-83.5 101,81.7a14,13.5 0,0 0,21.8 -16\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/apache_age.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"0\"\n          android:startY=\"0\"\n          android:endX=\"512\"\n          android:endY=\"0\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FF1A367F\"/>\n        <item android:offset=\"1\" android:color=\"#FFB9125A\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"M154,205l74,170H208l-13,-31 -85,31H82l72.07,-170m34,123.5L154,250 109,357m139.45,2.07s0.91,-0.04 6.74,-0.79c21.54,-2.78 41.34,-13.97 52.37,-32.81 5.08,-8.68 7.96,-24.47 7.96,-24.47l-79.36,28.52 -6.55,-14.75L317,282h16v12c-0.22,42.3 -31.78,79.29 -78.22,80.84M346,357h92v18H327c10,-8 10,-8 19,-18m6,-75h86v18H352m-45.03,-45.16c-33.04,-36.55 -72.31,-34.53 -105.81,-7.61l-7.77,-16.3c34.94,-26.4 76.75,-33.75 123.44,8.54M327,208H438v18H346c-8,-10 -8,-10 -19,-18\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/apereo.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M247,96c63,7 107,35 179,22 -9,16 -22,42 -32,46 -85,23 -123,-32 -205,10 -30,13 -68,68 -36,125 53,74 129,49 165,-19 21,33 6,67 21,99 -96,62 -228,24 -258,-80C60,193 134,96 231,96Z\"\n      android:fillColor=\"#344\"/>\n  <path\n      android:pathData=\"M311,191c15,49 -14,150 51,224 6,-6 17,-13 23,-17 6,0 29,5 48,15 -61,-104 -30,-131 -40,-226 -23,8 -53,8 -80,4Z\"\n      android:fillColor=\"#6bc\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/apple.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m406,335s-9,30 -26,54 -31,47 -60,47c-23,0 -35,-15 -61,-15s-42,15 -64,15 -33,-15 -50,-35c-44,-55 -62,-146 -38,-194s59,-58 84,-58 48,16 63,16 38,-17 68,-17 59,13 74,38c-49,27 -64,115 10,149M327,56c5,36 -27,89 -76,88 -5,-42 32,-85 76,-88\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/apple_music.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"0\"\n          android:startY=\"506.88\"\n          android:endX=\"0\"\n          android:endY=\"10.24\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FFFA233B\"/>\n        <item android:offset=\"1\" android:color=\"#FFFB5C74\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"m347,160q11,-2 12,10v122q0,15 -45,20c-57,9 -48,105 30,79 30,-11 35,-40 35,-69V88s0,-20 -17,-15l-170,35s-13,2 -13,18v203q0,15 -45,20c-57,9 -48,105 30,79 30,-11 35,-40 35,-69V199q0,-9 10,-11\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/applepodcasts.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"0\"\n          android:startY=\"0\"\n          android:endX=\"0\"\n          android:endY=\"512\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FFD56EFC\"/>\n        <item android:offset=\"1\" android:color=\"#FF832BC1\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"M255.9,188.7a37,37 0,1 1,0 74,37 37,0 0,1 0,-74ZM199.2,324.6a2,2 0,0 1,-3.2 2,106.3 106.3,0 1,1 119.86,-0.1 2,2 0,0 1,-3.2 -1.9L312,306c0.7,-1.5 1.5,-3.4 3,-4.7a86,86 0,1 0,-118 0.1,6.4 6.4,0 0,1 2,4.6ZM205.8,386.2c-0.93,0.77 -1.87,1.53 -2.8,2.3a159,159 0,1 1,105.2 0.1c-1.5,0.5 -3,-0.7 -2.9,-2.3l2.3,-16.3c1.07,-1.4 2.13,-2.8 3.2,-4.2a138.6,138.6 0,1 0,-110.5 -0.1c1.8,0.8 3,2.4 3.2,4.3ZM256,278c14,0 26,4.6 32.7,11.7 3.6,3.8 5.4,7.6 6,13a171,171 0,0 1,-0.7 34.2,823.5 823.5,0 0,1 -6.3,51c-2,13.5 -3.8,20.7 -5.3,25.9 -2.5,8.4 -11.8,15.7 -26.4,15.7s-23.9,-7.4 -26.4,-15.7c-1.6,-5.2 -3.3,-12.4 -5.3,-25.8a779.8,779.8 0,0 1,-6.3 -51.1,166.5 166.5,0 0,1 -0.8,-34.2c0.6,-5.4 2.5,-9.2 6,-13A45,45 0,0 1,256 278z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/appwrite.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M419.3,326.41v73.47H232.61c-54.39,0 -101.88,-29.55 -127.29,-73.47 -3.69,-6.39 -6.93,-13.08 -9.63,-20.04 -5.34,-13.62 -8.67,-28.23 -9.69,-43.5v-19.86c0.21,-3.39 0.57,-6.78 1.02,-10.11 0.93,-6.84 2.34,-13.53 4.17,-20.04C108.65,151.18 165.35,106 232.61,106s123.96,45.18 141.42,106.86H294.2c-13.11,-20.1 -35.79,-33.39 -61.59,-33.39s-48.48,13.29 -61.59,33.39c-3.99,6.12 -7.08,12.87 -9.12,20.04 -1.8,6.39 -2.76,13.11 -2.76,20.04 0,21.06 8.85,40.05 23.07,53.43 13.14,12.45 30.87,20.04 50.4,20.04z\"\n      android:fillColor=\"#fd366e\"/>\n  <path\n      android:pathData=\"M419.3,232.9H303.32c1.8,6.39 2.76,13.11 2.76,20.04 0,21.06 -8.85,40.05 -23.04,53.43H419.3z\"\n      android:fillColor=\"#fd366e\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/arch_linux.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M389,361q-30,-25 -55,-38 24,6 44,17Q290,180 256,90q-18,48 -39,92 19,21 41,36 -27,-10 -45,-26 -38,77 -117,220 76,-46 127,-55a36.5,58 -1,1 1,68 0q44,8 125,54\"\n      android:fillColor=\"#1793d1\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/arduino.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M449,256c0,106.6 -86.5,193 -193,193 -106.6,0 -193,-86.5 -193,-193S149.5,63 256,63c106.6,0 193,86.5 193,193h0Z\"\n      android:fillColor=\"#00979d\"/>\n  <path\n      android:pathData=\"M330,325c-4,0 -7,-0 -11,-1 -31,-4 -51,-26 -63,-43 -12,17 -32,39 -63,43 -4,1 -7,1 -11,1 -19,0 -37,-7 -50,-20 -14,-13 -21,-30 -21,-49s8,-36 21,-49c14,-13 31,-20 51,-20 4,0 7,0 11,1 31,4 51,26 63,43 12,-17 32,-39 63,-43 4,-1 7,-1 11,-1 19,0 37,7 50,20 14,13 21,30 21,49s-8,36 -21,49c-14,13 -31,20 -50,20m-60,-69c6,11 24,40 53,44 3,0 5,1 8,1 26,0 47,-20 47,-45s-21,-45 -47,-45c-3,0 -5,0 -8,1 -29,4 -47,33 -53,44m-87,-45c-26,0 -47,20 -47,45s21,45 47,45c3,0 5,-0 8,-1 29,-4 47,-33 53,-44 -6,-11 -24,-40 -53,-44 -3,-0 -5,-1 -8,-1\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M162.6,249h43v13.8h-43v-13.8ZM349,249h-14.6v-14.6h-13.9v14.6h-14.5v13.8h14.5v14.6h13.9v-14.6h14.6v-13.8Z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/atom.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M112.4,290a182.6,66.6 3,1 1,283 15M231,111.5a66.7,182.6 -27,1 0,89.5 124m47,-69A182.7,66.7 -57,1 0,221 392.5m21,-136a15,15 0,1 1,0 1h-1l17,-2v5\"\n      android:strokeWidth=\"14\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#66595c\"\n      android:strokeLineCap=\"round\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/auth0.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M118.43,258.34c-6.17,-0.69 -19.85,-5.84 -19.51,5.12 8.95,87.13 95.87,156.78 135.37,183.46 4.53,3.02 9.91,-0.75 9.91,-6.18 0,-108.25 -39.88,-165.44 -125.77,-182.4ZM244.31,75.08c-11.8,103.06 -70.22,149.48 -135.13,157.16 -5.76,0.93 -11.01,-3.54 -11.01,-9.38V124.16c0,-13.39 8.06,-25.41 20.43,-30.5 24.93,-10.2 69.74,-25.9 117.23,-29.6 6.07,-0.48 9.02,6.17 8.47,11.02Z\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M393.57,258.34c6.17,-0.69 19.85,-5.84 19.51,5.12 -8.95,87.13 -95.87,156.78 -135.37,183.46 -4.53,3.02 -9.91,-0.75 -9.91,-6.18 -0,-108.25 39.88,-165.44 125.77,-182.4ZM267.69,75.08c11.8,103.06 70.22,149.48 135.13,157.16 5.76,0.93 11.01,-3.54 11.01,-9.38L413.83,124.16c-0,-13.39 -8.06,-25.41 -20.43,-30.5 -24.93,-10.2 -69.74,-25.9 -117.23,-29.6 -6.07,-0.48 -9.02,6.17 -8.47,11.02Z\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/authy.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#ec1c24\"/>\n  <path\n      android:pathData=\"M333,131l65,65c35,36 35,96 0,134 -34,34 -99,36 -132,4l-68,-69m-19,116 l-65,-65a97,97 0,0 1,0 -134c34,-35 98,-36 131,-4l69,69\"\n      android:strokeWidth=\"46\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"\n      android:strokeLineCap=\"round\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/azure.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M208.2,120.5a13.6,13.6 0,0 0,-12.9 9.2L113,373.5a13.5,13.5 0,0 0,12.8 17.9H192a13.6,13.6 0,0 0,12.9 -9.2l88.3,-261.7H208.1Z\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"202.61\"\n          android:startY=\"147.58\"\n          android:endX=\"112.02\"\n          android:endY=\"391.41\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FF114A8B\"/>\n        <item android:offset=\"1\" android:color=\"#FF0669BC\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"M331.7,296.1H196.8a6.2,6.2 0,0 0,-4.3 10.8l86.7,80.9a13.6,13.6 0,0 0,9.3 3.7h76.4z\"\n      android:fillColor=\"#0078d4\"/>\n  <path\n      android:pathData=\"M399.1,373.6a13.5,13.5 0,0 1,-12.8 17.9H291.5a13.5,13.5 0,0 0,12.8 -17.9L222,129.8a13.5,13.5 0,0 0,-12.8 -9.2H304a13.5,13.5 0,0 1,12.8 9.2Z\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"228.29\"\n          android:startY=\"120.6\"\n          android:endX=\"323.73\"\n          android:endY=\"391.51\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FF3CCBF4\"/>\n        <item android:offset=\"1\" android:color=\"#FF2892DF\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/backbone.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m256,161v51l94,-54v85l-94,53v55l141,-80V81\"\n      android:fillColor=\"#0071b5\"/>\n  <path\n      android:pathData=\"m115,81V271l282,160V241m-235,1V158l90,51v5l98,55v81\"\n      android:fillColor=\"#002a41\"/>\n  <path\n      android:pathData=\"m115,431V241l141,-80v55l-94,53v81l94,-54v55\"\n      android:fillColor=\"#0071b5\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/badoo.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#6e3eff\"/>\n  <path\n      android:pathData=\"m256,166A102,108 0,0 0,64 213c0,106 100,202 192,202s192,-96 192,-202A102,108 0,0 0,256 166m70,48h38v5a1,1 0,1 1,-216 0v-5h38v4a1,1 0,0 0,140 0\"\n      android:fillColor=\"#ffbbd0\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/baidu.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m131,251c41,-9 35,-58 34,-68 -2,-17 -21,-45 -48,-43 -33,3 -37,50 -37,50 -5,22 10,70 51,61m76,-82c22,0 40,-26 40,-58s-18,-58 -40,-58c-23,0 -41,26 -41,58s18,58 41,58m96,4c31,4 50,-28 54,-53 4,-24 -16,-52 -37,-57s-48,29 -50,52c-3,27 3,54 33,58m120,41c0,-12 -10,-47 -46,-47s-41,33 -41,57c0,22 2,53 47,52s40,-51 40,-62m-46,102s-46,-36 -74,-75c-36,-57 -89,-34 -106,-5 -18,29 -45,48 -49,53 -4,4 -56,33 -44,84 11,52 52,51 52,51s30,3 65,-5 65,2 65,2 81,27 104,-25c22,-53 -13,-80 -13,-80\"\n      android:fillColor=\"#2319dc\"/>\n  <path\n      android:pathData=\"m214,266v34h-28s-29,3 -39,35c-3,21 4,34 5,36 1,3 10,19 33,23h53L238,266zM213,373h-21s-15,-1 -19,-18c-3,-7 0,-16 1,-20 1,-3 6,-11 17,-14h22zM251,303v68s1,17 24,23h61v-91h-26v68h-25s-8,-1 -10,-7v-61z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/bandcamp.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M99,349h215l99,-186H198\"\n      android:fillColor=\"#1DA0C3\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/bash.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m268,249q-16,12 -16,30v148q0,22 19,21l153,-93V176q-9,-19 -29,-6m-88.1,106.1q1.7,-1 2,2v10.3q7.6,-2.8 12.3,-1.3 1,0.4 0.7,2.2l-2.8,11q-0.5,2 -3,1c-11,-2 -21,8 -19.3,17s19,-1 26,12 -3,34 -13.5,41.4l0.3,11q0,2 -1.2,3l-7,4q-2,1 -2,-2v-9.9q-8,3.4 -14,1.6 -2,-0.4 -1.3,-3l2.4,-10q1,-3 3,-1.7c16,3 26,-13 22,-21s-19,0 -25.2,-10 0,-30 12.7,-39.5v-10.5q0,-2.8 2,-4\"\n      android:fillColor=\"#2A3238\"/>\n  <path\n      android:pathData=\"m109,139q-25,15 -25,44v146q0,29 26,44l123,73q23,13 46,0l123,-73q26,-15 26,-44V183q0,-29 -25,-44L278,65q-23,-12 -44,0z\"\n      android:strokeWidth=\"9\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#2A3238\"/>\n  <path\n      android:pathData=\"m342.4,364.7q-1.1,0.7 -1.1,2v8c0,1.3 0.9,1.5 1.6,1l32,-19.4q0.9,-0.6 0.9,-2.4v-7c0,-1.5 -1,-1.4 -1.6,-1\"\n      android:fillColor=\"#4DA925\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/behance.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#0056ff\"/>\n  <path\n      android:pathData=\"m346.1,211.9c-73.4,0 -73.5,73.1 -73.5,73.5 0,0 -5,73.2 73.5,73.2 0,0 65.5,3.7 65.5,-50.9L378,307.7s1.1,20.6 -30.7,20.6c0,0 -33.6,2.2 -33.6,-33.2h99.1s10.9,-83.1 -66.6,-83.1zM313.2,269.4s4.1,-29.4 33.6,-29.4c29.6,0 29.1,29.4 29.1,29.4h-62.8zM229.2,250.6s29.1,-2.1 29.1,-36.4c0,-34.2 -23.8,-50.9 -54.1,-50.9h-99.6v191.4h99.5s60.8,1.9 60.8,-56.5c0,0 2.6,-47.5 -35.8,-47.5zM148.6,197.2h55.7s13.5,0 13.5,19.9 -7.9,22.8 -16.9,22.8h-52.2v-42.7zM201.5,320.6h-52.9v-51.2h55.7s20.2,-0.2 20.1,26.4c0,22.4 -15,24.7 -22.9,24.9zM305,174.5v23.6h79v-23.6h-79z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/bing.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m143,343c0,72 84,124 147,84l62,-39c51,-32 23,-79 -6,-88l-115,69\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"143\"\n          android:startY=\"300\"\n          android:endX=\"403\"\n          android:endY=\"300\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FF5FE9FF\"/>\n        <item android:offset=\"0.5\" android:color=\"#FF4BB1F1\"/>\n        <item android:offset=\"1\" android:color=\"#FF1440DF\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"m167,71c-11,-8 -24,0 -24,11v261c0,38 39,56 67,39l21,-13V134q-1,-21 -22,-35\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"143\"\n          android:startY=\"63\"\n          android:endX=\"143\"\n          android:endY=\"399\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FF3BC0F6\"/>\n        <item android:offset=\"0.5\" android:color=\"#FF3693FA\"/>\n        <item android:offset=\"1\" android:color=\"#FF1B42D8\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"m279,186c-13,-7 -26,7 -19,20l26,67q5,9 15,13c43,16 58,15 71,35s6,43 -5,55c42,-44 37,-127 -30,-160\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:centerX=\"409\"\n          android:centerY=\"316.9\"\n          android:gradientRadius=\"197\"\n          android:type=\"radial\">\n        <item android:offset=\"0\" android:color=\"#FF6ADFD4\"/>\n        <item android:offset=\"0.5\" android:color=\"#FF15D2E5\"/>\n        <item android:offset=\"1\" android:color=\"#FF36BEFE\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/bitbucket.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M422,130a10,10 0,0 0,-9.9 -11.7H100.5a10,10 0,0 0,-10 11.7L136,409a10,10 0,0 0,9.9 8.4h221c5,0 9.2,-3.5 10,-8.4L422,130zM291,316.8h-69.3l-18.7,-98h104.8z\"\n      android:fillColor=\"#2684ff\"/>\n  <path\n      android:pathData=\"M407.55,219.28L307.95,219.28l-16.52,97.51l-69.27,0l0,100.71L366.88,417.5c5.33,0 9.06,-3.73 9.59,-8.53l30.91,-189.69z\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"374.97\"\n          android:startY=\"221.02\"\n          android:endX=\"244.94\"\n          android:endY=\"326.31\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FF0052CC\"/>\n        <item android:offset=\"1\" android:color=\"#FF2684FF\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/bitcoin.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#f7931a\"/>\n  <path\n      android:pathData=\"m391,216c6,-43 -25,-64 -68,-79l14,-55 -34,-9 -13,54 -28,-7 14,-54 -35,-9 -13,56 -22,-5 -47,-12 -8,36 24,6c14,4 17,14 15,21l-15,63 3,1 -3,-1 -22,89c-2,5 -6,11 -16,8l-24,-6 -17,39 68,17 -13,57 33,8 14,-55 26,6 -13,55 34,9 14,-56c58,11 102,6 120,-46 14,-42 -1,-66 -32,-82 22,-5 39,-20 44,-49zM314,324c-11,41 -82,20 -105,14l19,-75c23,6 97,17 86,61zM323,214c-9,39 -67,20 -87,15l17,-68c20,5 81,14 70,53z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/bitwarden.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#175DDC\"/>\n  <path\n      android:pathData=\"M372,297L372,131L256,131v294c47,-28 115,-74 116,-128zM421,99v198c0,106 -152,181 -165,181S91,403 91,297L91,99s0,-17 17,-17h296s17,0 17,17z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/blender.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M309,215a52,48 0,1 0,1 0\"\n      android:fillColor=\"#265787\"/>\n  <path\n      android:pathData=\"m175,273a134,123 -5,1 0,220 -92L274,88q-14,-10 -30,0 -14,11 -2,23l50,41L138,152q-23,2 -27,19c-3,11 7,20 19,20h78L75,293q-29,21 -16,42 16,19 44,-3zM308,190a82,75 2,1 1,-1 0z\"\n      android:fillColor=\"#ea7600\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/blogger.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#FF5722\"/>\n  <path\n      android:pathData=\"M95,184c0,-51 41,-93 93,-93h86c64,0 103,61 85,126 0,0 61,-3 66,58v53c0,46 -34,93 -93,93H183c-49,0 -88,-39 -88,-88z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M199,188h68m-74,129h133\"\n      android:strokeWidth=\"55\"\n      android:strokeColor=\"#FF5722\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/bluesky.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M159,126c-28,-22 -74,-38 -74,14 0,11 6,88 9,101 13,43 57,54 97,48 -69,11 -87,50 -49,89 72,75 104,-18 112,-42l2,-5 2,5c8,24 40,117 112,42 38,-39 20,-78 -49,-89 40,6 84,-5 97,-48 3,-13 9,-90 9,-101 0,-52 -46,-36 -74,-14 -39,29 -82,89 -97,121 -15,-32 -58,-92 -97,-121Z\"\n      android:fillColor=\"#1185fe\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/bluetooth.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m256,460c89,0 150.4,-42.3 150.4,-204S345,52 256,52 105.6,94.4 105.6,256 167,460 256,460\"\n      android:fillColor=\"#0082fc\"/>\n  <path\n      android:pathData=\"M174.1,172.2 L327.2,325.6 258,395V117l69.2,69.4 -152.9,153.1\"\n      android:strokeWidth=\"30\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/brave.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M416,158l9,-23c-24,-25 -33,-43 -72,-34l-35,-40H194l-35,40c-38,-3 -45,6 -72,34l10,23 -12,34 39,150c8,32 14,45 37,61l72,49c7,4 16,12 23,12 8,0 16,-8 23,-12l72,-49c23,-16 29,-29 37,-61l40,-150\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"85\"\n          android:startY=\"61\"\n          android:endX=\"428\"\n          android:endY=\"61\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FFFF5500\"/>\n        <item android:offset=\"1\" android:color=\"#FFFF2200\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"M308,343c8,-7 -13,-16 -22,-20 -10,-5 -20,-8 -30,-11 -10,2 -20,6 -30,11 -9,5 -30,11 -22,20 15,11 34,27 52,39l52,-39m35,-216 l-43,7c-5,0 -17,-5 -27,-8s-17,-3 -17,-3 -7,0 -17,3 -22,8 -27,8l-43,-7s-45,54 -45,66c0,16 32,42 45,57 17,13 -7,31 3,51 7,12 18,20 25,19 17,-5 48,-21 55,-41 -2,-15 -38,-20 -45,-35 0,-15 18,-27 17,-44 -2,-15 -45,-22 -59,-29 -2,-2 -1,-3 6,-3 21,-3 47,-4 66,8 8,19 -16,63 -3,71 19,3 26,5 45,0 13,-3 -8,-55 -4,-71 14,-11 49,-10 66,-8 8,0 8,1 6,3 -15,5 -51,15 -59,29 -1,13 17,31 17,44 -2,14 -42,18 -44,36 2,19 40,32 55,40 7,1 18,-7 24,-19 9,-16 -14,-35 3,-51 15,-15 42,-36 45,-57 0,-12 -45,-66 -45,-66\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/briar.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M145.7,224V409.2a27.4,27.4 0,0 0,27.4 27.4H186c15,0 27.4,-12.4 27.4,-27.4V224m0,-89.5V100A27.4,27.8 -3,0 0,186 72.2H173.1A27.4,27.8 -3,0 0,145.7 100v34.5\"\n      android:fillColor=\"#87c214\"/>\n  <path\n      android:pathData=\"M366.3,288L366.3,102.8a27.4,27.4 0,0 0,-27.4 -27.4L326,75.4c-15,-0 -27.4,12.4 -27.4,27.4L298.6,288m-0,89.5L298.6,412A27.8,27.4 98.11,0 0,326 439.8L338.9,439.8A27.8,27.4 98.11,0 0,366.3 412l-0,-34.5\"\n      android:fillColor=\"#87c214\"/>\n  <path\n      android:pathData=\"M288,145.7L102.8,145.7a27.4,27.4 0,0 0,-27.4 27.4L75.4,186c-0,15 12.4,27.4 27.4,27.4L288,213.4m89.5,0L412,213.4A27.4,27.8 98.11,0 0,439.8 186L439.8,173.1A27.4,27.8 98.11,0 0,412 145.7l-34.5,0\"\n      android:fillColor=\"#87c214\"/>\n  <path\n      android:pathData=\"M224,366.3L409.2,366.3a27.4,27.4 0,0 0,27.4 -27.4L436.6,326c0,-15 -12.4,-27.4 -27.4,-27.4L224,298.6m-89.5,-0L100,298.6A27.4,27.8 98.11,0 0,72.2 326L72.2,338.9A27.4,27.8 98.11,0 0,100 366.3l34.5,-0\"\n      android:fillColor=\"#87c214\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/buffer.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#000\"/>\n  <path\n      android:pathData=\"M84,166q-7.5,-4.5 0,-9l162,-75q10,-4.5 20,0l162,75q7.5,4.5 0,9l-162,75q-10,4.5 -20,0z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M116,237q10.5,-4.5 21,0l109,50q10,4.5 20,0l109,-50q10.5,-4.5 21,0l32,14q7.5,5 0,10L266,336q-10,3 -20,0L84,261q-7.5,-5 0,-10Z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M116,331q10.5,-4.5 21,0l109,50q10,4.5 20,0l109,-50q10.5,-4.5 21,0l32,14q7.5,5 0,10L266,430q-10,3 -20,0L84,355q-7.5,-5 0,-10Z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/bugcrowd.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M258,236.4c11.5,-2.7 26.3,2.1 35.2,11.4 17.6,18.7 17,59.9 -1.4,77.9 -8.8,8.8 -17.5,11.7 -31.3,10.7 -21.4,-1.5 -35.8,-21.1 -36,-49.1 -0.4,-28.2 11.2,-45.7 33.5,-50.9ZM217.2,144.7c-5,-3.1 -8.7,-3.6 -27.2,-4 -11.8,-0.1 -22.5,0.2 -23.7,0.9 -1.3,0.8 -2,5.9 -1.8,17v15.8l8.8,0.9c4.8,0.5 9.4,1.5 10,2.2 0.7,0.6 1.2,43.6 1.2,95.5v94.3h38.6L223.1,349.2l6.5,5.9c3.4,3.2 10.5,8 15.6,10.4 8.3,3.9 11.6,4.4 28.1,4.4 17.5,0 19.3,-0.3 30.2,-5.4 33,-15.7 49.5,-54.6 42.2,-99.3 -3.4,-20.1 -15.6,-41.7 -29.1,-51.2 -13.1,-9.2 -23.4,-12.2 -41.6,-12.2 -15,-0.2 -18.2,0.3 -26.6,4.2 -5.2,2.6 -12.5,7.3 -16.3,10.7l-6.8,6.2L225.3,191.7c0,-38.7 -0.5,-42.3 -8.1,-47ZM145.6,66.5L365.1,66.5L474.2,260.4 365.1,445.5L145.6,445.5L38.5,260.4Z\"\n      android:fillColor=\"#f26922\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/bun.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m150,139c50,-27 78,-51 102,-51s52,24 102,51a182,145 0,1 1,-204 0z\"\n      android:strokeWidth=\"12\"\n      android:fillColor=\"#fbf0df\"\n      android:strokeColor=\"#000\"/>\n  <path\n      android:pathData=\"m126,356a199,167 9,0 0,298 -126A176,139 0,0 1,126 356\"\n      android:fillColor=\"#f6dece\"/>\n  <path\n      android:pathData=\"m224,114q-18,36 -54,46 44,0 54,-46zM239,107q0,38 -29,64 39,-16 29,-64zM250,106q19,30 9,69 24,-36 -9,-69zM264,105q31,24 35,60 9,-42 -35,-60z\"\n      android:strokeLineJoin=\"round\"\n      android:strokeWidth=\"3\"\n      android:fillColor=\"#ccbea7\"\n      android:strokeColor=\"#ccbea7\"/>\n  <path\n      android:pathData=\"m175,264a29,17 0,1 0,2 0h150a29,17 0,1 0,2 0\"\n      android:fillColor=\"#febbd0\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m190,219a28,28 0,1 0,1 0h123a28,28 0,1 0,1 0m92,-45A190,151 1,1 1,111 359q249,122 325,-93\"/>\n  <path\n      android:pathData=\"m76,265c31,-108 86,-116 109,-130s54,-40 82,-38c-30,-11 -57,16 -101,40s-90,57 -90,128m105,-37a10,10 0,1 0,1 0h123a10,10 0,1 0,1 0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M284,292c10,0 -8,35 -32,37 -24,-2 -42,-37 -32,-37Z\"\n      android:strokeWidth=\"6\"\n      android:fillColor=\"#b71422\"\n      android:strokeColor=\"#000\"/>\n  <path\n      android:pathData=\"m229,316a31,31 0,0 1,49 -3q-25,30 -49,3\"\n      android:strokeWidth=\"5\"\n      android:fillColor=\"#ff6164\"\n      android:strokeColor=\"#000\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/c.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m270.3,445 l141.1,-81.4a30,30 0,0 0,10.4 -11l-166.3,-96 -166.3,96a30,30 0,0 0,10.4 11L240.8,445a30,30 0,0 0,29.5 0z\"\n      android:fillColor=\"#004482\"/>\n  <path\n      android:pathData=\"M421.8,160.5a30,30 0,0 0,-10.4 -11L270.3,68a30,30 0,0 0,-29.6 0l-141,81.5a30,30 0,0 0,-14.8 25.6V338a30,30 0,0 0,4.3 14.6z\"\n      android:fillColor=\"#659AD2\"/>\n  <path\n      android:pathData=\"M256,256m-86,0a86,86 0,1 1,172 0a86,86 0,1 1,-172 0\"\n      android:strokeWidth=\"57\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"/>\n  <path\n      android:pathData=\"M421.8,352.6a30,30 0,0 0,4.3 -14.6V175.2a30,30 0,0 0,-4.3 -14.7l-166.3,96.1z\"\n      android:fillColor=\"#00599C\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/cash_app.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#00d632\"/>\n  <path\n      android:pathData=\"m339.5,190.1c4,4 10.7,4 14.4,0l20,-20.8c4.2,-4 4,-11.2 -0.5,-15.6 -15.7,-13.7 -34.1,-24.2 -53.9,-30.8l6.3,-30.5c1.4,-6.7 -3.6,-12.9 -10.3,-12.9h-38.8c-5,0.1 -9.3,3.6 -10.3,8.5l-5.6,27.1c-51.6,2.6 -95.4,28.9 -95.4,82.6 0,46.5 36.2,66.4 74.4,80.2 36.2,13.8 55.3,18.9 55.3,38.3 0,20 -19.1,31.7 -47.3,31.7 -25.7,0 -52.6,-8.6 -73.4,-29.5 -4.1,-4.1 -10.7,-4.1 -14.7,0L138.2,340c-4.2,4.3 -4.2,11.1 0,15.4 16.8,16.6 38.2,28.6 62.5,35.3l-5.9,28.6c-1.4,6.7 3.5,12.8 10.2,12.9l38.9,0.3c5.1,0 9.4,-3.5 10.4,-8.5l5.6,-27.2c62.1,-4.2 99.9,-38.4 99.9,-88.3 0,-46 -37.7,-65.4 -83.4,-81.2 -26.1,-9.7 -48.7,-16.4 -48.7,-36.3 0,-19.4 21.1,-27.1 42.2,-27.1 26.9,0 52.8,11.1 69.7,26.4z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/centos.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M118,118h124v124h-124z\"\n      android:fillColor=\"#9ccd2a\"/>\n  <path\n      android:pathData=\"M270,118h124v124h-124z\"\n      android:fillColor=\"#932279\"/>\n  <path\n      android:pathData=\"M270,270h124v124h-124z\"\n      android:fillColor=\"#efa724\"/>\n  <path\n      android:pathData=\"M118,270h124v124h-124z\"\n      android:fillColor=\"#262577\"/>\n  <path\n      android:pathData=\"M256,451.16l-87.68,-87.68l87.68,-87.68l87.68,87.68z\"\n      android:fillColor=\"#9ccd2a\"/>\n  <path\n      android:pathData=\"M148.52,343.68l-87.68,-87.68l87.68,-87.68l87.68,87.68z\"\n      android:fillColor=\"#932279\"/>\n  <path\n      android:pathData=\"M256,236.2l-87.68,-87.68l87.68,-87.68l87.68,87.68z\"\n      android:fillColor=\"#efa724\"/>\n  <path\n      android:pathData=\"M363.48,343.68l-87.68,-87.68l87.68,-87.68l87.68,87.68z\"\n      android:fillColor=\"#262577\"/>\n  <path\n      android:pathData=\"m236,256 l-87,88 -88,-88 88,-88zM242,242L118,242L118,118L242,118zM242,270L242,394L118,394L118,270zM256,236 L168,149 256,61 344,149zM256,276 L168,363 256,451 344,363zM270,242L270,118L394,118L394,242zM270,270L394,270L394,394L270,394zM276,256 L363,344 451,256 363,168z\"\n      android:strokeWidth=\"9\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/chatgpt.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m243.3,208.7l88.9,51.3c0.3,0.1 0.5,0.4 0.5,0.7L332.7,361c5.8,-0.3 11.5,-0.7 17,-0.9a79.8,79.8 0,0 0,53.3 -38.7c17.6,-30.3 13.6,-68.5 -9.9,-94.5 -6,-5 -12,-10 -17.8,-14.8 -0.5,-0.3 -1.3,-0.8 -1.9,-1.1l-61.8,-35.7a10.4,10.4 0,0 0,-10.5 0l-57.7,33.5zM348.4,252.4L270.6,207.5 297.5,192c0.3,-0.2 0.6,-0.2 0.9,-0.1l64.4,37.2c28.7,16.6 38.5,53.3 21.9,81.9a59.9,59.9 0,0 1,-31.2 26.3v-75.8c0,-3.7 -2,-7.2 -5.2,-9.1z\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m290.61,221.35l0.02,102.64c0.06,0.31 -0.1,0.63 -0.36,0.78L203.42,374.92c3.16,4.87 6.36,9.61 9.28,14.27a79.8,79.8 105,0 0,60.17 26.81c35.04,0.09 66.12,-22.47 76.89,-55.82 1.33,-7.7 2.66,-15.39 3.92,-22.82 0.01,-0.58 0.04,-1.53 0,-2.2l0.02,-71.37a10.4,10.4 105,0 0,-5.25 -9.09l-57.86,-33.22zM305.32,334.22L305.3,244.39 332.18,259.94c0.32,0.16 0.47,0.42 0.54,0.73l-0.02,74.37c-0.03,33.15 -26.91,59.99 -59.98,59.92a59.9,59.9 105,0 1,-38.38 -13.87l65.64,-37.9c3.2,-1.85 5.24,-5.33 5.28,-9.05z\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m303.31,268.65l-88.88,51.34c-0.24,0.21 -0.6,0.23 -0.86,0.08L126.72,269.92c-2.64,5.17 -5.14,10.31 -7.72,15.17a79.8,79.8 75,0 0,6.87 65.51c17.44,30.39 52.52,46.03 86.79,38.68 7.33,-2.7 14.66,-5.39 21.72,-8.02 0.51,-0.28 1.34,-0.73 1.9,-1.1l61.82,-35.67a10.4,10.4 75,0 0,5.25 -9.09l-0.16,-66.72zM212.92,337.82L290.7,292.89 290.68,323.94c0.02,0.36 -0.13,0.62 -0.36,0.83l-64.42,37.17c-28.73,16.55 -65.41,6.69 -81.88,-21.98a59.9,59.9 75,0 1,-7.18 -40.17l65.64,37.9c3.2,1.85 7.24,1.87 10.48,0.05z\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m268.7,303.3l-88.9,-51.3c-0.3,-0.1 -0.5,-0.4 -0.5,-0.7L179.3,151c-5.8,0.3 -11.5,0.7 -17,0.9a79.8,79.8 0,0 0,-53.3 38.7c-17.6,30.3 -13.6,68.5 9.9,94.5 6,5 12,10 17.8,14.8 0.5,0.3 1.3,0.8 1.9,1.1l61.8,35.7a10.4,10.4 0,0 0,10.5 -0l57.7,-33.5zM163.6,259.6L241.4,304.5 214.5,320c-0.3,0.2 -0.6,0.2 -0.9,0.1l-64.4,-37.2c-28.7,-16.6 -38.5,-53.3 -21.9,-81.9a59.9,59.9 0,0 1,31.2 -26.3l-0,75.8c-0,3.7 2,7.2 5.2,9.1z\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m221.39,290.65l-0.02,-102.64c-0.06,-0.31 0.1,-0.63 0.36,-0.78L308.58,137.08c-3.16,-4.87 -6.36,-9.61 -9.28,-14.27a79.8,79.8 105,0 0,-60.17 -26.81c-35.04,-0.09 -66.12,22.47 -76.89,55.82 -1.33,7.7 -2.66,15.39 -3.92,22.82 -0.01,0.58 -0.04,1.53 -0,2.2l-0.02,71.37a10.4,10.4 105,0 0,5.25 9.09l57.86,33.22zM206.68,177.78L206.7,267.61 179.82,252.06c-0.32,-0.16 -0.47,-0.42 -0.54,-0.73l0.02,-74.37c0.03,-33.15 26.91,-59.99 59.98,-59.92a59.9,59.9 105,0 1,38.38 13.87l-65.64,37.9c-3.2,1.85 -5.24,5.33 -5.28,9.05z\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m208.69,243.35l88.88,-51.34c0.24,-0.21 0.6,-0.23 0.86,-0.08L385.28,242.08c2.64,-5.17 5.14,-10.31 7.72,-15.17a79.8,79.8 75,0 0,-6.87 -65.51c-17.44,-30.39 -52.52,-46.03 -86.79,-38.68 -7.33,2.7 -14.66,5.39 -21.72,8.02 -0.51,0.28 -1.34,0.73 -1.9,1.1l-61.82,35.67a10.4,10.4 75,0 0,-5.25 9.09l0.16,66.72zM299.08,174.18L221.3,219.11 221.32,188.06c-0.02,-0.36 0.13,-0.62 0.36,-0.83l64.42,-37.17c28.73,-16.55 65.41,-6.69 81.88,21.98a59.9,59.9 75,0 1,7.18 40.17l-65.64,-37.9c-3.2,-1.85 -7.24,-1.87 -10.48,-0.05z\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/chrome.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256,256m-192,0a192,192 0,1 1,384 0a192,192 0,1 1,-384 0\"\n      android:fillColor=\"#fcc11d\"/>\n  <path\n      android:pathData=\"m94,153a192,192 90,0 0,162 295l82,-142\"\n      android:fillColor=\"#289b48\"/>\n  <path\n      android:pathData=\"m89.72,160a192,192 90,0 1,332.56 0H256l-82,146\"\n      android:fillColor=\"#e0392c\"/>\n  <path\n      android:pathData=\"M256,256m-86,0a86,86 0,1 1,172 0a86,86 0,1 1,-172 0\"\n      android:strokeWidth=\"20\"\n      android:fillColor=\"#1a73e8\"\n      android:strokeColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/chromium.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256,256m-192,0a192,192 0,1 1,384 0a192,192 0,1 1,-384 0\"\n      android:fillColor=\"#afcbfa\"/>\n  <path\n      android:pathData=\"m94,153a192,192 90,0 0,162 295l82,-142\"\n      android:fillColor=\"#669df6\"/>\n  <path\n      android:pathData=\"m89.72,160a192,192 90,0 1,332.56 0H256l-82,146\"\n      android:fillColor=\"#1967d2\"/>\n  <path\n      android:pathData=\"M256,256m-86,0a86,86 0,1 1,172 0a86,86 0,1 1,-172 0\"\n      android:strokeWidth=\"20\"\n      android:fillColor=\"#1a73e8\"\n      android:strokeColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/citrix.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M420,301a1,1 0,0 0,8 -7l-31,-35 30,-35a1,1 0,0 0,-7 -7l-29,34 -29,-34a1,1 0,0 0,-8 7l30,35 -31,35a1,1 0,0 0,8 7l29,-35ZM182,297a1,1 0,0 0,11 0L193,221a1,1 0,0 0,-11 0ZM227,226h19a1,1 0,0 0,0 -10L227,216L227,192a1,1 0,0 0,-11 0L216,297a1,1 0,0 0,11 0ZM306,227c5,0 8,-7 3,-10 -3,-2 -9,-4 -15,-4 -8,0 -15,4 -20,10v-2a1,1 0,0 0,-11 0v76a1,1 0,0 0,11 0L274,247c0,-13 7,-23 19,-23 9,0 10,3 13,3m17,70a1,1 0,0 0,10 0L333,221a1,1 0,0 0,-10 0ZM82,259c0,27 18,45 43,45 26,0 38,-18 38,-27 0,-6 -8,-8 -11,-2 -5,13 -14,19 -27,19 -19,0 -32,-14 -32,-35s14,-36 33,-36c12,0 22,7 26,17 3,7 11,5 11,-1s-10,-26 -38,-25c-25,0 -43,18 -43,45\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M390.5,194.5m-8.7,0a8.7,8.7 0,1 1,17.4 0a8.7,8.7 0,1 1,-17.4 0\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M187.8,194.5m-8.7,0a8.7,8.7 0,1 1,17.4 0a8.7,8.7 0,1 1,-17.4 0\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/citrix_compact.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512h-512z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M257.4,89.2a1,1 0,0 1,0 40.2,1 1,0 0,1 0,-40.2ZM274.1,257.3 L346.2,174.4a1,1 0,0 0,-19 -16.6l-69.8,80.3 -69.8,-80.3a1,1 0,0 0,-19 16.6l72.1,82.9 -72.1,82.9a1,1 0,0 0,19 16.6l69.8,-80.3 69.8,80.3a1,1 0,0 0,19 -16.6Z\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/clickhouse.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#faff69\"/>\n  <path\n      android:pathData=\"M100,94c0,-2.2 1.8,-4 4,-4h29c2.2,0 4,1.8 4,4v324c0,2.2 -1.8,4 -4,4h-29c-2.2,0 -4,-1.8 -4,-4zM173.65,94c0,-2.2 1.8,-4 4,-4h29c2.2,0 4,1.8 4,4v324c0,2.2 -1.8,4 -4,4h-29c-2.2,0 -4,-1.8 -4,-4zM247.3,94c0,-2.2 1.8,-4 4,-4h29c2.2,0 4,1.8 4,4v324c0,2.2 -1.8,4 -4,4h-29c-2.2,0 -4,-1.8 -4,-4zM320.95,94c0,-2.2 1.8,-4 4,-4h29c2.2,0 4,1.8 4,4v324c0,2.2 -1.8,4 -4,4h-29c-2.2,0 -4,-1.8 -4,-4zM394.6,223c0,-2.2 1.8,-4 4,-4h29c2.2,0 4,1.8 4,4v66c0,2.2 -1.8,4 -4,4h-29c-2.2,0 -4,-1.8 -4,-4\"\n      android:fillColor=\"#1e1e1e\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/clojure.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m446,281s-10,71 -104,62A122,122 180,0 0,208 144s-51,-34 -107,0A191.3,192 180,0 1,446 281\"\n      android:fillColor=\"#5881d8\"/>\n  <path\n      android:pathData=\"m66,235s20,-87 110,-71a121.4,122 0,0 0,134 201q48,16 103,1A191.5,192 0,0 1,66 235\"\n      android:fillColor=\"#63b132\"/>\n  <path\n      android:pathData=\"M225,160a100,100.8 0,0 1,91 177c-27,-1 -52,-85 -57,-104s-15,-52 -34,-73\"\n      android:fillColor=\"#90b4fe\"/>\n  <path\n      android:pathData=\"m242,241q-45,84 -45,97a101,101 0,0 1,1 -165q24,10 44,68m6,18q20,76 40,93s-32,12 -67,-1c-2,-27 7,-44 27,-92\"\n      android:fillColor=\"#91dc47\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/cloudflare.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M331,326c0,2 -2,3 -3,3H54c-2,0 -3,-1 -3,-2 -5,-26 12,-69 60,-72 -9,-37 31,-71 69,-46a97,97 0,0 1,187 11c1,3 -9,24 -9,24 -6,18 -26,32 -43,33l-150,2c-5,1 -5,7 -1,7l148,2c15,0 30,12 19,38Z\"\n      android:fillColor=\"#f38020\"/>\n  <path\n      android:pathData=\"M381,224a81,81 0,0 1,78 103l-3,2H343c-2,0 -2,-1 -2,-3 0,0 10,-35 46,-39l33,-1c5,-1 5,-7 1,-7l-32,-2c-17,-1 -25,-15 -20,-31l5,-21c1,-2 3,-1 7,-1\"\n      android:fillColor=\"#faae40\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/codeberg.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M332,440.2a192,192 0,0 0,86.8 -74.4L256,156\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"256\"\n          android:startY=\"156\"\n          android:endX=\"288.56\"\n          android:endY=\"440.2\"\n          android:type=\"linear\">\n        <item android:offset=\"0.16\" android:color=\"#FFFFFFFF\"/>\n        <item android:offset=\"0.54\" android:color=\"#FFB8E1FF\"/>\n        <item android:offset=\"1\" android:color=\"#FF9CD4FF\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"m418.6,365.8a192,192 0,1 0,-325.3 0l160.1,-207a3,3 0,0 1,5.2 0\"\n      android:fillColor=\"#2185d0\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/codepen.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m0,0H512V512H0\"/>\n  <path\n      android:pathData=\"M256,314 L431,198 256,81 81,198ZV431L431,314 256,198 81,314 256,431M81,198V314m350,0V198m-175,0V81\"\n      android:strokeLineJoin=\"round\"\n      android:strokeWidth=\"33\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/coderabbit.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0\"\n      android:fillColor=\"#D75D2C\"/>\n  <path\n      android:pathData=\"M430,214s-35,-46 -80,-49c-29,-1 -37,2 -38,5 -2,-15 -15,-84 -102,-99 11,82 57,60 84,117 0,0 -46,-64 -122,-40 0,0 28,58 110,70l8,26s-126,-66 -164,61c-29,-7 -39,25 -6,46 0,0 6,-22 19,-29 0,0 -29,33 5,72h124c3,-5 16,-31 -16,-51 23,0 42,43 62,51h30c1,-2 3,-9 -2,-16 -8,-9 -25,-8 -24,-24 6,-74 116,-51 113,-141Z\"\n      android:fillColor=\"#FEFEFE\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/coffeescript.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M114,137c-85,34 40,64 147,64s218,-27 152,-61c23,27 -54,45 -152,45s-181,-21 -147,-48m65,120c-83,-58 -132,82 -28,98 -127,40 -99,-152 9,-115m-73,-49c29,39 284,56 347,0 -22,123 -64,114 -83,184 -29,45 -162,38 -180,0 -12,-53 -57,-60 -84,-184m121,-63c21,-13 -47,-20 -47,4s46,36 85,11c20,-13 59,-23 76,-14s-31,30 -39,9c-26,4 -14,22 18,22s46,-6 47,-22 -24,-28 -53,-28c-58,0 -65,29 -98,32 -16,1 -25,-2 -25,-9s28,-9 36,-5\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/coil.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M423,377c0,35 -83,71 -140,71 -70,0 -136,-37 -170,-98 -16,-28 -24,-60 -24,-92 0,-37 11,-74 32,-106 17,-25 48,-59 104,-77 14,-5 39,-11 67,-11 79,0 129,55 129,103 0,33 -27,80 -93,80 -30,0 -41,-13 -41,-27 0,-20 18,-42 32,-42 6,0 9,6 20,4s16,-9 16,-17c0,-17 -20,-39 -62,-39 -14,0 -29,2 -48,8 -38,11 -58,38 -69,55a127.4,127.4 0,0 0,-6 130c22,40 66,64 113,64 65,0 83,-35 96,-40 23,-10 44,18 44,34z\"\n      android:fillColor=\"#000\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/colaboratory.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M244,156a127,127 0,1 0,0 200l-32,-53a66,66 0,1 1,0 -94m224,-43A1,1 0,1 0,256 346l43,-43a1,1 0,0 1,94 -94\"\n      android:fillColor=\"#f9ab00\"/>\n  <path\n      android:pathData=\"M97.7,187.5a97,97 0,0 0,0 137m179.8,0a1,1 0,0 0,137 -137\"\n      android:strokeWidth=\"60.8\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#e8710a\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/coursera.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0z\"\n      android:fillColor=\"#2254CA\"/>\n  <path\n      android:pathData=\"M112,212a170,170 0,0 1,301 -42l-69,40a85,85 0,0 0,-136 -10,85 85,0 1,0 137,102l68,41c-31,54 -109,97 -193,68a161,161 0,0 1,-108 -199z\"\n      android:fillColor=\"#FEFEFF\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/cplusplus.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M270.3,445l141.1,-81.4a30,30 0,0 0,10.4 -11l-166.3,-96 -166.3,96a30,30 0,0 0,10.4 11L240.8,445a30,30 0,0 0,29.5 0z\"\n      android:fillColor=\"#004482\"/>\n  <path\n      android:pathData=\"M89.2,352.6A30,30 0,0 1,84.9 338V175.1a30,30 0,0 1,14.8 -25.6L240.7,68a30,30 0,0 1,29.6 0l141.1,81.5a30,30 0,0 1,10.4 11Z\"\n      android:fillColor=\"#659AD2\"/>\n  <path\n      android:pathData=\"M256,256m-86,0a86,86 0,1 1,172 0a86,86 0,1 1,-172 0\"\n      android:strokeWidth=\"57\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"/>\n  <path\n      android:pathData=\"M255.5,256.6l166.3,-96.1a30,30 0,0 1,4.3 14.7V338a30,30 0,0 1,-4.3 14.6Z\"\n      android:fillColor=\"#00599C\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M350.5,237v39M331,257h39m27.5,-20v39M378,257h39\"\n      android:strokeWidth=\"13\"\n      android:strokeColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/crystal.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m46,200 l56,210 210,56 154,-154 -56,-210 -210,-56zM57,203 L262,148 207,353z\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/css3.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M72,460L30,0h451l-41,460 -184,52\"\n      android:fillColor=\"#264de4\"/>\n  <path\n      android:pathData=\"M256,37V472l149,-41 35,-394\"\n      android:fillColor=\"#2965f1\"/>\n  <path\n      android:pathData=\"m114,94h142v56H119m5,58h132v57H129m3,28h56l4,45 64,17v59L139,382\"\n      android:fillColor=\"#ebebeb\"/>\n  <path\n      android:pathData=\"m256,208v57h69l-7,73 -62,17v59l115,-32 26,-288H256v56h80l-5.5,58Z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/dart.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"\n      android:fillType=\"evenOdd\"/>\n  <path\n      android:pathData=\"M93.6,294.2c-10,-13.3 -9.5,-27.5 -0.8,-42.3l51.3,-107.2 8.1,208.6z\"\n      android:fillColor=\"#01579b\"\n      android:fillType=\"evenOdd\"/>\n  <path\n      android:pathData=\"m365.2,363.9 l-200.9,1.6 59.7,60.3 141.1,0.4z\"\n      android:fillColor=\"#40c4ff\"\n      android:fillType=\"evenOdd\"/>\n  <path\n      android:pathData=\"M297.6,99c-14.2,-15.4 -31.6,-17.1 -52.1,-5.7l-101.4,51.4v184.5c-0.5,9.2 2.6,18.8 8.1,24.2l12.3,12.2h200.7L353,155.44z\"\n      android:fillColor=\"#2cb7f6\"\n      android:fillType=\"evenOdd\"/>\n  <path\n      android:pathData=\"M426.1,365.6H365.2L144.1,144.7H329.7c8.5,-0.1 16.5,3.2 24,10.3l72.4,70.9Z\"\n      android:fillColor=\"#01579b\"\n      android:fillType=\"evenOdd\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/datacamp.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#05192d\"/>\n  <path\n      android:pathData=\"m273.2,378.4v-95.3l150.4,-85.8 -36.6,-20.9 -113.8,64.9v-95.7c0,-6.4 -3.5,-12.5 -9.1,-15.7L127.2,51.3a26.1,26.1 90,0 0,-26.5 0.8A26.1,26.1 90,0 0,88.4 74.4v268.9c0,9.1 4.6,17.5 12.3,22.3a26,26 90,0 0,26.5 0.8l109.7,-62.6L236.9,389c0,6.5 3.6,12.6 9.2,15.8l140.7,80.1 36.6,-21 -150.2,-85.5zM236.9,156.2L236.9,262l-112.2,64L124.7,91.8l112.2,64.4z\"\n      android:fillColor=\"#03EF62\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/debian.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M388,225c0.4,11 -3,17 -6,27 -10,3 -8,14 -9,17 -6,3 -35,34 -25,17 -10,7 -8,10 -24,15l-0.4,-1c-39,18 -94,-18 -94,-68 -0.4,3 -1,2 -2,3 -1,-56 64,-88 102,-54 -25,-29 -78,-31 -96,4 -10,6 -12,26 -16,29 -5,88 75,145 150,78 8,-6 16,-16 19,-17 -3,5.7 0.6,2 -2,7 6,-10 1,-31 12,-16.2 0.8,-19 22,-58 11,-23 3,-12 1,-36 6,-14 -3,-12 3,-21 5,-28 -6,-15 -18,-43 -4,-23 -29,-60 1,-35 12,5 -1,-10.81 -4.9,-21.2 -8,-31 2,1 -4,-22 3,-6 -9,-33 -38,-62 -65,-78 18,18 -52,-15 -69,-21 12,7 -61,7 -20.5,0.8 -14,-1 -32,4 -15,-5 -10.8,0.6 -25,6 -21,1 -21,11 -85,54 -67,31 -23,21 -37,36 -49,64 -79,111 -2,278 123,325 11,4 29,4 44,4 -17,-5 -20,-2 -37,-8 -12,-5 -15,-12 -24,-20 -0.7,8 -24,-0.5 -16,-10 -5,-0.4 -14,-9 -17,-14 -9,2 -17,-14 -17,-20 -1,3 -37,-33 -16,-23 -5,-5 -12,-6 -6,-12 -5,-14 -18,-20 -3,-15 -22,-15 -35,-39 -25,-40 -5,-6 -5,-11 -4,-19 -17,-37 1,-83 14,-114 -21,2 38,-50 54,-50 -2,-8 11,-18 27,-23 -1,-1 56,-26 32,-8 67,-22 141,36 145,96 4,1 -0.5,45 -1,48\"\n      android:fillColor=\"#d70751\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/deezer.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:strokeWidth=\"20\"\n      android:fillColor=\"#231f20\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M78,241h64m0,26h-64\"\n      android:strokeWidth=\"20\"\n      android:strokeColor=\"#f1796e\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M142,293H78m0,26h64m0,26H78\"\n      android:strokeWidth=\"20\"\n      android:strokeColor=\"#ec2529\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M148,293h64m0,26h-64m0,26h64\"\n      android:strokeWidth=\"20\"\n      android:strokeColor=\"#f6dd05\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M218,189h64m0,26h-64m0,26h64m0,26h-64\"\n      android:strokeWidth=\"20\"\n      android:strokeColor=\"#e78dcc\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M218,293h64m0,26h-64m0,26h64\"\n      android:strokeWidth=\"20\"\n      android:strokeColor=\"#d81996\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M288,241h64m0,26h-64\"\n      android:strokeWidth=\"20\"\n      android:strokeColor=\"#d6e465\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M288,293h64m0,26h-64m0,26h64\"\n      android:strokeWidth=\"20\"\n      android:strokeColor=\"#adda1a\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M358,163h64m0,26h-64m0,26h64m0,26h-64m0,26h64\"\n      android:strokeWidth=\"20\"\n      android:strokeColor=\"#b0d8e6\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M358,293h64m0,26h-64m0,26h64\"\n      android:strokeWidth=\"20\"\n      android:strokeColor=\"#56bbe9\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/delicious.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#333\"/>\n  <path\n      android:pathData=\"M512,512V0H0\"\n      android:fillColor=\"#39F\"/>\n  <path\n      android:pathData=\"M0,0h256v256H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256,256h256v256H256z\"\n      android:fillColor=\"#eee\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/dev_to.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m0,0H512V512H0\"/>\n  <path\n      android:pathData=\"M429.1,172.9L396.5,172.9L366.9,286.6 337.2,172.9L304.6,172.9l38.5,144.8c10.5,24.6 34.2,30.8 47.4,0ZM286.9,173L223.7,173c-11.1,0.3 -20,9.5 -19.7,20.7v125c0.3,11.2 9.5,20 20.7,19.7h62.2L286.9,308.8L233.6,308.8L233.6,270.4h32.6L266.2,240.8L233.6,240.8L233.6,202.4h53.3ZM186.2,220.3c0,-18.8 -12,-47.3 -47.4,-47.3L91.4,173L91.4,338.3h46.4c36.8,0.1 48.4,-28.4 48.4,-47.2ZM140.5,203.9c9.7,0.1 16.8,7 17.5,17.4L158,291c-0.1,8.7 -7.3,16.9 -17.5,17.4L123.1,308.4L123.1,203.9h17.4Z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/deviantart.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#232b31\"/>\n  <path\n      android:pathData=\"m358,151V91h-60l-6,6 -28,54 -9,6H154v82h56l5,6 -57,110 -3,6v60h60l6,-6 28,-54 9,-6h100v-82h-56l-5,-6\"\n      android:fillColor=\"#00e49b\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/digidentity.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:strokeLineJoin=\"round\"\n      android:strokeWidth=\"25\"\n      android:fillColor=\"#fff\"\n      android:strokeLineCap=\"round\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m213,296 l-96,95zM256,256h0.1\"\n      android:strokeLineJoin=\"round\"\n      android:strokeWidth=\"25\"\n      android:strokeColor=\"#00e864\"\n      android:strokeLineCap=\"round\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M256,63v135m0,116v135M63,256h135m116,0h135M119,119l96,96m82,82 l96,96m0,-274 l-96,96\"\n      android:strokeLineJoin=\"round\"\n      android:strokeWidth=\"25\"\n      android:strokeColor=\"#000\"\n      android:strokeLineCap=\"round\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/digitalocean.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M78,373v-47h47v104h57V300h74v147A191,191 0,1 0,65 256h74a117,117 0,1 1,117 117\"\n      android:fillColor=\"#0080ff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/discord.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M196,304a34,37 0,1 0,-1 0m63,58q-46,0 -95,-21l-7,5q7,6 31,16 -8,16 -20,32 -52,-16 -93,-47 -13,-109 54,-211 38,-18 77,-24l10,20q16,-3 42,-3Z\"\n      android:fillColor=\"#5865f2\"/>\n  <path\n      android:pathData=\"M316,304a37,34 90,1 1,1 0m-63,58q46,0 95,-21l7,5q-7,6 -31,16 8,16 20,32 52,-16 93,-47 13,-109 -54,-211 -38,-18 -77,-24l-10,20q-16,-3 -42,-3Z\"\n      android:fillColor=\"#5865f2\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/disqus.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m72,398 l28,-70a172,172 0,1 1,46 60m109,-46c127,0 127,-172 3,-172h-69v172m47,-42v-88h21c60,0 60,88 0,88\"\n      android:fillColor=\"#2e9fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/djangoproject.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#113228\"/>\n  <path\n      android:pathData=\"M227,101h56v257c-29,5 -50,8 -73,8 -69,0 -104,-31 -104,-90 0,-57 37,-93 96,-93 9,0 16,0 25,2zM227,230c-7,-2 -12,-3 -19,-3 -29,0 -45,18 -45,48s15,46 44,46c6,0 11,0 20,-2zM372,186v129c0,45 -3,66 -13,84 -9,18 -21,29 -46,42l-52,-25c25,-11 37,-22 44,-37 8,-16 11,-34 11,-83L316,186zM316,101h56v57h-56z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/docker.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M296,226h42m-92,0h42m-91,0h42m-91,0h41m-91,0h42m8,-46h41m8,0h42m7,0h42m-42,-46h42\"\n      android:strokeWidth=\"38\"\n      android:strokeColor=\"#066da5\"/>\n  <path\n      android:pathData=\"m472,228s-18,-17 -55,-11c-4,-29 -35,-46 -35,-46s-29,35 -8,74c-6,3 -16,7 -31,7H68c-5,19 -5,145 133,145 99,0 173,-46 208,-130 52,4 63,-39 63,-39\"\n      android:fillColor=\"#066da5\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/dolibarr.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#263c5c\"/>\n  <path\n      android:pathData=\"M109,418h96V190h37c74,3 77,45 77,66s-3,73 -99,67v95h33c17,0 166,-11 164,-165S255,99 243,99H109\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M375,136m-42.5,0a42.5,42.5 0,1 1,85 0a42.5,42.5 0,1 1,-85 0\"\n      android:fillColor=\"#60bbc1\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/dovecot.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m198,182 l-100,76c-2,1.6 -1.6,4.8 0.4,6.3l4,3c2,1.6 4.8,1.4 6.6,0l50,-38c2.8,-2.1 6.6,-2.1 9.3,0L201,255c2.8,2.1 6,2.1 9,0l43.5,-33.3c2.8,-2.1 2.8,-6.4 0.2,-8.4l-41,-32c-3.6,-2.8 -9.4,-3.4 -14,0m115.4,0 l-100,77c-2,1.6 -2,4.6 0,6.1l4,3c1.9,1.5 4.6,1.5 6.5,0L282,223.3c2.8,-2.1 6.6,-2.1 9.3,0l56,42.8c2.8,2.1 6.6,2.1 9.3,0l35.8,-27.4c2.8,-2 2.8,-6.3 0,-8.4l-64.2,-49c-3.6,-2.8 -9.4,-3.4 -14,0\"\n      android:fillColor=\"#4b9bd7\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/downpour.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M265,97s3,-23 -9,-23c-13,0 -9,23 -9,23 -97,-1 -179,63 -178,152 0,4 3,8 7,8 10,0 25,-25 61,-26 24,0 30,16 38,16 12,0 38,-20 72,-20v175c0,21 12,36 26,36 13,0 27,-11 27,-27 0,-8 2,-24 -8,-24 -9,0 -9,12 -9,20 0,5 -3,14 -8,14 -7,0 -10,-10 -10,-16L265,226c43,0 60,22 71,22 6,0 17,-16 42,-16 30,0 49,25 57,25 5,0 8,-5 8,-9 0,-80 -69,-151 -178,-151zM378,391c26,0 39,-21 39,-41 0,-29 -18,-45 -41,-84 -25,38 -40,52 -40,85 0,19 15,41 42,40zM143,393c27,0 40,-22 40,-42 0,-29 -16,-46 -40,-85 -24,38 -41,53 -41,86 0,19 15,41 41,41zM142,375c-11,0 -23,-8 -23,-26s17,-48 23,-48c7,0 24,29 24,49 0,16 -12,25 -24,25zM376,375c-11,-1 -23,-8 -23,-27 0,-18 17,-48 23,-48 7,0 24,30 24,50 0,15 -12,25 -24,25zM166,221c-22,-10 -48,-9 -78,8 15,-80 84,-109 130,-113 -30,28 -50,61 -52,105ZM256,113c43,24 70,59 73,111 -55,-23 -103,-19 -146,1 2,-47 24,-85 73,-112zM346,221c26,-12 52,-7 78,9 -14,-55 -44,-101 -130,-114 29,27 50,60 52,105z\"\n      android:fillColor=\"#363a7f\"\n      android:fillType=\"evenOdd\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/drawio.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0\"\n      android:fillColor=\"#f08705\"/>\n  <path\n      android:pathData=\"M512,512H176L72,406 324,70l187,194\"\n      android:fillColor=\"#df6c0c\"/>\n  <path\n      android:pathData=\"m236,188 l-58,98h-32l58,-98\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M92,286L187,286A28,28 0,0 1,215 314L215,387A28,28 0,0 1,187 415L92,415A28,28 0,0 1,64 387L64,314A28,28 0,0 1,92 286z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m276,188l58,98l32,0l-58,-98\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M420,286L325,286A28,28 0,0 0,297 314L297,387A28,28 0,0 0,325 415L420,415A28,28 0,0 0,448 387L448,314A28,28 0,0 0,420 286z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M209,60L304,60A28,28 0,0 1,332 88L332,161A28,28 0,0 1,304 189L209,189A28,28 0,0 1,181 161L181,88A28,28 0,0 1,209 60z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/dribbble.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#f9ccdd\"/>\n  <path\n      android:pathData=\"M256,256m-178,0a178,178 0,1 1,356 0a178,178 0,1 1,-356 0\"\n      android:strokeWidth=\"28\"\n      android:fillColor=\"#f9ccdd\"\n      android:strokeColor=\"#EA4C89\"/>\n  <path\n      android:pathData=\"m79,237s225,11 305,-105m49,142c-94,-33 -222,-16 -296,115\"\n      android:strokeWidth=\"28\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#EA4C89\"/>\n  <path\n      android:pathData=\"M192,90c78,100 127,206 145,324\"\n      android:strokeWidth=\"32\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#EA4C89\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/drone.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m207,170a97,98 0,0 0,135 135l67,67A192,192 0,1 1,140 103m34,-20.6a192,192 0,0 1,255.4 256L369,278A97,98 0,0 0,234 143m53,23a58,58 0,1 0,2 0\"\n      android:fillColor=\"#1e375a\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/dropbox.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m158,101 l-99,63 295,188 99,-63m-99,-188 l99,63 -295,188 -99,-63m99,83 l98,63 98,-63 -98,-62z\"\n      android:fillColor=\"#0061ff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/drupal.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M309.45,158.62c-23.84,-23.84 -46.71,-46.59 -53.45,-72.35 -6.74,25.64 -29.61,48.4 -53.45,72.35 -35.87,35.75 -76.44,76.32 -76.44,137.23 0,71.74 58.14,129.88 129.89,129.88s130,-58.14 130,-129.89c0,-60.91 -40.8,-101.48 -76.55,-137.23m-128.2,167.45c-7.95,-0.24 -37.32,-50.92 17.21,-104.85l36.11,39.36c1.2,1.2 1.2,3.13 0,4.33 -10.34,10.34 -45.63,46.21 -50.08,58.63 -0.96,2.65 -2.41,2.53 -3.25,2.53m30.1,22.15c0,-11.31 4.45,-21.43 11.07,-29.49 8.07,-9.87 33.59,-37.56 33.59,-37.56s25.04,28.17 33.47,37.44c7.34,8.06 11.31,18.66 11.19,29.61a44.66,44.66 0,0 1,-89.32 0m124.65,-22.02c-5.3,0.24 -5.78,-2.53 -9.75,-8.31 -8.55,-12.64 -82.95,-90.4 -96.91,-105.45 -12.28,-13.24 -1.68,-22.51 3.13,-27.45 6,-6 24,-23.98 24,-23.98s53,49.98 75.48,84.98c21,30 17,73.62 4,80\"\n      android:fillColor=\"#009cde\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/druplicon.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M383,152A175,175 0,1 1,102 355\"\n      android:fillColor=\"#00598e\"/>\n  <path\n      android:pathData=\"M243,97V48c26,31 40,47 84,65 21,9 40,21 56,38 19,25 27,97 -91,166s-155,72 -190,38c-44,-79 -8,-159 9,-181\"\n      android:fillColor=\"#0073ba\"/>\n  <path\n      android:pathData=\"M243,86V50s18,36 -6,52c31,31 -186,161 -115,59\"\n      android:fillColor=\"#93c5e4\"/>\n  <path\n      android:pathData=\"M221,104c42,7 -104,105 -105,75 0,-15 23,-38 40,-50s87,-29 86,-79c0,0 24,38 -21,54m1,171c-70,0 -100,106 -10,106 36,0 86,-47 110,-47s45,45 62,45c32,0 58,-97 12,-97 -19,0 -59,40 -75,38 -29,-4 -56,-45 -99,-45m20,142c25,19 79,14 103,-4 6,-5 3,-14 -3,-9 -17,14 -74,18 -92,2 -5,-5 -19,3 -8,11m42,-32c6,-5 11,-13 26,-13s20,11 23,14 9,-2 6,-8 -6,-17 -28,-17 -30,14 -34,17 -2,14 7,7\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M186,113a175,175 0,1 0,141 0c-44,-18 -58,-34 -84,-65 -4,41 -26,50 -57,65\"\n      android:strokeWidth=\"4\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#004975\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/duckduckgo.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"256dp\"\n    android:height=\"256dp\"\n    android:viewportWidth=\"256\"\n    android:viewportHeight=\"256\">\n  <path\n      android:pathData=\"m0,0L256,0L256,256L0,256\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M128,128m-108,0a108,108 0,1 1,216 0a108,108 0,1 1,-216 0\"\n      android:fillColor=\"#d53\"/>\n  <path\n      android:pathData=\"M128,128m-96,0a96,96 0,1 1,192 0a96,96 0,1 1,-192 0\"\n      android:strokeWidth=\"7\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"/>\n  <path\n      android:pathData=\"M120,71s-15,-6 -39,-5c0,-7 11,-7 11,-7l-11,-4h8M103,218 L96,215 77,122S66,80 96,73\"\n      android:fillColor=\"#ddd\"/>\n  <path\n      android:pathData=\"M101,221 L80,101s-6,-30 31,-33c-9,-8 -30,-3 -28,-5s9,-4 9,-4l-7,-4s29,-4 44,15c0,0 31,9 31,46S129,113 129,160C129,185 153,223 153,223\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M153,127l38,-10c34,5 -26,25 -33,23C128,135 137,160 173,152s9,20 -24,9C102,148 127,125 153,127\"\n      android:fillColor=\"#fc0\"/>\n  <path\n      android:pathData=\"M143,206l2,-3c22,8 23,11 22,-9s0,-20 -23,-3c0,-5 -13,-3 -15,0 -21,-9 -23,-12 -22,2 2,29 1,24 21,14\"\n      android:fillColor=\"#6b5\"/>\n  <path\n      android:pathData=\"M129,193S129,205 130,206s13,-2 14,-1S130,210 127,207L127,194\"\n      android:fillColor=\"#4a4\"/>\n  <path\n      android:pathData=\"M142,112a6,6 0,1 1,0 1m6,-3a2,2 0,1 0,0 -1m-52,6a7,7 0,1 1,0 1m8,-3a2,2 0,1 0,0 -1M137,96c4,-3 10,-3 14,-1 -3,-6 -13,-5 -14,1m-32,0c-7,-3 -14,3 -15,7 -3,-8 10,-13 15,-7\"\n      android:fillColor=\"#148\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/ea.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m158,172 l-21,34 137,-1 21,-33zM323,172 L238,306h-94l22,-33h58l21,-33L116,240l-22,33h31l-42,67h174l66,-105 24,38h-21l-21,33h63l21,34h40z\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/ebay.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M97,222c-16,0 -32,10 -32,28h62c0,-17 -12,-28 -30,-28ZM98,208c41,0 52,27 52,44v12L65,264c0,18 13,31 32,31 24,0 28,-17 28,-17h23s-3,30 -49,30c-39,0 -56,-18 -56,-49 0,-39 25,-51 55,-51Z\"\n      android:fillColor=\"#e53238\"/>\n  <path\n      android:pathData=\"M150,171v119l-1,16h22l1,-14s10,17 39,17c30,0 50,-21 50,-51 0,-28 -18,-50 -50,-50 -31,0 -39,16 -39,16v-53zM205,223c21,0 33,15 33,35 0,22 -15,36 -33,36 -22,0 -33,-17 -33,-35s10,-36 33,-36z\"\n      android:fillColor=\"#0064d2\"/>\n  <path\n      android:pathData=\"M339,260c-34,0 -58,0 -58,17 0,10 7,18 23,18 39,0 35,-35 35,-35ZM314,208c22,0 47,6 47,36v62L341,306l-1,-14s-9,17 -41,17c-23,0 -40,-12 -40,-32s18,-31 53,-31h27s4,-24 -27,-24c-22,0 -24,14 -24,14L266,236c0,-3 2,-28 48,-28Z\"\n      android:fillColor=\"#f5af03\"/>\n  <path\n      android:pathData=\"M348,212h25l37,72 36,-72h23l-65,129h-24l18,-36z\"\n      android:fillColor=\"#86b817\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/ecosia.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0\"\n      android:fillColor=\"#008009\"/>\n  <path\n      android:pathData=\"M388,286c34,-5 92,25 45,93 -31,45 -100,51 -131,51H279s0,0 0,0 0,0 0,0 0,0 0,0 0,0 0,0c-1,31 28,125 31,135 0,0 0,0 0,0s0,0 0,0 0,0 0,0 0,0 0,0H214s0,0 0,0 0,0 0,0c0,-8 1,-94 11,-135 0,0 0,0 0,0s0,0 0,0 0,0 0,0 0,0 0,0h-9c-49,0 -127,-7 -148,-74 -31,-99 43,-135 74,-106 0,0 0,0 0,0s0,0 0,0 0,0 0,0 0,0 0,0c-7,-20 -46,-146 56,-181 89,-30 174,31 161,112 0,0 0,0 0,0s0,0 0,0 0,0 0,0 0,0 0,0c6,-5 34,-25 62,-3 27,21 18,80 -35,107 0,0 0,0 0,0s0,0 0,1c0,0 0,0 0,0s0,0 1,0Z\"\n      android:fillColor=\"#F0F0EB\"/>\n  <path\n      android:pathData=\"M324,144v71h-85v27h55v27h-55v27h85v71H187V144H324Z\"\n      android:fillColor=\"#008009\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/edge.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m233,214s-25,12 -25,42a133,112 0,0 0,202 94,6 6,0 0,1 9,7C316,514 90,454 187,237\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:centerX=\"254.73\"\n          android:centerY=\"364\"\n          android:gradientRadius=\"164.73\"\n          android:type=\"radial\">\n        <item android:offset=\"0.8\" android:color=\"#FF115599\"/>\n        <item android:offset=\"1\" android:color=\"#FF114488\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"m300,153H94a192,192 0,0 0,220 286,116 120.3,-2 0,1 -74,-228 48,49 0,0 1,64 41\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:centerX=\"188.25\"\n          android:centerY=\"361.55\"\n          android:gradientRadius=\"208.55\"\n          android:type=\"radial\">\n        <item android:offset=\"0.8\" android:color=\"#FF1188DD\"/>\n        <item android:offset=\"1\" android:color=\"#FF0077AA\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"M64,253c4,-110 186,-138 233,-31 26,70 -34,65 3,88 71,30 159,-7 147,-102C400,3 75,16 64,253\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:centerX=\"103.5\"\n          android:centerY=\"70.4\"\n          android:gradientRadius=\"395\"\n          android:type=\"radial\">\n        <item android:offset=\"0.4\" android:color=\"#FF33CCEE\"/>\n        <item android:offset=\"1\" android:color=\"#FF33CC55\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"m242,58c251,14 262,290 86,248\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:centerX=\"477.8\"\n          android:centerY=\"203\"\n          android:gradientRadius=\"145\"\n          android:type=\"radial\">\n        <item android:offset=\"0\" android:color=\"#FF66EE77\"/>\n        <item android:offset=\"1\" android:color=\"#0066EE77\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/elastic.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M188.8,180.3l15.1,-76.9a101.6,99.7 0,0 1,183.5 76l-90.9,78.1 -90.1,-40.3Z\"\n      android:fillColor=\"#ffd00a\"/>\n  <path\n      android:pathData=\"m113.1,310.8a103.4,101.4 0,0 0,-2 19.9,101.9 99.9,0 0,0 186.1,56.2l15,-76.7 -20,-37.5 -90.5,-40.4z\"\n      android:fillColor=\"#20b9af\"/>\n  <path\n      android:pathData=\"m112.6,157.9 l61.7,14.3 13.5,-68.9a48.8,47.8 0,0 0,-75.2 54.6\"\n      android:fillColor=\"#ee5096\"/>\n  <path\n      android:pathData=\"M174.9,188l15.9,33.3 -86.6,76.8a68.1,66.8 0,0 1,3 -125.8Z\"\n      android:fillColor=\"#12a5df\"/>\n  <path\n      android:pathData=\"m313.1,386.9a48.7,47.8 0,0 0,75.1 -54.5l-61.7,-14.2z\"\n      android:fillColor=\"#90c640\"/>\n  <path\n      android:pathData=\"M307.6,268.7l88.8,-76.4a68,66.7 0,0 1,43.9 62.3A68.7,67.4 0,0 1,393.5 318l-67.9,-15.6Z\"\n      android:fillColor=\"#05799f\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/element.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256,256m-192,0a192,192 0,1 1,384 0a192,192 0,1 1,-384 0\"\n      android:fillColor=\"#0dbd8b\"/>\n  <path\n      android:pathData=\"M195.5,277.1c0,43.8 35.2,81.6 81.6,81.6m0,-42.3c43.8,0 81.1,-35.2 81.6,-81.6m-42.3,0c0,-43.8 -35.2,-81.1 -81.6,-81.6m0,42.3c-43.8,0 -81.1,35.2 -81.6,81.6\"\n      android:strokeWidth=\"28.155\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"\n      android:strokeLineCap=\"round\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/elementaryos.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256,256m-180,0a180,180 0,1 1,360 0a180,180 0,1 1,-360 0\"\n      android:strokeWidth=\"16\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#000\"/>\n  <path\n      android:pathData=\"M123,365c129,-29 220,-136 206,-203 -14,-65 -93,-72 -149,-18 -59,58 -58,164 0,203 91,61 192,-18 247,-113 -1,-12 -2,-16 -5,-25 -57,108 -149,165 -219,127 -68,-37 -52,-133 -11,-181 63,-73 136,-23 119,46 -7,28 -60,125 -201,146 -1,7 6,20 13,18z\"\n      android:fillColor=\"#000\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/email.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#008080\"/>\n  <path\n      android:pathData=\"M118.96,128L393.04,128A40.96,40.96 0,0 1,434 168.96L434,343.04A40.96,40.96 0,0 1,393.04 384L118.96,384A40.96,40.96 0,0 1,78 343.04L78,168.96A40.96,40.96 0,0 1,118.96 128z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M305,256 L434,384M207,256 L78,384m0,-256L243,292c7,8 19,8 26,0L434,128\"\n      android:strokeWidth=\"20\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#008080\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/endeavouros.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M285,111.36c31,44.7 161.53,217.54 72.62,253.57 -41.53,19.47 -230.76,-11.43 -228,-6.38l-24.37,41.01s145.92,6.7 258.6,-8.8c160.85,-22 -33.12,-232.1 -78.73,-279.2z\"\n      android:fillColor=\"#7f7fff\"/>\n  <path\n      android:pathData=\"M285,111.36C274.7,112.81 85.47,350.38 85.47,350.38s13.65,3.95 44.66,8.52c10,-7.97 151.35,-250.8 155.43,-247.33 -0.1,-0.1 -0.2,-0.13 -0.36,-0.11z\"\n      android:fillColor=\"#ff7f7f\"/>\n  <path\n      android:pathData=\"M285,111.36c-6.5,-1.08 -155.4,247.34 -155.4,247.34s135.06,14.55 190.71,13.58c156.78,-2.7 1.2,-212 -35,-261.18a0.3,0.3 0,0 0,-0.17 -0.1z\"\n      android:fillColor=\"#7f3fbf\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/ente_auth.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"65\"\n          android:startY=\"39\"\n          android:endX=\"509\"\n          android:endY=\"491\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FFC373F2\"/>\n        <item android:offset=\"1\" android:color=\"#FF9610D6\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"m256,82 l-143,61v96a198,198 90,0 0,143 188,198 198,90 0,0 143,-191v-96zM256,178q41,3 44,37v24q17,3 21,20v58q-4,14 -21,17h-88q-17,-3 -21,-20v-55a21,21 90,0 1,21 -20v-24c0,-20 24,-37 44,-37m0,17q-21,3 -24,20v24h48v-24q0,-17 -24,-20\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/epub.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#FFF\"/>\n  <path\n      android:pathData=\"M256,377L135,256l121,-121 40,41 -80,80 40,40 121,-120L272,70c-9,-8 -23,-8 -32,0L70,240c-8,9 -8,23 0,32l170,170c9,8 23,8 32,0l170,-170c8,-9 8,-23 0,-32l-25,-24z\"\n      android:fillColor=\"#86b918\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/espressif.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#ff3034\"/>\n  <path\n      android:pathData=\"M126,120.53a1,1 0,0 0,266.53 266.52,1 1,0 1,1 10.87,10.87A1,1 0,0 1,115.14 109.66,1 1,0 0,1 126,120.53m52.5,240.22a26,26 0,1 0,0 1M409,334A273,273 0,0 0,177.5 102.5,150 150,0 0,0 139,130v26a216,216 0,0 1,217 216h26a111,111 0,0 0,27 -39M240,83l-4,12a298,298 0,0 1,181 180l11,-4A172,172 0,0 0,240 83zM245,425a118,118 0,0 0,-95 -171,1 1,0 0,1 3,-21 140,140 0,0 1,120 177l31,9 26.5,-10a195,195 0,0 0,-163 -230,1 1,0 1,0 -18,131.5 63,63 0,0 1,42 95.5l21,14z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/ethereum.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m256,362v107l131,-185\"\n      android:fillColor=\"#3C3C3B\"/>\n  <path\n      android:pathData=\"m256,41v296l131,-78\"\n      android:fillColor=\"#343434\"/>\n  <path\n      android:pathData=\"m256,41v218H124m0,25 l132,78v107\"\n      android:fillColor=\"#8C8C8C\"/>\n  <path\n      android:pathData=\"m256,199v138l131,-78\"\n      android:fillColor=\"#141414\"/>\n  <path\n      android:pathData=\"m124,259l132,-60v138\"\n      android:fillColor=\"#393939\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/etsy.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M218,137q0,-6 8,-6h94q23,0 31,40l5,20h16q3,-67 5,-86 -41,5 -64,5H194l-64,-2v17l22,4c16,2 19,6 20,20q2,108 0,216c0,12 -5,17 -20,19l-22,4v17l64,-2h107q31,0 81,2 5,-44 11,-89h-16l-16,36c-13,29 -31,30 -52,30h-61q-30,0 -30,-25v-93q43,0 60,1 18,0 22,20l5,22h18l-1,-53 2,-54h-18l-6,24c-4,16 -6,18 -22,20q-17,2 -60,1z\"\n      android:fillColor=\"#f2521b\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/evernote.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m157,143q3,0 3,-4l-1,-38q0,-9 6,-19h-1L96,149v1q12,-7 25,-7zM392,137q-5,-21 -20,-25 -52,-13 -98,-11 -2,-29 -54,-29 -50,-2 -49,29v39q0,13 -14,13L123,153q-9,0 -18,4 -14,6 -14,30c-1,19 13,95 23,115 3,9 6,12 14,15q21,10 73,18c17,2 28,6 36,-8q10,-28 9,-52a1,1 0,0 1,2 0q-1,37 19,43l45,9q29,0 28,49c0,25 -6,28 -34,28 -22,0 -30,1 -30,-17q0,-15 25,-13c4,0 1,-3 1,-12s5,-14 0,-14c-36,-1 -58,0 -58,45 0,42 16,49 68,49 40,0 55,-1 71,-52q30,-105 9,-253zM346,252c-5,-6 -31,-8 -40,-4 2,-10 6,-22 22,-22 15,0 18,16 18,26z\"\n      android:fillColor=\"#00a82d\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/expressionengine.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m308,293c-24.3,24.3 -38.2,28 -55.3,28.4 -30,0.7 -36.2,-28.4 -35.5,-39l0.8,-12.3c74.4,-12.6 92.7,-28.8 100.6,-40 18.3,-25.3 7.2,-43.3 -2,-49.5 -22,-19.7 -72.7,-5.2 -90,4 -48,25.8 -56.8,70.4 -56.3,88.3 -1.2,36 25.5,63.5 67,63.2 41.7,1 67.5,-25.5 79,-37.2zM219.6,260.7c11.5,-68.4 39,-78 49.7,-78.6 15.4,-0.3 18.6,16.6 17.5,22.4 -1.8,35.4 -38,53 -66.2,56z\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m76,165 l32,19.6c-140.5,131.3 4,237.6 156.6,207 -179.3,3.3 -210.3,-190.8 -65.5,-258.4z\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m436,347l-32,-19.6c140.5,-131.3 -4,-237.6 -156.6,-207 179.3,-3.3 210.3,190.8 65.5,258.4z\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/expressjs.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512h-512z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M450.4,359.5c-15.3,2.7 -24.3,0 -32.4,-12.6 -18,-27 -38.7,-54 -57.6,-81l-8.1,-10.8c-24.3,31.5 -47.7,61.2 -68.4,91.8 -8.1,11.7 -16.2,16.2 -30.6,12.6l87.3,-117.9 -81.9,-105.3c14.4,-2.7 24.3,-1.8 32.4,11.7 18.9,27 39.6,53.1 61.2,81l60.3,-81c8.1,-11.7 16.2,-15.3 29.7,-11.7l-31.5,42.3 -42.3,54.9c-5.4,6.3 -4.5,10.8 0,17.1l81.9,108.9zM44.5,239.8c1.8,-10.8 3.6,-23.4 7.2,-34.2 18.9,-70.2 99,-99 153.9,-55.8 32.4,25.2 40.5,60.3 38.7,100.8L62.5,250.6c-2.7,72 49.5,115.2 116.1,93.6 22.5,-8.1 36,-26.1 43.2,-48.6 3.6,-11.7 9,-13.5 19.8,-9.9 -5.4,27.9 -18,51.3 -44.1,66.6 -38.7,22.5 -94.5,15.3 -123.3,-16.2 -17.1,-18 -24.3,-39.6 -27.9,-63.9l-2.7,-11.7l0,-19.8zM63.4,235.3l163.8,0c-1.8,-52.2 -34.2,-89.1 -77.4,-89.1 -48.6,-0.9 -84.6,36 -86.4,89.1z\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/f-droid.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m77,74q-5,7 2,15L106,124h7\"\n      android:fillColor=\"#681\"/>\n  <path\n      android:pathData=\"M122,112 L95,77q-8,-11 -17,-4c-5,5 -3,6 30,47\"\n      android:fillColor=\"#9b0\"/>\n  <path\n      android:pathData=\"m435,74q5,7 -2,15L406,124l-7,0\"\n      android:fillColor=\"#681\"/>\n  <path\n      android:pathData=\"M390,112L417,77q8,-11 17,-4c5,5 3,6 -30,47\"\n      android:fillColor=\"#9b0\"/>\n  <path\n      android:pathData=\"M128,108L384,108A24,24 0,0 1,408 132L408,132A24,24 0,0 1,384 156L128,156A24,24 0,0 1,104 132L104,132A24,24 0,0 1,128 108z\"\n      android:fillColor=\"#c6f04c\"/>\n  <path\n      android:pathData=\"M128,164L384,164A24,24 0,0 1,408 188L408,188A24,24 0,0 1,384 212L128,212A24,24 0,0 1,104 188L104,188A24,24 0,0 1,128 164z\"\n      android:fillColor=\"#93c50b\"/>\n  <path\n      android:pathData=\"M128,116L384,116A24,20 0,0 1,408 136L408,184A24,20 0,0 1,384 204L128,204A24,20 0,0 1,104 184L104,136A24,20 0,0 1,128 116z\"\n      android:fillColor=\"#aeea00\"/>\n  <path\n      android:pathData=\"M128,220L384,220A24,24 0,0 1,408 244L408,244A24,24 0,0 1,384 268L128,268A24,24 0,0 1,104 244L104,244A24,24 0,0 1,128 220z\"\n      android:fillColor=\"#4791db\"/>\n  <path\n      android:pathData=\"M128,380L384,380A24,24 0,0 1,408 404L408,404A24,24 0,0 1,384 428L128,428A24,24 0,0 1,104 404L104,404A24,24 0,0 1,128 380z\"\n      android:fillColor=\"#1c68b3\"/>\n  <path\n      android:pathData=\"M128,228L384,228A24,22 0,0 1,408 250L408,398A24,22 0,0 1,384 420L128,420A24,22 0,0 1,104 398L104,250A24,22 0,0 1,128 228z\"\n      android:fillColor=\"#1976d2\"/>\n  <path\n      android:pathData=\"M152,161a27,31 0,1 0,54 0a27,31 0,1 0,-54 0z\"\n      android:fillColor=\"#93c50b\"/>\n  <path\n      android:pathData=\"M179,165m-27,0a27,27 0,1 1,54 0a27,27 0,1 1,-54 0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M308,161a27,31 0,1 0,54 0a27,31 0,1 0,-54 0z\"\n      android:fillColor=\"#93c50b\"/>\n  <path\n      android:pathData=\"M335,165m-27,0a27,27 0,1 1,54 0a27,27 0,1 1,-54 0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m172,325a84,84 0,1 0,0 -2m15,0a69,69 0,1 1,0 2m21,-13a50,50 0,1 1,0 24h25a26,26 0,1 0,0 -24\"\n      android:fillColor=\"#0d47a1\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/facebook.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m331,312h-45v134a192,192 0,1 0,-60 0V312h-49v-56h49v-45q4,-89 116,-68v47h-26q-29,1 -30,30v36h53.5\"\n      android:fillColor=\"#1877f2\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/fediverse.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m0,0H512V512H0\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m106,179 l31,197\"\n      android:strokeWidth=\"25\"\n      android:strokeColor=\"#d0188f\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m137,375 l201,32\"\n      android:strokeWidth=\"25\"\n      android:strokeColor=\"#5b36e9\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m423,229 l-90,178\"\n      android:strokeWidth=\"25\"\n      android:strokeColor=\"#30b873\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m282,88 l141,141\"\n      android:strokeWidth=\"25\"\n      android:strokeColor=\"#ebe305\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m105,179 l178,-90\"\n      android:strokeWidth=\"25\"\n      android:strokeColor=\"#f47601\"/>\n  <path\n      android:pathData=\"m276,125h25l12,70 -26,-4m31,39 l-26,-4 23,146h25\"\n      android:fillColor=\"#57c115\"/>\n  <path\n      android:pathData=\"m164,347v28l136,-69 -4,-26m36,10 l-4,-26 67,-34v28\"\n      android:fillColor=\"#5496be\"/>\n  <path\n      android:pathData=\"m125,180v35l97,98 23,-12m2,37 l23,-12 45,45v35\"\n      android:fillColor=\"#a730b8\"/>\n  <path\n      android:pathData=\"m254,118h28l-72,141 -19,-19m3,51 l-19,-19 -39,77h28\"\n      android:fillColor=\"#ce3d1a\"/>\n  <path\n      android:pathData=\"m137,171v25l66,11 12,-23m24,29 l12,-24 140,23v25\"\n      android:fillColor=\"#dbb210\"/>\n  <path\n      android:pathData=\"M106,179m-39,0a39,39 0,1 1,78 0a39,39 0,1 1,-78 0\"\n      android:strokeWidth=\"3.5\"\n      android:fillColor=\"#ff0000\"\n      android:strokeColor=\"#000\"/>\n  <path\n      android:pathData=\"M333,406m-39,0a39,39 0,1 1,78 0a39,39 0,1 1,-78 0\"\n      android:strokeWidth=\"3.5\"\n      android:fillColor=\"#00a3ff\"\n      android:strokeColor=\"#000\"/>\n  <path\n      android:pathData=\"M137,375m-39,0a39,39 0,1 1,78 0a39,39 0,1 1,-78 0\"\n      android:strokeWidth=\"3.5\"\n      android:fillColor=\"#9500ff\"\n      android:strokeColor=\"#000\"/>\n  <path\n      android:pathData=\"M283,88.5m-39,0a39,39 0,1 1,78 0a39,39 0,1 1,-78 0\"\n      android:strokeWidth=\"3.5\"\n      android:fillColor=\"#fc0\"\n      android:strokeColor=\"#000\"/>\n  <path\n      android:pathData=\"M423,230m-39,0a39,39 0,1 1,78 0a39,39 0,1 1,-78 0\"\n      android:strokeWidth=\"3.5\"\n      android:fillColor=\"#6f0\"\n      android:strokeColor=\"#000\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/fedora.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M0,256a256,256 0,1 1,256 256L58,512c-32,0 -58,-26 -58,-58zM360,190c0,-45 -40,-77 -81,-77 -38,0 -72,30 -77,66v10l-1,71v84c0,30 -20,50 -49,50 -28,0 -50,-22 -50,-50 0,-30 25,-50 53,-50l30,-1v-41h-30c-52,0 -92,41 -94,92a93,93 0,0 0,185 8v-59h37c27,0 27,-42 0,-41h-37v-63c0,-18 18,-34 37,-34s39,9 39,34v7q1,17 19,20c11,2 21,-6 19,-20v-12z\"\n      android:fillColor=\"#51a2da\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/figma.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M196,436c33.12,0 60,-26.88 60,-60v-60H196c-33.12,0 -60,26.88 -60,60s26.88,60 60,60z\"\n      android:fillColor=\"#0acf83\"/>\n  <path\n      android:pathData=\"M136,256c0,-33.12 26.88,-60 60,-60h60v120h-60c-33.12,0 -60,-26.88 -60,-60z\"\n      android:fillColor=\"#a259ff\"/>\n  <path\n      android:pathData=\"M136,136c0,-33.12 26.88,-60 60,-60h60v120h-60c-33.12,0 -60,-26.88 -60,-60z\"\n      android:fillColor=\"#f24e1e\"/>\n  <path\n      android:pathData=\"M256,76h60c33.12,0 60,26.88 60,60s-26.88,60 -60,60h-60V76z\"\n      android:fillColor=\"#ff7262\"/>\n  <path\n      android:pathData=\"M376,256c0,33.12 -26.88,60 -60,60s-60,-26.88 -60,-60 26.88,-60 60,-60 60,26.88 60,60z\"\n      android:fillColor=\"#1abcfe\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/filestash.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#7ec4e7\"/>\n  <path\n      android:pathData=\"m256,282a81,79 0,1 1,0 -2za81,79 0,1 1,81 78H175m0,-158a81,79 0,1 1,162 0\"\n      android:strokeWidth=\"35\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#f2f3f5\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/finder.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"0\"\n          android:startY=\"512\"\n          android:endX=\"0\"\n          android:endY=\"0\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FFDBE9F4\"/>\n        <item android:offset=\"1\" android:color=\"#FFF7F6F6\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"m0,0h262q-65,162 -64,286c0,7 6,13 13,13h64q-6,113 28,213H0\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"0\"\n          android:startY=\"512\"\n          android:endX=\"0\"\n          android:endY=\"0\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FF1E73F2\"/>\n        <item android:offset=\"1\" android:color=\"#FF19D3FD\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"m133.5,157.5v34m226.5,-34v34\"\n      android:strokeWidth=\"21\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#222\"\n      android:strokeLineCap=\"round\"/>\n  <path\n      android:pathData=\"m394,345c-55,81 -241,81 -295.5,0\"\n      android:strokeWidth=\"17\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#222\"\n      android:strokeLineCap=\"round\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/firebase.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M200.9,422.7a139,139 0,0 0,112.3 -2.8,201 201,0 0,1 -62.8,-39.4 105,105 0,0 1,-49.5 42.2\"\n      android:fillColor=\"#ff9100\"/>\n  <path\n      android:pathData=\"M250.4,380.5a200,200 0,0 1,-64.2 -153.9l0.3,-6a107,107 0,0 0,-55.8 0.7,141.4 141.4,0 0,0 70.2,201.4 105,105 0,0 0,49.5 -42.2\"\n      android:fillColor=\"#ffc400\"/>\n  <path\n      android:pathData=\"M250.4,380.5a107,107 0,0 0,-63.9 -159.8l-0.3,5.9a200,200 0,0 0,64.2 153.9\"\n      android:fillColor=\"#ff9100\"/>\n  <path\n      android:pathData=\"M261.1,77.4a202,202 0,0 0,-74.6 143.3,107 107,0 0,1 63.9,159.8c18.1,17 39.3,30 62.7,39.5 46.8,-21.6 80,-68.5 82,-123.6 1.3,-36 -12.6,-67.8 -32.1,-94.8 -20.6,-28.4 -102,-124.2 -102,-124.2\"\n      android:fillColor=\"#dd2c00\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/firefox.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256,212S224,108 320,56c24,48 92,112 104,148 0,-24 -20,-60 -20,-60A192,204 90,1 1,56 272S152,140 188,132c-8,28 4,64 4,64\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"343.77\"\n          android:startY=\"56\"\n          android:endX=\"178.27\"\n          android:endY=\"392.04\"\n          android:type=\"linear\">\n        <item android:offset=\"0.3\" android:color=\"#FFFFDD55\"/>\n        <item android:offset=\"0.6\" android:color=\"#FFFF8855\"/>\n        <item android:offset=\"1\" android:color=\"#FFDD0066\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"M256,268m-104,0a104,104 0,1 1,208 0a104,104 0,1 1,-208 0\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:centerX=\"235.2\"\n          android:centerY=\"309.6\"\n          android:gradientRadius=\"104\"\n          android:type=\"radial\">\n        <item android:offset=\"0.4\" android:color=\"#FF7744DD\"/>\n        <item android:offset=\"1\" android:color=\"#FFAA22DD\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"M84,180l172,48c-24,44 -64,12 -92,56a88,88 74.69,1 0,136 -80s132,12 68,168L112,372m144,100l4,0\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"327.6\"\n          android:startY=\"180\"\n          android:endX=\"188.4\"\n          android:endY=\"413.6\"\n          android:type=\"linear\">\n        <item android:offset=\"0.3\" android:color=\"#FFFFDD55\"/>\n        <item android:offset=\"0.6\" android:color=\"#FFFF8855\"/>\n        <item android:offset=\"1\" android:color=\"#FFDD0066\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"M140,172c64,0 48,28 116,56 -72,24 -92,-36 -152,0 20,36 48,32 48,32 4,172 288,116 268,-68A186.4,200 82.9,0 1,68 324c-36,-72 -4,-160 64,-204\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"358.4\"\n          android:startY=\"182.4\"\n          android:endX=\"195.2\"\n          android:endY=\"369.6\"\n          android:type=\"linear\">\n        <item android:offset=\"0.2\" android:color=\"#FFFFDD55\"/>\n        <item android:offset=\"1\" android:color=\"#FFFF3333\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/fitbit.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M87.4,256m-23.4,0a23.4,23.4 0,1 1,46.8 0a23.4,23.4 0,1 1,-46.8 0\"\n      android:fillColor=\"#00b0b9\"/>\n  <path\n      android:pathData=\"M168,256m-27.3,0a27.3,27.3 0,1 1,54.6 0a27.3,27.3 0,1 1,-54.6 0\"\n      android:fillColor=\"#00b0b9\"/>\n  <path\n      android:pathData=\"M248.3,256m-31.1,0a31.1,31.1 0,1 1,62.2 0a31.1,31.1 0,1 1,-62.2 0\"\n      android:fillColor=\"#00b0b9\"/>\n  <path\n      android:pathData=\"M327.7,256m-35,0a35,35 0,1 1,70 0a35,35 0,1 1,-70 0\"\n      android:fillColor=\"#00b0b9\"/>\n  <path\n      android:pathData=\"M409.2,256m-38.8,0a38.8,38.8 0,1 1,77.6 0a38.8,38.8 0,1 1,-77.6 0\"\n      android:fillColor=\"#00b0b9\"/>\n  <path\n      android:pathData=\"M248.3,92.8m-28.8,0a28.8,28.8 0,1 1,57.6 0a28.8,28.8 0,1 1,-57.6 0\"\n      android:fillColor=\"#00b0b9\"/>\n  <path\n      android:pathData=\"M248.3,419.3m-28.8,0a28.8,28.8 0,1 1,57.6 0a28.8,28.8 0,1 1,-57.6 0\"\n      android:fillColor=\"#00b0b9\"/>\n  <path\n      android:pathData=\"M168,174.4m-26.1,0a26.1,26.1 0,1 1,52.2 0a26.1,26.1 0,1 1,-52.2 0\"\n      android:fillColor=\"#00b0b9\"/>\n  <path\n      android:pathData=\"M248.3,174.4m-30,0a30,30 0,1 1,60 0a30,30 0,1 1,-60 0\"\n      android:fillColor=\"#00b0b9\"/>\n  <path\n      android:pathData=\"M327.7,174.4m-33.8,0a33.8,33.8 0,1 1,67.6 0a33.8,33.8 0,1 1,-67.6 0\"\n      android:fillColor=\"#00b0b9\"/>\n  <path\n      android:pathData=\"M168,337.6m-26.1,0a26.1,26.1 0,1 1,52.2 0a26.1,26.1 0,1 1,-52.2 0\"\n      android:fillColor=\"#00b0b9\"/>\n  <path\n      android:pathData=\"M248.3,337.6m-30,0a30,30 0,1 1,60 0a30,30 0,1 1,-60 0\"\n      android:fillColor=\"#00b0b9\"/>\n  <path\n      android:pathData=\"M327.7,337.6m-33.8,0a33.8,33.8 0,1 1,67.6 0a33.8,33.8 0,1 1,-67.6 0\"\n      android:fillColor=\"#00b0b9\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/flask.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"273\"\n          android:startY=\"0\"\n          android:endX=\"273\"\n          android:endY=\"512\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FFBDDDEB\"/>\n        <item android:offset=\"1\" android:color=\"#FF53A9D1\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"M512,408v53c0,29 -22,51 -51,51h-96L189,338a154,154 0,0 0,50 31c36,12 80,13 136,-9l2,2q0,3 5,2l9,-4q5,-3 3,-5l12,-5q5,0 2,-9l-7,-12h-5l-9,4 -5,-2 -8,4 -2,3v2a101,101 0,0 1,-106 -60l-85,43 -14,-11 92,-47 -10,-36 -101,44 -11,-12 109,-48 -7,-78zM114,218h7l2,9z\"\n      android:fillColor=\"#3b808b\"/>\n  <path\n      android:pathData=\"m241,140 l-2,-5h-5l-126,54 -6,4v5l11,19 1,1h7q5,23 16,43l109,-48zM249,229 L143,276q9,19 24,36l92,-47zM408,341 L401,329h-5l-9,4 -5,-2 -8,4 -2,3v2a101,101 0,0 1,-106 -60l-89,44q24,29 62,45c36,12 80,13 136,-9l2,2q0,3 5,2l9,-4q5,-2 3,-5l12,-5q5,0 2,-9\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/flatpak.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256,80c-8.1,0 -16.1,2.1 -23.4,6.2l-110.6,63.8a46.8,46.8 0,0 0,-23.4 40.4v126.3a46.8,46.8 0,0 0,23.4 40.4l110.6,63.8a46.8,46.8 0,0 0,46.8 0l110.6,-63.8a46.8,46.8 0,0 0,23.4 -40.4V190.4a46.8,46.8 0,0 0,-23.4 -40.4L279.4,86.2A46.6,46.6 0,0 0,256 80m0,30.4c2,0 4.1,0.5 5.9,1.6l110.8,63.8a13,13 0,0 1,6.4 6.4L256,256v139.2a13,13 0,0 1,-6.4 -1.7L138.8,329.7a13,13 0,0 1,-6.4 -11v-126.3c0,-2 0.5,-4.1 1.6,-5.9L256,256Z\"\n      android:fillColor=\"#4a90d8\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/flattr.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#FFF\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M112,254c0,-77 63,-140 141,-140h76l-41,40 19,19 84,-86L252,87c-92,0 -167,75 -167,167v131l27,-25v-1,-105zM420,124 L393,149v105c0,78 -63,141 -141,141h-76l41,-40 -19,-19 -84,86h138c93,0 168,-75 168,-167L420,124z\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/flickr.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M157,256m-79,0a79,79 0,1 1,158 0a79,79 0,1 1,-158 0\"\n      android:fillColor=\"#0063dc\"/>\n  <path\n      android:pathData=\"M355,256m-79,0a79,79 0,1 1,158 0a79,79 0,1 1,-158 0\"\n      android:fillColor=\"#ff0084\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/floatplane.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#0085ff\"/>\n  <path\n      android:pathData=\"m342.7,283 l2.3,-9a19,19 0,0 0,1 -7.2,37.4 37.4,0 0,0 -3.3,-10l-85.5,79.8s5.2,5.4 13.3,0l37.7,-26.6 100.5,78.3a5.8,5.8 0,0 0,6.7 0.4l22.1,-14.1zM219.7,314 L266.6,278 284.6,292 314.4,256 304.6,246.4 307.7,235.1a33.4,33.4 0,0 0,1.8 -12.8,48 48,0 0,0 -5.3,-14.4L186.6,325.6s3.6,3 11.3,0l33.2,30.7a3.6,3.6 0,0 0,4 0.5l11.3,-6.7zM199,293.2l-36.5,-27.5 -6.7,11.3a3.2,3.2 0,0 0,0.5 4l30.8,33.3zM264.7,206.3 L256.3,197.6 258.5,188.7a25.8,25.8 0,0 0,1 -9,35.2 35.2,0 0,0 -4,-10l-79.8,85.5s5.4,5.2 13.2,-0.8l32,-26.3 13.6,17.4zM228.7,169 L137.7,75 123.5,97.1a5.8,5.8 0,0 0,0.5 6.7L202.9,205zM209,118.6a147.9,147.9 0,0 1,184.8 184.7l16.5,16.6A167.5,167.5 0,0 0,192.5 102ZM349.3,369a146.1,146.1 0,0 1,-206 -205.9l-13.4,-17a167.5,167.5 0,0 0,236.5 236.5z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/flutter.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m270,340h-56v56l42,42h112\"\n      android:fillColor=\"#225a9d\"/>\n  <path\n      android:pathData=\"m214,312v84l72,-25\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"214\"\n          android:startY=\"396\"\n          android:endX=\"286\"\n          android:endY=\"312\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FF204792\"/>\n        <item android:offset=\"0.6\" android:color=\"#FF225A9D\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"M368,242H256l-42,42v56h56M368,74H256L74,256l56,56\"\n      android:fillColor=\"#5cc8f8\"/>\n  <path\n      android:pathData=\"m158,340 l56,-56 56,56 -56,56\"\n      android:fillColor=\"#43b9f6\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/foobar2000.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#1B1817\"/>\n  <path\n      android:pathData=\"m177,54c-71,118 -91,194 -59,257s97,123 138,158c41,-35 106,-95 138,-158s12,-139 -59,-257l-54,74q-25,-4 -50,0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m208,327c28,0 25,-40 -3,-78s-68,-53 -79,-37 -1,51 19,77 49,38 63,38h96c-28,0 -25,-40 3,-78s68,-53 79,-37 1,51 -19,77 -49,38 -63,38m-48,39 l-34,36c-6,6 -19,1 -12,-7l38,-43q8,-8 16,0l38,43c7,8 -6,13 -12,7\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/freebsd.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m420.1,119.5c18,17.9 -31.8,96.8 -40.2,105.2 -8.4,8.4 -29.8,0.7 -47.7,-17.3 -18,-17.9 -25.7,-39.3 -17.3,-47.7 8.4,-8.4 87.3,-58.2 105.2,-40.2m-251.7,19c-27.4,-15.6 -66.4,-32.9 -78.8,-20.4C77,130.7 95,170.5 110.7,198c14,-24.3 33.9,-44.8 57.7,-59.5m224.4,80.1c2.5,8.6 2.1,15.6 -2,19.7 -9.6,9.6 -35.4,-0.6 -58.7,-22.8 -1.6,-1.5 -3.2,-3 -4.8,-4.6 -8.4,-8.4 -15,-17.4 -19.2,-25.6 -8.2,-14.6 -10.2,-27.5 -4,-33.7 3.4,-3.4 8.7,-4.3 15.3,-3.1 4.3,-2.7 9.3,-5.7 14.9,-8.8 -22.5,-11.7 -48.1,-18.4 -75.2,-18.4 -90,0 -163,73 -163,163s73,163 163,163 163,-73 163,-163c0,-29.1 -7.6,-56.3 -21,-79.9 -2.9,5.3 -5.7,10.1 -8.2,14.2\"\n      android:fillColor=\"#ab2b28\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/freecodecamp.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M377,129c-2,0 -3,3 -3,4 0,3 4,8 11,16 29,28 45,62 44,103 0,46 -17,84 -47,111 -6,6 -9,10 -9,15l4,4a9,9 0,0 0,5 4c7,0 17,-8 29,-25 25,-30 36,-63 37,-109 0,-46 -13,-77 -42,-109 -10,-11 -18,-17 -24,-17 -2,0 -4,1 -5,3zM289,260c-11,-2 33,-56 -47,-119 0,0 11,33 -42,108 -52,75 23,118 23,118s-36,-19 7,-87c7,-11 17,-22 29,-49 0,0 11,16 5,48 -9,50 36,37 37,37 16,18 -13,51 -14,52s81,-51 22,-128c-4,5 -10,23 -21,20zM135,129a7,7 0,0 1,3 4c0,3 -3,8 -12,16A138,138 0,0 0,83 252c0,46 16,82 46,111 7,6 9,11 9,14l-3,5a9,9 0,0 1,-5 4c-8,0 -17,-9 -30,-25A165,165 0,0 1,64 252c0,-46 13,-77 41,-109 11,-11 19,-17 25,-17 2,0 4,1 5,3z\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/friendica.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M139,89L373,89A50,50 0,0 1,423 139L423,373A50,50 0,0 1,373 423L139,423A50,50 0,0 1,89 373L89,139A50,50 0,0 1,139 89z\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m144,89c-30,0 -55,25 -55,55v225c0,30 25,55 55,55h225c30,0 55,-25 55,-55V144c0,-30 -25,-55 -55,-55z\"/>\n  <path\n      android:pathData=\"M303.5,102v73H196v81H304v67H196v88H144c-24,0 -42,-19 -42,-42V144c0,-24 19,-42 42,-42Z\"\n      android:fillColor=\"#ffc019\"/>\n  <path\n      android:pathData=\"m316,102v87H209v67h107v81H209v74h160c23,0 42,-18 41,-42V144c0,-23 -18,-42 -42,-42z\"\n      android:fillColor=\"#1872a2\"/>\n  <path\n      android:pathData=\"M139,89L373,89A50,50 0,0 1,423 139L423,373A50,50 0,0 1,373 423L139,423A50,50 0,0 1,89 373L89,139A50,50 0,0 1,139 89z\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"89\"\n          android:startY=\"89\"\n          android:endX=\"89\"\n          android:endY=\"423\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#66FFFFFF\"/>\n        <item android:offset=\"0.3\" android:color=\"#00D6D7E8\"/>\n        <item android:offset=\"0.7\" android:color=\"#00000000\"/>\n        <item android:offset=\"1\" android:color=\"#66000000\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/fritz.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#f8ec17\"/>\n  <path\n      android:pathData=\"m48,191.5v119h34v-42h29v-28L82,240.5v-21h32v-29zM123,327.5h33v-87h6c3,0 10,4 10,12s-6,15 -16,23l34,56q13,-10 26,-24l-27,-32c14,-11 17,-20 16,-30s-5,-17 -16,-22 -27,-7 -65,-5zM216,213.5v88h34L250,194.5h-25l4,16zM284,244.5v83h33v-83l28,1h2v-30h-93v30h2zM340,300.5h88v-30q-26,1.5 -40,0l43,-80q-34,-2 -84,-2v30q13,-1 36,-1v1zM449,297.5L467,282.5 452,264.5 434,279.5zM464,264.5L472.5,208.5 444.5,206.5 441,263.5z\"\n      android:strokeWidth=\"2.6\"\n      android:fillColor=\"#e2001a\"\n      android:strokeColor=\"#000\"/>\n  <path\n      android:pathData=\"m44,188v119h34v-42h29v-28L78,237v-21h32v-29zM119,324h33v-87h6c3,0 10,4 10,12s-6,15 -16,23l34,56q13,-10 26,-24l-27,-32c14,-11 17,-20 16,-30s-5,-17 -16,-22 -27,-7 -65,-5zM212,210v88h34L246,191h-25l4,16zM280,241v83h33v-83l28,1h2v-30h-93v30h2zM336,297h88v-30q-26,1.5 -40,0l43,-80q-34,-2 -84,-2v30q13,-1 36,-1v1zM445,294 L463,279 448,261 430,276zM460,261 L468.5,205 440.5,203 437,260z\"\n      android:strokeWidth=\"2.6\"\n      android:fillColor=\"#e2001a\"\n      android:strokeColor=\"#000\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/gandi.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"72\"\n          android:startY=\"512\"\n          android:endX=\"433\"\n          android:endY=\"12\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FF3DACA3\"/>\n        <item android:offset=\"1\" android:color=\"#FF13526B\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"M255,66a54,54 0,1 0,54 54,54 54,0 0,0 -54,-54zM255,137a17,17 0,1 1,17 -17,17 17,0 0,1 -17,17zM145,155c13,-13 27,-5 34,1s26,43 76,43 64,-28 80,-44c10,-11 24,-8 33,1s6,25 0,33c-36,49 -97,69 -116,82 -29,20 -49,40 -49,69 0,24 17,60 53,60s52,-25 52,-37c0,-15 -10,-19 -13,-19 -15,0 -15,18 -34,18 -15,0 -22,-12 -22,-24 0,-18 27,-42 55,-42 38,0 62,27 62,64 0,42 -39,88 -99,88 -65,0 -102,-61 -102,-106s21,-78 56,-101c-26,-10 -51,-27 -71,-58 -2,-2 -9,-16 5,-28z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/gatehub.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#0a6cf1\"/>\n  <path\n      android:pathData=\"M83,256m-36,0a36,36 0,1 1,72 0a36,36 0,1 1,-72 0\"\n      android:strokeWidth=\"15\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#f7f6f2\"/>\n  <path\n      android:pathData=\"M169,253h88v7h-88z\"\n      android:fillColor=\"#70abe9\"/>\n  <path\n      android:pathData=\"M342.5,106.18m18,-31.18a36,36 65.24,1 1,-36 62.35a36,36 65.24,1 1,36 -62.35\"\n      android:strokeWidth=\"15\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#f7f6f2\"/>\n  <path\n      android:pathData=\"M302.1,182.16l-44,76.21l-6.06,-3.5l44,-76.21z\"\n      android:fillColor=\"#70abe9\"/>\n  <path\n      android:pathData=\"M342.5,405.82m18,31.18a36,36 104.88,1 1,-36 -62.35a36,36 104.88,1 1,36 62.35\"\n      android:strokeWidth=\"15\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#f7f6f2\"/>\n  <path\n      android:pathData=\"M296.9,332.84l-44,-76.21l6.06,-3.5l44,76.21z\"\n      android:fillColor=\"#70abe9\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/geeksForGeeks.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M166,256m-75,0a75,75 0,1 1,150 0a75,75 0,1 1,-150 0\"\n      android:strokeWidth=\"32\"\n      android:fillColor=\"#00ffffff\"\n      android:strokeColor=\"#2f8d46\"/>\n  <path\n      android:pathData=\"M346,256m-75,0a75,75 0,1 1,150 0a75,75 0,1 1,-150 0\"\n      android:strokeWidth=\"32\"\n      android:fillColor=\"#00ffffff\"\n      android:strokeColor=\"#2f8d46\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M78,262L434,262\"\n      android:strokeWidth=\"32\"\n      android:strokeColor=\"#2f8d46\"/>\n  <path\n      android:pathData=\"M75,164l0,82l75,0z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M437,164l-71,82l71,0z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/gemini.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M434,256.86A189.08,189.08 0,0 0,256.86 434h-0.72A189.06,189.06 0,0 0,79 256.86v-0.72A189.06,189.06 0,0 0,256.14 79h0.72A189.08,189.08 0,0 0,434 256.14v0.72Z\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:centerX=\"114.23\"\n          android:centerY=\"223.28\"\n          android:gradientRadius=\"377.85\"\n          android:type=\"radial\">\n        <item android:offset=\"0.07\" android:color=\"#FF9168C0\"/>\n        <item android:offset=\"0.34\" android:color=\"#FF5684D1\"/>\n        <item android:offset=\"0.67\" android:color=\"#FF1BA1E3\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/ghost.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#e8e9eb\"/>\n  <path\n      android:pathData=\"M101,134h187zM347,134h61zM101,257h310zM101,378h123zM288,378h123z\"\n      android:strokeWidth=\"61\"\n      android:fillColor=\"#fff\"\n      android:strokeColor=\"#3d515b\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/git.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M441,240a25,25 0,0 1,0 32L272,441a24,24 0,0 1,-33 0L71,272a24,24 0,0 1,0 -34L186,123l44,44a29,29 0,0 0,15 38V310a29,29 0,1 0,24 1V207l40,40a29,29 0,1 0,18 -17l-43,-43a29,29 0,0 0,-37 -37l-44,-44 35,-35a24,24 0,0 1,34 0L441,240\"\n      android:fillColor=\"#f05133\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/gitea.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M108,217c5,39 32,49 64,54 -12,-35 -19,-57 -22,-96 -35,0 -45,21 -42,42ZM419,150c34,1 -12,209 -75,214L240,364c-24,-3 -56,-51 -59,-65 -28,-1 -96,-8 -99,-83 -2,-48 34,-67 61,-67 90,3 178,8 276,1Z\"\n      android:fillColor=\"#592\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m293,152v70\"\n      android:strokeWidth=\"9\"\n      android:strokeColor=\"#fff\"/>\n  <path\n      android:pathData=\"M264.45,208.01l87.4,42.06\"\n      android:strokeWidth=\"7\"\n      android:fillColor=\"#592\"\n      android:strokeColor=\"#592\"/>\n  <path\n      android:pathData=\"M278.87,214.95L337.44,243.13A16,16 115.36,0 1,344.92 264.49L316.73,323.06A16,16 115.36,0 1,295.37 330.54L236.8,302.35A16,16 74.2,0 1,229.33 281L257.51,222.43A16,16 70.77,0 1,278.87 214.95z\"\n      android:strokeWidth=\"7\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M292.82,220.55l-32.52,67.58\"\n      android:strokeWidth=\"7\"\n      android:fillColor=\"#592\"\n      android:strokeColor=\"#592\"/>\n  <path\n      android:pathData=\"M280.68,245.78c40.55,19.51 36.41,11.97 13.43,59.73\"\n      android:strokeWidth=\"7\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#592\"/>\n  <path\n      android:pathData=\"M260.29,288.13m-9.01,-4.34a10,10 58.23,1 1,18.02 8.67a10,10 58.23,1 1,-18.02 -8.67\"\n      android:strokeWidth=\"7\"\n      android:fillColor=\"#592\"/>\n  <path\n      android:pathData=\"M294.54,304.61m-9.01,-4.34a10,10 70.78,1 1,18.02 8.67a10,10 70.78,1 1,-18.02 -8.67\"\n      android:strokeWidth=\"7\"\n      android:fillColor=\"#592\"/>\n  <path\n      android:pathData=\"M280.68,245.78m-9.01,-4.34a10,10 118.48,1 1,18.02 8.67a10,10 118.48,1 1,-18.02 -8.67\"\n      android:strokeWidth=\"7\"\n      android:fillColor=\"#592\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/github.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#181717\"/>\n  <path\n      android:pathData=\"M335,499c-13,0 -16,-6 -16,-12l1,-70c0,-24 -8,-40 -18,-48 57,-6 117,-28 117,-126 0,-28 -10,-51 -26,-69 3,-6 11,-32 -3,-67 0,0 -21,-7 -70,26 -42,-12 -86,-12 -128,0 -49,-33 -70,-26 -70,-26 -14,35 -6,61 -3,67 -16,18 -26,41 -26,69 0,98 59,120 116,126 -7,7 -14,18 -16,35 -15,6 -52,17 -74,-22 0,0 -14,-24 -40,-26 0,0 -25,0 -1,16 0,0 16,7 28,37 0,0 15,50 86,34l1,44c0,6 -3,12 -16,12 -14,0 -12,17 -12,17H347s2,-17 -12,-17Z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/gitlab.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m71,222 l52,-136c5,-12 21,-12 26,0l35.5,109h143L363,86c5,-12 21,-12 26,0l52,136 -185,120\"\n      android:fillColor=\"#e24329\"/>\n  <path\n      android:pathData=\"m244,442q12,10 24,0l61,-46V340.8H183V396\"\n      android:fillColor=\"#fca326\"/>\n  <path\n      android:pathData=\"m103,336A97,97 0,0 1,71 222q37,8 65,28l193,146 80,-60a97,97 0,0 0,32 -114q-37,8 -65,28L183,396\"\n      android:fillColor=\"#fc6d26\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/gitpod.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m237,69a1,1 60,0 1,37 66l-111,64q-5,3 -5,9v101q0,6 5,9l88,51q5,3 10,0l88,-51q5,-3 5,-9v-63l-80,45a1,1 0,0 1,-37 -66l115,-64c34,-20 77,5 77,45v111c0,25 -13,50 -37,63l-101,58c-22,13 -49,13 -71,0l-101,-58c-23,-14 -36,-38 -36,-63V200c0,-26 13,-50 36,-63\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"356.34\"\n          android:startY=\"125.02\"\n          android:endX=\"155.66\"\n          android:endY=\"388.91\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FFFFB45B\"/>\n        <item android:offset=\"1\" android:color=\"#FFFF8A00\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/gmail.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m76,190v171q0,30 30,30h52V190\"\n      android:fillColor=\"#4285f4\"/>\n  <path\n      android:pathData=\"m354,190v201h52q30,0 30,-30V190\"\n      android:fillColor=\"#34a853\"/>\n  <path\n      android:pathData=\"m350,255V149l28,-21c24,-18 58,2 58,30v32\"\n      android:fillColor=\"#fbbc04\"/>\n  <path\n      android:pathData=\"m154,249V143l102,77 98,-74v106l-98,74\"\n      android:fillColor=\"#ea4335\"/>\n  <path\n      android:pathData=\"m76,190v-32c0,-29 34,-48 58,-30l24,18v106\"\n      android:fillColor=\"#c5221f\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/gmail_old.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M120,392V151.07h272V392\"\n      android:fillColor=\"#f2f2f2\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M116,180l4,212L256,285\"\n      android:fillAlpha=\"0.05\"/>\n  <path\n      android:pathData=\"M120,143H75V369c0,13 10,23 22,23h23Z\"\n      android:fillColor=\"#d54c3f\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M317,392h77V159H82\"\n      android:fillAlpha=\"0.08\"/>\n  <path\n      android:pathData=\"M97,121h318L256,234\"\n      android:fillColor=\"#f2f2f2\"/>\n  <path\n      android:pathData=\"M392,392h23c12,0 22,-10 22,-23V143h-45z\"\n      android:fillColor=\"#b63524\"/>\n  <path\n      android:pathData=\"M97,143l159,115 159,-115\"\n      android:strokeWidth=\"44\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#de5145\"\n      android:strokeLineCap=\"round\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/go.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M308,220c1,2 -1,2 -2,2l-34,9c-3,2 -5,-1 -5,-1 -21,-26 -65,-8 -67,30 -2,36 45,50 67,14h-38c-3,0 -8,-1 -3,-10l8,-17c2,-4 3,-4 9,-4h70c0,81 -90,117 -138,68 -22,-23 -29,-75 16,-112 36,-29 96,-29 117,21m16,96c-45,-39 -21,-120 50,-133 73,-13 105,55 76,106 -24,43 -88,61 -126,27m94,-51c9,-25 -9,-49 -36,-47 -30,3 -51,42 -32,65 19,22 58,12 68,-18m-321,-2v-1l2,-5 2,-1h41l1,1 -1,5 -1,1H97m-48,-18s-2,0 -1,-1l4,-6 2,-1h92l1,1 -2,5 -1,1 -95,1m30,-19 l-1,-1 5,-5 2,-1h72v1l-3,5 -2,1H79\"\n      android:fillColor=\"#00acd7\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/godot.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M168,221a38,37 0,1 1,-1 0m90,79a12,11 0,0 1,-13 -11V254a12,11 0,0 1,13 -11V108q-12,0 -21,2 -9,-20 -19,-37 -28,6 -52,17 0,24 3,42 -17,10 -36,27 -16,-11 -34,-20 -21,23 -34,45 13,21 24,34V348c1,64 86,87 169,87\"\n      android:fillColor=\"#478cbf\"/>\n  <path\n      android:pathData=\"M171,261m-25,0a25,25 0,1 1,50 0a25,25 0,1 1,-50 0\"\n      android:fillColor=\"#414042\"/>\n  <path\n      android:pathData=\"m87,326 l63,6 2,33 66,5 5,-32h35\"\n      android:strokeLineJoin=\"round\"\n      android:strokeWidth=\"13\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"/>\n  <path\n      android:pathData=\"M344,221a37,38 90,1 0,1 0m-90,79a11,12 90,0 0,13 -11L268,254a11,12 90,0 0,-13 -11L255,108q12,0 21,2 9,-20 19,-37 28,6 52,17 -0,24 -3,42 17,10 36,27 16,-11 34,-20 21,23 34,45 -13,21 -24,34L424,348c-1,64 -86,87 -169,87\"\n      android:fillColor=\"#478cbf\"/>\n  <path\n      android:pathData=\"M341,261m25,0a25,25 0,1 0,-50 0a25,25 0,1 0,50 0\"\n      android:fillColor=\"#414042\"/>\n  <path\n      android:pathData=\"m425,326l-63,6 -2,33 -66,5 -5,-32l-35,0\"\n      android:strokeLineJoin=\"round\"\n      android:strokeWidth=\"13\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/gogcom.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M84,265h82q17,-1 18,-18V139q-1,-17 -18,-18h-64q-17,1 -18,18v64q1,17 18,18h43v-24h-29q-8,0 -8,-8v-36q0,-8 8,-8h36q8,0 8,8v80q0,8 -8,8H84z\"\n      android:fillColor=\"#333\"/>\n  <path\n      android:pathData=\"M224,221h64q17,-1 18,-18v-64q-1,-17 -18,-18h-64q-17,1 -18,18v64q1,17 18,18zM238,197q-8,0 -8,-8v-36q0,-8 8,-8h36q8,0 8,8v36q0,8 -8,8z\"\n      android:fillColor=\"#333\"/>\n  <path\n      android:pathData=\"M328,265h82q17,-1 18,-18L428,139q-1,-17 -18,-18h-64q-17,1 -18,18v64q1,17 18,18h43v-24h-29q-8,0 -8,-8v-36q0,-8 8,-8h36q8,0 8,8v80q0,8 -8,8L328,241z\"\n      android:fillColor=\"#333\"/>\n  <path\n      android:pathData=\"M205,391h64q17,-1 18,-18v-64q-1,-17 -18,-18h-64q-17,1 -18,18v64q1,17 18,18zM219,367q-8,0 -8,-8v-36q0,-8 8,-8h36q8,0 8,8v36q0,8 -8,8z\"\n      android:fillColor=\"#333\"/>\n  <path\n      android:pathData=\"M307,391h24v-67q0,-8 8,-8h16v75h24v-67q0,-8 8,-8h16v75h24V291H325q-17,-1 -18,18zM167,291h-65q-17,1 -18,18v64q1,17 18,18h65v-24h-51q-8,0 -8,-8v-36q0,-8 8,-8h51z\"\n      android:fillColor=\"#333\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/gojek.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m255,330a72,72 0,1 1,2 0m-73,106a36,36 0,0 0,24 -68,120 120,0 1,1 96,0 36,36 0,0 0,24 68,192 192,0 1,0 -144,0\"\n      android:fillColor=\"#0a1\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/goodreads.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#ece9d4\"/>\n  <path\n      android:pathData=\"m253,309c67,0 91,-52 91,-103s-22,-113 -89,-113 -90,60 -90,110 23,106 88,106m123,8c0,114 -68,129 -118,130s-114,-21 -117,-81h33c19,45 69,64 112,49s52,-41 55,-116c-56,65 -158,45 -190,-13s-25,-141 14,-183 125,-61 176,8V74h35\"\n      android:fillColor=\"#814910\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/google.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M153,292c30,82 118,95 171,60h62v48A192,192 0,0 1,90 341\"\n      android:fillColor=\"#34a853\"/>\n  <path\n      android:pathData=\"m386,400a140,175 0,0 0,53 -179H260v74h102q-7,37 -38,57\"\n      android:fillColor=\"#4285f4\"/>\n  <path\n      android:pathData=\"m90,341a208,200 0,0 1,0 -171l63,49q-12,37 0,73\"\n      android:fillColor=\"#fbbc02\"/>\n  <path\n      android:pathData=\"m153,219c22,-69 116,-109 179,-50l55,-54c-78,-75 -230,-72 -297,55\"\n      android:fillColor=\"#ea4335\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/google_assistant.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M190.8,198.2m-102.2,0a102.2,102.2 0,1 1,204.4 0a102.2,102.2 0,1 1,-204.4 0\"\n      android:fillColor=\"#4285f4\"/>\n  <path\n      android:pathData=\"M402.7,208.2m-20.8,0a20.8,20.8 0,1 1,41.6 0a20.8,20.8 0,1 1,-41.6 0\"\n      android:fillColor=\"#34a853\"/>\n  <path\n      android:pathData=\"M344.5,259.5m-42,0a42,42 0,1 1,84 0a42,42 0,1 1,-84 0\"\n      android:fillColor=\"#ea4335\"/>\n  <path\n      android:pathData=\"M344.4,366.1m-49.9,0a49.9,49.9 0,1 1,99.8 0a49.9,49.9 0,1 1,-99.8 0\"\n      android:fillColor=\"#fbbc05\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/google_authenticator.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M440,256c0,17 -14,31 -31,31H302l-46,-93 50,-86c9,-15 28,-20 43,-11s20,28 11,43l-51,86h99c17,0 31,14 31,31z\"\n      android:fillColor=\"#1A73E8\"/>\n  <path\n      android:pathData=\"M348,415c-15,9 -34,3 -43,-11l-49,-86 -50,86c-9,15 -28,20 -43,11s-20,-28 -11,-43l51,-86 54,-2 54,2 50,86c9,15 4,34 -11,43z\"\n      android:fillColor=\"#EA4335\"/>\n  <path\n      android:pathData=\"M256,194l-14,38 -40,-7 -50,-86c-9,-15 -4,-34 11,-43s34,-4 43,11l50,87z\"\n      android:fillColor=\"#FBBC04\"/>\n  <path\n      android:pathData=\"M248,225l-36,62H103c-17,0 -31,-14 -31,-31s14,-31 31,-31h145z\"\n      android:fillColor=\"#34A853\"/>\n  <path\n      android:pathData=\"M310,287l-108,0l54,-93z\"\n      android:fillColor=\"#185DB7\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/google_calendar.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M100,135q0,-35 37,-35H340v74H174V340H100\"\n      android:fillColor=\"#4285f4\"/>\n  <path\n      android:pathData=\"m338,100v76h74v-41q0,-35 -35,-35\"\n      android:fillColor=\"#1967d2\"/>\n  <path\n      android:pathData=\"m100,338v39q0,35 35,35h41v-74\"\n      android:fillColor=\"#188038\"/>\n  <path\n      android:pathData=\"M348,338H174v74H338\"\n      android:fillColor=\"#34a853\"/>\n  <path\n      android:pathData=\"m338,339V174h74V338\"\n      android:fillColor=\"#fbbc04\"/>\n  <path\n      android:pathData=\"M338,412v-74h74\"\n      android:fillColor=\"#ea4335\"/>\n  <path\n      android:pathData=\"m204,229a25,22 1,1 1,25 27h-9,9a25,22 1,1 1,-25 27m66,-52 l27,-19h4v96\"\n      android:strokeWidth=\"15\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#4285f4\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/google_collaborative_content_tools.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M131.5,344h83V170h83V84h-136q-30,0 -30,30\"\n      android:fillColor=\"#ffba00\"/>\n  <path\n      android:pathData=\"M297.5,84v86h83\"\n      android:fillColor=\"#ea4335\"/>\n  <path\n      android:pathData=\"M297.5,170h83v174h-83\"\n      android:fillColor=\"#2684fc\"/>\n  <path\n      android:pathData=\"M131.5,342v56q0,30 30,30h55v-86\"\n      android:fillColor=\"#00832d\"/>\n  <path\n      android:pathData=\"M214.5,342h85v86h-85\"\n      android:fillColor=\"#00ac47\"/>\n  <path\n      android:pathData=\"M297.5,342h83v56q0,30 -30,30h-53\"\n      android:fillColor=\"#0066da\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/google_docs_editors.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M131.5,344h83V170h83V84h-136q-30,0 -30,30\"\n      android:fillColor=\"#ffba00\"/>\n  <path\n      android:pathData=\"M297.5,84v86h83\"\n      android:fillColor=\"#ea4335\"/>\n  <path\n      android:pathData=\"M297.5,170h83v174h-83\"\n      android:fillColor=\"#2684fc\"/>\n  <path\n      android:pathData=\"M131.5,342v56q0,30 30,30h55v-86\"\n      android:fillColor=\"#00832d\"/>\n  <path\n      android:pathData=\"M214.5,342h85v86h-85\"\n      android:fillColor=\"#00ac47\"/>\n  <path\n      android:pathData=\"M297.5,342h83v56q0,30 -30,30h-53\"\n      android:fillColor=\"#0066da\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/google_drive.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m126,417q9,5 19,5H367q9,0 19,-5V313H99\"\n      android:fillColor=\"#4285f4\"/>\n  <path\n      android:pathData=\"m196,87q9,-5 20,-5h80q12,0 20,5v104h-68\"\n      android:fillColor=\"#188038\"/>\n  <path\n      android:pathData=\"m66,313q0,-10 5,-19l110,-191q6,-11 15,-16l60,104 -72,125\"\n      android:fillColor=\"#34a853\"/>\n  <path\n      android:pathData=\"M316,87q10,6 15,16L438,289q8,12 8,24l-118,3 -72,-125\"\n      android:fillColor=\"#fbbc04\"/>\n  <path\n      android:pathData=\"m185.71,313H66q0,8 3,15l40,70q7,13 17,19\"\n      android:fillColor=\"#1967d2\"/>\n  <path\n      android:pathData=\"m386,417q9,-5 16,-17l38,-66q6,-10 6,-21H326.3\"\n      android:fillColor=\"#ea4335\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/google_drive_old.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M468,299H112v120h288\"\n      android:fillColor=\"#4587f4\"/>\n  <path\n      android:pathData=\"M187,51L44,299l68,120L325,51\"\n      android:fillColor=\"#1da261\"/>\n  <path\n      android:pathData=\"M325,51l143,248H331L187,51\"\n      android:fillColor=\"#ffcf48\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/google_findhub.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M264,56c-4,0 -6,3 -6,7v51c79,0 143,64 143,144h51c3,0 7,-3 7,-7 0,-105 -90,-195 -195,-195Z\"\n      android:fillColor=\"#ea4335\"/>\n  <path\n      android:pathData=\"M251,459c3,0 7,-3 7,-7v-51a143,143 0,0 1,-144 -143H63c-4,0 -7,2 -7,6 0,105 90,195 195,195z\"\n      android:fillColor=\"#fbbc04\"/>\n  <path\n      android:pathData=\"M258,401v-83c-34,0 -61,-27 -61,-60h-83c0,79 64,143 144,143z\"\n      android:fillColor=\"#1e8e3e\"/>\n  <path\n      android:pathData=\"M401,258h-83c0,33 -27,60 -60,60v83c79,0 143,-64 143,-143z\"\n      android:fillColor=\"#5bb974\"/>\n  <path\n      android:pathData=\"M258,114v83c33,0 60,27 60,61h83c0,-80 -64,-144 -143,-144z\"\n      android:fillColor=\"#1967d2\"/>\n  <path\n      android:pathData=\"M258,114a143,143 0,0 0,-144 144h83c0,-34 27,-61 61,-61z\"\n      android:fillColor=\"#669df6\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/google_fit.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M100.6,261.4l19.3,19.3 41.6,-41.5 -19.1,-19.3 -8.7,-8.7c-7,-7 -10.7,-16 -10.7,-25.9 0,-8.6 2.9,-16.4 7.9,-22.5 6.8,-8.6 17.2,-14.1 28.8,-14.1 9.9,0 19,3.9 26.1,10.9l8.6,8.2 19.3,19.4 41.8,-41.5 -19.4,-19.3 -8.7,-8.4c-17.4,-17.3 -41.3,-28 -67.7,-28C106.8,90 64,132.8 64,185.4c0,13.1 2.6,25.6 7.5,37.1s11.8,21.7 20.6,30.3l8.6,8.6\"\n      android:fillColor=\"#EA4335\"/>\n  <path\n      android:pathData=\"m255.5,228.8 l-41.8,-41.6 -93.8,93.5 41.6,41.6z\"\n      android:fillColor=\"#FBBC04\"/>\n  <path\n      android:pathData=\"m255.3,414 l-93.8,-91.7 41.7,-41.5 52.1,52 93.8,-93.6 41.8,41.5Z\"\n      android:fillColor=\"#34A853\"/>\n  <path\n      android:pathData=\"M418.7,252.8c19.4,-19.5 30.6,-49.3 27.5,-79.4 -4.6,-45.7 -42.5,-80 -88.5,-83.1 -29,-1.9 -55.6,8.9 -74.3,27.7l-69.7,69.2 41.5,41.5 69.7,-69.3c8.4,-8.3 20.1,-12.1 32.1,-10.2 15.6,2.4 28.2,15.2 30.3,30.8 1.7,11.7 -2.2,23 -10.5,31.3l-27.7,27.9 41.8,41.5 27.7,-27.9Z\"\n      android:fillColor=\"#4285F4\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/google_maps_old.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <group>\n    <clip-path\n        android:pathData=\"m0,0H512V512H0\"/>\n    <path\n        android:pathData=\"M0,512V0h512z\"\n        android:fillColor=\"#35a85b\"/>\n    <path\n        android:pathData=\"M256,288L32,512h448z\"\n        android:fillColor=\"#5881ca\"/>\n    <path\n        android:pathData=\"M288,256L512,32v448z\"\n        android:fillColor=\"#c1c0be\"/>\n    <path\n        android:fillColor=\"#FF000000\"\n        android:pathData=\"M0,512L512,0\"\n        android:strokeWidth=\"71\"\n        android:strokeColor=\"#fadb2a\"/>\n    <path\n        android:pathData=\"M175,173h50a50,54 0,1 1,-15 -41\"\n        android:strokeWidth=\"22\"\n        android:fillColor=\"#00000000\"\n        android:strokeColor=\"#f2f2f2\"/>\n    <path\n        android:pathData=\"M353,85a70,70 0,0 1,140 0c0,70 -70,70 -70,157 0,-87 -70,-87 -70,-157\"\n        android:fillColor=\"#de3738\"/>\n    <path\n        android:pathData=\"M423,89m-25,0a25,25 0,1 1,50 0a25,25 0,1 1,-50 0\"\n        android:fillColor=\"#7d2426\"/>\n  </group>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/google_meet.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M166,106v90H76\"\n      android:fillColor=\"#ea4335\"/>\n  <path\n      android:pathData=\"M166,106v90h120v62l90,-73v-49q0,-30 -30,-30\"\n      android:fillColor=\"#ffba00\"/>\n  <path\n      android:pathData=\"M346,406q30,0 30,-30V327l-90,-71v60H164v90m212,-77 l42,34c9,7 18,7 18,-7V156c0,-14 -9,-14 -18,-7l-42,34\"\n      android:fillColor=\"#00ac47\"/>\n  <path\n      android:pathData=\"M76,314v62q0,30 30,30h60v-92\"\n      android:fillColor=\"#0066da\"/>\n  <path\n      android:pathData=\"M76,196h90v120H76\"\n      android:fillColor=\"#2684fc\"/>\n  <path\n      android:pathData=\"M286,256l90,-73v146\"\n      android:fillColor=\"#00832d\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/google_pay_old.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M407.2,160c-36,-20.8 -83.2,-8.8 -104,28L250.4,279.2c-15.2,26.4 4.8,36 26.4,48.8l51.2,29.6c17.6,9.6 39.2,4 49.6,-12.8L432,250.4c18.4,-32 7.2,-72 -24,-90.4z\"\n      android:fillColor=\"#e64a19\"/>\n  <path\n      android:pathData=\"m347.2,197.6L296,168c-28,-16 -44,-16.8 -56,1.6l-75.2,130.4c-20.8,36 -8.8,83.2 28,104 32,18.4 72,7.2 90.4,-24L360,247.2c10.4,-17.6 4,-39.2 -12.8,-49.6z\"\n      android:fillColor=\"#fbc02d\"/>\n  <path\n      android:pathData=\"m356.8,131.2 l-36,-20.8c-40,-23.2 -90.4,-9.6 -112.8,30.4L140,258.4c-10.4,17.6 -4,40 13.6,49.6l40,23.2c20,11.2 44.8,4.8 56.8,-15.2l77.6,-135.2c16,-28 52,-37.6 80,-21.6L356.8,131.2z\"\n      android:fillColor=\"#43a047\"/>\n  <path\n      android:pathData=\"M217.6,174.4c17.6,9.6 23.2,32 13.6,48.8l-44,76 -12,20.8c-16.8,28.8 -8,66.4 19.2,84.8l-15.2,-8.8 -36,-20.8 -29.6,-16.8c-40,-23.2 -53.6,-73.6 -30.4,-112.8L129.6,164.8c9.6,-17.6 32,-23.2 49.6,-12.8l38.4,22.4Z\"\n      android:fillColor=\"#1e88e5\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/google_photos.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M360.5,160.1c0,-53 -42.9,-95.9 -95.8,-95.9 -4.8,0 -8.7,3.9 -8.7,8.7V256h8.7c53,0 95.9,-42.9 95.9,-95.9Z\"/>\n  <path\n      android:pathData=\"M360.5,160.1c0,-53 -42.9,-95.9 -95.8,-95.9 -4.8,0 -8.7,3.9 -8.7,8.7V256h8.7c53,0 95.9,-42.9 95.9,-95.9Z\"\n      android:fillColor=\"#EA4335\"/>\n  <path\n      android:pathData=\"M351.9,360.5c53,0 95.9,-42.9 95.9,-95.8 -0,-4.8 -3.9,-8.7 -8.7,-8.7L256,256l-0,8.7c-0,53 42.9,95.9 95.9,95.9Z\"\n      android:fillColor=\"#4285F4\"/>\n  <path\n      android:pathData=\"M151.5,351.9c-0,53 42.9,95.9 95.8,95.9 4.8,-0 8.7,-3.9 8.7,-8.7L256,256l-8.7,-0c-53,-0 -95.9,42.9 -95.9,95.9Z\"\n      android:fillColor=\"#34A853\"/>\n  <path\n      android:pathData=\"M160.1,151.5c-53,-0 -95.9,42.9 -95.9,95.8 0,4.8 3.9,8.7 8.7,8.7L256,256l0,-8.7c0,-53 -42.9,-95.9 -95.9,-95.9Z\"\n      android:fillColor=\"#FBBC04\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/google_play.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m336,333h-77V179h77l72,42a40,40 0,0 1,1 70\"\n      android:fillColor=\"#fbbc04\"/>\n  <path\n      android:pathData=\"m109,108c5,-25 35,-41 61,-25l166,96 -78,78\"\n      android:fillColor=\"#34a853\"/>\n  <path\n      android:pathData=\"m170,429c-26,16 -56,0 -61,-25l150,-148 77,77\"\n      android:fillColor=\"#ea4335\"/>\n  <path\n      android:pathData=\"m109.3,106.4Q108,112 108,116v280q0,5 1.3,9.7L259,256\"\n      android:fillColor=\"#4285f4\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/google_plus.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#dc4639\"/>\n  <path\n      android:pathData=\"M191,234v47h72c-2,19 -21,55 -72,55 -43,0 -78,-36 -78,-80s33,-80 76,-80c25,0 42,10 51,19l35,-33A125,125 0,0 0,64 256c0,70 57,127 127,127 74,0 122,-53 122,-125l-2,-24\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M404,192v118m59,-59H345\"\n      android:strokeWidth=\"29\"\n      android:strokeColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/google_podcasts.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:strokeLineJoin=\"round\"\n      android:strokeWidth=\"43\"\n      android:fillColor=\"#fff\"\n      android:strokeLineCap=\"round\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m256,109v22m0,64v122m0,64v22\"\n      android:strokeLineJoin=\"round\"\n      android:strokeWidth=\"43\"\n      android:strokeColor=\"#fab908\"\n      android:strokeLineCap=\"round\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m181,176v75m0,64v21\"\n      android:strokeLineJoin=\"round\"\n      android:strokeWidth=\"43\"\n      android:strokeColor=\"#ea4335\"\n      android:strokeLineCap=\"round\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m331,176v21m0,64v75\"\n      android:strokeLineJoin=\"round\"\n      android:strokeWidth=\"43\"\n      android:strokeColor=\"#34a853\"\n      android:strokeLineCap=\"round\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m405,245v22\"\n      android:strokeLineJoin=\"round\"\n      android:strokeWidth=\"43\"\n      android:strokeColor=\"#4285f4\"\n      android:strokeLineCap=\"round\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m107,245v22\"\n      android:strokeLineJoin=\"round\"\n      android:strokeWidth=\"43\"\n      android:strokeColor=\"#0066d9\"\n      android:strokeLineCap=\"round\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/google_scholar.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#4285f4\"/>\n  <path\n      android:pathData=\"m213,111 l-107,94h69c5,45 41,64 78,67 -7,18 -4,27 7,39 -43,1 -103,26 -103,67 4,45 63,54 92,54 38,1 81,-19 90,-54 4,-35 -10,-54 -31,-71 -23,-18 -28,-28 -21,-40 15,-17 35,-27 39,-51 2,-17 -2,-28 -6,-43l45,-38 -1,16c-3,2 -5,6 -5,9v103c2,13 22,11 23,0L382,160c0,-3 -2,-7 -5,-8v-25l16,-16zM271,252c-61,10 -87,-87 -38,-99 56,-11 83,86 38,99zM266,325c60,13 61,63 10,78 -44,9 -82,-4 -81,-30 0,-25 35,-48 71,-48z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/google_tv.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M349,170H200c-13,0 -23,10 -23,23v24h181c13,0 23,10 23,23v-38c0,-18 -14,-32 -32,-32z\"\n      android:fillColor=\"#4285f4\"/>\n  <path\n      android:pathData=\"M162,170c-18,0 -32,14 -32,32v81c0,13 10,23 23,23h24V193c0,-13 10,-23 23,-23h-38z\"\n      android:fillColor=\"#34a853\"/>\n  <path\n      android:pathData=\"M162,353h149c13,0 23,-10 23,-23v-24H153c-13,0 -23,-10 -23,-23v38c0,18 14,32 32,32z\"\n      android:fillColor=\"#fbbc04\"/>\n  <path\n      android:pathData=\"M349,353c18,0 32,-14 32,-32v-81c0,-13 -10,-23 -23,-23h-24v113c0,13 -10,23 -23,23h38z\"\n      android:fillColor=\"#ea4335\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/google_wallet.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M413,217c0,6 -3,10 -8,10h-296c-5,0 -9,-5 -9,-10V165c0,-30 22,-55 50,-55H363c28,0 50,25 50,55v52\"/>\n  <path\n      android:pathData=\"M413,217c0,6 -3,10 -8,10h-296c-5,0 -9,-5 -9,-10V165c0,-30 22,-55 50,-55H363c28,0 50,25 50,55v52\"\n      android:fillColor=\"#34a853\"/>\n  <path\n      android:pathData=\"M413,273c0,6 -3,10 -8,10h-296c-5,0 -9,-5 -9,-10L100,221c0,-30 22,-55 50,-55L363,166c28,0 50,25 50,55v52\"\n      android:fillColor=\"#fbbc04\"/>\n  <path\n      android:pathData=\"M413,329c0,6 -3,10 -8,10h-296c-5,0 -9,-5 -9,-10L100,277c0,-30 22,-55 50,-55L363,222c28,0 50,25 50,55v52\"\n      android:fillColor=\"#ea4335\"/>\n  <path\n      android:pathData=\"M299,283c23,6 48,0 66,-15l48,-38v117c0,30 -22,55 -50,55H149c-28,0 -50,-25 -50,-55V233l200,51\"\n      android:fillColor=\"#4285f4\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/gradle.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M427,132.7a61,61 0,0 0,-85 -1,6 6,0 0,0 0,9l7,8a6,6 0,0 0,8 1,35 35,0 0,1 46,53c-48,48 -113,-87 -259,-17a20,20 0,0 0,-9 28l25,43a20,20 0,0 0,27 7h1l11,-6a257,257 0,0 0,35 -26,6 6,0 0,1 8,0 6,6 0,0 1,0 9,263 263,0 0,1 -37,28l-11,6a31,31 0,0 1,-15 4,32 32,0 0,1 -28,-16L126,219c-45,40 -73,95 -57.87,173.26a6,6 0,0 0,6 4.74L100.6,397a6,6 0,0 0,5.93 -5.3,40 40,0 0,1 78.62,0 6,6 0,0 0,5.72 5.08h26.2a6,6 0,0 0,5.7 -5.1,40 40,0 0,1 78.6,0 6,6 0,0 0,5.7 5h26a6,6 0,0 0,5.8 -5.72c1,-37 10,-79 38.7,-100 98,-73 72,-136 49.4,-158.3zM327,242.7 L308,233.7a12,12 0,1 1,19 9z\"\n      android:fillColor=\"#010002\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/grafana.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m0,0H512V512H0\"/>\n  <path\n      android:pathData=\"m382,141s6,-17 -6,-40q-22,-1 -39,10 -17,-7 -39,-11 -7,-25 -35,-41 -29,21 -34,46 -21,5 -43,20 -39,-14 -77,3s-5,41 20,74q-7,19 -10,42 -34,18 -48,56 28,32 68,38 9,17 23,32 -10,29 1,58 35,1 62,-18s29,9 56,7q14,21 45,27s22,-22 21,-49q23,-16 35,-37 22,1 39,-14 -4,-25 -21,-38c5,-50 -27,-106 -90,-112s-95,56 -81,94 56,49 80,30c4,-4 -1,-9 -5,-6 -34,15 -73,-21 -50,-62s86,-29 102,17 -26,113 -95,100 -117,-84 -74,-170 199,-80 232,46c1,4 6,3 6,0s4,-56 -43,-102\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"429\"\n          android:startY=\"59\"\n          android:endX=\"429\"\n          android:endY=\"444\"\n          android:type=\"linear\">\n        <item android:offset=\"0.3\" android:color=\"#FFF05A28\"/>\n        <item android:offset=\"1\" android:color=\"#FFFBCC0A\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/grafana_loki.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M185.77,418.49l-25.7,3.93l-3.93,-25.7l25.7,-3.93m14.83,-2.27l3.93,25.7l25.7,-3.93l-3.93,-25.7m14.83,-2.27l3.93,25.7l25.7,-3.93l-3.93,-25.7m14.83,-2.27l114.67,-17.55l3.93,25.7L281.65,403.82m-6.2,-40.53l114.67,-17.55l-3.93,-25.7L271.52,337.59m-14.83,2.27l3.93,25.7l-25.7,3.93l-3.93,-25.7m-14.83,2.27l3.93,25.7l-25.7,3.93l-3.93,-25.7m-14.83,2.27l3.93,25.7l-25.7,3.93l-3.93,-25.7m-2.27,-14.83L115.9,133.79l10.87,-1.66l31.76,207.58m3.95,-0.61L128.46,116.69l10.87,-1.66l34.03,222.41m14.83,-2.27L152.04,98.92l9.88,-1.51l36.15,236.25m3.95,-0.61L169.21,118.55l9.88,-1.51l32.82,214.5m14.83,-2.27L197.55,138.49l9.88,-1.51l29.19,190.78m3.95,-0.61L210.33,129.45l9.88,-1.51l30.25,197.7\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"115.9\"\n          android:startY=\"97.41\"\n          android:endX=\"115.9\"\n          android:endY=\"422.42\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FFF05F2D\"/>\n        <item android:offset=\"1\" android:color=\"#FFF8D420\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/grapheneos.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M167,173l61,-35 -2,-11c0,-15 11,-27 25,-29V45h10V98c14,3 25,15 25,29l-2,11 61,35 8,-7c13,-7 29,-4 38,7l46,-26 5,9 -46,26c5,13 0,29 -13,36l-9,3v70l9,3c13,7 18,23 13,36l46,26 -5,9 -46,-26c-9,11 -25,14 -38,7l-8,-7 -61,35 2,11c0,15 -11,27 -25,29v53H251V414c-14,-3 -25,-15 -25,-29l2,-11 -61,-35 -8,7c-13,7 -29,4 -38,-7l-46,26 -5,-9 46,-26c-5,-13 0,-29 13,-36l9,-3V221l-9,-3c-13,-7 -18,-23 -13,-36L70,156l5,-9 46,26c9,-11 25,-14 38,-7l8,7ZM339,331c-3,-8 -2,-17 2,-25 5,-8 13,-13 22,-15V221c-9,-1 -17,-6 -22,-15 -5,-8 -5,-17 -2,-25l-61,-35c-6,6 -14,10 -23,10s-17,-4 -23,-10l-61,35c3,8 2,17 -2,25 -5,8 -13,13 -22,15v70c9,1 17,6 22,15 5,8 5,17 2,25l61,35c6,-6 14,-10 23,-10s17,4 23,10Z\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/graphql.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m257,99.5 l-136.5,78\"\n      android:strokeWidth=\"16.5\"\n      android:fillColor=\"#e10098\"\n      android:strokeColor=\"#e10098\"/>\n  <path\n      android:strokeWidth=\"1\"\n      android:pathData=\"M257,99.5m-33,0a33,33 0,1 1,66 0a33,33 0,1 1,-66 0\"\n      android:fillColor=\"#e10098\"\n      android:strokeColor=\"#e10098\"/>\n  <path\n      android:pathData=\"m393.4,178.25l-135.8,-79.21\"\n      android:strokeWidth=\"16.5\"\n      android:fillColor=\"#e10098\"\n      android:strokeColor=\"#e10098\"/>\n  <path\n      android:strokeWidth=\"1\"\n      android:pathData=\"M393.4,178.25m-16.5,-28.58a33,33 85.61,1 1,33 57.16a33,33 85.61,1 1,-33 -57.16\"\n      android:fillColor=\"#e10098\"\n      android:strokeColor=\"#e10098\"/>\n  <path\n      android:pathData=\"m257,99.5 l-141,243\"\n      android:strokeWidth=\"16.5\"\n      android:fillColor=\"#e10098\"\n      android:strokeColor=\"#e10098\"/>\n  <path\n      android:pathData=\"m391.03,335.12l0.7,-157.21\"\n      android:strokeWidth=\"16.5\"\n      android:fillColor=\"#e10098\"\n      android:strokeColor=\"#e10098\"/>\n  <path\n      android:strokeWidth=\"1\"\n      android:pathData=\"M391.03,335.12m16.5,-28.58a33,33 93.94,1 1,-33 57.16a33,33 93.94,1 1,33 -57.16\"\n      android:fillColor=\"#e10098\"\n      android:strokeColor=\"#e10098\"/>\n  <path\n      android:pathData=\"m254.63,413.87l136.5,-78\"\n      android:strokeWidth=\"16.5\"\n      android:fillColor=\"#e10098\"\n      android:strokeColor=\"#e10098\"/>\n  <path\n      android:strokeWidth=\"1\"\n      android:pathData=\"M254.63,413.87m33,-0a33,33 0,1 1,-66 0a33,33 0,1 1,66 -0\"\n      android:fillColor=\"#e10098\"\n      android:strokeColor=\"#e10098\"/>\n  <path\n      android:pathData=\"m391.03,335.12l-139.94,-243.61\"\n      android:strokeWidth=\"16.5\"\n      android:fillColor=\"#e10098\"\n      android:strokeColor=\"#e10098\"/>\n  <path\n      android:pathData=\"m119.97,333.38l135.8,79.21\"\n      android:strokeWidth=\"16.5\"\n      android:fillColor=\"#e10098\"\n      android:strokeColor=\"#e10098\"/>\n  <path\n      android:strokeWidth=\"1\"\n      android:pathData=\"M119.97,333.38m16.5,28.58a33,33 103.26,1 1,-33 -57.16a33,33 103.26,1 1,33 57.16\"\n      android:fillColor=\"#e10098\"\n      android:strokeColor=\"#e10098\"/>\n  <path\n      android:pathData=\"m119.97,175.88l-0.7,157.21\"\n      android:strokeWidth=\"16.5\"\n      android:fillColor=\"#e10098\"\n      android:strokeColor=\"#e10098\"/>\n  <path\n      android:strokeWidth=\"1\"\n      android:pathData=\"M119.97,175.88m-16.5,28.58a33,33 98.85,1 1,33 -57.16a33,33 98.85,1 1,-33 57.16\"\n      android:fillColor=\"#e10098\"\n      android:strokeColor=\"#e10098\"/>\n  <path\n      android:pathData=\"m119.97,333.38l280.94,0.61\"\n      android:strokeWidth=\"16.5\"\n      android:fillColor=\"#e10098\"\n      android:strokeColor=\"#e10098\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/grok.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M213,308L338,213C345,209 353,210 356,218C372,256 365,302 334,333C304,365 261,372 222,356L180,376C241,419 315,409 361,361C398,323 409,272 398,225L399,225C383,157 403,130 442,74C443,72 444,71 445,70L393,123V123L213,308M188,332C144,288 151,222 189,183C216,155 262,143 301,160L344,140C336,135 326,128 315,124C264,103 203,113 162,156C122,197 110,260 131,313C147,354 121,382 94,411C85,421 76,431 68,442L188,332\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/guacamole.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m0,0H512V512H0\"/>\n  <path\n      android:pathData=\"M123,306c47,41 173,67 264,3 -52,101 -229,85 -264,-3ZM137,182c-45,50 36,92 114,92 78,1 161,-30 136,-81l9,-7c23,16 16,44 12,57 -2,7 -3,17 -6,26 -56,49 -197,76 -291,-2 0,0 -2,-12 -3,-26 -10,-15 -15,-48 35,-73Z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M317,177s9,5 12,6c2,5 2,10 13,15 2,2 3,9 4,16 0,1 22,-12 27,-15 18,41 -70,59 -116,60s-118,-18 -116,-53c4,-11 9,-16 16,-31 11,-7 15,-2 35,-22 15,-12 26,1 50,-15 2,-1 8,-3 18,-3 10,1 6,7 46,7 6,0 17,11 20,12l-9,23Z\"\n      android:fillColor=\"#583\"/>\n  <path\n      android:pathData=\"M334,170c7,3 6,2 9,9s5,0 12,14c35,-19 44,-30 45,-34s-37,-31 -48,-28c-6,6 -16,31 -18,39z\"\n      android:fillColor=\"#db4\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/guilded.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#f5c400\"/>\n  <path\n      android:pathData=\"M90,130c0,113.4 30.6,240.6 166,296 95.5,-33.4 140.5,-117.6 158,-193H216c4,29 15.7,48 34,67h66c-11,21 -37,41.5 -60,53 -51.5,-26 -88.4,-87.4 -92,-156H419.5a210,285 0,0 0,4.5 -67z\"\n      android:fillColor=\"#2d2d32\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/h-card.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M141,170L269.2,170A41.5,41.5 0,0 1,310.7 211.5L310.7,339.7A41.5,41.5 0,0 1,269.2 381.2L141,381.2A41.5,41.5 0,0 1,99.5 339.7L99.5,211.5A41.5,41.5 0,0 1,141 170z\"\n      android:strokeWidth=\"19.2\"\n      android:fillColor=\"#a3cc00\"\n      android:strokeColor=\"#fff\"/>\n  <path\n      android:pathData=\"M217.75,106.25L345.95,106.25A41.5,41.5 0,0 1,387.45 147.75L387.45,275.95A41.5,41.5 0,0 1,345.95 317.45L217.75,317.45A41.5,41.5 0,0 1,176.25 275.95L176.25,147.75A41.5,41.5 0,0 1,217.75 106.25z\"\n      android:strokeWidth=\"19.2\"\n      android:fillColor=\"#a3cc00\"\n      android:strokeColor=\"#fff\"/>\n  <path\n      android:pathData=\"M282,189.5m-35.15,0a35.15,35.15 0,1 1,70.3 0a35.15,35.15 0,1 1,-70.3 0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M224,269.65c5,-60 110,-60 116,0Z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/h-entry.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M141,170L269.2,170A41.5,41.5 0,0 1,310.7 211.5L310.7,339.7A41.5,41.5 0,0 1,269.2 381.2L141,381.2A41.5,41.5 0,0 1,99.5 339.7L99.5,211.5A41.5,41.5 0,0 1,141 170z\"\n      android:strokeWidth=\"19.2\"\n      android:fillColor=\"#a3cc00\"\n      android:strokeColor=\"#fff\"/>\n  <path\n      android:pathData=\"M217.75,106.25L345.95,106.25A41.5,41.5 0,0 1,387.45 147.75L387.45,275.95A41.5,41.5 0,0 1,345.95 317.45L217.75,317.45A41.5,41.5 0,0 1,176.25 275.95L176.25,147.75A41.5,41.5 0,0 1,217.75 106.25z\"\n      android:strokeWidth=\"19.2\"\n      android:fillColor=\"#a3cc00\"\n      android:strokeColor=\"#fff\"/>\n  <path\n      android:pathData=\"M237,224.4l32.1,32.1 70.41,-70.41 -32.1,-32.1zM224.25,234v35.25h35.25z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/h-feed.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M141,170L269.2,170A41.5,41.5 0,0 1,310.7 211.5L310.7,339.7A41.5,41.5 0,0 1,269.2 381.2L141,381.2A41.5,41.5 0,0 1,99.5 339.7L99.5,211.5A41.5,41.5 0,0 1,141 170z\"\n      android:strokeWidth=\"19.2\"\n      android:fillColor=\"#a3cc00\"\n      android:strokeColor=\"#fff\"/>\n  <path\n      android:pathData=\"M217.75,106.25L345.95,106.25A41.5,41.5 0,0 1,387.45 147.75L387.45,275.95A41.5,41.5 0,0 1,345.95 317.45L217.75,317.45A41.5,41.5 0,0 1,176.25 275.95L176.25,147.75A41.5,41.5 0,0 1,217.75 106.25z\"\n      android:strokeWidth=\"19.2\"\n      android:fillColor=\"#a3cc00\"\n      android:strokeColor=\"#fff\"/>\n  <path\n      android:pathData=\"M240.25,253.5m-16,0a16,16 0,1 1,32 0a16,16 0,1 1,-32 0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M224.25,204c36.5,0 65,29.5 65.45,65.45M224.25,165.5c61,0 104,50 104,104\"\n      android:strokeWidth=\"22.25\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/hackernews.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#f60\"/>\n  <path\n      android:pathData=\"m124,91h51l81,162 81,-164h51L276,293v136h-40V293\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/hackerone.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M333,200h4c10,1 25,5 26,17a18494,18494 0,0 1,0 222l-1,3c-4,9 -14,12 -23,14H329c-9,-2 -18,-7 -21,-17V274l-29,19c-7,5 -18,2 -25,-2 -9,-6 -15,-15 -17,-27 0,-4 1,-9 5,-12l74,-47c4,-3 10,-4 17,-5ZM174,56h5c10,1 22,5 25,16a116708,116708 0,0 1,0 366c-1,10 -12,15 -21,17H169c-9,-1 -18,-7 -20,-16V72c2,-11 15,-15 25,-16Z\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/haml.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#3e3e2a\"/>\n  <path\n      android:pathData=\"M115,91l81,165 -43,184c27,19 61,25 90,17a11062,11062 0,0 0,28 -153c18,21 47,29 72,32 -1,5 -7,16 -2,18 17,10 40,13 55,0 8,-7 12,-15 12,-25 12,-6 23,-16 21,-29 -1,-19 -18,-32 -31,-41 -11,-8 -34,-10 -40,-21 -8,-13 2,-24 2,-37l28,-24 3,2s9,1 14,-12l-2,-2c3,-3 10,-9 9,-10 -2,-2 -10,4 -14,7l-9,-6 18,-15c5,1 14,8 16,3 -7,-16 -37,-30 -47,-32 -2,0 -3,2 -5,3l-9,-3 -112,95 -46,-99h3c1,-2 3,-13 -9,-11 0,-2 -7,-22 -11,-23 -15,-6 -53,10 -72,17zM183,85l6,12 -13,1 -6,-11zM195,109l52,101 -8,7 -56,-106zM383,118c7,1 35,20 36,22 -3,0 -35,-20 -36,-22zM344,212c-4,11 -5,24 2,32 11,15 31,14 46,23 12,7 27,18 28,32 1,10 -5,17 -12,23 0,-1 -3,-20 -5,-15 -9,24 -28,15 -45,8l-3,1 -10,15c-31,-3 -64,-39 -72,-44l2,-23c23,-16 46,-34 69,-52zM269,265l2,3 -32,183 -3,1 26,-185 114,-99 6,5z\"\n      android:strokeWidth=\"22\"\n      android:fillColor=\"#ecdfa7\"\n      android:strokeColor=\"#29291c\"/>\n  <path\n      android:pathData=\"M115,91l81,165 -43,184c27,19 61,25 90,17a11062,11062 0,0 0,28 -153c18,21 47,29 72,32 -1,5 -7,16 -2,18 17,10 40,13 55,0 8,-7 12,-15 12,-25 12,-6 23,-16 21,-29 -1,-19 -18,-32 -31,-41 -11,-8 -34,-10 -40,-21 -8,-13 2,-24 2,-37l28,-24 3,2s9,1 14,-12l-2,-2c3,-3 10,-9 9,-10 -2,-2 -10,4 -14,7l-9,-6 18,-15c5,1 14,8 16,3 -7,-16 -37,-30 -47,-32 -2,0 -3,2 -5,3l-9,-3 -112,95 -46,-99h3c1,-2 3,-13 -9,-11 0,-2 -7,-22 -11,-23 -15,-6 -53,10 -72,17zM183,85l6,12 -13,1 -6,-11zM195,109l52,101 -8,7 -56,-106zM383,118c7,1 35,20 36,22 -3,0 -35,-20 -36,-22zM344,212c-4,11 -5,24 2,32 11,15 31,14 46,23 12,7 27,18 28,32 1,10 -5,17 -12,23 0,-1 -3,-20 -5,-15 -9,24 -28,15 -45,8l-3,1 -10,15c-31,-3 -64,-39 -72,-44l2,-23c23,-16 46,-34 69,-52zM269,265l2,3 -32,183 -3,1 26,-185 114,-99 6,5z\"\n      android:fillColor=\"#ecdfa7\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/heroku.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#409\"/>\n  <path\n      android:pathData=\"M367,99H145c-22,0 -30,8 -30,30v254c0,22 8,30 30,30h222c22,0 30,-8 30,-30V129c0,-22 -9,-30 -30,-30\"\n      android:strokeWidth=\"16\"\n      android:fillColor=\"#409\"\n      android:strokeColor=\"#fff\"/>\n  <path\n      android:pathData=\"M182,284c56,-28 94,-31 107,-25 9,4 9,15 9,15v99h33V273s-1,-32 -27,-44 -62,-1 -88,6v-95h-34m124,54s22,-22 25,-54h-34c-5,29 -25,54 -25,54m-90,178l37,-33 -37,-33\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/homekit.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M256,223c4,0 7,2 11,5l10,9a16,16 0,0 1,6 11v26c0,7 -6,13 -13,13L242,287c-7,0 -13,-5 -13,-13L229,248a16,16 0,0 1,6 -11l11,-9c4,-3 6,-5 10,-5m28,66L284,240l-28,-21 -28,21v49ZM242,159c8,-6 20,-6 28,0l58,46c9,7 9,15 9,20v97c0,12 -8,20 -19,20L194,342c-11,0 -19,-8 -19,-20L175,225c0,-5 0,-13 9,-20l58,-46ZM338,344L338,217c0,-5 -1,-5 -2,-6l-80,-63 -80,63c-1,1 -2,2 -2,6L174,344ZM241,83c8,-6 20,-6 30,0l114,90c7,5 14,14 14,29L399,379c0,15 -9,25 -24,25L137,404c-15,0 -24,-10 -24,-25L113,202c0,-15 7,-24 14,-29ZM399,406L399,218c0,-6 5,-11 11,-11h21l-34,-27a11,11 0,0 1,-4 -8L393,117L378,117v25c0,9 -10,14 -18,9L256,69 82,207h20c6,0 11,5 11,11L113,406Z\"\n      android:strokeLineJoin=\"round\"\n      android:strokeWidth=\"22\"\n      android:strokeColor=\"#000\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/hp.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256,64c-2.9,0 -5.8,0 -8.6,0.2l-39.3,108h34.2c20.3,0 31.3,15.6 24.3,34.8l-48.4,133h-40.7l52,-142.6L199,197.4L147,340h-40.6l61,-168 36.9,-101a192,192 0,0 0,7.2 371.7l35.7,-98L310,172h75c20.3,0 31.3,15.7 24.3,34.9l-42.5,116.9A26.5,26.5 0,0 1,343.6 340h-54l-39.2,107.8 5.7,0.1a192,192 0,0 0,0 -384zM341.6,197.3 L298.8,314.7h30.6l42.8,-117.4z\"\n      android:fillColor=\"#024ad8\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/html5.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M71,460L30,0h451l-41,460 -185,52\"\n      android:fillColor=\"#e34f26\"/>\n  <path\n      android:pathData=\"M256,472l149,-41 35,-394H256\"\n      android:fillColor=\"#ef652a\"/>\n  <path\n      android:pathData=\"M255,414 L139,382l-7,-89h56l4,45 63,17ZM256,265L129,265L114,94L256,94v56L176,150l5,58h75Z\"\n      android:fillColor=\"#ebebeb\"/>\n  <path\n      android:pathData=\"M255,208v57h70l-7,73 -63,17v59l116,-32 16,-174zM255,94v56h137l5,-56z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/hulu.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#040405\"/>\n  <path\n      android:pathData=\"M133,234c18,0 32,8 32,30v51L137,315L137,267c0,-4 -4,-7 -8,-7L112,260c-4,0 -8,3 -8,7v48L76,315L76,197h28v38l10,-1h19m275,0h28v50c0,18 -11,31 -28,31L380,315c-20,0 -33,-10 -33,-31L347,234h29v48c0,4 3,7 7,7h17c4,0 8,-3 8,-7L408,234ZM246,282L246,234h29v50c0,18 -11,31 -29,31L218,315c-19,0 -33,-10 -33,-31L185,234h29v48c0,4 4,7 8,7h16c5,0 8,-3 8,-7ZM297,316h29L326,197L297,197Z\"\n      android:fillColor=\"#1ce783\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/humblebundle.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M239,222c1,-16 1,-31 1,-46 -2,-120 -72,-98 -103,-70 -31,27 -56,78 -56,115 6,0 24,0 24,0s16,-72 65,-72 -27,280 -27,280h51s26,-72 39,-159h42c-2,22 -3,44 -3,66 2,120 72,98 103,70 31,-27 56,-78 56,-115H407s-16,72 -65,72S369,83 369,83H318s-22,61 -36,138H239Z\"\n      android:fillColor=\"#CB272C\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/i18next.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M287,154v48l54,140s17,35 -31,43L202,385s-44,-5 -33,-40l57,-143v-48h61ZM203,294 L183,341c-9,29 28,32 28,32h90c39,-6 27,-33 26,-34l-18,-44c-47,-15 -87,-7 -106,-1ZM232,247c-6,0 -11,6 -11,13s5,13 11,13 11,-6 11,-13 -5,-13 -11,-13ZM271,233c-7,0 -13,7 -13,15 0,9 6,16 13,16s13,-7 13,-16c0,-8 -6,-15 -13,-15Z\"\n      android:fillColor=\"#009688\"/>\n  <path\n      android:pathData=\"M288,149h-65c-6,0 -10,-5 -10,-11 0,-5 4,-10 10,-10h65c5,0 9,5 9,10 0,6 -4,11 -9,11ZM291,199v-23s30,-6 44,28c0,0 -22,17 -44,-5ZM220,199v-23s-29,-6 -44,28c0,0 23,17 44,-5ZM241,313c0,5 -7,9 -15,9 -9,0 -16,-4 -16,-9s7,-9 16,-9c8,0 15,4 15,9ZM296,313c0,5 -7,9 -16,9 -8,0 -15,-4 -15,-9s7,-9 15,-9c9,0 16,4 16,9Z\"\n      android:fillColor=\"#004d40\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/ibm.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M458,180H54m404,22H54m147,22H77m359,0H234m202,22H77m359,21H77m124,22H77m359,0H234m224,22H54m404,21H54\"\n      android:strokeWidth=\"12\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#1f70c1\"/>\n  <path\n      android:pathData=\"M111,215h56v81h-56zM144,173v166h-11L133,173zM341,173l28,76 26,-76zM335,245v94h67v-94l-33,93zM230,174c34,0 62,49 17,82 44,32 18,82 -17,82v3h49v-36l22,-10v-77l-22,-10v-36h-49z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/iheartradio.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256.1,284.6c-20.9,0 -37.8,16.9 -37.8,37.8v72.1c-0.1,7.1 -7.3,9.7 -13.6,5.8l-97.9,-92.6c-25,-25.2 -49,-52.5 -49,-90.3 0,-59.6 48.3,-107.9 107.9,-107.9 37.5,0 70.9,19.9 90.3,48.8L256,189c-17.9,0 -32.5,14.6 -32.5,32.5s14.6,32.4 32.5,32.4ZM195.9,275.9c6.8,3.5 16.1,-6.1 7.4,-13.2 -17.3,-9.7 -28.9,-28.5 -29,-46.9 0,-16.9 9.3,-32.4 24.3,-40.2 7,-3.9 3.5,-16.9 -7,-13.2 -19.8,10.3 -32.3,30.9 -32.3,54s14.7,47.1 36.6,59.4ZM147.5,301.2c6.1,5.3 16.9,-2.5 9.9,-11.2 -28.9,-25.6 -43.6,-51.6 -43.6,-75.2s13.2,-48.2 29.9,-58.7c6.6,-4.4 2.3,-17 -8,-12.6 -21,13.2 -36.9,42.8 -36.9,71.1 0,28.3 16.3,58.1 48.6,86.7Z\"\n      android:fillColor=\"#c6002b\"/>\n  <path\n      android:pathData=\"M253.9,284.6c20.9,0 37.8,16.9 37.8,37.8l-0,72.1c0.1,7.1 7.3,9.7 13.6,5.8l97.9,-92.6c25,-25.2 49,-52.5 49,-90.3 -0,-59.6 -48.3,-107.9 -107.9,-107.9 -37.5,0 -70.9,19.9 -90.3,48.8L254,189c17.9,0 32.5,14.6 32.5,32.5s-14.6,32.4 -32.5,32.4ZM314.1,275.9c-6.8,3.5 -16.1,-6.1 -7.4,-13.2 17.3,-9.7 28.9,-28.5 29,-46.9 -0,-16.9 -9.3,-32.4 -24.3,-40.2 -7,-3.9 -3.5,-16.9 7,-13.2 19.8,10.3 32.3,30.9 32.3,54s-14.7,47.1 -36.6,59.4ZM362.5,301.2c-6.1,5.3 -16.9,-2.5 -9.9,-11.2 28.9,-25.6 43.6,-51.6 43.6,-75.2s-13.2,-48.2 -29.9,-58.7c-6.6,-4.4 -2.3,-17 8,-12.6 21,13.2 36.9,42.8 36.9,71.1 -0,28.3 -16.3,58.1 -48.6,86.7Z\"\n      android:fillColor=\"#c6002b\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/imdb.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#f5c518\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M104,328L104,184L64,184v144zM189,184 L180,251 175,215 170,184h-50v144h34v-95l14,95h25l13,-97v97h34L240,184zM256,328L256,184h62c15,0 26,11 26,25v94c0,14 -11,25 -26,25zM303,210 L294,209v94c5,0 9,-1 10,-3 2,-2 2,-8 2,-18v-56,-12l-3,-4zM419,220h3c14,0 26,11 26,25v58c0,14 -12,25 -26,25h-3c-8,0 -16,-4 -21,-11l-2,9h-36L360,184h38v46c5,-6 13,-10 21,-10zM411,290v-34l-1,-11c-1,-2 -4,-3 -6,-3s-5,1 -6,3v57c1,2 4,3 6,3s6,-1 6,-3l1,-12z\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/imgur.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M256,211v219\"\n      android:strokeWidth=\"90\"\n      android:strokeColor=\"#000\"\n      android:strokeLineCap=\"round\"/>\n  <path\n      android:pathData=\"M256,91m-53,0a53,53 0,1 1,106 0a53,53 0,1 1,-106 0\"\n      android:fillColor=\"#89c623\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/instagram.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m0,0H512V512H0\"/>\n  <path\n      android:pathData=\"m0,0H512V512H0\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:centerX=\"204.8\"\n          android:centerY=\"512\"\n          android:gradientRadius=\"512\"\n          android:type=\"radial\">\n        <item android:offset=\"0.1\" android:color=\"#FFFFDD55\"/>\n        <item android:offset=\"0.5\" android:color=\"#FFFF543E\"/>\n        <item android:offset=\"1\" android:color=\"#FFC837AB\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"m0,0H512V512H0\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"0\"\n          android:startY=\"0\"\n          android:endX=\"102.4\"\n          android:endY=\"512\"\n          android:type=\"linear\">\n        <item android:offset=\"0.1\" android:color=\"#FF3771C8\"/>\n        <item android:offset=\"0.5\" android:color=\"#006600FF\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"M183,102L329,102A81,81 0,0 1,410 183L410,329A81,81 0,0 1,329 410L183,410A81,81 0,0 1,102 329L102,183A81,81 0,0 1,183 102z\"\n      android:strokeWidth=\"30\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256,256m-72,0a72,72 0,1 1,144 0a72,72 0,1 1,-144 0\"\n      android:strokeWidth=\"30\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"/>\n  <path\n      android:pathData=\"M347,165m-6,0a6,6 0,1 1,12 0a6,6 0,1 1,-12 0\"\n      android:strokeWidth=\"30\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/intel.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M55.2,173.6h31.5v31.5H55.2\"\n      android:fillColor=\"#0068b5\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M56,224.2h30v113.6H56m47.5,0V224.2H133v16.4q11,-15 28,-18s52.4,-9.5 55.4,47v68.2h-30.2v-61q-1,-29 -26,-29s-27,-1 -27,32v58m151.2,1.2c-40.6,1 -51,-12 -51.6,-48V180h30v44.2h21.6v25.7h-21.6v42c0.4,15 2,19.5 21.7,19.3m37,-40.7c0,-9 10.5,-23 30,-23s30,13 30.3,22.9m0,31.2c-13,16 -52,21 -60.5,-10h89.2v-12c-2,-50 -49,-66.7 -82,-52.8s-47,57 -25,89 74,32.5 99.8,2.2m22.7,20V171.2h30V338\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/intercom.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#16100e\"/>\n  <path\n      android:pathData=\"M139,105a38,38 0,0 0,-38 38v228a38,38 0,0 0,38 38h228a38,38 0,0 0,38 -38V143a38,38 0,0 0,-38 -38\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M151,327c52,41 157,41 203,0M152,181v91m203,0v-91M202,161v135m102,0V161m-51,-5v146\"\n      android:strokeWidth=\"20\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#16100e\"\n      android:strokeLineCap=\"round\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/internet_archive.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m81,419h350v18L81,437zM95,385h323v25L95,410zM93,101h321v35L93,136zM412,91 L422,80 253,41L85,80l10,11h158zM139,245 L138,194 135,147c0,-2 0,-2 -2,-2a67,67 0,0 0,-28 0c-1,0 -2,0 -2,2l-2,47a2223,2223 0,0 0,0 127l2,43 1,8 15,3c6,-1 11,-1 16,-3l1,-8 2,-43a1616,1616 0,0 0,1 -76zM227,245 L225,194 223,147c0,-2 -1,-2 -2,-2a67,67 0,0 0,-28 0c-2,0 -2,0 -2,2l-3,47a2223,2223 0,0 0,0 127l2,43 1,8c5,2 11,2 16,3l16,-3v-8l2,-43a1620,1620 0,0 0,2 -76zM328,245 L327,194 324,147c0,-2 0,-2 -2,-2a67,67 0,0 0,-28 0c-1,0 -2,0 -2,2l-2,47a2223,2223 0,0 0,0 127l2,43 1,8 15,3c5,-1 11,-1 16,-3l1,-8 2,-43a1624,1624 0,0 0,1 -76zM413,245 L412,194 410,147c0,-2 -1,-2 -2,-2a67,67 0,0 0,-29 0l-1,2 -3,47a2227,2227 0,0 0,0 127l2,43 1,8c5,2 10,2 16,3l15,-3 1,-8 2,-43a1620,1620 0,0 0,1 -76z\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/itch_io.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M256,272s33,31 39,42l-22,-1v19L239,332L239,313l-22,1c6,-11 39,-42 39,-42ZM186,236c-6,0 -29,0 -45,46l-18,63c-13,46 4,47 26,47 31,-1 49,-24 48,-47a371,371 0,0 0,117 0c0,23 18,46 49,47 22,0 39,-1 26,-47l-18,-63c-16,-46 -39,-46 -45,-46 -12,0 -23,0 -37,15l-33,-2 -33,2c-14,-15 -25,-15 -37,-15ZM217,196a43,43 0,0 0,38 22h1,1a43,43 0,0 0,38 -22,43 43,0 0,0 68,9l7,-9 7,9c8,8 19,13 31,13l4,-1 2,46v18c0,36 4,118 -16,138 -30,7 -86,10 -142,10s-112,-3 -142,-10C94,399 98,317 98,281L98,263l2,-46 4,1c12,0 23,-5 31,-13l7,-9a43,43 0,0 0,68 9l7,-9ZM118,95a3511,3511 0,0 1,276 0c16,10 49,47 49,56v16c0,21 -19,38 -36,38 -21,0 -38,-17 -38,-37 0,20 -17,37 -38,37 -20,0 -36,-17 -36,-37 0,20 -18,37 -39,37s-39,-17 -39,-37c0,20 -16,37 -36,37 -21,0 -38,-17 -38,-37 0,20 -17,37 -38,37 -17,0 -36,-17 -36,-38L69,151c0,-9 33,-46 49,-56Z\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/itunes_podcasts.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"0\"\n          android:startY=\"512\"\n          android:endX=\"0\"\n          android:endY=\"0\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FF832BC1\"/>\n        <item android:offset=\"1\" android:color=\"#FFF452FF\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"M252,139A97,97 0,0 0,189 308c2,1 3,4 3,6v20c0,2 -2,4 -4,3a121,121 0,1 1,136 -1c-2,2 -4,0 -4,-2l1,-20c-1,-2 0,-5 2,-6A98,98 0,0 0,252 139ZM256,57a180,180 0,0 1,60 350c-2,0 -4,-1 -4,-3l3,-18c0,-3 2,-4 4,-5a157,157 0,1 0,-126 0c2,1 4,2 4,5l3,18c0,2 -2,3 -4,3A180,180 0,0 1,256 57ZM214,222a42,42 0,0 1,84 0,42 42,0 1,1 -84,0ZM293,294c4,5 6,9 7,15A891,891 0,0 1,286 435c-3,9 -13,18 -30,18 -16,0 -27,-9 -30,-18a891,891 0,0 1,-13 -87c-1,-17 -2,-27 -1,-39 1,-6 3,-10 7,-15 8,-8 21,-13 37,-13s29,5 37,13Z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/jacobin.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M349,337V81H163v105l103,-32v170c0,34 -11,43 -42,43h-61v71h83c68,0 103,-25 103,-101\"\n      android:fillColor=\"#ff0000\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/java.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M274,235c18,21 -5,40 -5,40s47,-24 25,-54 -35,-42 48,-90c0,-1 -131,32 -68,104M294,53s40,40 -38,100c-62,49 -14,77 0,109 -36,-33 -63,-61 -45,-88 27,-40 99,-59 83,-121\"\n      android:fillColor=\"#f8981d\"/>\n  <path\n      android:pathData=\"M206,347s-15,8 10,11 46,3 79,-3a137,137 0,0 0,21 10c-74,32 -169,-1 -110,-18m-9,-42s-16,12 9,15 58,4 102,-5a45,45 0,0 0,16 10c-91,26 -192,2 -127,-20m175,73s11,9 -12,16c-43,13 -179,17 -217,1 -14,-6 15,-17 33,-17 -17,-10 -98,21 -42,30 153,24 278,-12 238,-30M213,262s-69,16 -25,22c19,3 57,2 92,-1s57,-8 57,-8a122,122 0,0 0,-17 9c-70,18 -206,10 -167,-9s60,-13 60,-13m124,69c73,-37 39,-80 7,-66 36,-30 101,36 -9,68zM220,432c69,4 174,-2 176,-35 0,0 -5,12 -57,22s-131,10 -174,3c1,0 10,7 55,10\"\n      android:fillColor=\"#5382a1\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/javascript.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#f7df1e\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m324,370q17,29 45,29 35,0 35,-27c0,-11 -15,-21 -39,-31q-67,-22 -66,-75c0,-36 27,-64 70,-64q48,0 68,39l-37,24q-12,-22 -31,-21 -22,1 -23,21c0,14 9,20 39,33 43,17 67,36 67,77q-3,65 -79,67 -63,0 -89,-49zM154,374c8,13 13,25 33,25q24,0 24,-30L211,203h48v164q-1,71 -72,72 -53,-1 -72,-44z\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/jellyfin.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256,56.1C203.1,56.1 32.8,364.9 58.7,417s369,51.6 394.7,0S308.9,56.1 256,56.1zM256,135.2c34.7,0 146.1,202.7 129.3,236.5s-241.5,34.2 -258.5,0S221.3,135.2 256,135.2zM256,209.3c-17.6,0 -74.1,102.5 -65.5,119.8s122.5,17.1 131,0 -47.9,-119.8 -65.5,-119.8z\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"126.15\"\n          android:startY=\"219.32\"\n          android:endX=\"457.68\"\n          android:endY=\"410.73\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FFAA5CC3\"/>\n        <item android:offset=\"1\" android:color=\"#FF00A4DC\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/jquery.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M125.3,300.5c20,3 27,1.7 33,-22l8.8,-41.3h-16.5l-8.7,39q-2.5,10.5 -8,9.7l-5,-0.9m22.6,-51.7h16.4l3,-13.4h-16.3m63.8,42.3h-18q-13.5,-2 -8.7,-23t21,-20.4 12.6,19m17.3,25.1h-8.7c4,-10 9.5,-24 9.4,-32s-3,-26.5 -29,-27.3 -38,20 -41,40 4,34.2 27,33.8h38.5m55.4,0h-28q-21.1,1 -16,-27l5.7,-30.5h15.5l-6.7,33q-2.2,10.2 7,9.8h10.2l9.4,-42.8h15.1m40.7,24.6q1.5,-10.8 -9,-10.8t-13,7.3q-1,3 0.7,3.4m28,33h-26c-27,0 -23,-17 -20,-31s11.3,-27 33,-26.6 23.7,15.1 19,35h-36q-2.7,1 -1.6,5.7t10,5h24.7m6.6,11.9h15.6l8.9,-43.7h32.7l-1.6,-7q-1.4,-7 -11,-6.8h-32.5m28.3,17.3h17.6l2.3,10 25,-37h20l-40,53.3 -3.7,14h-17.5l3.7,-14\"\n      android:fillColor=\"#2f2d2e\"/>\n  <path\n      android:pathData=\"M50,218c-18,18 -10,44 9,57s46,10 58,-13c-31,31 -83,-8 -67,-44m21,-8c-16,17 -5,36 6,43s33,9 42,-11c-22,25 -63,-6 -48,-32m16,-3c-17,19 18,43 30,20 -12,14 -38,-3 -30,-20\"\n      android:fillColor=\"#2e64b3\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/json-ld.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m264,191c0.9,18.9 -42.5,41.8 -60.1,35.4a40.3,40.3 0,1 0,4.4 67.2c15,-9.9 60,14.1 60.8,32.1a40.3,40.3 0,1 0,56.8 -35.6c-13.4,-7.7 -14.8,-61.4 -0.9,-69.4A40.3,40.3 0,1 0,264 191zM281.7,219.9a40,40 0,0 0,10.6 5c12,11.4 12.9,55.1 0.2,65.4a40,40 0,0 0,-9.5 6.1c-11.3,5.7 -56.3,-15.3 -58.6,-34.2a40,40 0,0 0,-0.5 -7.4c0,-11.9 40.5,-41.3 57.8,-34.9z\"\n      android:fillColor=\"#0c479c\"/>\n  <path\n      android:pathData=\"M279,206c-8,-9 -3,-22 0,-27 1,-1 3,-3 5,-2a9,9 0,0 0,10 -14c8,-5 20,-9 29,-3 -14,-12 -33,-7 -43,4s-13,32 -1,43\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M286,347c-8,-9 -3,-22 0,-27 1,-1 3,-3 5,-2a9,9 0,0 0,10 -14c8,-5 20,-9 29,-3 -14,-12 -33,-7 -43,4s-13,32 -1,43\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M160,282c-8,-9 -3,-22 0,-27 1,-1 3,-3 5,-2a9,9 0,0 0,10 -14c8,-5 20,-9 29,-3 -14,-12 -33,-7 -43,4s-13,32 -1,43\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m55,256v11c27,0 47,-1 47,41v37c0,49 15,56 74,56v-22c-15,0 -33,0 -39,-6 -5,-7 -6,-14 -6,-29v-38c0,-22 -3,-43 -31,-50H55z\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m55,256l0,-11c27,-0 47,1 47,-41l0,-37c0,-49 15,-56 74,-56l0,22c-15,-0 -33,-0 -39,6 -5,7 -6,14 -6,29l0,38c0,22 -3,43 -31,50L55,256z\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m457,256l-0,11c-27,0 -47,-1 -47,41l-0,37c-0,49 -15,56 -74,56l-0,-22c15,0 33,0 39,-6 5,-7 6,-14 6,-29l-0,-38c-0,-22 3,-43 31,-50L457,256z\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/json.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256,64c-99,0 -192,81 -192,192 0,123 102,192 192,192 -21,0 -125,-23 -125,-166 0,-89 73,-139 125,-119 0,0 56,21 56,93s-56,93 -56,93c51,20 125,-27 125,-119 0,-129 -87,-166 -125,-166z\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"119.47\"\n          android:startY=\"121.6\"\n          android:endX=\"381\"\n          android:endY=\"390.4\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FF000000\"/>\n        <item android:offset=\"1\" android:color=\"#FFFFFFFF\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"M256,448c99,-0 192,-81 192,-192 -0,-123 -102,-192 -192,-192 21,-0 125,23 125,166 -0,89 -73,139 -125,119 -0,-0 -56,-21 -56,-93s56,-93 56,-93c-51,-20 -125,27 -125,119 -0,129 87,166 125,166z\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"186.47\"\n          android:startY=\"121.6\"\n          android:endX=\"448\"\n          android:endY=\"390.4\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FF000000\"/>\n        <item android:offset=\"1\" android:color=\"#FFFFFFFF\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/jsonfeed.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#8be028\"/>\n  <path\n      android:pathData=\"M359.03,125.5a27.5,27.5 0,1 0,55 0a27.5,27.5 0,1 0,-55 0z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M299.03,185.5a27.5,27.5 0,1 0,55 0a27.5,27.5 0,1 0,-55 0z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M239.03,245.5a27.5,27.5 0,1 0,55 0a27.5,27.5 0,1 0,-55 0z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m118,96s-53.5,42 -52.5,87c0.6,25.2 22.5,45 39.5,64s41,32 46,59c3,16 -10,22 -19,35 -10.7,15.4 7,32 7,32s16.6,17.7 32,7c13,-9 19,-22 35,-19 27,5 40,29 59,46s38.8,38.9 64,39.5c45,1 87,-52.5 87,-52.5l-29,-29s-23,27 -43,27c-45.5,-8.6 -61.1,-59.5 -100,-77 -29,-12 -45.7,12.6 -53,6 -6.6,-7.3 18,-24 6,-53 -17.5,-38.9 -68.4,-54.5 -77,-100 0,-20 27,-43 27,-43z\"\n      android:fillColor=\"#497715\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/jsr.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M75.9,214.4h55.4V159h194v27.7H436v110.9h-55.4V353h-194v-27.7H76\"\n      android:fillColor=\"#083344\"/>\n  <path\n      android:pathData=\"M103.6,242.1h27.7V270H159v-83.2h27.7v110.9h-83.1m110.8,-111h83.2v27.7H242v27.7h55.5v83.2h-83.2v-27.7H270v-27.7h-55.5m110.8,-55.5h83.1V270h-27.7v-28H353v83.2h-27.7\"\n      android:fillColor=\"#f7df1e\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/julia.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256,137m-83,0a83,83 0,1 1,166 0a83,83 0,1 1,-166 0\"\n      android:fillColor=\"#389826\"/>\n  <path\n      android:pathData=\"M145,329m-83,0a83,83 0,1 1,166 0a83,83 0,1 1,-166 0\"\n      android:fillColor=\"#cb3c33\"/>\n  <path\n      android:pathData=\"M367,329m-83,0a83,83 0,1 1,166 0a83,83 0,1 1,-166 0\"\n      android:fillColor=\"#9558b2\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/justgiving.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M443,216c3,12 3,26 3,40 0,103 -83,187 -187,187S70,359 70,256C70,152 155,68 259,68c45,0 86,16 119,43l-71,71c-14,-9 -31,-14 -48,-14 -49,0 -89,39 -89,88s40,87 89,87c36,0 67,-21 81,-51H234l77,-76H443Z\"\n      android:fillColor=\"#7A04DD\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/kaggle.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m228,327 l-21,20v76q0,5 -5,5h-36q-5,0 -5,-5V81q0,-5 5,-5h36q5,0 5,5v210l92,-93q3,-3 7,-3h48c4,0 5,5 3,7l-98,95 104,125c2,2 2,6 -2,6h-48q-4,0 -7,-3\"\n      android:fillColor=\"#20beff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/keepassdx.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#4a4\"/>\n  <path\n      android:pathData=\"m262,181a79,79 0,1 0,0 -1m86,0a24,24 0,1 1,0 1m-239,-28v-35h35l259,259v35h-35zM109,378v34h35l36,-36h35v-35h35v-24l-40,-40\"\n      android:fillColor=\"#307333\"/>\n  <path\n      android:pathData=\"m144,109h-35v35l259,259h35v-35\"\n      android:fillColor=\"#ffa726\"/>\n  <path\n      android:pathData=\"m262,172a79,79 0,1 0,0 -1m86,0a24,24 0,1 1,0 1M109,369v34h35l36,-36h35v-35h35v-24l-40,-40\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/kemal.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M412,362s-17,-156 -26,-208c0,-1 -1,-3 -3,-3H257v211h155z\"\n      android:fillColor=\"#f92727\"/>\n  <path\n      android:pathData=\"M101,362s17,-156 26,-208c0,-1 1,-3 3,-3h127v211H101z\"\n      android:fillColor=\"#ff4f4f\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M339,279h-6V151h6z\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/keskonfai.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fab12d\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M284.2,404 L236,324.8l-29.6,28v43.4q0,15.8 -8.4,24.4 -8.2,8.4 -19,8.4 -12.6,0 -19.8,-8.4 -7.2,-8.4 -7.2,-24.8V163q0,-18.2 7,-27.6 7,-9.6 20,-9.6 12.6,0 20,8.6t7.4,25.4v132.4l61.4,-64.4q11.4,-12 17.4,-16.4t14.6,-4.4q10.2,0 17,6.6 6.8,6.4 6.8,16.2 0,12 -22.2,32l-29,26.6 56,88q6.2,9.8 8.8,15 2.8,5 2.8,9.6 0,13 -7.2,20.6 -7,7.4 -18.6,7.4 -10,0 -15.4,-5.4T284.2,404z\"/>\n  <path\n      android:pathData=\"M298.6,70.1a41.5,41.5 0,0 0,-31.2 65,4239.5 4239.5,0 0,1 34.1,54.9l16.5,-26.5 17.6,-28.3a41.6,41.6 0,0 0,-37 -65zM304.9,87.7a20.8,20.8 0,1 1,-23.5 25.8,20.8 20.8,0 0,1 23.5,-25.7z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/keybase.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m201,80 l22,-31 18,10c-9,18 -8,24 -8,26 8,-3 81,10 59,80 0,0 44,12 76,57 29,39 11,104 -57,84 -58,-17 -111,-13 -177,40l32,-81 -79,102c-3,-99 10,-140 79,-190 -23,-1 -41,-18 -40,-38l2,-27c1,-19 17,-35 37,-34 1,-1 36,1 36,2zM237,176c-5,-6 -15,1 -9,7l21,25 -10,8c-2,2 -3,5 -1,7l2,3c3,3 6,0 6,0l10,-9 10,10 -22,17c-2,2 -2,5 -1,7l9,11c2,2 5,2 7,1l22,-17 6,7c5,6 14,-1 9,-7zM187,106 L166,104c-5,0 -10,4 -11,9l-1,27c0,6 4,10 9,10l16,1c-1,-6 4,-36 8,-45z\"\n      android:fillColor=\"#282828\"/>\n  <path\n      android:pathData=\"M215,348m-14,0a14,14 0,1 1,28 0a14,14 0,1 1,-28 0\"\n      android:fillColor=\"#282828\"/>\n  <path\n      android:pathData=\"M298,348m-14,0a14,14 0,1 1,28 0a14,14 0,1 1,-28 0\"\n      android:fillColor=\"#282828\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/kickstarter.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m188,169v174l47,-85 89,-89 -89,89 89,85\"\n      android:strokeLineJoin=\"round\"\n      android:strokeWidth=\"163\"\n      android:strokeColor=\"#05ce78\"\n      android:strokeLineCap=\"round\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/ko-fi.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M66,213.4c0,-54.7 32.9,-84.3 71.6,-89.2 29.2,-3.7 65.4,-4.1 108.2,-4.1 66.7,0 83.9,0.8 108.6,3.3 58,5.7 91.7,41.5 91.7,92.9v6.6c0,47.7 -35,86.8 -82.3,90.9 -3.7,12.3 -9.5,24.7 -17.3,37 -18.1,27.9 -54.3,63.3 -120.9,63.3H212.4c-54.3,0 -96.2,-23.4 -121.3,-66.2C68.9,310.5 66,268.9 66,213.4\"\n      android:fillColor=\"#202020\"/>\n  <path\n      android:pathData=\"M97,214c0,53 3,87 21,119 20,37 56,51 96,51h13c53,0 79,-26 94,-49 7,-12 13,-24 16,-40l2,-10h15c33,0 61,-27 61,-61v-6c0,-38 -24,-58 -65,-63 -23,-2 -37,-3 -104,-3 -45,0 -77,0 -101,4 -34,5 -48,24 -48,59\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M339,242c0,5 4,9 10,9 21,0 32,-12 32,-32s-12,-32 -32,-32c-7,0 -10,4 -10,9v46Z\"\n      android:fillColor=\"#202020\"/>\n  <path\n      android:pathData=\"M137,240c0,24 14,45 31,62 12,11 30,23 42,30 4,2 7,3 12,3s9,-1 12,-3c12,-7 30,-19 42,-30 18,-16 31,-37 31,-62 0,-26 -20,-50 -48,-50 -17,0 -28,9 -37,21 -8,-12 -20,-21 -37,-21 -29,0 -48,23 -48,50\"\n      android:fillColor=\"#ff5a16\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/kodi.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M441.5,269.5L383,327.9c-7,7 -14.5,7 -21.5,0l-60.3,-60.4c-6.8,-6.8 -6.8,-14.3 0,-21.1l60.6,-60.7c6.6,-6.5 14.3,-6.5 20.9,0l58.7,58.8c9,8.7 8.4,16.6 0,25z\"\n      android:fillColor=\"#17b2e7\"/>\n  <path\n      android:pathData=\"m245,441 l-58.3,-58.5c-7,-7 -7,-14.4 0,-21.4l60.4,-60.4c6.7,-6.7 14.3,-6.7 21,0l60.4,60.4c6.9,6.9 7,14.5 0,21.4l-58.8,59c-8.6,8.7 -16.5,7.6 -24.7,-0.6z\"\n      android:fillColor=\"#17b2e7\"/>\n  <path\n      android:pathData=\"M184,141.5c0,-6.5 1.5,-11.6 6.4,-15.8 18.8,-18.4 39,-38.9 55.6,-55.5 7,-7 14.4,-7 21.3,0l60.3,60.3c6.9,6.9 6.9,14.5 0,21.4L193.4,286.2c-7.8,4.2 -9,-1.5 -9.2,-7.7 -0.4,-47.1 0.4,-93.2 -0.2,-137z\"\n      android:fillColor=\"#17b2e7\"/>\n  <path\n      android:pathData=\"M136.1,319V195.3c-0.3,-5.1 -3,-12.3 -8.5,-6.7l-60.2,61a10.4,10.4 0,0 0,0 15.4l61,61c4,3.9 7.8,-1.8 7.7,-7Z\"\n      android:fillColor=\"#17b2e7\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/kotlin.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#27282c\"/>\n  <path\n      android:pathData=\"M410,410H102V102h154v154\"\n      android:fillColor=\"#09d\"/>\n  <path\n      android:pathData=\"M410,102H256L102,267v143\"\n      android:fillColor=\"#f80\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/language-icon.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M359,402l-12,34 -22,-37m68,-238 l28,9V398L257,345 90,399V163l36,-12V74l119,39L393,64\"/>\n  <path\n      android:pathData=\"M385,75 L257,117l128,41M248,119 L98,168L98,388l150,-49m80,-158 l-47,115 22,7 10,-24 46,14 7,29 22,7 -39,-141m-166,-1c2,0 4,1 4,4 1,4 0,5 -1,6 -2,4 -7,7 -10,8 -4,1 -9,3 -13,2 -2,0 -6,0 -11,-5 -3,-3 -5,-10 -4,-10l10,2 13,-4a87,87 0,0 1,12 -3ZM212,204 L213,205 212,212 200,236 184,264 197,270 228,283c1,1 4,10 3,12a223,223 0,0 1,-32 -15l-17,-13c-8,12 -18,26 -29,39 -4,4 -16,19 -23,23 -1,1 -7,2 -8,1l18,-19c5,-7 31,-42 35,-50l19,-38 -24,7 -17,5 -1,4 -6,3L136,242c-3,0 -6,-3 -7,-4l-1,-5 12,-2 23,-7 22,-8 19,-9 8,-3ZM338,219 L351,267 321,258\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M160,418a170,170 0,0 0,178 0\"\n      android:strokeWidth=\"8\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#000\"\n      android:strokeLineCap=\"round\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/laravel.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m233,435 l-130,-73V136l64,-38 66,39 -66,38 -64,-39m64,39v150l66,37v73l132,-73v-75l-68,-38v-78l68,-38 66,38v78l-66,38v-77l66,-39m-66,39 l-68,-39v78l-130,76m66,-39V137m0,225 l132,-75\"\n      android:strokeLineJoin=\"round\"\n      android:strokeWidth=\"11\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#ff2d20\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/lastpass.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#d32d27\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M108,256zM227,256zM347,256z\"\n      android:strokeWidth=\"88\"\n      android:strokeColor=\"#fff\"\n      android:strokeLineCap=\"round\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M438,170v172\"\n      android:strokeWidth=\"20\"\n      android:strokeColor=\"#fff\"\n      android:strokeLineCap=\"round\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/leetcode.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M339,326a24,24 0,1 1,34 35l-42,42c-40,39 -103,40 -143,1l-76,-74a99,99 0,0 1,-7 -139l69,-73c36,-39 103,-43 144,-9l62,50a24,24 0,0 1,-30 38l-62,-50a62,62 0,0 0,-79 5l-68,73c-18,19 -16,49 5,70l76,74c20,20 54,20 74,-1z\"\n      android:fillColor=\"#FFA116\"/>\n  <path\n      android:pathData=\"M236,284a24,24 0,0 1,0 -49h180a24,24 0,0 1,0 49z\"\n      android:fillColor=\"#B3B3B3\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M269,16a24,24 0,1 1,36 33L141,225c-18,19 -16,49 5,70l75,74a24,24 0,0 1,-34 35l-75,-74a99,99 0,0 1,-7 -139z\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/liberapay.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#f6c915\"/>\n  <path\n      android:pathData=\"M209,359c-17,0 -30,-2 -39,-7 -10,-4 -16,-10 -20,-17 -4,-8 -6,-16 -6,-26s1,-20 4,-31l44,-185 54,-8 -48,201 -2,11c0,4 0,7 2,9 1,3 4,5 7,7l14,3 -10,43M404,243c0,17 -3,33 -9,47a103,103 0,0 1,-59 60,117 117,0 0,1 -68,7l-16,63h-51l57,-241a305,305 0,0 1,71 -11c13,0 24,2 34,6a63,63 0,0 1,36 40c3,9 5,19 5,29m-127,72 l15,1c9,0 17,-1 25,-5 7,-3 13,-8 19,-14 5,-6 9,-13 12,-22 3,-8 4,-18 4,-28s-2,-18 -6,-25c-5,-7 -13,-11 -23,-11l-21,2 -25,102\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/librespeed.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m0,0H512V512H0\"/>\n  <path\n      android:pathData=\"m143,313a127,127 0,0 1,152 -180\"\n      android:strokeWidth=\"21.5\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#d1d3d4\"/>\n  <path\n      android:pathData=\"m256,103 l-22.5,151a5,7 0,0 0,45 0z\"\n      android:strokeWidth=\"4\"\n      android:strokeColor=\"#000\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"233.5\"\n          android:startY=\"103\"\n          android:endX=\"233.5\"\n          android:endY=\"199.67\"\n          android:type=\"linear\">\n        <item android:offset=\"0.56\" android:color=\"#FF00AEEF\"/>\n        <item android:offset=\"1\" android:color=\"#FF1B75BC\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"m64,255a192,192 0,1 1,0 2m33,0a159,159 0,1 0,0 -2m102.2,84v16h16v-16h16.5v16h16v-16h16.5v16h16v-16h16.5v16h16v-16M247,256a9,9 0,1 0,0 -0.1\"\n      android:fillColor=\"#d1d3d4\"/>\n  <path\n      android:pathData=\"m301,146q15,7 26,15l13,-17q-15,-11 -31,-18\"\n      android:fillColor=\"#f7941d\"/>\n  <path\n      android:pathData=\"m335,168q9,8 20,23l18,-11q-9,-15 -23,-28\"\n      android:fillColor=\"#f15a29\"/>\n  <path\n      android:pathData=\"m360,200q7,15 10,29l21,-5q-3,-17 -12,-34\"\n      android:fillColor=\"#ef4136\"/>\n  <path\n      android:pathData=\"m372,239q2,15 0,31l21,2q3,-17 0,-36\"\n      android:fillColor=\"#ed1c24\"/>\n  <path\n      android:pathData=\"m370,280q-3,15 -10,29l19,9q9,-16 12,-34\"\n      android:fillColor=\"#be1e2d\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/line.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#06c755\"/>\n  <path\n      android:pathData=\"M443,231c3,-82 -83,-150 -186,-150S69,149 69,231c0,73 67,135 155,147 41,5 9,38 20,52 11,9 95,-49 148,-96 30,-27 49,-58 51,-103Z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M184,268H147V196m66,0v72m89,-72v72l-54,-72v72m123,0H335V196h36m-34,36h34\"\n      android:strokeLineJoin=\"round\"\n      android:strokeWidth=\"21\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#06c755\"\n      android:strokeLineCap=\"round\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/linearapp.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#5e6ad2\"/>\n  <path\n      android:pathData=\"m72.2,299.3s20,111 140.4,140.5zM267.6,444.5q16,-1 26.6,-3.6L71.3,217.8q-2,7 -3.8,26.6zM83.4,179.7q4,-9 10.3,-19.9l258.5,258.5q-9,6 -20,10.2zM381.3,397A188.6,188.6 0,1 0,115 130.8z\"\n      android:strokeLineJoin=\"round\"\n      android:strokeWidth=\"7\"\n      android:fillColor=\"#fff\"\n      android:strokeColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/linkedin.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#0077b5\"/>\n  <path\n      android:pathData=\"M142,138m-37,0a37,37 0,1 1,74 0a37,37 0,1 1,-74 0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M244,194v198M142,194v198\"\n      android:strokeWidth=\"66\"\n      android:fillColor=\"#fff\"\n      android:strokeColor=\"#fff\"/>\n  <path\n      android:pathData=\"M276,282c0,-20 13,-40 36,-40 24,0 33,18 33,45v105h66V279c0,-61 -32,-89 -76,-89 -34,0 -51,19 -59,32\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/linux-foundation.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M109,109h294v294h-88.8v-61.2h31.2V165.4l-178.8,1.2 -1.2,31.2H109z\"\n      android:fillColor=\"#0B3B61\"/>\n  <path\n      android:pathData=\"M109,224.2h56.4v117.6h118.8V403H109z\"\n      android:fillColor=\"#199AD6\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/linux.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M192,206c-6,14 -48,58 -44,102 16,184 72,60 156,106 0,0 150,-84 30,-220 -34,-48 -4,-86 -26,-118s-60,-34 -88,-4 12,74 -28,134\"\n      android:fillColor=\"#333\"/>\n  <path\n      android:pathData=\"M340,298s18,-36 -16,-62c32,34 12,64 12,64l-6,0C328,230 310,268 284,144 314,110 256,80 256,136l-18,0c2,-48 -40,-24 -16,10 -2,74 -46,104 -46,156 -14,-36 12,-64 12,-64s-36,30 -14,74 62,34 34,54c44,30 112,10 110,-54 2,-16 44,-10 48,-6s-6,-8 -26,-8m-112,-156c-14,-4 -10,-22 -4,-22s16,14 4,22m38,2c-10,-14 -2,-28 8,-26s10,26 -8,26\"\n      android:fillColor=\"#eee\"/>\n  <path\n      android:pathData=\"M174,318l42,60c22,14 10,70 -50,42 -34,-10 -62,-8 -66,-26s8,-20 6,-28c-8,-44 28,-22 38,-44s10,-32 30,-4M398,346c-8,-12 0,-34 -28,-32 -12,24 -46,48 -48,0 -20,0 -6,48 -14,70 -18,54 34,58 56,32l52,-36c4,-6 10,-12 -18,-34m-184,-184c-6,-12 22,-28 32,-28s24,8 38,12 8,18 4,20S262,186 246,186s-20,-16 -32,-24\"\n      android:strokeWidth=\"2\"\n      android:fillColor=\"#fc2\"\n      android:strokeColor=\"#333\"/>\n  <path\n      android:pathData=\"M214,160c16,12 34,22 70,-6\"\n      android:strokeWidth=\"2\"\n      android:fillColor=\"#fc2\"\n      android:strokeColor=\"#333\"/>\n  <path\n      android:pathData=\"M236,148c-4,0 2,-4 4,-2m14,2c2,-2 -2,-4 -6,-2\"\n      android:fillColor=\"#333\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/linux_mint.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#69b53f\"/>\n  <path\n      android:pathData=\"M102,113v198a88,88 0,0 0,88 88h132a88,88 0,0 0,88 -88V201a66,66 0,0 0,-110 -48.69A66,66 0,0 0,190 201v110h44V201a1,1 0,0 1,44 0v110h44V201a1,1 0,0 1,44 0v110a44,44 0,0 1,-44 44H190a44,44 0,0 1,-44 -44V113z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/linuxcontainers.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:strokeWidth=\"2.5\"\n      android:fillColor=\"#fff\"\n      android:strokeColor=\"#fff\"/>\n  <path\n      android:pathData=\"M49,256v72l207,120 207,-120v-72\"\n      android:strokeWidth=\"2.5\"\n      android:fillColor=\"#dd4814\"\n      android:strokeColor=\"#fff\"/>\n  <path\n      android:pathData=\"M152,124 L255,64 463,184v72L360,316\"\n      android:strokeWidth=\"2.5\"\n      android:fillColor=\"#333\"\n      android:strokeColor=\"#fff\"/>\n  <path\n      android:pathData=\"m49,220v36l208,120 103,-60V280l-105,-60\"\n      android:strokeWidth=\"2.5\"\n      android:fillColor=\"#888\"\n      android:strokeColor=\"#fff\"/>\n  <path\n      android:pathData=\"m152,124 l-103,60v36l103,60 103,-60v-36z\"\n      android:strokeWidth=\"2.5\"\n      android:fillColor=\"#cdcdcd\"\n      android:strokeColor=\"#fff\"/>\n  <path\n      android:pathData=\"M463,184 L360,244 255,184 152,244v36l105,60 103,-60v-36,72M152,244 L49,184v36l103,-60v-36,36l103,60m2,120v108\"\n      android:strokeWidth=\"2.5\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/lobsters.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#ac130c\"/>\n  <path\n      android:pathData=\"M421.1,312.9H398.9c0,12 -5.8,35.2 -10.6,45 -8.8,17.7 -26.8,32.2 -48.4,36.6 -20.8,3.8 -41.6,3.2 -64.9,3.4 -32.4,-5.8 -42.1,-23.7 -41.2,-57.6V157c-0.1,-18.6 -2.4,-45.3 21,-51.5 6.3,-1.5 19.6,-2.4 29.8,-2.7v-21H114v21c8.9,0.6 19.5,1.6 24.9,3.1 22,4.8 22.4,26.7 23.9,47.9V353.6c0,10.4 -1.1,18.9 -2.3,25.5 -2.4,12 -10.9,19.5 -23.9,22.8 -6.3,1.5 -14.4,2.4 -24.2,2.7v23.5H421Z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/lock.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#29303d\"/>\n  <path\n      android:pathData=\"M346,214v-37c0,-123 -180,-123 -180,0v37\"\n      android:strokeWidth=\"32\"\n      android:fillColor=\"#29303d\"\n      android:strokeColor=\"#e0e4eb\"/>\n  <path\n      android:pathData=\"M140.6,210L369.4,210A25.6,25.6 0,0 1,395 235.6L395,394.4A25.6,25.6 0,0 1,369.4 420L140.6,420A25.6,25.6 0,0 1,115 394.4L115,235.6A25.6,25.6 0,0 1,140.6 210z\"\n      android:fillColor=\"#ff0\"/>\n  <path\n      android:pathData=\"M256,296m-28,0a28,28 0,1 1,56 0a28,28 0,1 1,-56 0\"\n      android:fillColor=\"#29303d\"/>\n  <path\n      android:pathData=\"M278,365H234l16,-69h12\"\n      android:fillColor=\"#29303d\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/logitech.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M348.9,390.7L426,390.7L426,223.3L258.6,223.3v77.1h90.3v90.3zM257.1,366.2a109.4,109.4 0,0 1,0 -218.8L257.1,70C153,70 68.9,153.8 68.9,256.6s84.5,186.7 187.9,186.7l0.3,-77.1z\"\n      android:fillColor=\"#00a7e0\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/luckyframework.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M146.1,351.1H366L256,161z\"\n      android:strokeLineJoin=\"round\"\n      android:strokeWidth=\"150\">\n    <aapt:attr name=\"android:strokeColor\">\n      <gradient \n          android:centerX=\"1740.37\"\n          android:centerY=\"921.4\"\n          android:gradientRadius=\"1699.83\"\n          android:type=\"radial\">\n        <item android:offset=\"0.97\" android:color=\"#FF9CFD65\"/>\n        <item android:offset=\"0.97\" android:color=\"#FF34DB96\"/>\n        <item android:offset=\"1\" android:color=\"#FF34DB96\"/>\n        <item android:offset=\"1\" android:color=\"#FF1B92B1\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/macos.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M183,245c33,0 53,24 53,64s-21,64 -53,64 -52,-25 -52,-64 20,-64 52,-64ZM339,395c62,2 86,-66 36,-89 -21,-9 -50,-8 -64,-22 -33,-34 58,-61 65,-12h23c-4,-76 -151,-54 -113,20 6,11 20,20 39,24 121,25 -2,102 -25,30L276,346c2,30 27,47 63,49ZM271,190a18,18 0,0 0,12 -9v9h10L293,153c0,-22 -33,-22 -41,-8a14,14 0,0 0,-2 7h10c3,-11 23,-10 22,2v4l-14,1c-30,1 -26,38 3,31ZM183,395c48,0 77,-34 77,-86s-30,-85 -77,-85 -76,32 -76,85 29,86 76,86ZM160,190h10L170,157l2,-5c5.09,-8.23 17.55,-6.36 20,3v35h11L203,157c0,-16 22,-16 22,-1v34h11L236,153c0,-21 -28,-22 -35,-7 -4,-14 -26,-13 -31,-1v-9L160,136ZM306,152c-12,41 41,53 47,20L343,172c-5,18 -28,9 -28,-6 0,-27 25,-26 28,-11h10c-4,-26 -40,-24 -47,-3ZM282,170c-5,30 -52,-4 0,-4v4Z\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/mail.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#328cff\"/>\n  <path\n      android:pathData=\"M249,149c-57,0 -108,52 -108,110 0,57 51,108 108,108 30,0 57,-12 77,-32v11c0,33 43,55 71,32 64,-49 68,-177 2,-246 -62,-65 -166,-78 -244,-32C52,163 50,280 88,348c57,99 180,101 225,82 29,-13 16,-51 -12,-39 -56,23 -149,0 -182,-76 -30,-68 1,-142 49,-175 46,-32 131,-41 195,15 68,59 39,162 14,187 -6,7 -17,1 -16,-9V183c0,-23 -35,-23 -35,-1 -20,-20 -47,-33 -77,-33m1,37c38,0 72,27 72,71 0,43 -30,75 -73,75 -39,0 -68,-28 -68,-72 0,-39 23,-74 69,-74Z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/mailchimp.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fd2\"/>\n  <path\n      android:pathData=\"m418,306 l-6,-17s25,-38 -37,-51c0,0 4,-47 -18,-69 48,-47 37,-118 -72,-72 -56,-107 -272,144 -182,184 -9,12 -9,72 53,78 42,90 144,96 203,69s93,-113 59,-122zM155,346c-51,-5 -56,-75 -12,-82s55,86 12,82zM140,251c-14,0 -31,19 -31,19 -68,-33 123,-252 164,-167 0,0 -100,48 -133,148zM340,336c0,-4 -21,6 -59,-7 3,-21 48,18 123,-33l6,21c28,-5 0,90 -90,89 -73,-1 -96,-76 -56,-117 8,-8 -29,-24 -22,-59 3,-15 16,-37 49,-31s40,-24 62,-13 9,53 12,59 35,7 41,24 -41,54 -114,44c-17,-2 -27,20 -16,34 22,32 112,11 127,-20 -38,29 -116,40 -122,9 22,10 59,4 59,0zM209,178c22,-27 51,-43 51,-43l-6,15s21,-16 44,-16l-8,8c26,1 37,11 37,11s-61,-18 -118,25zM344,217c13,-1 9,29 9,29h-8s-14,-28 -1,-29zM285,250c-9,1 -19,6 -18,2 4,-16 41,-12 40,2s-9,-6 -22,-4zM306,262c1,2 -7,0 -13,1s-12,4 -12,2 23,-11 25,-3zM326,265c3,-6 15,0 12,6s-15,0 -12,-6zM351,267c-6,0 -6,-13 0,-13s6,14 0,14zM171,320c3,3 -6,9 -13,4s8,-29 -10,-35 -13,17 -18,14 7,-35 28,-22 -6,33 6,39 5,-2 7,0z\"\n      android:fillColor=\"#222\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/malt.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m120,313q-56,52 -16,94t93,-14L399,192q48,-51 8,-89t-90,14zM256,139l53,-53q-9,-44 -53,-44t-53,44zM256,373 L203,426q9,45 53,45t53,-45zM194,201L106,201q-65,3 -65,52t45,56zM318,312h82q69,-2 70,-52t-44,-57zM236,158 L222,173L99,173q-28,-36 7,-70t78,3zM275,354 L318,397q49,47 86,15t10,-73L291,339z\"\n      android:fillColor=\"#FC5656\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/manjaro.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m102,102V410h90V192h109V102h19V410H211V211h90V410H410V102\"\n      android:fillColor=\"#4db05e\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/markdown.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M410,366L102,366c-14,0 -26,-12 -26,-26L76,170c0,-14 12,-26 26,-26h307c14,0 26,12 26,26v170c0,14 -11,26 -25,26zM102,162c-4,0 -9,4 -9,9v170c0,5 4,9 9,9h307c5,0 9,-4 9,-9L418,170c0,-5 -4,-9 -9,-9 1,0 -307,0 -307,0zM128,315L128,196h34l34,43 34,-43h35L265,314h-34v-68l-34,43 -34,-43v68zM344,315 L292,258h34v-61h34v60h34z\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/mastercard.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M180,256m-120,0a120,120 0,1 1,240 0a120,120 0,1 1,-240 0\"\n      android:fillColor=\"#EB001B\"/>\n  <path\n      android:pathData=\"M332,256m-120,0a120,120 0,1 1,240 0a120,120 0,1 1,-240 0\"\n      android:fillColor=\"#F79E1B\"/>\n  <path\n      android:pathData=\"M256,349a120,120 0,0 1,0 -186m0,0a120,120 180,0 1,0 186\"\n      android:fillColor=\"#FF5A00\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/mastodon.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M317,408q-55,32 -138,9 -57,-23 -70,-69 -6,-21 -9,-53 -9,-116 3,-147 19,-48 75,-58 64,-10 162,0 53,9 72,58 6,15 3,116 -5,67 -72,80 -80,13 -149,-2 -1,67 123,39\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"91\"\n          android:startY=\"80\"\n          android:endX=\"418\"\n          android:endY=\"440\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FF6364FF\"/>\n        <item android:offset=\"1\" android:color=\"#FF563ACC\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"M360,202q0,-51 -43,-60 -35,-5 -51,21l-9,15 -9,-15q-18,-26 -51,-21 -43,9 -44,60v91h36V205q0,-31 30,-28 20,3 20,34v47h36V211q0,-31 20,-34 28,-3 29,23v93h36\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/matrix.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m135.53,134.49l0,242.5l17.69,0l0,5.72L129.28,382.71L129.28,128.24l23.94,0l0,5.72zM209.94,211.5l0,12.49l0.36,0c3.12,-4.68 7.29,-8.33 11.97,-10.93s9.89,-3.64 16.13,-3.64c5.72,0 10.93,1.04 15.61,3.12s8.33,6.24 10.93,11.97c2.6,-4.16 6.24,-7.29 10.93,-10.41s9.89,-4.68 16.13,-4.68c4.68,0 9.37,0.52 13.53,1.56s7.81,3.12 10.41,5.72 5.2,5.72 6.76,9.89 2.6,9.37 2.6,15.09l0,60.88l-24.98,0l0,-51.52c0,-3.12 -0.1,-5.72 -0.36,-8.85s-1.04,-5.2 -2.08,-6.76c-1.04,-2.08 -2.6,-3.64 -4.68,-4.68s-4.68,-1.56 -8.33,-1.56 -6.24,0.52 -8.33,2.08 -3.64,3.12 -5.2,5.2c-1.04,2.08 -2.08,4.68 -2.6,7.29 -0.42,2.6 -0.52,5.72 -0.52,8.33l0,50.48l-24.98,0l0,-51c0,-2.6 -0.05,-5.2 -0.21,-7.81 -0.1,-2.6 -0.52,-5.2 -1.56,-7.29s-2.6,-4.16 -4.16,-5.2 -5.2,-2.08 -8.85,-2.08c-1.04,0 -2.6,0.26 -4.68,1.04s-3.64,1.56 -5.72,3.12 -3.12,3.64 -4.68,6.24 -2.08,6.24 -2.08,10.93l0,52.56l-24.98,0L186.32,212.55zM376.47,377.51L376.47,135.01l-17.69,0L358.77,129.28l23.94,0l0,254.47l-23.94,0l0,-5.72z\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/mattermost.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m261,64a192,192 0,1 0,108 37l2,40A144,139 17,1 1,235 95m74,-11s2.8,-3.5 6,-2.2 3.3,4 3.4,8l3.3,131c-1,44 -37,69.5 -76,54s-43,-59 -19,-88.7\"\n      android:fillColor=\"#222\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/mcafee.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256,208.6 L172.6,170v153.4L256,362l83.4,-38.6L339.4,170zM305.4,301.6 L256.2,324.3 207.1,301.6v-78l49.1,22.6 49.2,-22.7z\"\n      android:fillColor=\"#ff0000\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/mcdonald_s.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M320.8,142.93c23.3,0 42.2,98.3 42.2,219.7h34c0,-130.7 -34.3,-236.5 -76.3,-236.5 -24,0 -45.2,31.7 -59.2,81.5 -14,-49.8 -35.2,-81.5 -59,-81.5 -42,0 -76.2,105.7 -76.2,236.4h34c0,-121.4 18.7,-219.6 42,-219.6s42.2,90.8 42.2,202.8h33.8c0,-112 19,-202.8 42.3,-202.8\"\n      android:fillColor=\"#ffcc00\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/medium.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m280.6,255a108.3,109 0,1 0,0 2m10.5,0a54.1,102.7 0,1 0,0 -2m118.9,0a19,92 0,1 1,0 2\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/meetup.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M118,89q-17,11 -23,27 -3,6 5,5c12,0 56,-19 64,-27q12,-11 -17,-10c-17,0 -20,1 -29,5m156,1c-55,6 -122,26 -149,44 -23,15 -39,39 -45,62 -4,21 2,50 15,70l7,12 -5,19c-4,15 -5,22 -5,42 -1,23 0,26 5,36 11,23 39,43 68,49 22,4 39,1 70,-11q55,-21 104,-32c41,-10 58,-20 69,-40 7,-16 8,-28 2,-50l-4,-18 5,-7c8,-10 16,-28 20,-43A108,108 0,0 0,352 93c-18,-4 -56,-5 -78,-3m-51,92 l13,6q11,6 15,2c2,-4 17,-10 24,-10s19,5 25,10l4,5 12,-7q12,-5 20,-6 14,1 23,14c4,8 3,17 -6,49q-12,38 -5,40l8,3q14,4 0,14c-17,9 -39,7 -46,-5 -5,-8 -5,-18 1,-40 6,-24 7,-29 1,-31q-8,-3 -13,5l-10,32c-9,33 -10,36 -18,40 -12,6 -25,2 -30,-8 -3,-7 -3,-8 2,-32 9,-33 8,-40 -3,-40 -7,0 -10,7 -21,47l-14,42c-5,9 -19,16 -31,16 -26,0 -37,-20 -26,-49l11,-39c11,-39 18,-49 38,-56 12,-4 16,-5 26,-2m115,216c-33,7 -63,19 -63,26q2,6 42,5c23,0 30,-1 39,-5 13,-5 25,-17 25,-24 -1,-4 -2,-5 -13,-5z\"\n      android:fillColor=\"#ff4a79\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/messenger.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M193.6,424.6a14.5,14.5 0,0 1,9.8 -0.7A176.4,176.4 0,1 0,131.2 385a14.7,14.7 0,0 1,5 10.4l1,32.3a14.6,14.6 0,0 0,20.4 12.9z\"\n      android:fillColor=\"#0866ff\"/>\n  <path\n      android:pathData=\"M282.2,246a11,11 0,0 0,13 0l57.5,-43.6a8.6,8.6 0,0 1,12.5 11.5l-53.4,84.7a27.3,27.3 0,0 1,-39.4 7.3L229.9,274a11,11 0,0 0,-13.2 0l-57.4,43.6a8.6,8.6 0,0 1,-12.5 -11.5l53.4,-84.7a27.3,27.3 0,0 1,39.5 -7.3z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/microformats.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M159,159L303,159A51,51 0,0 1,354 210L354,354A51,51 0,0 1,303 405L159,405A51,51 0,0 1,108 354L108,210A51,51 0,0 1,159 159z\"\n      android:strokeWidth=\"15\"\n      android:strokeColor=\"#fff\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"108\"\n          android:startY=\"159\"\n          android:endX=\"354\"\n          android:endY=\"405\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FF6BA140\"/>\n        <item android:offset=\"1\" android:color=\"#FF77AE40\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"M231,126L345,126A39,39 0,0 1,384 165L384,279A39,39 0,0 1,345 318L231,318A39,39 0,0 1,192 279L192,165A39,39 0,0 1,231 126z\"\n      android:strokeWidth=\"15\"\n      android:strokeColor=\"#fff\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"192\"\n          android:startY=\"126\"\n          android:endX=\"384\"\n          android:endY=\"318\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FF92C73C\"/>\n        <item android:offset=\"1\" android:color=\"#FF78B143\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"M300,114L384,114A24,24 0,0 1,408 138L408,222A24,24 0,0 1,384 246L300,246A24,24 0,0 1,276 222L276,138A24,24 0,0 1,300 114z\"\n      android:strokeWidth=\"15\"\n      android:strokeColor=\"#fff\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"276\"\n          android:startY=\"114\"\n          android:endX=\"408\"\n          android:endY=\"246\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FFBCD531\"/>\n        <item android:offset=\"1\" android:color=\"#FF94C63A\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/micropython.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M131,130V380h55V185h10V380H316V185h10V380h55V333H363v25H348V333h33V130H261V325H251V130H131\"\n      android:fillColor=\"#000\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/microsoft.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M96,96H247V247H96\"\n      android:fillColor=\"#f24f23\"/>\n  <path\n      android:pathData=\"M265,96V247H416V96\"\n      android:fillColor=\"#7eba03\"/>\n  <path\n      android:pathData=\"M96,265H247V416H96\"\n      android:fillColor=\"#3ca4ef\"/>\n  <path\n      android:pathData=\"M265,265H416V416H265\"\n      android:fillColor=\"#f9ba00\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/mongodb.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#00ed64\"/>\n  <path\n      android:pathData=\"m249.7,460.8q-3,-27 -4.3,-47c-2,-1 -168,-126 -24,-311.7q19,-23 34,-44.5c0.3,-0.4 0.8,-0.5 1.2,0q17,24 32,42c147,185 -18,312 -22,314q-2,25 -4.4,47.2m-15.7,-60.4q2,3 9.5,9.7 7,-6 9.5,-9.7l-9,-202.2c0,-0.7 -1,-0.7 -1,0\"\n      android:fillColor=\"#001e2b\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/mysql.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m55,285v56H41v-56q0,-7 6,-9t12,-1 10,8l21,48 21,-48q4,-7 10,-8t12,1 6,9v56h-14v-56l-22,49q-3,8 -13,8t-13,-8m74,-38v32c0,6 8,13 25,13h28v5q0,6 -11,6h-42v9h41q26,0 26,-15v-50h-14v36h-31q-8,0 -8,-5v-31m176,-130c7,-2 12,6 6,10m34,90q-15,-14 -27,-43 -7,5 -8,22c-1,7 -17,-14 -6,-40q2,-6 0,-8c-14,-17 -7,-23 -21,-40s3,-16 19,-2c28,-2 55,28 64,48s15,37 21,38q20,6 33,19 -16,0 -25,5c5,17 24,17 38,31 -10,-19 -26,-21 -29,-28 13,-4 14,-2 24,-5q-12,-17 -39,-28s-6,-10 -17,-35 -41,-51 -67,-51c-27,-21 -41,-5 -26,11s4,18 21,40c-16,47 17,67 17,41l1,-6c9,20 14,18 24,29\"\n      android:fillColor=\"#005c87\"/>\n  <path\n      android:pathData=\"M229,332h38q11,0 11,-6v-8q0,-5 -11,-5h-15c-11,0 -23,-5 -23,-14v-8c0,-9 7,-15 21,-15h43v9h-40q-9,0 -9,6v6q0,7 9,7h19c11,0 20,6 20,12v11c0,9 -11,14 -21,14h-42m111,-9h-12q-11,0 -11,-8v-31q0,-8 12,-8h18q12,0 12,8v32q0,4 -4,6l-11,-10h-16m35,17q9,-2 9,-13v-33q0,-16 -25,-16h-21q-24,0 -24,15v34q0,16 23,16h25l11,10h17m3,-75h14v49q0,7 12,7h37v9h-38q-25,0 -25,-17\"\n      android:fillColor=\"#e4830f\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/netbeans.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M84,157v39H256V58\"\n      android:fillColor=\"#a1c535\"/>\n  <path\n      android:pathData=\"M428,157v39H256V58\"\n      android:fillColor=\"#add439\"/>\n  <path\n      android:pathData=\"M361,196V355h67V157\"\n      android:fillColor=\"#1b6ac6\"/>\n  <path\n      android:pathData=\"M256,454V316H361l67,39\"\n      android:fillColor=\"#2e90e8\"/>\n  <path\n      android:pathData=\"M84,157V355h67V196\"\n      android:fillColor=\"#a5073e\"/>\n  <path\n      android:pathData=\"m84,355 l67,-39 105,61v77\"\n      android:fillColor=\"#ea205e\"/>\n  <path\n      android:pathData=\"M256,377V196H361V316\"\n      android:fillColor=\"#cedbe6\"/>\n  <path\n      android:pathData=\"m151,196 l105,60 105,-60 -105,-61\"\n      android:fillColor=\"#f1f6e2\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/netbsd.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m96,130s-1,-3 -5,-1c-3,2 -1,5 -1,5l154,326s4,9 14,4c10,-5 5,-13 5,-13z\"\n      android:fillColor=\"#777\"/>\n  <path\n      android:pathData=\"m424,123c-54,-13 -98,6 -146,30 48,-13 91,-19 137,4 -54,-13 -98,9 -146,33 -40,20 -77,37 -122,24 -6,-11 -9,-17 -15,-28 -6,-10 -11,-20 -17,-30 -6,-11 -9,-17 -15,-28 57,23 107,14 164,-3 56,-17 106,-30 162,-3\"\n      android:fillColor=\"#f26711\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/netflix.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m155,73V439q41,-5 72,-6V99m58,199V73h72v366\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"213.58\"\n          android:startY=\"296.26\"\n          android:endX=\"298.42\"\n          android:endY=\"215.74\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FFB1060F\"/>\n        <item android:offset=\"0.5\" android:color=\"#FF000000\"/>\n        <item android:offset=\"1\" android:color=\"#FFB1060F\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"M155,73h72l130,366q-41,-5 -74,-6\"\n      android:fillColor=\"#e50914\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/nextcloud.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#0082c9\"/>\n  <path\n      android:pathData=\"m160,257a40,40 0,1 1,0 -2zh25a71,71 0,1 0,0 -2v2m167,0a40,40 0,1 0,0 -2z\"\n      android:strokeWidth=\"33\"\n      android:fillColor=\"#0082c9\"\n      android:strokeColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/nginx.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M82,343a22,22 0,0 0,11 18l153,88a22,22 0,0 0,20 0l153,-88a22,22 0,0 0,10 -18V167a22,22 0,0 0,-10 -18L265,62a22,22 0,0 0,-20 0L92,150a22,22 0,0 0,-10 17Z\"\n      android:fillColor=\"#009639\"/>\n  <path\n      android:pathData=\"m206,322a1,1 0,0 1,-39 0V188c0,-11 9,-19 22,-19 9,0 20,4 27,12l88,105v-98a1,1 0,0 1,39 0v135c0,10 -9,19 -22,19 -10,0 -21,-4 -27,-12l-88,-105z\"\n      android:fillColor=\"#FFF\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/nhs.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#005EB8\"/>\n  <path\n      android:pathData=\"M448,333L448,178L64,178v155zM218,193l-26,125h-42l-26,-86 -18,86L75,318l27,-125h41l26,87 18,-87zM337,193 L311,318h-33l11,-54h-40l-11,54h-33l26,-125h33l-10,48h40l10,-48zM434,197 L426,221c-7,-3 -16,-5 -28,-5 -13,0 -24,2 -24,12 0,17 49,11 49,49 0,34 -33,43 -62,43 -13,0 -27,-3 -38,-7l8,-25c6,4 19,7 30,7s27,-2 27,-15c0,-19 -48,-12 -48,-47 0,-32 28,-42 55,-42 16,0 30,2 39,6\"\n      android:fillColor=\"#FFF\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/nixos.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m177,260 l99,171h-45l-27,-45 -26,45h-23l-11,-20 38,-65 -27,-46zM292,185L95,185l22,-40 53,1 -26,-46 11,-20h23l37,65 54,1zM300,322 L398,151 421,190 395,236h53l11,19 -12,20h-75l-27,47z\"\n      android:fillColor=\"#5277c3\"\n      android:fillType=\"evenOdd\"/>\n  <path\n      android:pathData=\"m213,190 l-99,171 -23,-39 27,-46L65,276l-11,-20 11,-20h75l28,-46zM221,326h197l-22,40h-53l26,45 -11,20h-23l-38,-65h-54zM335,251L237,81l45,-1 26,46 27,-46h22l12,20 -38,65 27,47z\"\n      android:fillColor=\"#7ebae4\"\n      android:fillType=\"evenOdd\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/nobara.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M170,135.6c-15.42,1.24 -28.72,12.52 -32.58,27.64 -1.36,5.36 -1.18,186.56 -1.18,186.56 5.18,33.9 49.02,44.96 68,16.5 19.48,-29.16 64.8,-17.66 67.54,17.14 0.14,1.78 0.16,-44.42 0.16,-44.42 -3.84,-17.82 -16.7,-29.5 -36.08,-30.84 -13.46,-1.04 -21.94,-7.66 -24.7,-19.28 -1.24,-5.26 -0.92,-33.58 0.48,-40.06 11.54,-50.72 82.06,-51.88 95.64,-2.44 0.38,1.66 0.46,1.8 1.5,2.08 9.22,2.54 36.12,10.34 36.12,10.46 -1.48,0.68 -29.46,8.56 -35.94,10.42v80.46c6.52,42.58 65.1,43.74 73.72,2.08 0.86,-5.02 0.52,-102.86 -0.4,-109.16C371.64,158.12 277.42,109.8 202.54,149.32c-8.06,-9.56 -19.54,-14.84 -32.56,-13.72\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M253.16,238.72c-21.26,4.88 -26.5,33.24 -8.3,45 18.32,11.84 41.84,-3.74 38.1,-25.24 -2.34,-13.46 -16.44,-22.82 -29.78,-19.76\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/nodejs.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M247,281q3,0 4,2c2,3 -2,27 34,30s57,-2 60,-18 -4,-21 -60,-27 -56,-33 -56,-42 0,-49 68,-49 70,40 71,47 0,9 -4,9H346q-4,0 -5,-5c-3,-12 -9,-25 -44,-25s-39,11 -39,22 11,13 47,18 65,9 69,39 -16,58 -71,58q-79,0 -79,-54 0,-5 5,-5M417,145q16,9 16,29V340q0,18 -14,27L273,452q-16,8 -32,0l-49,-29q-8,-4 -2,-6 13,-4 22,-10 2,-1 4,0l37,22q3,2 6,0l145,-84q2,-1 2,-5V172q0,-3 -2,-4L259,84q-3,-2 -6,0L107,168q-2,1 -2,4V341q0,3 2,4l40,23c16,9 35,3 35,-15V188q0,-6 6,-6h16q6,0 6,6V353c0,49 -45,55 -77,37L94,368q-15,-9 -15,-27V172q0,-18 16,-27L237,63q19,-12 38,0\"\n      android:fillColor=\"#539E43\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/nordvpn.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#4687ff\"/>\n  <path\n      android:pathData=\"M152.35,331.7C137.05,310.45 128,284.3 128,256c0,-71.25 57.3,-129 128,-129s128,57.75 128,129c0,28.3 -9.05,54.45 -24.35,75.7l-61.5,-100.6 -5.95,10.1 6,28.1 -26.15,-44.45L256,196.45l-26.15,44.45 6.1,28.4 -22.15,-38.15 -61.45,100.55z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/notion.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M307.3,66.8 L96.8,82.3C80.1,83.8 74,94.8 74,108.1v230.7c0,10.3 3.8,19.4 12.5,31.2l49.4,64.2c8,10.3 15.6,12.5 31.2,11.8l244.3,-14.8c20.5,-1.5 26.6,-11 26.6,-27.4L438,144.3c0,-8.4 -3.4,-10.6 -12.9,-17.9L356,77.8c-16.4,-11.8 -23.2,-13.3 -48.7,-11m-134.9,73.3c-19.8,1.5 -24.3,1.5 -35.7,-7.6l-28.9,-22.8c-3,-3 -1.5,-6.8 6.1,-7.2l202.2,-14.8c17.1,-1.5 25.8,4.6 32.3,9.5l34.6,25.1c1.5,0.8 5.3,5.3 0.8,5.3l-208.6,12.5h-2.7zM149.2,401.5v-220c0,-9.5 3,-14.1 11.8,-14.8l239.8,-14.1c8,-0.8 11.8,4.6 11.8,14.1v218.5c0,9.5 -1.5,17.9 -14.8,18.6l-229.5,13.3c-13.3,0.8 -19,-3.8 -19,-15.6zM375.7,193.3c1.5,6.8 0,13.3 -6.8,14.1l-11,2.3v162.6c-9.5,5.3 -18.6,8 -25.8,8 -11.8,0 -14.8,-3.8 -23.6,-14.8l-72.2,-113.6v109.8l22.8,5.3s0,13.3 -18.6,13.3l-50.9,3c-1.5,-3 0,-10.3 5.3,-11.8l13.3,-3.8L208.2,222.2l-18.6,-1.5c-1.5,-6.8 2.3,-16.3 12.5,-17.1l54.7,-3.8L332,314.9L332,213.1l-19,-2.3c-1.5,-8 4.6,-14.1 11.8,-14.8l50.9,-3z\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/npm.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M234,311H447V199H65V311H178V210,333h78M133,232v68m112,-68v45m45,-67v90m67,-68v79h45v-79\"\n      android:strokeWidth=\"22\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#cb3837\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/obs.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256,256m-210,0a210,210 0,1 1,420 0a210,210 0,1 1,-420 0\"\n      android:fillColor=\"#302e31\"/>\n  <path\n      android:pathData=\"M139.5,137.7c7,-34 30.1,-64.6 61.1,-80 -5.4,5.5 -11.9,9.7 -16.9,15.6 -20.4,22 -29.6,53.9 -24,83.2 7.1,44.7 49.2,81.3 94.7,80.6 35.3,1.6 69.8,-18.8 87,-49.4 37,1.3 73,20.4 94.1,51 10.8,16 19.3,34.8 19.8,54.3 -6.8,-25.9 -24.1,-49 -47.6,-62 -22.7,-12.8 -50.6,-16.1 -75.5,-8.5 -31.2,9 -57,34.5 -65.9,65.9 -7.6,25 -4.3,52.6 7.6,75.5 -16.5,28.6 -46.3,49 -78.7,55.2 -24.9,5.2 -51.1,1.2 -74.2,-9.3 20.7,6 43.3,7.1 63.9,-0.2 27.6,-9.2 50.5,-31.4 60.5,-58.8 11.1,-29.8 6.9,-65.3 -11.8,-90.9 -14,-20.2 -36.1,-34.4 -60.1,-39.4 -7.6,-1.4 -15.3,-2 -23,-2.7 -12.2,-24.6 -16.7,-53.2 -10.6,-80z\"\n      android:fillColor=\"#c4c2c4\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/ok.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#f58220\"/>\n  <path\n      android:pathData=\"M321.75,401 L255.5,334.75 189.25,401M329,290.5a137,137 0,0 1,-146.5 0m135.75,-117a57.25,57.25 0,1 1,-124.5 0,57.25 57.25,0 1,1 124.5,0\"\n      android:strokeWidth=\"51.5\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"\n      android:strokeLineCap=\"round\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/olympics.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M115.6,226m-59.1,0a59.1,59.1 0,1 1,118.2 0a59.1,59.1 0,1 1,-118.2 0\"\n      android:strokeWidth=\"11.4\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#0081c8\"/>\n  <path\n      android:pathData=\"M256,226m-59.1,0a59.1,59.1 0,1 1,118.2 0a59.1,59.1 0,1 1,-118.2 0\"\n      android:strokeWidth=\"11.4\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#000\"/>\n  <path\n      android:pathData=\"M396.4,226m-59.1,0a59.1,59.1 0,1 1,118.2 0a59.1,59.1 0,1 1,-118.2 0\"\n      android:strokeWidth=\"11.4\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#ee334e\"/>\n  <path\n      android:pathData=\"M185.8,286m-59.1,0a59.1,59.1 0,1 1,118.2 0a59.1,59.1 0,1 1,-118.2 0\"\n      android:strokeWidth=\"11.4\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fcb131\"/>\n  <path\n      android:pathData=\"M326.2,286m-59.1,0a59.1,59.1 0,1 1,118.2 0a59.1,59.1 0,1 1,-118.2 0\"\n      android:strokeWidth=\"11.4\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#00a651\"/>\n  <path\n      android:pathData=\"m162.9,190.5a59.1,59.1 90,0 1,0 70.9\"\n      android:strokeWidth=\"11.4\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#0081c8\"/>\n  <path\n      android:pathData=\"M220.5,273.3A59.1,59.1 90,0 0,256 285.1m47.3,-23.6a59.1,59.1 90,0 0,0 -71\"\n      android:strokeWidth=\"11.4\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#000\"/>\n  <path\n      android:pathData=\"M360.9,273.3a59.1,59.1 90,0 0,35.5 11.8\"\n      android:strokeWidth=\"11.4\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#ee334e\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/onlyfans.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M194,131a125,125 0,1 0,125 125,125 125,0 0,0 -125,-125m0,163a38,38 0,1 1,37 -38,38 38,0 0,1 -37,38\"\n      android:fillColor=\"#00aeef\"/>\n  <path\n      android:pathData=\"M334,225c32,9 69,0 69,0 -11,47 -45,77 -95,81a125,125 0,0 1,-114 75l37,-119c39,-123 58,-131 150,-131h63c-11,46 -47,82 -110,94\"\n      android:fillColor=\"#008ccf\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/openbenches.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m75,303a187,187 0,1 1,362 0m-172,-32v-46H133v46m-20,0h35v29,-29h102v29,-29h39m-36,-96q-17,-4 -28,13 4,-14 -11,-29m-11,-32q-14,8 -11,29 -8,-13 -28,-12\"\n      android:strokeWidth=\"9.7\"\n      android:fillColor=\"#11b0a3\"\n      android:strokeColor=\"#000\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m156,249h85\"\n      android:strokeWidth=\"9.7\"\n      android:strokeColor=\"#fb0\"/>\n  <path\n      android:pathData=\"m335,243a47.5,48 0,1 1,5 0m27,-50 l-27,27 -28,-28m26,0v111m18,0c3,-16 21,-21 31,-12q7,-20 28,-20 1,-24 27,-29 3,32 -5,61\"\n      android:strokeWidth=\"9.7\"\n      android:fillColor=\"#070\"\n      android:strokeColor=\"#000\"/>\n  <path\n      android:pathData=\"m75,303a187,187 0,0 0,362 0zM106,364 L423,334m-18,34 l-222,61m-25,-15 l137,-40m-94,5 l-71,13\"\n      android:strokeWidth=\"9.7\"\n      android:fillColor=\"#8c5015\"\n      android:strokeColor=\"#000\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/openbugbounty.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m304,69c-44,0 -81,29 -97,70h97z\"/>\n  <path\n      android:pathData=\"m145,105c-1,-0.05 -3,0.02 -4,0.2 -11,2 -19,12 -17,24 6,38 31,61 53,74 0.5,15 3,29 6,43h-61c-11,0 -20,9 -20,21 0,11 9,21 20,21h76c6,11 13,22 20,31 -27,20 -52,55 -64,74 -6,9 -4,22 6,28 3,2 7,3 11,3 7,0 13,-3 17,-9 20,-31 47,-60 60,-68 17,11 35,19 55,21v-202H192c-13,-9 -26,-22 -29,-43 -2,-10 -10,-17 -19,-17z\"\n      android:fillColor=\"#f67909\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/opencast.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m38,256 l156,-156v72l-84,84 84,84v72\"\n      android:fillColor=\"#24425d\"/>\n  <path\n      android:pathData=\"m474,256 l-156,-156v72l84,84 -84,84v72m32,-156 l-156,-156v72l84,84 -84,84v72\"\n      android:fillColor=\"#4bb07b\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/opencollective.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m316,148a123.5,123.5 0,1 0,0 216l49,50a192,192 0,1 1,0 -316\"\n      android:fillColor=\"#7fadf2\"/>\n  <path\n      android:pathData=\"m364,196a124,124 0,0 1,0 120l50,49a192,192 0,0 0,0 -218\"\n      android:fillColor=\"#b8d3f4\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/opencores.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#27529d\"/>\n  <path\n      android:pathData=\"M276,192a84,84 0,0 1,-168 0,84 84,0 0,1 168,0zM379,380a84,84 0,1 1,1 -119\"\n      android:strokeWidth=\"48\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/opensource.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m322,435a185,185 0,1 0,-132 0l43,-111a64,64 0,1 1,46 0z\"\n      android:strokeLineJoin=\"round\"\n      android:strokeWidth=\"13\"\n      android:fillColor=\"#3da639\"\n      android:strokeColor=\"#1d531d\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/openvpn.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m234.5,317a61,60.3 0,1 1,43 0l23,125h-90\"\n      android:fillColor=\"#036\"/>\n  <path\n      android:pathData=\"m171,342a114,113 8,1 1,170 0l12,81a192,189 0,1 0,-194 0\"\n      android:fillColor=\"#ea7e20\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/opera.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M448,255a187,190 0,1 0,0 2m-88.8,0a101.2,141.5 0,1 1,0 -2\"\n      android:fillColor=\"#a70014\"/>\n  <path\n      android:pathData=\"m384,112.9a192,192 0,1 0,0 286.2,150.2 166.6,0 1,1 0,-286.2\"\n      android:fillColor=\"#f23\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/orcid.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256,256m-192,0a192,192 0,1 1,384 0a192,192 0,1 1,-384 0\"\n      android:fillColor=\"#a6ce39\"/>\n  <path\n      android:pathData=\"m167,148a15,15 0,1 1,0 2m3,33V343h23V183m34,0h63c115,0 112,160 0,160h-63m23,-20h38c83,0 88,-120 -2,-120h-36\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/origin.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"\n      android:fillType=\"evenOdd\"/>\n  <path\n      android:pathData=\"m256,100.4c85.9,0 155.6,69.7 155.6,155.6S341.9,411.6 256,411.6 100.4,341.9 100.4,256 170.1,100.4 256,100.4zM256,195.3c33.5,0 60.7,27.2 60.7,60.7s-27.2,60.7 -60.7,60.7 -60.7,-27.2 -60.7,-60.7 27.2,-60.7 60.7,-60.7z\"\n      android:fillColor=\"#f15a23\"\n      android:fillType=\"evenOdd\"/>\n  <path\n      android:pathData=\"m256,53.7c1.5,-4 0,-5.5 -4,-5.9 -4.5,-1.5 -87.4,46.6 -124.1,119.3C91.1,240 236,101.8 236,101.8c7.4,-27 8.7,-31.4 20.1,-48zM256.1,458.2c-1.5,4 0,5.5 4,6 4.5,1.5 87.5,-46.4 124.3,-119.1 36.9,-72.8 -108.2,65.1 -108.2,65.1 -7.4,27 -8.8,31.4 -20.2,48z\"\n      android:fillColor=\"#f15a23\"\n      android:fillType=\"evenOdd\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/outlook.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M183.36,107L383.64,107A15.36,15.36 0,0 1,399 122.36L399,361.64A15.36,15.36 0,0 1,383.64 377L183.36,377A15.36,15.36 0,0 1,168 361.64L168,122.36A15.36,15.36 0,0 1,183.36 107z\"\n      android:fillColor=\"#05a\"/>\n  <path\n      android:pathData=\"M398,247v23l15,-8s0,-7 -5,-9l-10,-6zM168,290v70h77v-70h-77z\"\n      android:fillColor=\"#136\"/>\n  <path\n      android:pathData=\"M168,150v70h77v-70h-77zM245,220v70h77v-70h-77zM322,290v70h77v-70h-77z\"\n      android:fillColor=\"#17d\"/>\n  <path\n      android:pathData=\"M245,150v70h77v-70h-77zM322,220v70h77v-70h-77z\"\n      android:fillColor=\"#3ae\"/>\n  <path\n      android:pathData=\"M322,150h77v70h-77z\"\n      android:fillColor=\"#5cf\"/>\n  <path\n      android:pathData=\"M413,261 L282,336s121,73 124,71c5,-3 7,-11 7,-18V261Z\"\n      android:fillColor=\"#19e\"/>\n  <path\n      android:pathData=\"M160,266c-4,3 -6,7 -6,12v117c0,8 6,14 14,14h230c4,0 5,0 8,-2\"\n      android:fillColor=\"#2ae\"/>\n  <path\n      android:pathData=\"M85.36,172L226.64,172A15.36,15.36 0,0 1,242 187.36L242,328.64A15.36,15.36 0,0 1,226.64 344L85.36,344A15.36,15.36 0,0 1,70 328.64L70,187.36A15.36,15.36 0,0 1,85.36 172z\"\n      android:fillColor=\"#18e\"/>\n  <path\n      android:pathData=\"M155,230c14,0 22,11 22,29s-9,28 -23,28c-11,0 -22,-10 -22,-28 0,-15 7,-29 23,-29ZM154,305c26,0 44,-18 44,-47 0,-25 -16,-46 -43,-46 -28,0 -44,20 -44,48 0,27 20,45 43,45Z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/overcast.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:strokeWidth=\"23\"\n      android:fillColor=\"#fff\"\n      android:strokeLineCap=\"round\"/>\n  <path\n      android:pathData=\"M255,255m-175,0a175,175 0,1 1,350 0a175,175 0,1 1,-350 0\"\n      android:strokeWidth=\"23\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fc7e0f\"\n      android:strokeLineCap=\"round\"/>\n  <path\n      android:pathData=\"m160,181.1s-24.2,27.3 -24.2,75S160,330 160,330\"\n      android:strokeWidth=\"23\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fc7e0f\"\n      android:strokeLineCap=\"round\"/>\n  <path\n      android:pathData=\"M352.8,330S377,303.8 377,256.1s-24.2,-75 -24.2,-75\"\n      android:strokeWidth=\"23\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fc7e0f\"\n      android:strokeLineCap=\"round\"/>\n  <path\n      android:pathData=\"M314.4,298.3s15.2,-15 15.7,-42.3c0.4,-22.7 -15.9,-43 -15.9,-43\"\n      android:strokeWidth=\"23\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fc7e0f\"\n      android:strokeLineCap=\"round\"/>\n  <path\n      android:pathData=\"M197.6,298.3s-15.2,-15 -15.7,-42.3c-0.4,-22.7 15.9,-43 15.9,-43\"\n      android:strokeWidth=\"23\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fc7e0f\"\n      android:strokeLineCap=\"round\"/>\n  <path\n      android:pathData=\"M255,255m-32,0a32,32 0,1 1,64 0a32,32 0,1 1,-64 0\"\n      android:strokeWidth=\"23\"\n      android:fillColor=\"#fc7e0f\"\n      android:strokeLineCap=\"round\"/>\n  <path\n      android:pathData=\"m260.4,284.9 l-22.7,-6.1L199.9,420l22.7,6.1z\"\n      android:strokeWidth=\"23\"\n      android:fillColor=\"#fc7e0f\"\n      android:strokeLineCap=\"round\"/>\n  <path\n      android:pathData=\"M289.2,426l22.6,-6 -37.6,-141.3 -22.6,6Z\"\n      android:strokeWidth=\"23\"\n      android:fillColor=\"#fc7e0f\"\n      android:strokeLineCap=\"round\"/>\n  <path\n      android:pathData=\"m230.6,360.9 l8.4,-8.6 58.2,56.7 -8.4,8.6z\"\n      android:strokeWidth=\"23\"\n      android:fillColor=\"#fc7e0f\"\n      android:strokeLineCap=\"round\"/>\n  <path\n      android:pathData=\"m279.9,361.2 l-7.6,-7.7 -57.7,57.3 7.6,7.7z\"\n      android:strokeWidth=\"23\"\n      android:fillColor=\"#fc7e0f\"\n      android:strokeLineCap=\"round\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/overleaf.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M118,304c0,41 23,79 60,99 37,19 81,17 115,-7 34,-23 52,-64 47,-105s-32,-76 -71,-91c-13,-5 -26,-8 -40,-7.5 -24,16 -44,39 -56,65 41,-43 99,-30 123,16 21,52 -16,103 -67,104 -54,-2.7 -85,-55 -77,-100 14,-86 117,-135 193,-154 -35,17 -69,36 -101,58 92,35 107,-42 149,-76 -43,-17 -197,-25 -198,68 -44,28 -75,72 -77,130z\"\n      android:fillColor=\"#04652f\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/parrotos.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0\"\n      android:fillColor=\"#12dbe8\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m322,407 l-89,-161 39,-48 143,-59 -143,3 93,-49 -177,28 -15,72 -71,5 -13,61 36,-29 111,112 88,98 -29,-62Z\"/>\n  <path\n      android:pathData=\"m173,231 l151,209 40,47a230,246 0,0 0,107 -369z\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"159.46\"\n          android:startY=\"239.77\"\n          android:endX=\"359.17\"\n          android:endY=\"210.25\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FF000000\"/>\n        <item android:offset=\"1\" android:color=\"#00000000\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/patreon.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m104,100V412h57V100h151a117,117 0,1 0,0.1 0\"\n      android:fillColor=\"#ff424d\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/paypal.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M180.7,399h-72c-5,0 -9,-5 -8,-10l48,-304c1,-7 7,-12 14,-12h122c84,3 107,46 92,112\"\n      android:fillColor=\"#002991\"/>\n  <path\n      android:pathData=\"M198.2,285l-22,143c-1,5 3,10 8,10h60c7,0 13,-5 14,-12l13,-79c1,-6 5,-10 11,-10l16,-1c57,-1 96,-26 109,-85 10,-40 3,-70 -27,-86Z\"\n      android:fillColor=\"#60cdff\"/>\n  <path\n      android:pathData=\"M197,292l20,-127a14,14 0,0 1,13 -11h96c23,0 40,4 54,11 -5,44 -26,115 -128,117h-44c-5,0 -10,4 -11,10z\"\n      android:fillColor=\"#008cff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/pdf.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#c80a0a\"/>\n  <path\n      android:pathData=\"M413,302c-9,-10 -29,-15 -56,-15 -16,0 -33,2 -53,5a252,252 0,0 1,-52 -69c10,-30 17,-59 17,-81 0,-17 -6,-44 -30,-44 -7,0 -13,4 -17,10 -10,18 -6,58 13,100a898,898 0,0 1,-50 117c-53,22 -88,46 -91,65 -2,9 4,24 25,24 31,0 65,-45 91,-91a626,626 0,0 1,92 -24c38,33 71,38 87,38 32,0 35,-23 24,-35zM227,111c8,-12 26,-8 26,16 0,16 -5,42 -15,72 -18,-42 -18,-75 -11,-88zM100,391c3,-16 33,-38 80,-57 -26,44 -52,72 -68,72 -10,0 -13,-9 -12,-15zM297,293a574,574 0,0 0,-83 22,453 453,0 0,0 36,-84 327,327 0,0 0,47 62zM310,297c32,-5 59,-4 71,-2 29,6 19,41 -13,33 -23,-5 -42,-18 -58,-31z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/peertube.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M140,100v156l116,-78\"\n      android:fillColor=\"#211f20\"/>\n  <path\n      android:pathData=\"M140,256v156l116,-78\"\n      android:fillColor=\"#737373\"/>\n  <path\n      android:pathData=\"M256,178v156l116,-78\"\n      android:fillColor=\"#f1680d\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/perplexity.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0z\"\n      android:fillColor=\"#091717\"/>\n  <path\n      android:pathData=\"M392,193h-38v-95l-90,85v-85h-15v85l-91,-85v95h-38v136h38v85l91,-81v81h15v-81l91,81v-85h37L392,193ZM339,133v60h-64l64,-60ZM173,133 L237,193h-64v-60ZM135,314L135,208h102l-79,72v34h-23ZM173,287 L249,217v96l-76,67v-93ZM339,380 L264,313v-96l75,70v93ZM377,314h-22v-34l-80,-72h102v106Z\"\n      android:fillColor=\"#fcfcf9\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/phone.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#20df40\"/>\n  <path\n      android:pathData=\"M395,338c-10,-9 -22,-17 -33,-23 -23,-16 -43,-17 -59,6 -10,14 -23,16 -37,10 -39,-18 -68,-43 -84,-82 -8,-16 -8,-31 10,-42 9,-6 19,-14 18,-28 -1,-18 -44,-78 -62,-84 -8,-2 -14,-2 -22,0 -41,14 -57,46 -42,85a451,451 0,0 0,251 248l17,5c26,0 57,-25 67,-50 9,-24 -10,-34 -24,-45z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M268,138s41,-1 72,30c31,30 27,74 27,74m-87,-63s18,-2 33,14c15,15 13,34 13,34M255,98s64,-3 111,44c47,48 43,114 43,114\"\n      android:strokeWidth=\"17\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"\n      android:strokeLineCap=\"round\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/php.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#777bb3\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M168,256c2,-16 3,-26 -24,-26L126,230l-11,53h18c18,0 31,-8 35,-27ZM155,202c51,0 55,31 50,56s-26,53 -68,53L110,311l-7,35s0,2 -3,2L70,348s-3,0 -3,-3L94,204a3,3 0,0 1,3 -2h58Z\"\n      android:strokeWidth=\"6\"\n      android:strokeColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M304,312c5,0 5,-3 5,-3l13,-69c3,-20 -6,-37 -42,-37H254l7,-34s1,-3 -2,-3H229c-4,0 -4,2 -4,2L197,309s0,3 3,3h29c4,0 4,-3 4,-3l15,-78h18c24,-1 18,7 18,15l-12,61s-1,4 3,4Z\"\n      android:strokeWidth=\"6\"\n      android:strokeColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M407,256c2,-16 3,-26 -24,-26L365,230l-11,53h18c18,0 31,-8 35,-27ZM394,202c51,0 55,31 50,56s-26,53 -68,53L349,311l-7,35s0,2 -3,2L309,348s-3,0 -3,-3L333,204a3,3 0,0 1,3 -2h58Z\"\n      android:strokeWidth=\"6\"\n      android:strokeColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/pinboard.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#182ef5\"/>\n  <path\n      android:pathData=\"M182,56 L56,185l57,-3 102,126 -12,68 75,-77L456,456 300,281l78,-83 -75,18L182,105\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/pinterest.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#bd081b\"/>\n  <path\n      android:pathData=\"M265,65c84,0 140,60 140,126 0,87 -48,151 -119,151 -24,0 -46,-13 -53,-28l-16,61c-9,35 -38,69 -40,72l-3,1a249,249 0,0 1,-2 -86l29,-120s-7,-14 -7,-34c0,-33 18,-58 42,-58 21,0 30,16 30,34 0,20 -13,50 -19,77 -6,24 11,42 34,42 42,0 70,-52 70,-116 0,-48 -32,-85 -92,-85 -67,0 -108,50 -108,106 0,19 6,32 15,43 3,5 4,6 2,12l-3,18c-2,5 -7,7 -12,5 -31,-12 -45,-46 -45,-83 0,-63 53,-138 157,-138Z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/pixelfed.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M254,256c51,17 107,-10 123,-61S365,89 315,72c-67,-31 -158,-5 -210,58L94,149c32,-42 97,-59 140,-27s52,92 20,134\"\n      android:fillColor=\"#f72\"/>\n  <path\n      android:pathData=\"M255.38,254.1c-0.41,53.76 42.58,98.67 96.02,98.13S448.51,308.06 449.23,255.25c8.78,-73.3 -44.07,-151.81 -120.05,-181.8L307.7,68.86c49.83,17.46 86.09,74.02 68.94,124.8s-71.43,77.88 -121.26,60.43\"\n      android:fillColor=\"#1c3\"/>\n  <path\n      android:pathData=\"M257.62,254.82c-51.25,16.22 -80.69,70.98 -63.65,121.65S265.98,455.17 316.42,439.54c72.43,-14.3 130.76,-88.82 135.8,-170.36L449.95,247.34c-1.2,52.79 -43.8,104.75 -97.39,104.13s-96.15,-43.86 -94.94,-96.65\"\n      android:fillColor=\"#08f\"/>\n  <path\n      android:pathData=\"M257.62,257.18c-31.27,-43.73 -92.44,-54.8 -135.36,-22.95S69.66,327.04 100.12,370.18c35.98,64.46 124.89,96.92 203.99,76.51L324.17,437.79c-50.58,15.17 -113.15,-9.28 -129.13,-60.45s12.01,-104.99 62.58,-120.16\"\n      android:fillColor=\"#a3c\"/>\n  <path\n      android:pathData=\"M255.38,257.9c31.93,-43.25 23.55,-104.85 -20.01,-135.83S130.86,100.73 99.24,143.03c-50.19,54.14 -53.58,148.72 -9.73,217.64L104.18,377.01c-30.06,-43.41 -26.14,-110.48 17.58,-141.49s103.57,-21.03 133.62,22.39\"\n      android:fillColor=\"#e15\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M101,142l1,-1c32,-42 93,-51 135,-19s50,91 18,133a96,96 0,0 0,-15 -17A84,84 0,0 0,123 123a87,87 0,0 0,-22 19z\"\n      android:strokeAlpha=\"0.3\"\n      android:fillAlpha=\"0.3\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M316.52,73.36l1.26,0.64c49.83,17.46 77.24,72.69 59.79,122.52s-71.1,75.67 -120.93,58.22a96,96 130.79,0 0,11.53 -19.52A84,84 0,0 0,341.39 88.41a87,87 108.84,0 0,-24.87 -15.05z\"\n      android:strokeAlpha=\"0.3\"\n      android:fillAlpha=\"0.3\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M448.41,257.12l-0.22,1.4c-1.2,52.79 -45.26,95.92 -98.05,94.72s-93.94,-44.23 -92.74,-97.02a96,96 0,0 0,22.13 4.94A84,84 102.57,0 0,441.77 285.42a87,87 117.48,0 0,6.63 -28.3z\"\n      android:strokeAlpha=\"0.3\"\n      android:fillAlpha=\"0.3\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M314.39,439.33l-1.4,0.22c-50.58,15.17 -105.22,-13.4 -120.39,-63.98s13.04,-103.01 63.61,-118.18a96,96 52.05,0 0,2.14 22.57A84,84 95.53,0 0,285.42 441.77a87,87 115.87,0 0,28.97 -2.44z\"\n      android:strokeAlpha=\"0.3\"\n      android:fillAlpha=\"0.3\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M99.68,368.19l-0.64,-1.26c-30.06,-43.41 -19.77,-104.21 23.65,-134.26s102,-19.43 132.05,23.98a96,96 71.1,0 0,-20.8 9.01A84,84 108.24,0 0,88.41 341.39a87,87 51.4,0 0,11.27 26.79z\"\n      android:strokeAlpha=\"0.3\"\n      android:fillAlpha=\"0.3\"/>\n  <path\n      android:pathData=\"M191,345V214a34,34 0,0 1,34 -33h51c33,0 60,26 60,58s-27,58 -60,58H241Z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256,256m-196,0a196,196 0,1 1,392 0a196,196 0,1 1,-392 0\"\n      android:strokeWidth=\"8\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/plausible.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M311.1,333.4h-26v60.2a61,61 0,0 1,-60.4 61.4h-51.2c-9.6,0 -19.2,-9.6 -19.2,-19.2v-128l32,-44.8a21.5,21.5 0,0 1,25.6 -7.3l18.4,7.7c9.2,3.8 19.9,0.8 25.7,-7.4l43,-60.2a21.5,21.5 0,0 1,25.6 -7.3l35.3,14.8c9.3,3.9 20,0.9 25.8,-7.3l41.6,-57.6c12.8,23 23.6,54.4 12.8,97.6 -11.9,48.3 -61.8,97.4 -129,97.4z\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"249.3\"\n          android:startY=\"215.3\"\n          android:endX=\"330.1\"\n          android:endY=\"356.8\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FF909CF7\"/>\n        <item android:offset=\"1\" android:color=\"#FF4B38D8\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"M175.4,255.8a34.4,34.4 0,0 1,42 -12.8l18.3,7.7c3.6,1.5 8,0.4 10.4,-3l42.2,-59a34.2,34.2 0,0 1,41.8 -12.9l35.4,15c3.7,1.5 8,0.4 10.4,-3l44.3,-62.1A130.2,130.2 0,0 0,314.3 71H173.5c-9.6,0 -19.2,9.6 -19.2,19.2v195.2z\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"205.4\"\n          android:startY=\"62.3\"\n          android:endX=\"288.7\"\n          android:endY=\"208.1\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FF909CF7\"/>\n        <item android:offset=\"1\" android:color=\"#FF4B38D8\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/playstation.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M77,322c-14,10 -9,27 21,36 31,10 64,13 96,7l6,-1v-32l-32,10c-13,4 -25,5 -37,2 -9,-2 -7,-8 4,-12l65,-23v-35l-91,31c-10,4 -21,9 -32,17ZM293,182v90c39,19 69,0 69,-48s-19,-72 -70,-89c-27,-9 -55,-18 -82,-24v270l64,20L274,174c0,-10 0,-18 8,-15 10,3 11,13 11,23ZM414,301c-40,-14 -84,-15 -125,-1l-3,1v36l60,-23c13,-3 25,-4 37,-2 9,4 7,10 -4,14l-93,35v35l128,-48c9,-4 19,-8 26,-16 6,-9 3,-22 -26,-31Z\"\n      android:fillColor=\"#0070d1\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/plex.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#282a2d\"/>\n  <path\n      android:pathData=\"m256,70H148l108,186 -108,186h108l108,-186z\"\n      android:fillColor=\"#e5a00d\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/pnpm.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M104,104h96v96h-96ZM208,104h96v96h-96ZM312,104h96v96h-96ZM312,208h96v96h-96Z\"\n      android:fillColor=\"#F9AD00\"/>\n  <path\n      android:pathData=\"M208,208h96v96h-96ZM104,312h96v96h-96ZM208,312h96v96h-96ZM312,312h96v96h-96Z\"\n      android:fillColor=\"#4E4E4E\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/pocket.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m69,134a35,35 0,0 1,35 -35h304a35,35 0,0 1,35 35v109a1,1 0,0 1,-374 5m118,-46a1,1 0,0 0,-37 36l89,85s16,15 34,0l89,-85a1,1 0,0 0,-37 -36l-69,67\"\n      android:fillColor=\"#e84352\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/pocketcasts.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#f43e37\"/>\n  <path\n      android:pathData=\"m256,329a73,73 0,1 1,73 -73h42A115,115 0,1 0,256 371v29A144,144 0,1 1,400 256h48A192,192 0,1 0,256 448\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/popos.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#48b9c7\"/>\n  <path\n      android:pathData=\"M340,359a15,15 0,1 1,0 30L165,389a15,15 0,1 1,0 -30ZM306,312c14,5 12,33 -7,30 -20,-8 -8,-33 7,-30ZM312,192c5,-29 61,-12 50,13 -52,124 -73,120 -50,-13ZM224,217q13,1 12,-22 -1,-24 -19,-41t-23,-5q-5,13 8,41t22,27ZM144,145c94,-109 210,47 89,108 4,29 35,72 17,87 -19,10 -33,-19 -66,-83 -28,-64 -60,-91 -40,-112Z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/pornhub.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m0,0H512V512H0\"/>\n  <path\n      android:pathData=\"m50,205v74h15v-28h14q28,-1 28,-24 -1,-21 -21,-22L50,205l15,12h12q15,0 14.5,11 -0.5,10 -15.5,10L65,238v-21m45,35a1,1 0,0 0,56 0,1 1,0 0,0 -56,0h14.4v-1q0.6,-14 12.6,-16h1q12,2 13,16v1q-1,15 -12,16h-2q-12,-1 -12.6,-16zM173,225h13v5q8,-10 21,-4l-4,13q-15,-9 -16,13v27h-14zM215,225h14v4q13,-9 27,-3 10,6 9,22v31h-15v-34q0,-10 -9,-10 -11,0 -11,16v28h-15z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m287,190h172q6,1 7,7v102q-1,6 -7,7H287q-6,-1 -7,-7V197q1,-6 7,-7l9,20v70h13v-34q4,-8 11,-8 9,0 9,15v27h13v-32h8v15q0,16 15,18h5q10,0 14,-6v5h33v-4q6,5 12,5h5q20,-1 21,-27 0,-24 -23,-26 -8,0 -14,4v21q1,-14 11,-15h2q10,2 10,15 0,16 -10,17h-2q-11,-1 -11,-17v-21l0.4,-22H405v70h-8.5v-51H383v28q0,13 -11,14 -8,0 -8,-12v-30h-14v19h-8q1,-19 -16,-20h-3q-7,0 -14,4v-22h-13z\"\n      android:fillColor=\"#f90\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/portronics.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M124.92,103.42c-3.3,4.19 -3.32,5.05 -3.29,138.8 0.01,74.02 0.55,135.38 1.2,136.34 2.93,4.39 8.98,5.44 31.47,5.44H177.6V155.2h70c74.66,0.15 76.82,0.35 86.45,8.16 2.6,2.11 6.8,7.07 9.34,11.03l4.61,7.2v121.6l-4.57,7.23c-5.38,8.51 -13.71,14.9 -22.63,17.38 -6.91,1.92 -77.6,2.57 -77.6,0.71 0,-0.59 5.19,-10.67 11.53,-22.4l11.53,-21.32h14.23c25.14,0 27.22,-3.74 26.44,-47.57l-0.52,-29.17 -5.23,-5.23 -5.23,-5.23H220v185.6h140.8l8.87,-4.16c16.34,-7.66 27.96,-20.81 32.64,-36.91 2.27,-7.82 2.53,-20.31 2.13,-103.91L404,143.2l-4.16,-8.87c-5.22,-11.12 -12.09,-19.01 -22.22,-25.52 -15.03,-9.65 -13.96,-9.57 -137.1,-9.59H128.23z\"\n      android:fillColor=\"#ff0000\"\n      android:fillType=\"evenOdd\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/postgresql.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m221,107S91,54 97,175c1,26 37,196 80,144l31,-34M292,97s73,-28 117,28c15,20 -2,101 -45,164 0,0 3,14 43,5 18,-4 7,10 -11,19 -15,7 -48,9 -49,-1 -1,-25 18,-17 17,-23s-10,-11 -15,-25c-5,-12 -67,-103 17,-89 3,-1 -22,-80 -101,-81s-76,97 -76,97c1,14 2,25 -1,47 -3,21 7,52 46,53v6s0,-12 6,-26c14,-32 14,-52 8,-78 -6,-30 -47,-15 -59,-2m158,121c-1,10 -6,55 -9,71 -4,22 -13,32 -37,37 -29,6 -37,-13 -41,-23s-5,-50 -4,-90c0,8 -19,32 -53,23 -8,-2 -21,-10 1,-15s19,-7 30,-19c5,-5 10,-3 13,-2 5,2 9,7 9,13M366,175c1,13 -4,23 -4,37 -1,20 10,43 -6,66\"\n      android:strokeWidth=\"30\"\n      android:strokeColor=\"#000\"/>\n  <path\n      android:pathData=\"M292,97c40,15 65,41 74,77V290l-17,23s-83,9 -113,-16L213,161l79,-64\"\n      android:fillColor=\"#336791\"/>\n  <path\n      android:pathData=\"m221,107S91,54 97,175c1,26 37,196 80,144l31,-34M292,97s73,-28 117,28c15,20 -2,101 -45,164 0,0 3,14 43,5 18,-4 7,10 -11,19 -15,7 -48,9 -49,-1 -1,-25 18,-17 17,-23s-10,-11 -15,-25c-5,-12 -67,-103 17,-89 3,-1 -22,-80 -101,-81s-76,97 -76,97c1,14 2,25 -1,47 -3,21 7,52 46,53v6s0,-12 6,-26c14,-32 14,-52 8,-78 -6,-30 -47,-15 -59,-2m158,121c-1,10 -6,55 -9,71 -4,22 -13,32 -37,37 -29,6 -37,-13 -41,-23s-5,-50 -4,-90c0,8 -19,32 -53,23 -8,-2 -21,-10 1,-15s19,-7 30,-19c5,-5 10,-3 13,-2 5,2 9,7 9,13M366,175c1,13 -4,23 -4,37 -1,20 10,43 -6,66\"\n      android:strokeWidth=\"10\"\n      android:fillColor=\"#336791\"\n      android:strokeColor=\"#fff\"/>\n  <path\n      android:pathData=\"M226,187c4,0 7,0 10,2 2,1 3,3 2,5 -5,9 -18,5 -19,-3 0,-1 0,-1 1,-2 2,-2 4,-2 6,-2ZM344,184c2,0 4,1 5,2 2,2 0,4 -2,6 -3,3 -8,3 -11,1 -1,-1 -3,-3 -2,-5 2,-3 6,-4 10,-4Z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/postman.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256,256m-192,0a192,192 0,1 1,384 0a192,192 0,1 1,-384 0\"\n      android:fillColor=\"#ff6c37\"/>\n  <path\n      android:pathData=\"m203,268 l30,-7 -13,-13zM347,136a29,29 0,1 0,12 55l-20,-20v-3l26,-26a29,29 0,0 0,-18 -6\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m368,146 l-24,24 19,18 4,-3a29,29 0,0 0,1 -39m-48,44h-3l-1,1h-1l-1,1 -71,71 9,9 75,-66 1,-1 1,-3 1,-1v-4a9,9 0,0 0,-8 -7zM225,245 L239,260 310,189q4,-3 9,-4c-13,-10 -26,-7 -94,60m106,-36 l-1,1 -75,66 13,12c31,-30 59,-58 63,-79M144,363l33,3 -18,-19zM162,344 L181,363 182,364 183,363 184,362 181,348a4,4 0,0 1,2 -5q51,-25 81,-52l-13,-13 -29,6zM246,274 L239,267 229,277 230,278z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M368.9,161.3a2.2,2.2 0,1 0,-4 2,7 7,0 0,1 -0.8,7.2 2.2,2.2 0,0 0,3.4 2.8,11 11,0 0,0 1.4,-12\"\n      android:fillColor=\"#ff6c37\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/powershell.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M139.99,104L441.99,104A18.72,23.56 48.29,0 1,458.14 125L397.65,387A18.72,23.56 48.29,0 1,371.81 408L69.81,408A18.72,23.56 48.29,0 1,53.65 387L114.14,125A18.72,23.56 48.29,0 1,139.99 104z\"\n      android:strokeAlpha=\"0.8\"\n      android:fillAlpha=\"0.8\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"52.37\"\n          android:startY=\"164.8\"\n          android:endX=\"418.72\"\n          android:endY=\"325.92\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FFC7E6FF\"/>\n        <item android:offset=\"1\" android:color=\"#FFA9C8FF\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"M140.18,107.5L440.18,107.5A15.15,19.08 48.29,0 1,453.26 124.5L392.54,387.5A15.15,19.08 48.29,0 1,371.61 404.5L71.61,404.5A15.15,19.08 48.29,0 1,58.54 387.5L119.26,124.5A15.15,19.08 48.29,0 1,140.18 107.5z\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"57.5\"\n          android:startY=\"166.9\"\n          android:endX=\"414.3\"\n          android:endY=\"324.31\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FF2D4664\"/>\n        <item android:offset=\"0.17\" android:color=\"#FF29405B\"/>\n        <item android:offset=\"0.45\" android:color=\"#FF1E2F43\"/>\n        <item android:offset=\"0.8\" android:color=\"#FF0C131B\"/>\n        <item android:offset=\"1\" android:color=\"#FF000000\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"m198,158.5l91,97m0,0l-139,100\"\n      android:strokeWidth=\"35\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"\n      android:strokeLineCap=\"round\"/>\n  <path\n      android:pathData=\"m257,352.5h74\"\n      android:strokeWidth=\"30\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"\n      android:strokeLineCap=\"round\"/>\n  <path\n      android:pathData=\"m195,155 l91,97m0,0 l-139,100\"\n      android:strokeWidth=\"35\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"\n      android:strokeLineCap=\"round\"/>\n  <path\n      android:pathData=\"m254,349h74\"\n      android:strokeWidth=\"30\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"\n      android:strokeLineCap=\"round\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/preact.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m84,157V355l172,99 172,-99V157L256,58m1,172a26,26 0,1 1,-2 0\"\n      android:fillColor=\"#673ab8\"/>\n  <path\n      android:pathData=\"m217,299a58,151.5 -52.5,1 0,-5 -4zM295,299a58,151.5 52.5,1 1,5 -4z\"\n      android:strokeWidth=\"12\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/print.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M142,85L370,85L370,161L142,161m38,133l152,0l0,95L180,389M123,180A57,57 0,0 0,66 237l0,114L142,351l0,76L370,427L370,351l76,0L446,237A57,57 0,0 0,389 180m0,76a19,19 0,1 1,0.19 0\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/prisma.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M157,288a13,13 0,0 0,0 13l46,73c3,5 8,7 14,5l132,-40c7,-2 11,-10 8,-17l-85,-184a13,13 0,0 0,-22 -1l-93,151ZM270,180c-3,-4 -8,-4 -10,1l-33,163c0,3 3,6 7,5l91,-27c3,-1 4,-4 3,-6l-59,-136Z\"\n      android:fillColor=\"#090A15\"\n      android:fillType=\"evenOdd\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/producthunt.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M290.13,179.2H217.6V256h72.53a38.4,38.4 0,1 0,0 -76.8m0,128H217.6V384h-51.2V128h123.73a89.6,89.6 0,1 1,0 179.2M256,0C114.6,0 0,114.6 0,256s114.6,256 256,256c141.38,0 256,-114.6 256,-256S397.38,0 256,0\"\n      android:fillColor=\"#ff6154\"\n      android:fillType=\"evenOdd\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/prometheus.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M251.56,3.66C112.63,3.66 0,116.28 0,255.22c0,138.92 112.63,251.55 251.56,251.55s251.56,-112.63 251.56,-251.55c0,-138.94 -112.63,-251.56 -251.56,-251.56m0,470.81c-39.52,0 -71.57,-26.4 -71.57,-58.96h143.15c0,32.55 -32.05,58.96 -71.58,58.96m118.22,-78.5L133.33,395.97L133.33,353.1L369.8,353.1zM368.93,331.03L134.01,331.03q-1.2,-1.33 -2.34,-2.7c-24.2,-29.39 -29.9,-44.73 -35.44,-60.37 -0.1,-0.51 29.35,6.02 50.23,10.72 0,0 10.74,2.48 26.45,5.35 -15.08,-17.68 -24.04,-40.15 -24.04,-63.12 0,-50.43 38.68,-94.5 24.73,-130.11 13.58,1.1 28.1,28.66 29.08,71.74 14.44,-19.95 20.48,-56.38 20.48,-78.72 0,-23.13 15.24,-50 30.48,-50.91 -13.58,22.4 3.53,41.6 18.73,89.22 5.7,17.9 4.98,48 9.38,67.1 1.47,-39.66 8.28,-97.52 33.44,-117.5 -11.1,25.16 1.64,56.64 10.36,71.77 14.06,24.42 22.58,42.91 22.58,77.9 0,23.46 -8.66,45.54 -23.27,62.8 16.61,-3.1 28.08,-5.92 28.08,-5.92l53.95,-10.52s-7.84,32.23 -37.96,63.27\"\n      android:fillColor=\"#e6522c\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/proton_vpn.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M224.39,384.49c12.24,22 43.68,23.2 57.58,2.18l129.6,-195.98c13.75,-20.78 0.6,-48.64 -24.3,-51.48l-254.73,-28.98c-27.16,-3.1 -46.5,25.55 -33.3,49.3z\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"385.59\"\n          android:startY=\"383.81\"\n          android:endX=\"178.82\"\n          android:endY=\"27.23\"\n          android:type=\"linear\">\n        <item android:offset=\"0.07\" android:color=\"#FF8EFFEE\"/>\n        <item android:offset=\"0.45\" android:color=\"#FFC9C7FF\"/>\n        <item android:offset=\"1\" android:color=\"#FF7341FF\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"m231.7,363.96 l11.5,-17.16 87.37,-131.98c7.64,-11.54 0.35,-27.01 -13.47,-28.6l-216.83,-24.9 112.32,201.94a11.26,11.26 0,0 0,19.1 0.7z\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"404.51\"\n          android:startY=\"-208.38\"\n          android:endX=\"114.95\"\n          android:endY=\"410.95\"\n          android:type=\"linear\">\n        <item android:offset=\"0.48\" android:color=\"#FF6D4AFF\"/>\n        <item android:offset=\"0.99\" android:color=\"#FF00F0C3\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/protonmail.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M332,395h60a36,36 0,0 0,36 -36V124c0,-8 -8,-10 -12,-7L279,232c-16,13 -35,10 -48,-2L99,119c-7,-7 -15,-2 -15,5v60\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"359.2\"\n          android:startY=\"395\"\n          android:endX=\"428\"\n          android:endY=\"112\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FFD8CBFF\"/>\n        <item android:offset=\"1\" android:color=\"#FF9D7AFF\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"M84,183v176a36,36 0,0 0,36 36h235V168l-50,42 -74,66s-17,13 -36,0\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:centerX=\"463.4\"\n          android:centerY=\"168\"\n          android:gradientRadius=\"433.6\"\n          android:type=\"radial\">\n        <item android:offset=\"0.6\" android:color=\"#FF6D4AFF\"/>\n        <item android:offset=\"1\" android:color=\"#FFAA8EFF\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/python.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M254,64c-16,0 -31,1 -44,4 -39,7 -46,21 -46,47v35h92v12L130,162c-27,0 -50,16 -58,46 -8,35 -8,57 0,93 7,28 23,47 49,47h32v-42c0,-30 26,-57 57,-57h91c26,0 46,-21 46,-46v-88c0,-24 -21,-43 -46,-47 -15,-3 -32,-4 -47,-4zM204,92c10,0 17,8 17,18 0,9 -7,17 -17,17 -9,0 -17,-8 -17,-17 0,-10 8,-18 17,-18z\"\n      android:fillColor=\"#5a9fd4\"/>\n  <path\n      android:pathData=\"M258,446c16,-0 31,-1 44,-4 39,-7 46,-21 46,-47l-0,-35l-92,-0l-0,-12L382,348c27,-0 50,-16 58,-46 8,-35 8,-57 -0,-93 -7,-28 -23,-47 -49,-47l-32,-0l-0,42c-0,30 -26,57 -57,57l-91,-0c-26,-0 -46,21 -46,46l-0,88c-0,24 21,43 46,47 15,3 32,4 47,4zM308,418c-10,-0 -17,-8 -17,-18 -0,-9 7,-17 17,-17 9,-0 17,8 17,17 -0,10 -8,18 -17,18z\"\n      android:fillColor=\"#ffd43b\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/qq.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M137,398a57,32 0,0 1,114 0,57 32,0 0,1 -114,0ZM261,398a57,32 0,0 1,114 0,57 32,0 0,1 -114,0Z\"\n      android:fillColor=\"#ffc107\"/>\n  <path\n      android:pathData=\"M238,149a10,14 0,0 1,-20 0,10 14,0 0,1 20,0zM284,136c-6,0 -10,6 -10,13 0,8 4,-4 10,-4 5,0 9,12 9,4 0,-7 -4,-13 -9,-13zM311,150a23,33 0,0 1,-46 0,23 33,0 0,1 46,0zM247,150a23,33 0,0 1,-46 0,23 33,0 0,1 46,0zM374,229v-56a119,119 0,0 0,-237 0v56c-18,25 -35,55 -37,78 0,44 13,40 13,40 5,0 15,-9 23,-20 19,55 65,93 120,93s101,-38 120,-93c8,11 18,20 23,20 0,0 13,4 13,-40 0,-23 -17,-54 -37,-78z\"\n      android:fillColor=\"#37474f\"/>\n  <path\n      android:pathData=\"M183,204a73,13 0,1 1,146 0,73 23,0 1,1 -146,0z\"\n      android:fillColor=\"#ffc107\"/>\n  <path\n      android:pathData=\"M171,237a88,132 0,1 0,170 0z\"\n      android:fillColor=\"#eceff1\"/>\n  <path\n      android:pathData=\"M391,220c-4,-14 -9,-20 -19,-12 -71,38 -159,38 -230,0 -10,-7 -15,-2 -19,12s-6,18 6,26l32,15c-6,32 -5,63 -5,65 1,13 12,12 27,12 14,-1 26,0 26,-15 0,-8 0,-27 3,-46 56,10 120,-1 173,-31 11,-7 9,-11 6,-26z\"\n      android:fillColor=\"#ff3d00\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/quora.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#b92b27\"/>\n  <path\n      android:pathData=\"M354,253.5a1,1 0,0 1,-195 0,1 1,0 0,1 195,0ZM383.2,356.5A163,163 0,1 0,254.4 416.3l146,0.1A18,18 0,0 0,412.9 386Z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/r.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M261,138c78,0 136,26 136,86 0,59 -58,85 -136,85s-142,-38 -142,-85c0,-48 64,-86 142,-86ZM232,339c103,0 187,-56 187,-125S335,89 232,89 46,145 46,214s83,125 186,125Z\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"45.6\"\n          android:startY=\"89.6\"\n          android:endX=\"399.6\"\n          android:endY=\"325.6\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FFCBCED0\"/>\n        <item android:offset=\"1\" android:color=\"#FF84838B\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"m330,283 l18,7 9,6 4,6 44,75h-72l-33,-63s-7,-12 -11,-15 -5,-4 -9,-4h-17v82h-63L200,167h127s58,1 58,56c0,56 -55,60 -55,60zM302,212h-38v36h38s18,0 18,-18 -18,-18 -18,-18z\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"195.5\"\n          android:startY=\"163.5\"\n          android:endX=\"396.5\"\n          android:endY=\"364.5\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FF276DC3\"/>\n        <item android:offset=\"1\" android:color=\"#FF165CAA\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/raspberry_pi.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M258,468q-34,0 -52,-22 -37,-13 -42,-22 -36,-10 -48,-78 -38,-52 14,-92 -3,-46 36,-64 -20,-7 -18,-14 -13,-2 -14,-16 -14,-5 -10,-16 -10,-7 -6,-16 -6,-8 0,-18c-2,-2 -4,-20 14,-18q6,-8 18,-4c2,-6 12,-10 18,-4q11,-8 24,0 18,-6 26,4c10,0 24,-2 40,38\"\n      android:fillColor=\"#000\"/>\n  <path\n      android:pathData=\"M126,106l10,14 -10,4 16,12L132,136l18,12L138,148l18,12L144,160l18,8 -6,4 18,4 -6,6q49,10 60,-18 -20,-22 -70,-48 37,11 74,40 31,-17 -8,-58l0,8l-16,-14l0,10l-18,-12l0,8l-18,-8 4,8 -18,-6 6,8 -24,-4 8,8\"\n      android:fillColor=\"#6cc04a\"/>\n  <path\n      android:pathData=\"M138,266c-38,18 -18,68 -6,74s30,-84 6,-74m70,-68c14,4 -60,64 -62,52q-1,-57 62,-52m-10,130c-58,-6 -38,-88 12,-88s44,88 -12,88m-52,16c-18,12 6,86 52,70 18,-14 -16,-86 -52,-70\"\n      android:fillColor=\"#c51a4a\"/>\n  <path\n      android:pathData=\"M254,468q34,0 52,-22 37,-13 42,-22 36,-10 48,-78 38,-52 -14,-92 3,-46 -36,-64 20,-7 18,-14 13,-2 14,-16 14,-5 10,-16 10,-7 6,-16 6,-8 -0,-18c2,-2 4,-20 -14,-18q-6,-8 -18,-4c-2,-6 -12,-10 -18,-4q-11,-8 -24,0 -18,-6 -26,4c-10,0 -24,-2 -40,38\"\n      android:fillColor=\"#000\"/>\n  <path\n      android:pathData=\"M386,106l-10,14 10,4 -16,12L380,136l-18,12L374,148l-18,12L368,160l-18,8 6,4 -18,4 6,6q-49,10 -60,-18 20,-22 70,-48 -37,11 -74,40 -31,-17 8,-58l-0,8l16,-14l-0,10l18,-12l-0,8l18,-8 -4,8 18,-6 -6,8 24,-4 -8,8\"\n      android:fillColor=\"#6cc04a\"/>\n  <path\n      android:pathData=\"M374,266c38,18 18,68 6,74s-30,-84 -6,-74m-70,-68c-14,4 60,64 62,52q1,-57 -62,-52m10,130c58,-6 38,-88 -12,-88s-44,88 12,88m52,16c18,12 -6,86 -52,70 -18,-14 16,-86 52,-70\"\n      android:fillColor=\"#c51a4a\"/>\n  <path\n      android:pathData=\"M212,432c34,48 90,10 88,-4s-78,-18 -88,4m90,-70c0,-56 -90,-54 -90,0s86,56 90,0m-86,-150c10,-30 68,-30 80,-2s-74,38 -80,2\"\n      android:fillColor=\"#c51a4a\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/react.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256,256m-36,0a36,36 0,1 1,72 0a36,36 0,1 1,-72 0\"\n      android:fillColor=\"#61dafb\"/>\n  <path\n      android:pathData=\"M255.95,326.95a183,71 0,1 1,0.1 0ZM194.53,291.43a183,71 60,1 1,0.05 0.09ZM317.42,291.52a71,183 30,1 1,0.05 -0.09Z\"\n      android:strokeWidth=\"18\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#61dafb\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/reddit.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#ff4500\"/>\n  <path\n      android:pathData=\"M304.6,119a39.8,39.8 0,1 0,-0.3 -17.3,64.2 64.2,0 0,0 -57.2,63.8v0.2a191,191 0,0 0,-92.3 27.1A55.7,55.7 0,1 0,97 287.4c1.8,64.7 72.3,116.7 159,116.7s157.3,-52 159,-116.8a55.7,55.7 0,1 0,-57.8 -94.5A191.4,191.4 0,0 0,264 165.7v-0.2a47,47 0,0 1,40.5 -46.5zM152.6,272.3c0.9,-20.2 14.3,-35.7 30,-35.7 15.5,0 27.4,16.4 26.5,36.6 -1,20.2 -12.6,27.5 -28.2,27.5s-29.3,-8.2 -28.4,-28.4zM329.8,236.6c15.6,0 29,15.5 30,35.7 0.9,20.2 -12.8,28.4 -28.4,28.4 -15.6,0 -27.3,-7.3 -28.2,-27.5 -1,-20.2 11,-36.6 26.6,-36.6zM311.2,319c3,0.3 4.8,3.3 3.7,6a63.6,63.6 0,0 1,-117.5 0,4.4 4.4,0 0,1 3.7,-6 550.7,550.7 0,0 1,110.1 0z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/redhat.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M379,255l3,20c5,89 -241,29 -237,-46 0,-5 1,-9 3,-14l7,-17s170,44 220,39z\"/>\n  <path\n      android:pathData=\"M317,277c24,0 58,-5 58,-33a27,27 0,0 0,0 -7l-15,-62c-3,-13 -6,-20 -30,-32 -18,-9 -59,-25 -70,-25 -12,0 -15,15 -28,15s-22,-11 -34,-11 -19,8 -25,24l-18,52a12,12 0,0 0,-1 4c0,17 70,75 163,75m62,-22l3,20c0,26 -30,41 -69,41 -90,0 -168,-52 -168,-87a35,35 0,0 1,3 -14c-32,2 -74,8 -74,44 0,60 143,135 256,135 86,0 108,-39 108,-70 0,-25 -21,-52 -59,-69\"\n      android:fillColor=\"#e00\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/redis.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M431,270c-26,33 -55,71 -111,71 -50,0 -68,-45 -68,-80 9,24 31,42 65,41 64,0 106,-58 106,-108 0,-60 -44,-104 -125,-104 -58,0 -129,20 -176,56 0,34 20,81 26,77 43,-30 73,-49 102,-59 -44,53 -153,170 -167,191 3,20 26,69 37,69l9,-4 85,-101c4,46 25,101 91,101 59,0 117,-40 142,-134 2,-12 -12,-21 -18,-12zM364,196c0,30 -28,44 -55,44 -14,0 -24,-4 -33,-9l49,-74c30,4 39,20 39,30z\"\n      android:fillColor=\"#ff4438\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/replit.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256,205.3H146.8c-10.8,0 -19.6,-8.8 -19.6,-19.6v-65.2c0,-10.8 8.8,-19.6 19.6,-19.6h90c10.8,0 19.6,8.8 19.6,19.6v104.8z\"\n      android:fillColor=\"#F5640C\"/>\n  <path\n      android:pathData=\"M365.2,307.7H256V205.3h109.2c10.8,0 19.6,8.8 19.6,19.6v65.2c0,10.8 -8.8,17.6 -19.6,17.6z\"\n      android:fillColor=\"#F5640C\"/>\n  <path\n      android:pathData=\"M236.4,410.1h-89.6c-10.8,0 -19.6,-8.8 -19.6,-19.6v-65.2c0,-10.8 8.8,-19.6 19.6,-19.6h109.2v85.2c0,10.8 -8.8,19.6 -19.6,19.6z\"\n      android:fillColor=\"#F5640C\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/researchgate.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#00d0af\"/>\n  <path\n      android:pathData=\"M213,273c-7,3 -10,4 -24,4 -9,1 -17,0 -18,0 -2,0 -2,-4 -2,-40L169,198l10,-1c23,-2 39,2 48,12 8,8 11,17 10,30 -1,17 -9,28 -23,35ZM267,382c7,2 21,2 26,0 1,0 2,-2 2,-5s0,-4 -3,-4c-1,0 -6,-1 -10,-3 -9,-5 -21,-16 -36,-37 -11,-15 -28,-41 -28,-43 0,0 3,-2 7,-3 20,-8 36,-29 37,-50 2,-19 -5,-33 -20,-43 -16,-11 -26,-12 -81,-11l-43,1v4c0,4 1,4 5,5 11,1 15,3 18,8 2,5 3,7 3,77 0,48 0,75 -1,79 -1,9 -5,12 -15,14 -8,2 -9,2 -9,6v4h80v-4,-4l-10,-1c-19,-3 -18,-2 -19,-45L170,293h24l6,11c9,14 26,41 35,53 13,16 21,22 36,26Z\"\n      android:fillColor=\"#feffff\"/>\n  <path\n      android:pathData=\"M321,227c19,2 36,-7 42,-22 2,-6 3,-10 3,-22V168H330v13h10,10v7c0,14 -7,23 -20,24 -9,1 -17,-3 -21,-10 -3,-4 -3,-7 -3,-29 0,-23 0,-24 3,-29 5,-9 15,-14 25,-11 5,2 9,5 14,11l3,3 6,-3c3,-2 6,-3 6,-4 0,-3 -4,-9 -9,-13 -8,-6 -16,-9 -29,-8 -12,1 -18,3 -25,10 -8,8 -10,17 -11,38 -2,41 7,57 32,61Z\"\n      android:fillColor=\"#feffff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/riot.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256,256m-208,0a208,208 0,1 1,416 0a208,208 0,1 1,-416 0\"\n      android:fillColor=\"#d32f2f\"/>\n  <path\n      android:pathData=\"m273.1,149.8 l-119.7,56.7 18,84.6h25.2l-4.5,-60.3 3.6,-1.8 14.4,62.1h26.1l-0.9,-73.8 3.6,-0.9 12.6,74.7h27l6.3,-89.1 3.6,-1.8 6.3,90.9h36l12.6,-124.2zM252.4,326.2 L243.4,303.7 328.9,308.2 325.3,344.2z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/roblox.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0H512V512H0\"\n      android:fillColor=\"#3156fe\"/>\n  <path\n      android:pathData=\"M365.2,449.95L60.8,367.85L142.4,64.05L446.8,146.15ZM307.7,226.35l-84.95,-23.37l-22.74,84.81l84.95,21.37Z\"\n      android:fillColor=\"#ffffff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/rockstar.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M172,112h203c34,0 60,26 60,57v191c0,31 -26,57 -60,57H172c-34,0 -61,-26 -61,-57V169c0,-31 27,-57 61,-57z\"\n      android:fillColor=\"#ffa500\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M375,420H172c-35,0 -64,-27 -64,-60V169c0,-33 29,-61 64,-61h203c36,0 64,27 64,61v191c0,33 -28,60 -64,60zM172,117c-31,0 -57,23 -57,52v191c0,30 26,53 57,53h203c31,0 56,-24 56,-53V170c0,-29 -25,-53 -56,-53H172z\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M225,164h62c13,0 22,2 29,6 8,6 12,15 12,27 0,21 -10,32 -29,35 8,2 13,9 13,22v23c0,6 0,12 3,16h-34l-2,-10 1,-22c0,-11 -6,-17 -16,-17h-22l-10,46h-32l25,-126zM278,190h-24l-7,31h26c15,0 23,-6 23,-18 0,-9 -6,-13 -18,-13z\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m319,293 l24,-42 8,43h41l-38,26 6,42 -32,-26 -43,27 19,-45 -23,-25h38Z\"/>\n  <path\n      android:pathData=\"m348,317 l24,-17h-27l-4,-32 -18,32h-27l16,17 -13,31 30,-18 23,18 -4,-31z\"\n      android:fillColor=\"#FFF\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/roundcube.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m256,107.6v340.6l192,-111V218.7z\"\n      android:fillColor=\"#37beff\"/>\n  <path\n      android:pathData=\"m256,107.6L64,218.7v118.5l192,111.1z\"\n      android:fillColor=\"#404f54\"/>\n  <path\n      android:pathData=\"m256,63.7c-73.3,0 -132.8,59.6 -132.8,133 0,24.2 6.5,46.9 17.7,66.4L256,329.7z\"\n      android:fillColor=\"#ccc\"/>\n  <path\n      android:pathData=\"m256,63.7c-42.1,28.4 -59.5,85.7 -59.5,133.1s17.4,104.5 59.5,132.9l115.1,-66.6a132.5,132.5 0,0 0,17.7 -66.4c0,-73.4 -59.5,-133 -132.9,-133z\"\n      android:fillColor=\"#e5e5e5\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/rss.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#f80\"/>\n  <path\n      android:pathData=\"m109,271A132,133 0,0 1,241 403h60A192,193 0,0 0,109 211v-54A246,247 0,0 1,355 403h60A306,307 0,0 0,109 97m35,235a35,35 0,1 0,2 0\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/ruby.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m154,430 l257,-17V248\"\n      android:fillColor=\"#810\"/>\n  <path\n      android:pathData=\"m411,413 l-164,-13 81,-61zl-22,-152 41,-100\"\n      android:fillColor=\"#b10\"/>\n  <path\n      android:pathData=\"m81,360q2,72 73,70c129,-8 266,-167 276,-269q6,-68 -55,-78l-54,30s-11,194 -218,204\"\n      android:fillColor=\"#900\"/>\n  <path\n      android:pathData=\"m81,360 l5,-97 19,54\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"81\"\n          android:startY=\"263\"\n          android:endX=\"85.8\"\n          android:endY=\"360\"\n          android:type=\"linear\">\n        <item android:offset=\"0.2\" android:color=\"#FFFFFFFF\"/>\n        <item android:offset=\"0.4\" android:color=\"#FFDD5533\"/>\n        <item android:offset=\"0.6\" android:color=\"#FFBB1100\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"m105,317 l49,113 40,-133\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"105\"\n          android:startY=\"297\"\n          android:endX=\"122.8\"\n          android:endY=\"430\"\n          android:type=\"linear\">\n        <item android:offset=\"0.2\" android:color=\"#FFFFFFFF\"/>\n        <item android:offset=\"0.4\" android:color=\"#FFDD5533\"/>\n        <item android:offset=\"0.6\" android:color=\"#FFBB1100\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"m194,297 l100,-94 34,137\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"194\"\n          android:startY=\"203\"\n          android:endX=\"220.8\"\n          android:endY=\"340\"\n          android:type=\"linear\">\n        <item android:offset=\"0.2\" android:color=\"#FFFFFFFF\"/>\n        <item android:offset=\"0.4\" android:color=\"#FFDD5533\"/>\n        <item android:offset=\"0.6\" android:color=\"#FFBB1100\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"m294,203 l27,-90 101,82\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"294\"\n          android:startY=\"113\"\n          android:endX=\"319.6\"\n          android:endY=\"203\"\n          android:type=\"linear\">\n        <item android:offset=\"0.2\" android:color=\"#FFFFFFFF\"/>\n        <item android:offset=\"0.4\" android:color=\"#FFDD5533\"/>\n        <item android:offset=\"0.6\" android:color=\"#FFBB1100\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"m155,157a62,139 45,1 0,1 -1.02\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"90.55\"\n          android:startY=\"308.52\"\n          android:endX=\"312.43\"\n          android:endY=\"87.68\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FFFFFFFF\"/>\n        <item android:offset=\"0.1\" android:color=\"#FFDD3322\"/>\n        <item android:offset=\"0.2\" android:color=\"#FF880000\"/>\n        <item android:offset=\"1\" android:color=\"#FFDD2200\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"m375,83h-96l42,30zl300,-600\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"279\"\n          android:startY=\"113\"\n          android:endX=\"675\"\n          android:endY=\"-517\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FFFFFFFF\"/>\n        <item android:offset=\"0.1\" android:color=\"#FFDD3322\"/>\n        <item android:offset=\"0.2\" android:color=\"#FF880000\"/>\n        <item android:offset=\"1\" android:color=\"#FFDD2200\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/rubygems.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m366,238 l-46,-46L190,192l-45,46 111,110m0,-278 l-162,93v186l162,93 162,-93L418,163zM256,407 L125,331L125,180l131,-76 131,75v152\"\n      android:fillColor=\"#d6422b\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/rubyonrails.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M98,402c34,-163 125,-282 321,-288v15c-121,33 -180,118 -159,273H98z\"\n      android:fillColor=\"#c00\"/>\n  <path\n      android:pathData=\"m274,359 l-4,27 30,13 1,-27zM88,283l-13,36 34,10 13,-35zM158,175 L133,202 164,225 189,195zM250,109 L223,128 244,152 272,134zM325,99 L331,117 359,110 353,94zM359,169 L372,189 388,174 381,158zM320,196 L303,214 326,241 338,222zM283,274 L275,299 306,317 307,290z\"\n      android:fillColor=\"#c00\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/safari.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256,256m-210,0a210,210 0,1 1,420 0a210,210 0,1 1,-420 0\"\n      android:strokeWidth=\"20\"\n      android:strokeColor=\"#eee\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:centerX=\"256\"\n          android:centerY=\"256\"\n          android:gradientRadius=\"210\"\n          android:type=\"radial\">\n        <item android:offset=\"0\" android:color=\"#FF00BBDD\"/>\n        <item android:offset=\"1\" android:color=\"#FF1177DD\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"M256,256m-180,0a180,180 0,1 1,360 0a180,180 0,1 1,-360 0\"\n      android:strokeWidth=\"22\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#eee\"/>\n  <path\n      android:pathData=\"M256,256m-170,0a170,170 0,1 1,340 0a170,170 0,1 1,-340 0\"\n      android:strokeWidth=\"40\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#eee\"/>\n  <path\n      android:pathData=\"M116,388 L232,232 280,280\"\n      android:fillColor=\"#eee\"/>\n  <path\n      android:pathData=\"M396,120 L232,232 280,280\"\n      android:fillColor=\"#f55\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M116,388l28,-20 -12,20L280,280l112,-140 -16,8 16,-24\"\n      android:strokeAlpha=\"0.3\"\n      android:fillAlpha=\"0.3\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/samsung.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#034ea2\"/>\n  <path\n      android:pathData=\"M381,225l13,47L394,225h15v59L388,284l-15,-48v48L358,284L358,225ZM141,225 L152,284L136,284l-8,-53 -8,53L104,284l11,-59ZM314,225v46c0,2 2,4 6,4 5,0 6,-2 6,-4L326,225h15v45c0,11 -9,15 -20,15 -12,0 -20,-4 -21,-15L300,225ZM190,225 L197,270 204,225h24l1,59L214,284L214,231l-9,53L190,284l-11,-53v53L164,284l1,-59ZM265,224c8,0 20,2 20,15v4L270,243v-4c0,-2 -1,-5 -5,-5s-5,3 -5,4v3c2,8 27,9 26,28 0,13 -7,17 -21,17 -11,0 -23,-5 -22,-21h16v5c0,2 2,5 6,5s5,-2 5,-4v-4c-2,-4 -24,-11 -27,-23 -1,-15 6,-20 22,-20m160,15c0,-17 38,-20 39,0v6L451,245v-5c-1,-5 -12,-5 -12,0v31c0,5 12,5 13,0L452,260h-5v-8h17v20c0,17 -38,21 -39,0L425,239M72,224c8,0 20,2 20,15v4L77,243v-4c0,-2 -1,-5 -5,-5s-5,3 -5,4v3c2,8 27,9 26,28 0,13 -7,17 -21,17 -11,0 -23,-5 -22,-21L66,265v5c0,2 2,5 6,5s5,-2 5,-4v-4c-2,-4 -24,-11 -27,-23 -1,-15 6,-20 22,-20\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/samsung_internet.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#7882ff\"/>\n  <path\n      android:pathData=\"M256,256m-172,0a172,172 0,1 1,344 0a172,172 0,1 1,-344 0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m152,149a199,76 20.8,1 0,255 98\"\n      android:strokeWidth=\"54\"\n      android:fillColor=\"#fff\"\n      android:strokeColor=\"#4d5cc1\"/>\n  <path\n      android:pathData=\"m98,188a172,172 0,0 1,321 123\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/samsung_s.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M292.6,332.2c3.5,8.6 2.4,19.7 0.8,26.4 -3,11.8 -11,23.9 -34.6,23.9 -22.3,0 -35.9,-12.8 -35.9,-32.3v-34.4h-95.5v27.5c0,79.3 62.5,103.3 129.4,103.3 64.4,0 117.4,-22 125.8,-81.3 4.3,-30.7 1.1,-50.9 -0.4,-58.5 -15,-74.5 -150.1,-96.8 -160.2,-138.4 -1.7,-7.1 -1.2,-14.7 -0.4,-18.8 2.5,-11.3 10.2,-23.8 32.5,-23.8 20.8,0 33.1,12.9 33.1,32.3v22h88.7v-25c0,-77.6 -69.6,-89.6 -120,-89.6 -63.3,0 -115,20.9 -124.5,78.8 -2.6,16 -2.9,30.2 0.8,48.1 15.6,72.6 141.9,93.7 160.3,139.8z\"\n      android:fillColor=\"#034ea2\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/samsung_swoop.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M470,219A61,210 80,0 0,42 292a61,210 80,0 0,428 -73M349,233l10,35L359,233h11v44L354,277l-11,-36v36L332,277L332,233ZM170,233 L178,277L166,277l-6,-40 -6,40L142,277l8,-44ZM300,233v34c0,1 1,3 4,3 4,0 5,-2 5,-3L309,233h11v34c0,8 -7,11 -15,11 -9,0 -15,-3 -16,-11L289,233ZM206,233 L211,267 216,233h18l1,44L224,277L224,237l-7,40L206,277l-8,-40v40L187,277l1,-44ZM263,232c6,0 15,1 15,11v3L267,246v-3c0,-2 -1,-4 -4,-4s-4,2 -4,3v2c2,6 21,7 20,21 0,10 -6,13 -16,13 -8,0 -17,-4 -16,-16h12v4c0,2 1,4 4,4s4,-1 4,-3v-3c-1,-3 -18,-8 -20,-17 -1,-11 4,-15 16,-15ZM383,243c0,-13 28,-15 29,0v5L402,248v-4c-1,-4 -9,-4 -9,0v23c0,4 9,4 10,0v-8h-4v-6h13v15c0,13 -28,16 -29,0L383,243ZM118,232c6,0 15,1 15,11v3L122,246v-3c0,-2 -1,-4 -4,-4s-4,2 -4,3v2c2,6 21,7 20,21 0,10 -6,13 -16,13 -8,0 -17,-4 -16,-16h12v4c0,2 1,4 4,4s4,-1 4,-3v-3c-1,-3 -18,-8 -20,-17 -1,-11 4,-15 16,-15Z\"\n      android:fillColor=\"#034ea2\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/sass.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#c69\"/>\n  <path\n      android:pathData=\"M172,408c21,-6 48,-35 36,-73 -42,21 -56,42 -59,59 -1,6 -2,22 23,14ZM258,88c71,-24 152,-9 150,47 -7,106 -169,129 -189,79 -4,-11 3,-8 5,-4 38,36 146,-6 158,-68 8,-41 -55,-59 -144,-14s-94,81 -95,95c-2,38 43,54 76,89 57,-15 103,5 103,48 0,17 -15,27 -22,29s-14,0 -3,-4 27,-29 -4,-51c-8,-6 -35,-16 -66,-8 14,41 -8,80 -30,94s-74,29 -76,-19c-1,-35 43,-62 78,-80 -27,-21 -87,-53 -93,-93S162,121 258,88Z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/semantic_web.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M273.4,106.5c-19.3,-8.7 -15.5,-7.6 -15.5,-7.6L97.2,164.8l160.7,78.3s12.4,-5.2 32.4,-14.9C388.4,180.6 409.6,64 409.6,64s-24.4,93 -136.3,42.5Z\"\n      android:fillColor=\"#86ba0c\"/>\n  <path\n      android:pathData=\"M239,448 L89,367V200L239,276\"\n      android:fillColor=\"#ef7c00\"/>\n  <path\n      android:pathData=\"m273,448 l150,-81V200l-150,76z\"\n      android:fillColor=\"#bd1789\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/semaphoreci.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M381.5,167.8v-0.1a105.7,105.7 0,0 0,-149.5 0l-66.5,67.7 26.1,26.5a19.4,19.4 0,0 0,27.5 0l52.7,-53.6a49.3,49.3 0,0 1,69.7 0L408,276l40,-40.6Z\"/>\n  <path\n      android:pathData=\"M130.3,344.4l-0,0.1a105.7,105.7 0,0 0,149.5 -0l66.5,-67.7 -26.1,-26.5a19.4,19.4 0,0 0,-27.5 -0l-52.7,53.6a49.3,49.3 0,0 1,-69.7 -0L103.8,236.2l-40,40.6Z\"\n      android:fillColor=\"#000\"/>\n  <path\n      android:pathData=\"M381.5,167.8v-0.1a105.7,105.7 0,0 0,-149.5 0l-66.5,67.7 26.1,26.5a19.4,19.4 0,0 0,27.5 0l52.7,-53.6a49.3,49.3 0,0 1,69.7 0L408,276l40,-40.6Z\"\n      android:fillColor=\"#000\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/sentry.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M124,331l-19,33a17.5,17.5 0,0 0,14 27h85a114,114 0,0 0,-58 -99l28,-49a166,166 0,0 1,86 148h57A230,230 0,0 0,203 194l38,-66a17.5,17.5 0,0 1,30 0L409,367a17.5,17.5 0,0 1,-16 24H360\"\n      android:strokeWidth=\"26\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#221f20\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/signal.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#3b45fd\"/>\n  <path\n      android:pathData=\"M256,100A156,156 0,0 0,124 339l-15,64 64,-15a156,156 0,1 0,83 -288z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M403,147A183,183 0,0 0,97 346l-18,76c0,3 0,6 3,8a9,9 0,0 0,8 3l76,-18A183,183 0,0 0,402 146M79,422c0,3 0,6 3,8a9,9 0,0 0,8 3\"\n      android:strokeWidth=\"18\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/sketch.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M257,445 L57,213H457\"\n      android:fillColor=\"#ec6c00\"/>\n  <path\n      android:pathData=\"M370,96H144L57,213h81l119,232 119,-232h81\"\n      android:fillColor=\"#ffae00\"/>\n  <path\n      android:pathData=\"m257,84 l113,12 6,117H138l6,-117\"\n      android:fillColor=\"#fed305\"/>\n  <path\n      android:pathData=\"m257,84 l119,129H138\"\n      android:fillColor=\"#ffefB4\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/skype.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#0078D7\"/>\n  <path\n      android:pathData=\"M87,226a171,171 0,0 0,199 199c109,53 185,-64 139,-139 23,-132 -98,-220 -199,-199A102,102 0,0 0,87 226m241,-42c16,23 -16,41 -28,27 -16,-18 -32,-27 -49,-26 -44,3 -43,40 -5,45 52,8 99,22 95,68 -5,52 -47,67 -90,64 -52,-4 -68,-22 -78,-41 -12,-23 22,-45 36,-20 23,37 65,32 78,17 20,-23 -1,-37 -23,-41 -24,-5 -49,-10 -68,-20 -30,-16 -43,-92 36,-105 36,-6 79,5 96,32\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/slack.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:strokeWidth=\"78\"\n      android:fillColor=\"#fff\"\n      android:strokeLineCap=\"round\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m110,207h97m0,-97h0.1v-0.1\"\n      android:strokeWidth=\"78\"\n      android:strokeColor=\"#36c5f0\"\n      android:strokeLineCap=\"round\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m305,110v97m97,0v0.1h0.1\"\n      android:strokeWidth=\"78\"\n      android:strokeColor=\"#2eb67d\"\n      android:strokeLineCap=\"round\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m402,305h-97m0,97h-0.1v0.1\"\n      android:strokeWidth=\"78\"\n      android:strokeColor=\"#ecb22e\"\n      android:strokeLineCap=\"round\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M110,305h0.1v0.1m97,0v97\"\n      android:strokeWidth=\"78\"\n      android:strokeColor=\"#e01e5a\"\n      android:strokeLineCap=\"round\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/slideshare.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#17B\"/>\n  <path\n      android:pathData=\"M138,86c-25,0 -44,20 -44,43v127c-8,-4 -14,-6 -15,-3 -3,7 3,13 15,27 12,15 63,34 63,34v59c0,17 37,43 56,43s33,-13 33,-21v-55l12,4v51c0,8 12,31 51,31s49,-45 49,-53v-54c29,-15 57,-23 70,-47 12,-24 2,-28 -9,-17L419,129c0,-23 -20,-43 -45,-43zM138,107h236c13,0 23,10 23,22v140c-19,9 -45,17 -49,17h-56c-17,0 -34,-1 -34,17 -14,-9 -14,-16 -37,-15 -16,0 -56,-3 -78,-8 -8,-2 -18,-7 -28,-13L115,129c0,-12 10,-22 23,-22zM206,192c-21,0 -39,17 -39,38s18,38 39,38c22,0 39,-17 39,-38s-17,-38 -39,-38zM310,192c-21,0 -39,17 -39,38s18,38 39,38c22,0 39,-17 39,-38s-17,-38 -39,-38z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/snapchat.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fffc00\"/>\n  <path\n      android:pathData=\"M245,91q26,-2 49,7a83,83 0,0 1,51 49q6,17 5,36c0,6 -3,21 1,24h19c8,-1 18,2 21,13q3,9 -1,16c-4,10 -16,15 -24,21q-6,2 -8,9 -2,5 1,12 4,14 16,24 11,12 25,21c9,5 25,10 22,23q-1,6 -5,8l-6,4q-9,5 -17,7 -6,1 -11,5c-6,4 -5,11 -10,15 -12,10 -33,5 -47,10q-10,3 -19,9l-19,10 -20,5q-29,3 -54,-10c-13,-7 -22,-14 -36,-17 -11,-2 -30,1 -39,-6 -5,-4 -5,-12 -10,-16l-15,-6c-10,-4 -26,-9 -25,-22 1,-12 18,-16 26,-22q18,-10 31,-28 9,-11 8,-24 -3,-9 -11,-12c-8,-6 -19,-12 -22,-21q-2,-5 -2,-10 2,-12 12,-17l9,-1 16,1 4,-2q2,-5 1,-12v-13l2,-21 4,-13c13,-33 44,-51 78,-56\"\n      android:strokeWidth=\"10\"\n      android:fillColor=\"#fff\"\n      android:strokeColor=\"#000\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/socket_io.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256,256m-228,0a228,228 0,1 1,456 0a228,228 0,1 1,-456 0\"\n      android:strokeWidth=\"40\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#010101\"/>\n  <path\n      android:pathData=\"M196,244q80,-70 164,-134l-90,134zM242,268h74q-80,70 -164,134z\"\n      android:fillColor=\"#010101\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/sogo.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M400,204a1,1 0,0 0,0 20,1 1,0 0,0 0,-20ZM400,194a1,1 0,0 1,0 40,1 1,0 0,1 0,-40ZM400,183.5a1,1 0,0 0,0 61,1 1,0 0,0 0,-61m0,-11a1,1 0,0 1,0 83,1 1,0 0,1 0,-83M301,366c20,0 31,-10 31,-21s-11.3,-22.9 -34,-20c-4.3,0.5 -13,0 -17,-3 0,0 -13,7 -13,21 0,13 12,23 33,23M268,251a32,35 0,0 0,65 0,32 33,0 0,0 -65,0ZM300,312c11.4,-1.8 45,2 45,33a45,35 0,0 1,-90 -2c-0.4,-12.6 6.1,-24.5 17,-31 -4,-12 5,-20 5,-20.5a45.5,46 0,1 1,19 6.5c-5,0 -12,3 -12,8s4.6,7.8 16,6ZM194,286a34,34.5 0,0 0,0 -69,33 34.5,0 0,0 0,69ZM194,206a46,45 0,0 1,0 91,46 45,0 0,1 0,-91M82,230c0,23 51,7 51,40 0,19 -17,27 -34,27 -13,0 -25,-4 -33,-17a1,1 0,0 1,10 -7c5,7 13,13 23,13s20,-4 20,-14c0,-22 -50,-8 -50,-40 0,-17 16,-26 32,-26 12,0 23,6 29,16a1,1 0,0 1,-11 7c-3,-5 -8,-12 -19,-12 -8,0 -18,4 -18,13Z\"\n      android:fillColor=\"#50bd37\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/solana.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512v512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M0,0h512v512H0Z\"\n      android:fillColor=\"#00ffad\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M356,197q-2,2 -6,2L124,199a9,9 0,0 1,-6 -15l37,-38q3,-3 7,-3h226c8,0 12,9 6,15zM356,367q-2,3 -6,3L124,370a9,9 0,0 1,-6 -15l37,-37q3,-3 7,-3h226c8,0 12,9 6,15zM356,231q-2,-2 -6,-2L124,229a9,9 0,0 0,-6 15l37,37q3,2 7,2h226c8,0 12,-9 6,-15z\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/solidity.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m314.5,73.6 l-58.6,104h-117l58.5,-104h117.1\"\n      android:strokeAlpha=\"0.4\"\n      android:fillAlpha=\"0.4\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M255.9,177.6h117l-58.4,-104H197.4l58.5,104\"\n      android:strokeAlpha=\"0.6\"\n      android:fillAlpha=\"0.6\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m197.4,281.7 l58.5,-104.1 -58.5,-104 -58.5,104 58.5,104.1\"\n      android:strokeAlpha=\"0.8\"\n      android:fillAlpha=\"0.8\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m198,437.8 l58.5,-104h117l-58.4,104H198\"\n      android:strokeAlpha=\"0.4\"\n      android:fillAlpha=\"0.4\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M256.6,333.7H139.5l58.5,104h117l-58.4,-104\"\n      android:strokeAlpha=\"0.6\"\n      android:fillAlpha=\"0.6\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m315.1,229.7 l-58.5,104 58.5,104 58.5,-104 -58.5,-104\"\n      android:strokeAlpha=\"0.8\"\n      android:fillAlpha=\"0.8\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/sonarqube-community.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512h-512z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M290,224a44,44 0,1 0,-1 62M256,160a94,94 0,0 1,94 96m53,0A145,145 0,0 0,256 110M159,256a94,94 0,0 0,97 94m0,53A145,145 0,0 1,112 253\"\n      android:strokeWidth=\"18\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#126ed3\"\n      android:strokeLineCap=\"round\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/sonarqube-server.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512h-512z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M301,256a44,44 0,0 0,-45 -43m0,-53a94,94 0,0 1,94 96m53,0A145,145 0,0 0,256 110m0,190a44,44 0,0 1,-44 -44m-53,0a94,94 0,0 0,97 94m0,53A145,145 0,0 1,112 253\"\n      android:strokeWidth=\"18\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#126ed3\"\n      android:strokeLineCap=\"round\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/soundcloud.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#f50\"/>\n  <path\n      android:pathData=\"m59,270 l-3,22 3,22c0,2 3,2 3,0l3,-22 -3,-22c0,-3 -3,-3 -3,0zM77,256c0,-3 -3,-3 -3,0l-5,36 4,35c0,3 4,3 4,0l4,-35zM136,226 L133,292 135,332c0,8 7,8 7,0l4,-40 -4,-66c0,-5 -6,-5 -6,0zM105,248 L101,292 104,332c0,6 5,6 5,0l4,-40 -4,-44c0,-3 -4,-3 -4,0zM175,332 L178,292 175,204c0,-6 -7,-6 -7,0l-3,88 2,40c0,8 8,8 8,0zM243,332 L245,292 243,190c0,-7 -10,-7 -10,0l-2,102 2,40c0,8 10,8 10,0zM209,332 L212,292 209,203c0,-6 -9,-6 -9,0l-2,89 2,40c0,8 9,8 9,0zM126,332 L129,292 126,251c0,-3 -6,-3 -6,0l-3,41 3,40c0,7 6,7 6,0zM93,332 L97,292 93,249c0,-3 -4,-3 -4,0l-4,43 4,40c0,4 4,4 4,0zM217,207 L215,292 216,332c0,8 10,8 10,0l2,-40 -2,-85c0,-7 -9,-7 -9,0zM159,332 L162,292 159,211c0,-6 -7,-6 -7,0l-3,81 2,40c0,8 8,8 8,0zM192,332 L195,292 192,201c0,-6 -8,-6 -8,0l-3,91 3,40c0,8 8,8 8,0zM388,243c-5,-57 -64,-94 -118,-73 -4,2 -5,3 -5,6v156c0,3 2,6 5,6h137c27,0 49,-22 49,-49 0,-37 -35,-57 -68,-46zM250,181 L247,292 250,332c0,8 10,8 10,0l3,-40 -3,-111c0,-7 -10,-7 -10,0z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/sparql.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M386.94,198.13c-3.9,0.73 -14.42,20.82 -12.5,59.33 1.23,24.63 3.26,43.69 17.79,56.46H334.81c14.94,-13.01 15.98,-40.64 15.83,-56.54 -0.23,-25.45 -6.97,-46.36 -14.14,-54.67a71,71 44,1 1,50.44 -4.59\"\n      android:fillColor=\"#0C479C\"/>\n  <path\n      android:pathData=\"M312.5,94.6c20.8,-22.6 54,-26 74,-7.2 -15.7,-10 -35,-3.6 -49.8,5.7 10.9,11 -0.8,29 -14.7,24.1 -5.3,-1.9 -9,2.3 -10.2,3.8 -9.8,18.5 -10.2,38.1 -0.4,47.5 -19.6,-18.8 -19.2,-51.6 1.1,-73.9\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M293.38,371.89c1.32,-3.74 -10.82,-22.9 -45.13,-40.49 -21.95,-11.25 -39.47,-19.02 -57.79,-12.82L219.17,268.85c3.8,19.44 27.21,34.16 41.05,41.98 22.16,12.53 43.63,17.14 54.42,15.09a71,71 81.9,1 1,-21.24 45.98\"\n      android:fillColor=\"#0C479C\"/>\n  <path\n      android:pathData=\"M189.68,203.98c2.58,3.01 25.24,2.08 57.63,-18.84 20.72,-13.38 36.21,-24.67 40,-43.64L316.02,191.23c-18.74,-6.43 -43.19,6.48 -56.88,14.56 -21.93,12.92 -36.66,29.22 -40.28,39.58a71,71 105.27,1 1,-29.2 -41.39\"\n      android:fillColor=\"#0C479C\"/>\n  <path\n      android:pathData=\"M107.5,224.6c20.8,-22.6 54,-26 74,-7.2 -15.7,-10 -35,-3.6 -49.8,5.7 10.9,11 -0.8,29 -14.7,24.1 -5.3,-1.9 -9,2.3 -10.2,3.8 -9.8,18.5 -10.2,38.1 -0.4,47.5 -19.6,-18.8 -19.2,-51.6 1.1,-73.9\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M323.5,342.6c20.8,-22.6 54,-26 74,-7.2 -15.7,-10 -35,-3.6 -49.8,5.7 10.9,11 -0.8,29 -14.7,24.1 -5.3,-1.9 -9,2.3 -10.2,3.8 -9.8,18.5 -10.2,38.1 -0.4,47.5 -19.6,-18.8 -19.2,-51.6 1.1,-73.9\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/spotify.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256,256m-192,0a192,192 0,1 1,384 0a192,192 0,1 1,-384 0\"\n      android:fillColor=\"#1ed760\"/>\n  <path\n      android:pathData=\"m141,195c75,-20 164,-15 238,24\"\n      android:strokeWidth=\"36\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"\n      android:strokeLineCap=\"round\"/>\n  <path\n      android:pathData=\"m152,257c61,-17 144,-13 203,24\"\n      android:strokeWidth=\"31\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"\n      android:strokeLineCap=\"round\"/>\n  <path\n      android:pathData=\"m156,315c54,-12 116,-17 178,20\"\n      android:strokeWidth=\"24\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"\n      android:strokeLineCap=\"round\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/sqlite.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m269,347v40H124c-10,0 -19,-9 -19,-19V121c0,-10 9,-19 19,-19h224\"\n      android:strokeWidth=\"7.756\"\n      android:strokeColor=\"#0f80cc\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"105\"\n          android:startY=\"102\"\n          android:endX=\"105\"\n          android:endY=\"387\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FF97D9F6\"/>\n        <item android:offset=\"0.66\" android:color=\"#FF0F80CC\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"M396,90c36.5,32.6 0.3,107 -33,159 -24,7.9 -52.3,25 -52.3,25 12,-6 24.8,-9.3 45.3,-14 -18,27 -33,46 -33,46s-31,12 -41,42c19,-107.8 80.4,-216.5 107.7,-241C310,170.5 255,350 280,429l-2,1c-5.9,-13.5 -9.4,-47.5 -8.1,-78.3 -0.5,-6 -6.4,-44 -13.4,-55.8 -1.1,-1.9 0.2,-9.8 3.3,-21.4 6.4,11.1 11.2,19.7 13.3,27.6 0,0 -4.3,-22 -11.3,-34.8 1.5,-5.2 3.3,-10.9 5.4,-17 7.9,14 10.7,19.4 12.5,26.2 -0.4,-1.8 -4.2,-20.5 -10.3,-32.8 10.9,-57 46.9,-120.5 75.6,-146 18,-15.7 36.1,-21 51,-7.7\"\n      android:fillColor=\"#003b57\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/stackexchange.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M356,71q50,0 50,50v16H106V121q0,-50 50,-50\"\n      android:fillColor=\"#91d8f4\"/>\n  <path\n      android:pathData=\"m106,157v60h300v-60\"\n      android:fillColor=\"#4ca2da\"/>\n  <path\n      android:pathData=\"m106,239v60h300v-60\"\n      android:fillColor=\"#376db6\"/>\n  <path\n      android:pathData=\"M406,319H106v16q0,50 50,50h123v65l65,-65h12q50,0 50,-50\"\n      android:fillColor=\"#1e5397\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/stackoverflow.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#f58025\"/>\n  <path\n      android:pathData=\"M125,297V402H366V297m-46,44H170m6,-68 l148,31m11,-36 l-136,-64m41,-65 l115,97m28,-27L293,89\"\n      android:strokeWidth=\"30\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/steam.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#231f20\"/>\n  <path\n      android:pathData=\"m183,280 l41,28 27,41 87,-62 -94,-96\"\n      android:fillColor=\"#ebebeb\"/>\n  <path\n      android:pathData=\"M340,190m-49,0a49,49 0,1 1,98 0a49,49 0,1 1,-98 0\"\n      android:fillColor=\"#ebebeb\"/>\n  <path\n      android:pathData=\"M179,352m-63,0a63,63 0,1 1,126 0a63,63 0,1 1,-126 0\"\n      android:strokeWidth=\"19\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#ebebeb\"/>\n  <path\n      android:pathData=\"m-18,271 l195,81\"\n      android:strokeWidth=\"80\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#ebebeb\"\n      android:strokeLineCap=\"round\"/>\n  <path\n      android:pathData=\"M340,190m-81,0a81,81 0,1 1,162 0a81,81 0,1 1,-162 0\"\n      android:strokeWidth=\"32\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#ebebeb\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/stitcher.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M56,205h70v127H56z\"\n      android:fillColor=\"#3590c5\"/>\n  <path\n      android:pathData=\"M386,198h70v117h-70z\"\n      android:fillColor=\"#c53827\"/>\n  <path\n      android:pathData=\"M304,172h70v152h-70z\"\n      android:fillColor=\"#ec8b24\"/>\n  <path\n      android:pathData=\"M222,194h70v146h-70z\"\n      android:fillColor=\"#fbc618\"/>\n  <path\n      android:pathData=\"M139,182h70v141h-70z\"\n      android:fillColor=\"#612268\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/strava.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fc4c01\"/>\n  <path\n      android:pathData=\"M192,288l40,-96 40,96h72L232,56 120,288Z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M280,288l32,72 32,-72h48l-80,168 -80,-168z\"\n      android:fillColor=\"#fda580\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/stumbleupon.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#ea4b24\"/>\n  <path\n      android:pathData=\"m99,260v52a52.5,55.5 0,0 0,105 0V190a52,49.5 0,0 1,104 0v122a52.5,55.5 0,0 0,105 0V260\"\n      android:strokeWidth=\"63\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"/>\n  <path\n      android:pathData=\"M273,215v44l35,15 35,-15v-44l-35,15z\"\n      android:fillColor=\"#ea4b24\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/sublimemerge.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#424242\"/>\n  <path\n      android:pathData=\"M279,307c-1.6,0.1 -3.4,-0.3 -4.9,-1.3L98.8,183c-3.4,-2.4 -4.3,-7.2 -1.8,-10.7l49.4,-70.5c2.4,-3.4 7.2,-4.3 10.7,-1.8l151.1,105.8\"\n      android:fillColor=\"#88d9d9\"/>\n  <path\n      android:pathData=\"M279,206h116.7c2,0 3.9,0.8 5.3,2.1 0.1,0.1 1.7,1.6 4,4.1l39,39c3,3 3,7.9 0,10.9l-36.8,36.8c-3.3,3.6 -5.8,5.9 -6,6.1 -1.4,1.4 -3.3,2.3 -5.5,2.3H308L157,413c-3.4,2.4 -8.3,1.5 -10.7,-1.8l-49.4,-70.5c-2.4,-3.4 -1.5,-8.3 1.8,-10.7L274,207.3c1.5,-1 3.2,-1.5 4.9,-1.3\"\n      android:fillColor=\"#00e6e7\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/sublimetext.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#424242\"/>\n  <path\n      android:pathData=\"M118,337.79L394,250.77A9.36,6.84 130.52,0 1,402 256.25L402,347.25A9.36,6.84 130.52,0 1,394 357.77L118,444.79A9.36,6.84 130.52,0 1,110 439.32L110,348.32A9.36,6.84 130.52,0 1,118 337.79z\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"285.2\"\n          android:startY=\"367.32\"\n          android:endX=\"314.4\"\n          android:endY=\"355.59\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FFFF9700\"/>\n        <item android:offset=\"0.5\" android:color=\"#FFF48E00\"/>\n        <item android:offset=\"0.9\" android:color=\"#FFD06F00\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"M118,153.79L394,66.77A9.36,6.84 130.52,0 1,402 72.25L402,163.25A9.36,6.84 130.52,0 1,394 173.77L118,260.79A9.36,6.84 130.52,0 1,110 255.32L110,164.32A9.36,6.84 130.52,0 1,118 153.79z\"\n      android:fillColor=\"#ff9800\"/>\n  <path\n      android:pathData=\"M118,159.21L394,246.23A9.36,6.84 49.48,0 1,402 256.75L402,347.75A9.36,6.84 49.48,0 1,394 353.23L118,266.21A9.36,6.84 49.48,0 1,110 255.68L110,164.68A9.36,6.84 49.48,0 1,118 159.21z\"\n      android:fillColor=\"#ff9800\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/subscribestar.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256,256m-192,0a192,192 0,1 1,384 0a192,192 0,1 1,-384 0\"\n      android:fillColor=\"#098\"/>\n  <path\n      android:pathData=\"m163,251q-3,8 -5,20 9,53 77,53\"\n      android:fillColor=\"#d64081\"/>\n  <path\n      android:pathData=\"m160,182v35c0,90 52,108 101,108s103,-43 95,-121 -73,-104 -105,-140q-33,-1 -76,17c39,63 85,67 111,123h-61v-22\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m256,257q25,2 25,37v29l7,-2v-64\"\n      android:fillColor=\"#dbb3cd\"/>\n  <path\n      android:pathData=\"m158,271c-17,103 65,138 102,177q38,0 76,-17.5C308,381 256,364 235,324q-56,-4 -77,-53m196,24c0,-54 -30,-122 -129,-103v22c0,37 14,43 31,43s31,5 31,39v34h67\"\n      android:fillColor=\"#f48\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/supabase.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M294,448a18,18 0,0 1,-32 -11l-4,-241h162a36,36 0,0 1,29 58L294,448Z\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"258.4\"\n          android:startY=\"248\"\n          android:endX=\"402.4\"\n          android:endY=\"311.2\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FF249361\"/>\n        <item android:offset=\"1\" android:color=\"#FF3ECF8E\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"M294,448a18,18 0,0 1,-32 -11l-4,-241h162a36,36 0,0 1,29 58L294,448Z\"\n      android:fillAlpha=\"0.2\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"193.6\"\n          android:startY=\"162.2\"\n          android:endX=\"260.2\"\n          android:endY=\"286\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FF000000\"/>\n        <item android:offset=\"1\" android:color=\"#00000000\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"M226,59a18,18 0,0 1,32 11l4,241H100a36,36 0,0 1,-29 -57L226,59Z\"\n      android:fillColor=\"#3ECF8E\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/svelte.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M149,138a103,103 0,0 0,-36 138A115,115 0,0 0,274 431l89,-57a108,108 0,0 0,36 -138A115,115 0,0 0,238 81zM248,394a70,70 0,0 1,-102 -83,109 109,0 0,0 43,21 22,22 0,0 0,32 23l89,-57a20,20 0,0 0,-23 -33l-34,21A66,66 0,0 1,175 175l89,-57a70,70 0,0 1,102 83,115 115,0 0,0 -43,-21 21,21 0,0 0,-32 -23l-89,57a20,20 0,0 0,23 33l34,-21a66,66 0,0 1,78 111z\"\n      android:fillColor=\"#ff3e00\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/svg.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M64,392a56,56 0,0 0,56 56H392a56,56 0,0 0,56 -56V256H64\"/>\n  <path\n      android:pathData=\"m290,174v-28a43,43 90,1 0,-68 0v28l-20,-20a43,43 90,1 0,-48 48l20,20h-28a43,43 90,1 0,0 68h28l-20,20a43,43 90,1 0,48 48l20,-20v28a43,43 90,1 0,68 0v-28l20,20a43,43 90,1 0,48 -48l-20,-20h28a43,43 90,1 0,0 -68h-28l20,-20a43,43 90,1 0,-48 -48z\"\n      android:strokeWidth=\"25.5\"\n      android:fillColor=\"#ffb13b\"\n      android:strokeColor=\"#000\"/>\n  <path\n      android:pathData=\"M87,256H424v167H87\"\n      android:fillColor=\"#d9000000\"/>\n  <path\n      android:pathData=\"m121,387a35,35 0,1 0,63 -21c-19,-23 -37,-5 -56,-28a35,35 0,1 1,63 -21m29,-55 l36,172 36,-172m98,55a35,35 0,0 0,-70 0v70a35,35 0,0 0,70 0v-35h-35\"\n      android:strokeWidth=\"29\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"/>\n  <path\n      android:pathData=\"M99,258H307v9H99\"\n      android:fillColor=\"#271b09\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/svgomg.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M0,0h512v512H0z\"\n      android:fillColor=\"#0097a7\"/>\n  <path\n      android:pathData=\"M0,0h512v318H0z\"\n      android:fillColor=\"#00bcd4\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m237,403 l156,-85L237,318v85zM204,123h189v195L204,318L204,123z\"\n      android:fillAlpha=\"0.2\"/>\n  <path\n      android:pathData=\"M119,284h118v119H119z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/swift.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0\"\n      android:fillColor=\"#f05138\"/>\n  <path\n      android:pathData=\"m376.2,308.5s0,0 0,0c0.4,-1.4 0.9,-2.9 1.2,-4.3 15.9,-63.2 -22.8,-137.9 -88.3,-177.2 28.7,38.9 41.4,86 30.1,127.2 -1,3.7 -2.2,7.2 -3.5,10.6 -1.4,-1 -3.3,-2 -5.7,-3.4 0,0 -65.1,-40.2 -135.7,-111.4 -1.9,-1.9 37.6,56.5 82.5,103.8 -21.1,-11.9 -80,-54.7 -117.2,-88.8 4.6,7.6 10,15 16,22.1 31.1,39.5 71.7,88.2 120.3,125.5 -34.2,20.9 -82.4,22.5 -130.5,0 -11.9,-5.6 -23.1,-12.3 -33.4,-19.9 20.3,32.5 51.7,60.6 89.8,77 45.5,19.5 90.7,18.2 124.4,0.3 0.2,-0.1 0.3,-0.2 0.5,-0.3a109,109 0,0 0,4.1 -2.3c16.2,-8.4 48.1,-16.9 65.3,16.5 4.2,8.2 13.1,-35.1 -19.7,-75.5z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/symantec.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M384,124v10h10v-10zM251,179a96,96 0,1 1,-1 0m1,-48a144,144 0,1 0,1 0zM415,114v10h10v-10zM415,94v10h10L425,94z\"\n      android:fillColor=\"#fdb511\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M313,235v10c-28,27 -34,50 -39,71 -2,13 -2,21 -17,23 -3,0 -10,-3 -13,-8 -4,-7 -15,-34 -25,-50 -7,-14 -18,-26 -28,-38 -4,-5 -6,-9 -3,-13 3,-5 6,-4 10,-3 25,11 39,28 51,52 11,-27 17,-41 44,-74h10v-10h10v-11h10v-10h20v10h-10v-20h10v-10h51v-20h10v10h-50v-10h10v30h10v-40h30v-20h11v10h-31v60h-10v10h-10v11h-10v10h-21v-10h10v20h-10v10h-10v10z\"\n      android:fillType=\"evenOdd\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/symfony.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M256,256m-192,0a192,192 0,1 1,384 0a192,192 0,1 1,-384 0\"/>\n  <path\n      android:pathData=\"m144,260c7,1 13,7 12,17s-11,14 -2,21 30,9 36,-9 -21,-23 -29,-52 22,-58 57,-49 35,37 74,42q22,4 36,-4 8,-4 1,-13c-3,-5 -2,-12 7,-16s20,6 15,20 -30,26 -61,21 -38,-20 -53,-31 -33,-15 -42,-3 -1,22 6,29 22,22 22,40 -20,44 -56,38 -41,-31 -39,-39 6,-13 16,-12m35,91c11,0 17,7 17,17s-10,8 -10,15 17,5 28,-8 19,-32 26,-67 8,-51 20,-89 40,-84 81,-84 37,32 26,38q-4,2.5 -10,2t-10,-5 -2.3,-12c1.3,-5 6.3,-8 4.3,-12s-11,-6 -21,-1 -21,17 -29,57 -12,83 -28,123 -55,76 -89,69 -24,-43 -3,-43\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/taiga.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m393,119 l-17,119 -120,18 17,-120z\"\n      android:strokeAlpha=\"0.8\"\n      android:fillColor=\"#a295ae\"\n      android:fillAlpha=\"0.8\"/>\n  <path\n      android:pathData=\"M120,393l17,-119 119,-17 -17,120z\"\n      android:strokeAlpha=\"0.8\"\n      android:fillColor=\"#5d6f6d\"\n      android:fillAlpha=\"0.8\"/>\n  <path\n      android:pathData=\"M120,119l119,17 17,120 -120,-17z\"\n      android:strokeAlpha=\"0.8\"\n      android:fillColor=\"#8cd592\"\n      android:fillAlpha=\"0.8\"/>\n  <path\n      android:pathData=\"m393,392 l-119,-17 -17,-120 120,17z\"\n      android:strokeAlpha=\"0.8\"\n      android:fillColor=\"#665e74\"\n      android:fillAlpha=\"0.8\"/>\n  <path\n      android:pathData=\"m450,255 l-96,72 -96,-72 96,-72z\"\n      android:strokeAlpha=\"0.8\"\n      android:fillColor=\"#837193\"\n      android:fillAlpha=\"0.8\"/>\n  <path\n      android:pathData=\"M256,62l72,96 -72,96 -72,-96z\"\n      android:strokeAlpha=\"0.8\"\n      android:fillColor=\"#a2f4ac\"\n      android:fillAlpha=\"0.8\"/>\n  <path\n      android:pathData=\"M63,256l96,-72 96,72 -96,72z\"\n      android:strokeAlpha=\"0.8\"\n      android:fillColor=\"#7ea685\"\n      android:fillAlpha=\"0.8\"/>\n  <path\n      android:pathData=\"m256,449 l-72,-96 72,-96 72,96z\"\n      android:strokeAlpha=\"0.8\"\n      android:fillColor=\"#3c3647\"\n      android:fillAlpha=\"0.8\"/>\n  <path\n      android:pathData=\"M256,210l46,46 -46,46 -46,-46z\"\n      android:fillColor=\"#3c3647\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/tailwindCss.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m377,248c-38,5 -71,-3 -98,-29 -8,-7 -15,-15 -22,-22 -27,-25 -60,-25 -86,1 -2,2 -5,4 -8,7 5,-35 37,-66 71,-72 44,-7 81,4 112,37 5,6 11,11 17,16 25,22 57,21 81,-2 3,-3 5,-6 9,-11 -6,41 -39,71 -77,75zM71,302c21,-44 62,-57 105,-52 27,3 48,15 67,33 6,6 12,12 18,18 26,25 59,25 86,0 2,-2 3,-4 9,-12 -1,8 -2,10 -2,12 -10,38 -44,63 -84,66 -37,2 -69,-8 -95,-36 -7,-7 -14,-14 -21,-20 -25,-21 -57,-19 -80,3 -3,3 -6,5 -10,9 2,-7 4,-14 7,-21z\"\n      android:fillColor=\"#38bdf8\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/tata.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M128,303h61.6v21.4L172,324.4L172,376h-25.6v-51.5L128,324.5L128,303ZM220.8,332.5 L207.8,375.9h-24.6l24.2,-72.9h26.8l24.8,73h-25l-13.2,-43.5ZM253.1,303h61.6v21.4L297,324.4L297,376h-25.7v-51.5L253,324.5L253,303h0.1ZM345.9,332.5 L332.9,375.9h-24.6l24.2,-72.9h26.8l24.7,73h-25l-13,-43.5h-0.1ZM346.5,178.2a66,66 0,0 0,-9.1 -14.8,89 89,0 0,0 -34.6,-25.2c-14.3,-6 -30.5,-9.2 -47,-9.2a122,122 0,0 0,-47.1 9.2,89.2 89.2,0 0,0 -34.6,25.2 66,66 0,0 0,-9.1 14.8c18.4,-5 50,-11.8 79.2,-12.6 2.8,0 4.7,1 6,2.8 1.6,2.3 1.5,10.3 1.5,14l-0.9,93h10l-0.9,-93c0,-3.7 -0.1,-11.7 1.4,-14 1.3,-1.8 3.2,-2.8 6,-2.8 29.3,0.7 60.8,7.5 79.2,12.5v0.1Z\"\n      android:fillColor=\"#486AAE\"/>\n  <path\n      android:pathData=\"M350.6,191.5c-27,-7 -45,-8.3 -62.7,-9.4 -15.5,-1 -15.7,5.3 -14.2,17.4l0.4,2.7c3.5,23.7 7.8,47.2 12.8,70.5 37.7,-9.8 65,-37.2 65,-69.3 0,-4 -0.5,-8 -1.3,-12ZM238.1,199.5c1.6,-12 1.4,-18.4 -14.1,-17.4 -21.2,1 -42.2,4 -62.7,9.4a61.3,61.3 0,0 0,13 50.8,89 89,0 0,0 34.6,25c5.2,2.3 10.6,4 16,5.5 5.2,-24.3 9.6,-48.7 13.2,-73.3Z\"\n      android:fillColor=\"#486AAE\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/teamspeak.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M407,336c5,5 9,18 9,26s0,15 -2,21c0,3 -6,33 -43,51l-23,8 -14,3c-64,12 -148,-3 -84,-10l17,-2a1532,1532 0,0 0,42 -10h1a19086,19086 0,0 0,12 -4c16,-7 33,-16 47,-29 10,-10 19,-22 26,-37l6,-15c0,-2 4,-3 6,-2zM347,280c17,-3 28,5 29,19 1,13 -3,25 -13,35 -8,9 -18,13 -32,12a249,249 0,0 1,-40 -5c-19,-5 -26,-19 -14,-30 7,-7 16,-12 25,-16l23,-9c7,-3 15,-5 22,-6zM136,265c3,-18 18,-26 34,-18a1135,1135 0,0 1,42 28,141 141,0 0,1 33,39l1,10c-2,10 -9,15 -18,19l-13,1h-19l-16,-2c-15,-1 -26,-7 -34,-19a77,77 0,0 1,-10 -58zM392,112l3,2c4,4 8,9 3,16l-1,1v2l2,2c16,22 27,46 32,73l2,4 2,1c14,7 21,18 21,33v19l-1,21c-4,20 -23,33 -42,29 -6,-1 -7,-6 -7,-11a11534,11534 0,0 1,0 -66,150 150,0 0,0 -300,-1v69c0,6 -4,9 -10,9 -24,1 -40,-14 -40,-38v-27l1,-10c2,-12 8,-21 19,-27h1l1,-1c2,-1 3,-3 3,-5 5,-26 15,-50 30,-71l2,-3v-5c-3,-4 -1,-7 1,-11h1c22,-25 48,-43 80,-53 75,-23 141,-7 197,48z\"\n      android:fillColor=\"#2580c3\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/telegram.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M291,220q6,-4 8,-1t-3,8c-31,32 -54,50 -67,65q-9,10 5,20l62,42c25,17 33,3 36,-14q17,-91 24,-151c2,-15 -3,-23 -22,-17q-27,8 -194,81c-21,8 -17,17 -5,21s21,7 33,10 20,4 34,-5M257,64a192,192 0,1 1,-2 0\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"63.87\"\n          android:startY=\"64\"\n          android:endX=\"63.87\"\n          android:endY=\"448\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FF2AABEE\"/>\n        <item android:offset=\"1\" android:color=\"#FF229ED9\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/tensorflow.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M248.64,64 L84.44,157.7v85l98.68,-57L183.12,409.95l65.52,38L248.64,64ZM263.37,64L263.37,448l65.29,-38L328.66,302l49.5,28.61v-73.9l-49.2,-28.1L328.96,185.7l98.7,57v-85L263.36,64Z\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"84.44\"\n          android:startY=\"64\"\n          android:endX=\"427.66\"\n          android:endY=\"64\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FFFF7200\"/>\n        <item android:offset=\"1\" android:color=\"#FFFFA200\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/terraform.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M333,216l98,-56L431,273l-98,56L333,216ZM224,399L224,286l98,56L322,454l-98,-56ZM115,95l98,57L213,264l-98,-56L115,95ZM224,159L224,272l98,56L322,215l-98,-56Z\"\n      android:fillColor=\"#7B42BC\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/tezos.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0Z\"\n      android:fillColor=\"#0F61FF\"/>\n  <path\n      android:pathData=\"M391,349c-4,-71 -94,-103 -102,-107l92,-93v-10l-3,-3H208V64l-62,13v9h3s15,0 15,16v34h-48l-2,2v22h51v118c0,37 23,63 65,59q13,-1 24,-8 5,-4 5,-10v-11c-13,9 -25,8 -25,8 -26,0 -26,-33 -26,-33V160h122l-88,88v21l1,1c80,13 102,65 102,80 0,0 9,74 -65,79 0,0 -48,2 -57,-17l1,-2q12,-5 13,-20c0,-14 -9,-26 -27,-26 -15,0 -27,12 -27,26 0,0 -7,62 97,60 118,-2 111,-101 111,-101\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/thisamericanlife.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M90,170v98h117v-98zM247.7,170v29.25L423,199.25L423,170zM247.7,239v29.25L423,268.25L423,239zM278,336.25h145L423,307L90,307v29.25L208,336.25L208,420.4z\"\n      android:fillColor=\"#ed0017\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/threads.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m0,0H512V512H0\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m200.7,200c12.3,-18 33.3,-32 66.3,-29s63,22 61.2,86 -29.2,86 -67.3,87.4 -61,-21.5 -61.6,-45.8 15.2,-53.7 79.2,-52.6 110.7,30.5 113.7,84 -46,108.5 -133.2,108 -156,-50 -156.5,-179S173,79 256,79s134,41 153.2,111.3\"\n      android:strokeWidth=\"34.5\"\n      android:strokeColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/threema.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M180,438a24,24 0,1 0,0 -49,24 24,0 0,0 0,49m79,0a24,24 0,1 0,0 -49,24 24,0 0,0 0,49m80,0a24,24 0,1 0,0 -49,24 24,0 0,0 0,49\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M256,65a145,145 0,0 1,0 290q-44,-1 -80,-24l-55,18 18,-54A145,145 0,0 1,256 65\"/>\n  <path\n      android:pathData=\"M231,194h50L281,175a25,25 0,0 0,-50 0ZM299,194q12,1 13,14v52q-1,12 -13,13L213,273q-12,-1 -13,-13L200,208q1,-13 13,-14h1L214,175a42,42 0,0 1,84 0v19h1\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/todoist.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#E44232\"/>\n  <path\n      android:pathData=\"M167.1,240.2l103.6,-59.7h0.1l106.8,-61.6c4.5,-2.6 4.7,-10.6 -0.3,-13.5l-3.6,-2 -14.6,-8.4a16.6,16.6 0,0 0,-16.2 0.2L166.6,196.7a22,22 0,0 1,-21.8 0L56,145v44l1,0.5c22,12.9 74.5,43.5 87.4,50.8a21.3,21.3 0,0 0,22.7 0zM167.1,328 L270.6,268.3 271,268.1 377.6,206.7c4.5,-2.6 4.7,-10.6 -0.3,-13.5l-3.6,-2 -14.6,-8.4a16.6,16.6 0,0 0,-16.2 0.2L166.6,284.4c-6.8,3.9 -15,4 -21.8,0L56,232.8v43.9l1,0.5c22.1,13 74.5,43.5 87.4,50.8a21.4,21.4 0,0 0,22.7 0zM270.7,356 L167.1,415.7c-7.5,4.3 -15,4.4 -22.7,0A15382,15382 0,0 1,56.9 365l-0.9,-0.6v-43.9l88.8,51.7a22,22 0,0 0,21.8 0l176.3,-101.5c6,-3.5 12.5,-2.3 16.2,-0.2l14.6,8.4 3.6,2c5,3 4.8,11 0.3,13.5z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/tox.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#232323\"/>\n  <path\n      android:pathData=\"M256,65L256,65A90,90 0,0 1,346 155L346,245A90,90 0,0 1,256 335L256,335A90,90 0,0 1,166 245L166,155A90,90 0,0 1,256 65z\"\n      android:fillColor=\"#f0f0f0\"/>\n  <path\n      android:pathData=\"M127,207L385,207A18,18 0,0 1,403 225L403,409A18,18 0,0 1,385 427L127,427A18,18 0,0 1,109 409L109,225A18,18 0,0 1,127 207z\"\n      android:fillColor=\"#f0f0f0\"/>\n  <path\n      android:pathData=\"M197,156a59,56 0,1 0,118 0a59,56 0,1 0,-118 0z\"\n      android:fillColor=\"#232323\"/>\n  <path\n      android:pathData=\"M246,324c-18,6 -29,21 -29,44 0,8 7,14 15,14h48c8,0 15,-6 15,-14 0,-23 -11,-38 -29,-44m4,-113c-1,12 -6,22 -12,31 37,-22 75,-73 49,-113\"\n      android:fillColor=\"#232323\"/>\n  <path\n      android:pathData=\"M256,297m-29,0a29,29 0,1 1,58 0a29,29 0,1 1,-58 0\"\n      android:fillColor=\"#232323\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/trello.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#1558bc\"/>\n  <path\n      android:pathData=\"M307,95L393,95A23,23 0,0 1,416 118L416,260A23,23 0,0 1,393 283L307,283A23,23 0,0 1,284 260L284,118A23,23 0,0 1,307 95z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M120,95L206,95A23,23 0,0 1,229 118L229,368A23,23 0,0 1,206 391L120,391A23,23 0,0 1,97 368L97,118A23,23 0,0 1,120 95z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/tripadvisor.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M93,202a195,151 0,0 1,326 0v56H93\"\n      android:strokeWidth=\"17\"\n      android:fillColor=\"#fcc40f\"\n      android:strokeColor=\"#000a12\"/>\n  <path\n      android:pathData=\"M141,160h-77c0,2 22,36 19,48M256,349 L225,302L225,257L258,257\"\n      android:fillColor=\"#000a12\"/>\n  <path\n      android:pathData=\"M159,257m-97,0a97,97 0,1 1,194 0a97,97 0,1 1,-194 0\"\n      android:fillColor=\"#000a12\"/>\n  <path\n      android:pathData=\"M159,257m-78,0a78,78 0,1 1,156 0a78,78 0,1 1,-156 0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M159,257m-50,0a50,50 0,1 1,100 0a50,50 0,1 1,-100 0\"\n      android:fillColor=\"#000a12\"/>\n  <path\n      android:pathData=\"M159,257m-33,0a33,33 0,1 1,66 0a33,33 0,1 1,-66 0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M371,160l77,0c-0,2 -22,36 -19,48M256,349L287,302L287,257L254,257\"\n      android:fillColor=\"#000a12\"/>\n  <path\n      android:pathData=\"M353,257m97,0a97,97 0,1 0,-194 0a97,97 0,1 0,194 0\"\n      android:fillColor=\"#000a12\"/>\n  <path\n      android:pathData=\"M353,257m78,0a78,78 0,1 0,-156 0a78,78 0,1 0,156 0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M353,257m50,0a50,50 0,1 0,-100 0a50,50 0,1 0,100 0\"\n      android:fillColor=\"#000a12\"/>\n  <path\n      android:pathData=\"M353,257m33,0a33,33 0,1 0,-66 0a33,33 0,1 0,66 0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M159,257m-17,0a17,17 0,1 1,34 0a17,17 0,1 1,-34 0\"\n      android:fillColor=\"#ef6a45\"/>\n  <path\n      android:pathData=\"M353,257m-17,0a17,17 0,1 1,34 0a17,17 0,1 1,-34 0\"\n      android:fillColor=\"#00b087\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/tumblr.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#001935\"/>\n  <path\n      android:pathData=\"m148,173q73,-21 81,-103h57v94h67v68h-67v96q1,37 37,37h33v72h-62c-60,0 -96,-34 -96,-96V232h-50\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/tunein.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#1c203c\"/>\n  <path\n      android:pathData=\"M226,232h32v11L238,243v11h20v11L238,265v11h21v11L226,287L226,232ZM182,232h13l11,31L206,232h12v55L204,287l-11,-31v31L182,287L182,232ZM135,232h11v39s0,6 8,6 8,-6 8,-6L162,232h11v39s0,17 -19,17 -19,-17 -19,-17L135,232ZM92,232h35v11L115,243v44L104,287L104,243L92,243L92,232ZM62,204L62,315L292,315L292,204L62,204ZM372,192v56h11L383,215l13,33h12L408,192L397,192v34l-12,-34L372,192ZM335,192v11h8v34h-9v11h30L364,237L354,237L354,203h9L363,192L335,192ZM298,152L441,152s6,0 6,6L447,281s0,6 -6,6L304,287v34s0,6 -6,6L56,327s-6,0 -6,-6L50,198s0,-6 6,-6L292,192L292,158s0,-6 6,-6Z\"\n      android:fillColor=\"#14d8cc\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/tuta.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0Z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M139,165 L78,104h-2l-2,2v265l2,2 2,-1 1,-1 61,-201zM448,140 L385,76 379,74L105,74l-2,2 1,2 64,65 5,2h274q4,-1 1,-5m1,44 l-81,262v2l-2,1L96,449l-2,-2v-1l81,-263v-1l2,-2h269q3,1 3,4\"\n      android:fillColor=\"#850122\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/tutanota.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m113,97c-17,0 -31,14.1 -31.5,31.5V419c0,1.1 0.1,2.2 0.2,3.3a1700,1700 0,0 0,37 -14c91,-36 165,-67 165,-102 0,-1.1 -0.1,-2.2 -0.2,-3.4 -4.7,-34.5 -87.2,-45 -87,-61 0,-0.8 0.2,-1.7 0.8,-2 9,-17 49,-16 63,-17s48,-1 50,-11.3c0,-0.3 0.1,-0.6 0.1,-1 0,-9 -23,-13 -23,-13s28,4 28,15c0,0.5 -0.1,1.1 -0.2,1.7 -3.1,11 -28,14 -44,14 -15.6,0.8 -39,2 -39,10.2 0,0.4 0.1,0.9 0.2,1 3,11 90,16 146,45 32,16 48,44 55,73V128c0,-17 -14,-31 -31,-31H113z\"\n      android:fillColor=\"#a01e20\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/twilio.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m255,64a192,192 0,1 0,2 0m0,51a141,141 0,1 1,-2 0m-46.8,54a39.7,39.7 0,1 0,1 0h93.6a39.7,39.7 0,1 0,1 0m-95.6,94.5a39.7,39.7 0,1 0,1 0h93.6a39.7,39.7 0,1 0,1 0\"\n      android:fillColor=\"#f22f46\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/twitch.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M251,236v-84h28v84h49v-84h28v84m42,21V103H174v210h63v49l49,-49h56m-42,84h-56l-70,70v-70H90V145l70,-70h266v196\"\n      android:fillColor=\"#9146ff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/twitter.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m458,140q-23,10 -45,12 25,-15 34,-43 -24,14 -50,19a79,79 0,0 0,-135 72q-101,-7 -163,-83a80,80 0,0 0,24 106q-17,0 -36,-10s-3,62 64,79q-19,5 -36,1s15,53 74,55q-50,40 -117,33a224,224 0,0 0,346 -200q23,-16 40,-41\"\n      android:fillColor=\"#1d9bf0\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/typescript.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#3178c6\"/>\n  <path\n      android:pathData=\"m250,278h42v-27L173,251v27h42v121h34zM306,393c12,6 28,8 42,8 12,0 28,-2 41,-10 5,-4 10,-8 13,-14s5,-13 5,-21c0,-27 -19,-36 -39,-45 -9,-4 -28,-10 -28,-23 0,-10 11,-15 25,-15 11,0 26,4 35,10v-31c-12,-5 -26,-6 -37,-6 -33,0 -58,13 -58,44 0,23 14,33 35,43 11,5 32,11 32,25 0,13 -16,15 -25,15 -14,0 -29,-5 -40,-14z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/uber.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m0,0H512V512H0\"/>\n  <path\n      android:pathData=\"M88.6,191.4v78.5a1,1 0,0 0,62.5 0v-78.6h19.1v127.3L151.3,318.6L151.3,306.8A49,49 0,0 1,69.5 271v-79.6ZM184.4,191.3h18.4v46.4a47.5,47.5 0,1 1,-0.2 69.3v11.6L184.4,318.6L184.4,191.3ZM234.4,304.5a32,32 0,1 0,-32 -32,32 32,0 0,0 32,32M339.3,224a46.4,48.2 0,0 1,46.4 48.2v6h-75.4a31,31 0,0 0,57.4 12.8l13.3,9.8A49,49 0,1 1,339.3 224m-28.8,39.6L367,263.6c-3.1,-14.2 -14.5,-23.6 -28.2,-23.6 -13.5,0 -25,9.5 -28.3,23.6m124.4,-21.4a21,24 0,0 0,-20.7 23.6v52.7h-18.4v-92.7L414,225.8v11.5c4.5,-7.5 12,-12.2 22.2,-12.2h6.4v17.1Z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/ubiquiti.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:centerX=\"256\"\n          android:centerY=\"0\"\n          android:gradientRadius=\"512\"\n          android:type=\"radial\">\n        <item android:offset=\"0\" android:color=\"#FF006EFE\"/>\n        <item android:offset=\"1\" android:color=\"#FF003C9E\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n  <path\n      android:pathData=\"M372.94,165.85h-28.98v-28.96h28.98zM372.94,204.8v-38.95h38.79v38.95zM100.27,109.39h77.58v158c0.7,30.98 18.79,72.03 78.15,76.31 59.36,-4.28 77.45,-45.33 78.15,-76.31v-61.98l38.79,-0.61 0.2,39.61h38.59v23.06C410.57,338.21 356,422.06 256,422.13c-100,-0.07 -154.57,-83.92 -155.73,-154.66zM382.59,107.28h19.68v19.68h-19.68z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/ubisoft.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m0,0H512V512H0\"/>\n  <path\n      android:pathData=\"M447,256c1,125 -96,199 -190,200 -94,0 -188,-64 -194,-192 0,-29 6,-57 19,-86L67,167a201,201 0,0 1,380 89M110,320c-6,-138 146,-171 212,-77l4,-2c-44,-137 -266,-92 -221,81l5,-2ZM293,325 L279,315c26,-27 9,-74 -33,-72 -34,1 -61,37 -42,77a52,52 0,0 0,89 5ZM403,327A170,170 0,0 0,285 95c-66,-17 -136,8 -172,65l3,3C252,63 409,193 346,325c-77,127 -244,21 -159,-89l-3,-4c-78,49 -44,184 73,190 61,1 118,-32 146,-95Z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/ubuntu.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#e65e17\"/>\n  <path\n      android:pathData=\"M265,256m-124,0a124,124 0,1 1,248 0a124,124 0,1 1,-248 0\"\n      android:strokeWidth=\"51\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"/>\n  <path\n      android:pathData=\"M90,257m-41,0a41,41 0,1 1,82 0a41,41 0,1 1,-82 0\"\n      android:strokeWidth=\"10\"\n      android:fillColor=\"#fff\"\n      android:strokeColor=\"#e65e17\"/>\n  <path\n      android:pathData=\"M353,409m-41,0a41,41 0,1 1,82 0a41,41 0,1 1,-82 0\"\n      android:strokeWidth=\"10\"\n      android:fillColor=\"#fff\"\n      android:strokeColor=\"#e65e17\"/>\n  <path\n      android:pathData=\"M353,104m-41,0a41,41 0,1 1,82 0a41,41 0,1 1,-82 0\"\n      android:strokeWidth=\"10\"\n      android:fillColor=\"#fff\"\n      android:strokeColor=\"#e65e17\"/>\n  <path\n      android:pathData=\"M183,396l84,-140H422,267m0,0 l-82,-138\"\n      android:strokeWidth=\"19\"\n      android:fillColor=\"#fff\"\n      android:strokeColor=\"#e65e17\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/udemy.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m256,121.5 l-94.5,57v-57l94.5,-57 94.5,57v57z\"\n      android:fillColor=\"#a435f0\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M161.5,226.5H211V352a45,49 0,0 0,90 0V226.5h49.5V356a94.5,91.5 0,0 1,-189 0z\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/unicode.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#55f\"/>\n  <path\n      android:pathData=\"m273,195v96c0,63 -35,100 -98,100S73,358 74,291V140q0,-4 3,-4h40q3,0 3,4v150q1,60 53.5,60t53.5,-60V139q0,-3 3,-3h53q4,0 5,3l100.5,187 -1.5,-124q0,-3 3,-3h38q3,0 3,3v181q0,4 -4,4h-48q-4,0 -5,-2m33,-264a28,28 0,1 0,1 0\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/unreal.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M254.4,0c-139.92,0 -252.81,114.48 -252.81,254.4s112.89,254.4 252.81,254.4c139.92,0 252.81,-114.48 252.81,-254.4S394.32,0 254.4,0zM254.4,11.13c65.19,0 125.61,25.44 170.13,71.55 46.11,46.11 69.96,108.12 69.96,171.72 0,65.19 -23.85,125.61 -69.96,171.72 -44.52,46.11 -106.53,71.55 -170.13,71.55 -63.6,0 -125.61,-25.44 -170.13,-71.55C39.75,380.01 14.31,319.59 14.31,254.4c0,-65.19 23.85,-125.61 69.96,-171.72C128.79,36.57 190.8,11.13 254.4,11.13zM241.68,100.17c-41.34,11.13 -79.5,31.8 -130.38,90.63S69.96,311.64 69.96,311.64s14.31,-33.39 47.7,-68.37c15.9,-15.9 27.03,-22.26 36.57,-22.26 7.95,0 12.72,4.77 12.72,12.72l0,117.66c0,11.13 -7.95,14.31 -14.31,14.31 -6.36,0 -11.13,-1.59 -11.13,-1.59 34.98,50.88 117.66,57.24 117.66,57.24l36.57,-38.16 1.59,1.59 33.39,28.62c60.42,-36.57 90.63,-103.35 90.63,-103.35 -27.03,28.62 -44.52,34.98 -54.06,34.98 -9.54,0 -12.72,-4.77 -12.72,-4.77 0,-3.18 -1.59,-38.16 -1.59,-74.73 0,-36.57 0,-74.73 1.59,-74.73 11.13,-19.08 44.52,-58.83 44.52,-58.83 -62.01,12.72 -96.99,54.06 -96.99,54.06 -9.54,-7.95 -30.21,-6.36 -30.21,-6.36 9.54,4.77 19.08,20.67 19.08,33.39l0,125.61s-20.67,19.08 -36.57,19.08c-9.54,0 -15.9,-4.77 -19.08,-9.54 -1.59,-1.59 -1.59,-3.18 -3.18,-4.77l0,-155.82c-1.59,1.59 -4.77,3.18 -7.95,3.18 -3.18,0 -6.36,-1.59 -9.54,-6.36 -1.59,-3.18 -3.18,-9.54 -3.18,-17.49 0,-28.62 31.8,-47.7 31.8,-47.7z\"\n      android:fillColor=\"#000\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/untappd.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#ffce0d\"/>\n  <path\n      android:pathData=\"M382,432c38,16 93,-21 89,-61L358,206l-39,-21 -88,-94 -2,-7 -6,-2 -1,-7c-15,2 -26,9 -33,23l7,3v6l6,4 58,114 8,43z\"\n      android:fillColor=\"#734019\"/>\n  <path\n      android:pathData=\"M39,371c-2,41 51,80 88,63l116,-163 7,-44 59,-115 6,-3 -1,-7 6,-3c-7,-14 -17,-22 -32,-23l-1,7 -6,2 -1,7 -88,94 -37,22z\"\n      android:fillColor=\"#e17e24\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/uphold.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M295,421c5,-1 12,2 14,8 1,5 -2,11 -8,13 -15,4 -30,6 -44,6h-2c-14,0 -29,-2 -44,-6 -6,-2 -9,-8 -7,-14 1,-5 8,-8 14,-7 12,4 25,6 37,6h2c12,0 25,-2 38,-6m98,-263c13,36 8,83 -12,128 -28,60 -79,102 -124,102h-2c-45,0 -96,-42 -124,-102 -20,-45 -25,-92 -12,-127v-1c19,-56 74,-94 137,-94s117,38 137,94m-66,-51a126,126 0,0 0,-142 0c23,-1 48,8 71,27 23,-19 48,-28 71,-27M275,363c38,-17 46,-85 17,-148 -10,-20 -22,-37 -36,-52 -14,15 -26,32 -36,52 -29,63 -21,131 17,148a47,47 0,0 0,38 0M152,277c9,19 20,36 33,50 -9,-34 -5,-78 15,-120 10,-22 24,-42 40,-59 -25,-19 -51,-25 -71,-16 -13,6 -23,17 -28,33 -12,31 -7,72 11,112m208,0c18,-40 23,-81 11,-112 -5,-16 -15,-27 -28,-33 -20,-9 -46,-3 -71,16 16,17 30,37 40,59 20,42 24,86 15,120 13,-14 24,-31 33,-50\"\n      android:fillColor=\"#49cc68\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/upi.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M309,42L192,470L426,256Z\"\n      android:fillColor=\"#388e3c\"/>\n  <path\n      android:pathData=\"M223,32L106,460L340,246Z\"\n      android:fillColor=\"#f57c00\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/uplay.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#0070ff\"/>\n  <path\n      android:pathData=\"M447,256c1,125 -96,199 -190,200 -94,0 -188,-64 -194,-192 0,-29 6,-57 19,-86L67,167a201,201 0,0 1,380 89M110,320c-6,-138 146,-171 212,-77l4,-2c-44,-137 -266,-92 -221,81l5,-2ZM293,325 L279,315c26,-27 9,-74 -33,-72 -34,1 -61,37 -42,77a52,52 0,0 0,89 5ZM403,327A170,170 0,0 0,285 95c-66,-17 -136,8 -172,65l3,3C252,63 409,193 346,325c-77,127 -244,21 -159,-89l-3,-4c-78,49 -44,184 73,190 61,1 118,-32 146,-95Z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/upstash.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M125,379c60,60 153,60 210,0 60,-57 60,-153 0,-210l-24,24c42,45 42,117 0,159a111,111 0,0 1,-159 0l-27,27Z\"\n      android:fillColor=\"#00c98d\"/>\n  <path\n      android:pathData=\"M179,328c27,27 75,27 105,0 30,-30 30,-78 0,-108l-27,27c15,15 15,39 0,54a36,36 0,0 1,-54 0l-24,27Z\"\n      android:fillColor=\"#00c98d\"/>\n  <path\n      android:pathData=\"M389,115a150,150 0,0 0,-210 0,150 150,0 0,0 0,213l24,-27a114,114 0,0 1,0 -159c45,-45 117,-45 159,0l27,-27Z\"\n      android:fillColor=\"#66dfbb\"/>\n  <path\n      android:pathData=\"M335,169a75,75 0,0 0,-105 0,75 75,0 0,0 0,105l27,-27a38,38 0,0 1,0 -54,36 36,0 0,1 54,0l24,-24Z\"\n      android:fillColor=\"#66dfbb\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/upwork.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#6fda44\"/>\n  <path\n      android:pathData=\"M357.2,296.9c-17,0 -33,-7.2 -47.4,-18.9l3.6,-17.2c3.2,-17.6 13.1,-47.2 43.8,-47.2a1,1 0,0 1,0 83.3m0,-125.5c-39.2,0 -69.5,25.4 -81.9,67.3 -18.8,-28.3 -33.1,-62.2 -41.4,-90.8h-42.2v109.7a1,1 0,0 1,-78.6 0V147.8H71v109.7a1,1 0,0 0,162.8 0V239.1c8.2,17.1 18.2,34.4 30.4,49.6l-25.8,121.4h43.1l18.7,-88c16.4,10.5 35.2,17.1 56.8,17.1a1,1 0,0 0,0.2 -167.8\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/vagrant.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m97.78,110.42v76.86l105.48,214.3h105.48l-105.48,-214.3v-76.86zM308.74,110.42v76.86l-43.78,88.87 52.77,107.12 96.49,-195.99v-76.86z\"\n      android:fillColor=\"#1868f2\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/vegetarian.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0\"\n      android:fillColor=\"#017f00\"/>\n  <path\n      android:pathData=\"M256,256m-240,0a240,240 0,1 1,480 0a240,240 0,1 1,-480 0\"\n      android:fillColor=\"#fff200\"/>\n  <path\n      android:pathData=\"m407,106 l-35,8c-30,6 -35,8 -48,18a86,86 0,0 0,-32 65c0,10 2,16 3,15l3,-6c6,-14 22,-35 36,-46 7,-6 22,-11 22,-8l-11,13c-6,6 -7,8 -18,23 -10,16 -24,44 -34,69a1054,1054 0,0 0,-35 102c-2,1 -6,-13 -14,-45 -14,-52 -19,-70 -33,-102a220,220 0,0 0,-91 -99c-7,-3 -8,-2 -2,5 27,30 42,53 59,85 14,27 24,54 41,117a1514,1514 0,0 1,26 109l3,3h22c5,-2 5,-6 12,-49a506,506 0,0 1,51 -157l13,-4c24,-4 44,-14 57,-31 10,-12 12,-20 14,-48 2,-14 2,-19 5,-27l3,-12c-1,-2 -2,-1 -17,2z\"\n      android:fillColor=\"#017f00\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/venmo.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#3396cd\"/>\n  <path\n      android:pathData=\"m381,105c11,18 16,37 16,60 0,75 -64,173 -116,241H162l-48,-285 104,-10 25,203c24,-38 53,-99 53,-140 0,-23 -4,-38 -10,-50z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/vercel.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256,96L416,368H96z\"\n      android:fillColor=\"#000\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/viber.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M269,186a30,30 0,0 1,31 31m-38,-58a64,64 0,0 1,64 67m-73,-93a97,97 0,0 1,99 104\"\n      android:strokeWidth=\"10\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#665ca7\"\n      android:strokeLineCap=\"round\"/>\n  <path\n      android:pathData=\"M288,274q10,-13 24,-4l36,27q8,10 -7,28t-28,15q-53,-12 -102,-60t-61,-104q0,-20 25,-34 13,-9 22,5l25,35q6,12 -7,22c-39,15 51,112 73,70zM95,232c0,78 14,95 36,118 7,7 32,19 38,19v69c0,4 4,7 8,3l53,-63 26,1c144,0 161,-56 161,-147S400,85 256,85 95,141 95,232zM65,232c0,-126 55,-177 191,-177s191,51 191,177 -55,177 -191,177c-10,0 -18,0 -32,-2l-38,43c-7,8 -28,11 -28,-13v-42c-6,0 -20,-6 -39,-18 -19,-13 -54,-44 -54,-145z\"\n      android:fillColor=\"#665ca7\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/victoriametrics.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M227,383q29,26 58,0L422,262v44q0,6 -6,11L285,437q-29,22 -58,0L94,317q-4,-4 -4,-11V262m0,-105v43q0,9 5,15L227,335q29,28 58,0L417,215q5,-5 5,-15V157L285,281q-29,22 -58,0m0,-49q29,22 58,0L416,113c33,-31 -89,-50 -160,-49S61,82 96,113\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/vim.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m256,83.5L83.5,256l172.5,172.5 172.5,-172.5z\"\n      android:strokeWidth=\"4.6\"\n      android:fillColor=\"#007f00\"\n      android:strokeColor=\"#000\"/>\n  <path\n      android:pathData=\"m129.5,112.25 l-11.5,11.5l0,23l11.5,5.75l11.5,0l0,230l17.25,11.5l17.25,0l247.25,-253L422.75,123.75l-11.5,-11.5L313.5,112.25l-11.5,11.5l0,23l11.5,5.75l11.5,0l-5.75,5.75 -97.75,92L221.5,152.5l11.5,0l11.5,-5.75L244.5,123.75l-11.5,-11.5z\"\n      android:strokeWidth=\"14.38\"\n      android:fillColor=\"#bfbfbf\"\n      android:strokeColor=\"#000\"/>\n  <path\n      android:pathData=\"m129.5,112.25l-11.5,11.5l0,23l11.5,5.75l11.5,0l0,230l17.25,11.5l17.25,0l247.25,-253L422.75,123.75l-11.5,-11.5L313.5,112.25l-11.5,11.5l0,23l11.5,5.75l11.5,0l-5.75,5.75 -97.75,92L221.5,152.5l11.5,0l11.5,-5.75L244.5,123.75l-11.5,-11.5z\"\n      android:strokeWidth=\"14.38\"\n      android:fillColor=\"#bfbfbf\"\n      android:strokeColor=\"#000\"/>\n  <path\n      android:pathData=\"m261.75,290.5l17.25,0l0,17.25l-17.25,0zM258.88,325 L256,319.25l23,0l-23,66.13l5.75,0L261.75,394l-28.75,0l0,-8.63l5.75,0zM302,319.25l28.75,0l5.75,5.75 5.75,-5.75l23,0l5.75,5.75 5.75,-5.75l28.75,0l5.75,5.75l0,17.25l-17.25,43.13l5.75,0L399.75,394l-28.75,0l0,-8.63l5.75,0l17.25,-43.13l-28.75,0l-17.25,43.13l5.75,0L353.75,394l-28.75,0l0,-8.63l5.75,0l17.25,-43.13l-28.75,0l-17.25,43.13l5.75,0L307.75,394l-28.75,0l0,-8.63l5.75,0L304.88,325z\"\n      android:strokeWidth=\"14.38\"\n      android:fillColor=\"#bfbfbf\"\n      android:strokeColor=\"#000\"/>\n  <path\n      android:pathData=\"m261.75,290.5l17.25,0l0,17.25l-17.25,0zM258.88,325L256,319.25l23,0l-23,66.13l5.75,0L261.75,394l-28.75,0l0,-8.63l5.75,0zM302,319.25l28.75,0l5.75,5.75 5.75,-5.75l23,0l5.75,5.75 5.75,-5.75l28.75,0l5.75,5.75l0,17.25l-17.25,43.13l5.75,0L399.75,394l-28.75,0l0,-8.63l5.75,0l17.25,-43.13l-28.75,0l-17.25,43.13l5.75,0L353.75,394l-28.75,0l0,-8.63l5.75,0l17.25,-43.13l-28.75,0l-17.25,43.13l5.75,0L307.75,394l-28.75,0l0,-8.63l5.75,0L304.88,325z\"\n      android:strokeWidth=\"14.38\"\n      android:fillColor=\"#bfbfbf\"\n      android:strokeColor=\"#000\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/vimeo.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#1eb8eb\"/>\n  <path\n      android:pathData=\"m73,195s59,-71 104,-79c47,-10 47,73 59,118 11,45 18,70 27,70s29,-24 49,-63c21,-37 -1,-71 -41,-47 17,-95 166,-118 147,-9s-128,202 -161,223 -62,-9 -73,-30c-12,-26 -49,-164 -59,-176s-39,12 -39,12z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/visa.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0h512v512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M229,323h-32l20,-133h33l-21,133ZM346,194c-6,-3 -16,-6 -29,-6 -31,0 -54,18 -54,44 0,19 16,30 28,36 13,6 17,11 17,16 0,9 -10,13 -19,13 -13,0 -20,-2 -31,-7l-4,-2 -4,30c7,4 21,7 36,7 33,0 55,-18 56,-45 0,-15 -9,-27 -27,-36 -12,-6 -19,-11 -19,-17 1,-5 6,-11 19,-11 11,0 18,2 24,5l3,1 4,-28ZM389,276 L402,239 406,226 409,238 416,276h-27ZM429,190h-25c-8,0 -13,3 -17,11l-48,122h34l7,-20h41l4,20h30l-26,-133ZM170,190 L139,281 135,262c-6,-21 -24,-44 -44,-55l29,116h34l50,-133h-34ZM109,190L58,190l-1,3c40,11 67,38 78,70l-11,-61c-2,-9 -8,-11 -15,-12Z\"\n      android:fillColor=\"#00579F\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/visualstudiocode.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m423,114 l-75,-37a23,23 0,0 0,-26 5L77,306a15,15 0,0 0,0 22l20,18a15,15 0,0 0,20 1l295,-224c10,-7 24,-1 24,12v-1c0,-9 -5,-17 -13,-20\"\n      android:fillColor=\"#27b\"/>\n  <path\n      android:pathData=\"m423,399 l-75,36a23,23 0,0 1,-26 -5L77,207a15,15 0,0 1,0 -22l20,-19a15,15 0,0 1,20 -1l295,224c10,8 24,1 24,-12v1c0,9 -5,17 -13,21\"\n      android:fillColor=\"#08c\"/>\n  <path\n      android:pathData=\"M348,435a23,23 0,0 1,-26 -5c9,9 23,3 23,-9V92c0,-12 -14,-19 -23,-10a23,23 0,0 1,27 -4l75,36c7,3 12,11 12,20v244c0,9 -5,17 -12,21\"\n      android:fillColor=\"#19f\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/vivino.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#a91b2a\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m181,291zM222,221zM222,361zM262,431zM262,291zM262,151zM302,81zM302,221zM302,361zM343,291z\"\n      android:strokeWidth=\"70\"\n      android:strokeColor=\"#fff\"\n      android:strokeLineCap=\"round\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/vk.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#5281b8\"/>\n  <path\n      android:pathData=\"M274,363c5,-1 14,-3 14,-15 0,0 -1,-30 13,-34s32,29 51,42c14,9 25,8 25,8l51,-1s26,-2 14,-23c-1,-2 -9,-15 -39,-42 -31,-30 -26,-25 11,-76 23,-31 33,-50 30,-57 -4,-7 -20,-6 -20,-6h-57c-6,0 -9,1 -12,6 0,0 -9,25 -21,45 -25,43 -35,45 -40,42 -9,-5 -7,-24 -7,-37 0,-45 7,-61 -13,-65 -13,-2 -59,-4 -73,3 -7,4 -11,11 -8,12 3,0 12,1 17,7 8,13 9,75 -2,81 -15,11 -53,-62 -62,-86 -2,-6 -5,-7 -12,-9H79c-6,0 -15,1 -11,13 27,56 83,193 184,192z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/vlc.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M437,400a29,29 0,0 1,-27 40H102c-16,0 -29,-13 -29,-29 0,-4 0,-8 2,-11l36,-94c3,-10 13,-16 23,-16H378c10,0 20,6 23,16l36,94Z\"\n      android:fillColor=\"#f7901e\"/>\n  <path\n      android:pathData=\"M256,183c24,0 46,-2 63,-6l20,65c-20,8 -49,13 -83,13s-63,-5 -83,-13l19,-65c18,4 40,6 64,6ZM299,109a307,307 0,0 1,-86 0l15,-51c3,-11 13,-18 24,-18h8c11,0 21,7 24,18l15,51Z\"\n      android:fillColor=\"#f7901e\"/>\n  <path\n      android:pathData=\"m319,177 l-20,-68a307,307 0,0 1,-86 0l-21,68c18,4 40,6 64,6s46,-2 63,-6z\"\n      android:fillColor=\"#f2f2f2\"/>\n  <path\n      android:pathData=\"M173,242c20,8 49,13 83,13s63,-5 83,-13l18,62c-19,14 -55,23 -101,23s-82,-9 -101,-23l18,-62Z\"\n      android:fillColor=\"#f2f2f2\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/vue.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m64,100h148l44,77 44,-77h148L256,433\"\n      android:fillColor=\"#42b883\"/>\n  <path\n      android:pathData=\"m141,100h71l44,77 44,-77h71L256,300\"\n      android:fillColor=\"#35495e\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/w3c.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#005a9c\"/>\n  <path\n      android:pathData=\"M165,152l37,124 37,-124h99v13l-38,64c16,4 40,20 40,62 0,78 -83,88 -103,24l20,-8c19,40 55,28 55,-16 0,-13 -2,-41 -36,-41h-10v-11l36,-61h-45l-52,179h-2l-39,-126 -37,126h-3L63,152h26l37,124 25,-83 -12,-41m222,118c-31,-63 23,-165 67,-89l15,-30 4,26 -16,29c-29,-54 -80,-14 -70,64m-16,25c31,60 74,50 99,3l5,21c-28,53 -83,52 -105,-24zM361,270c-31,-63 23,-165 67,-89l15,-30 4,26 -16,29c-29,-54 -80,-14 -70,64z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/wayland.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0\"\n      android:fillColor=\"#ffbc00\"/>\n  <path\n      android:pathData=\"M131,128c15,11 22,30 28,49 1,2 8,-2 10,0 1,1 1,1 0,2s-8,0 -8,1q3,7.5 6,18c4,0 12,-2 12,1 -3,5 -6,6 -9,14l3,1c5,32 2,80 20,90 8,5 24,-53 33,-72l-1,-4c5,-5 6,-12 18,-13 13,-1 18,22 23,39 7,16 13,30 20,44 3,15 13,28 18,30 8,1 13,-26 18,-50 5,-8 7,-18 10,-28l-19,-3c-2,2 -6,1 -10,1v-3c11,-2 22,-1 32,-1 7,-22 0,-12 23,-69 3,-15 2,-37 7,-49l15,-7c19,0 7,33 6,61 3,0 6,-5 7,-3 -18,19 -17,44 -23,63 -8,32 -13,36 -13,61l-8,24 10,5c-1,5 -3,7 -5,8l3,2c1,5 -5,4 -9,5 1,5 0,6 -2,7l8,6v3h-8v3c2,-1 5,2 5,5 -1,4 -9,5 -13,6 4,5 0,5 -4,5v2c4,0 6,0 6,3 -12,4 -25,54 -43,55 -11,-4 -11,-24 -14,-38l-17,-52c1,-22 -5,-32 -12,-49l-5,-28 -5,-1c-10,16 -18,34 -21,55l-8,28c7,3 13,5 12,8 -5,3 -8,-2 -13,-3 -8,24 -10,68 -23,69 -15,-4 -27,-16 -39,-29l-8,-20c-3,-5 -2,-12 -3,-18 -6,-16 -12,-37 -14,-60v-39c-2,1 -4,2 -6,2 0,-4 3,-3 5,-4l-2,-41 -8,-45c-1,-19 -5,-41 13,-49\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/wear_os.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M87,121c19,-7 41,1 49,21l84,199c9,18 0,41 -19,49s-41,-1 -49,-20L67,170c-8,-19 1,-40 20,-49Z\"/>\n  <path\n      android:pathData=\"M87,121c19,-7 41,1 49,21l84,199c9,18 0,41 -19,49s-41,-1 -49,-20L67,170c-8,-19 1,-40 20,-49Z\"\n      android:fillColor=\"#4285F4\"/>\n  <path\n      android:pathData=\"M207,121c19,-7 41,1 49,21l84,199c9,18 0,41 -19,49s-41,-1 -49,-20L187,170c-8,-19 1,-40 20,-49Z\"\n      android:fillColor=\"#FABD05\"/>\n  <path\n      android:pathData=\"M409,158m-39,0a39,39 0,1 1,78 0a39,39 0,1 1,-78 0\"\n      android:fillColor=\"#EA4336\"/>\n  <path\n      android:pathData=\"M371,245m-39,0a39,39 0,1 1,78 0a39,39 0,1 1,-78 0\"\n      android:fillColor=\"#34A853\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/webassembly.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M437,75L437,437L75,437L75,75L214.4,75c0,0.6 0,1.3 0,2 0,22.9 18.6,41.5 41.5,41.5S297.4,99.9 297.4,77c0,-0.7 0,-1.4 0,-2ZM353.7,301.7l12.1,47L333.2,348.7l10.5,-47ZM298.2,398.3h24.1l6.3,-28.6h43.1l8.2,28.6h24.7L367.1,270.1L329.3,270.1ZM186.6,398.3h24.3L230,311l17.8,87.3h23.8l30.6,-128.2L278.7,270.1l-18.9,88.3 -17.9,-88.3L219.4,270.1l-19.8,87.2 -16.5,-87.2h-24Z\"\n      android:fillColor=\"#654ff0\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/webmention.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m88,169h55l39,169 43,-129h51l42,131 30,-131h-40l82,-76 51,76h-40l-56,209h-53l-42,-129 -41,129h-55z\"\n      android:fillColor=\"#610371\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/webtoons.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0\"\n      android:fillColor=\"#00d464\"/>\n  <path\n      android:pathData=\"M316.3,193.8v11.4h14a5.7,5.7 0,0 0,0.05 -11.4zM316.8,221.6L316.8,233L333,233a5.7,5.7 0,0 0,0 -11.4m50.2,13.77L397,91l-281.9,48.12 20.6,89.4h-55l55,165 130.63,-20.63L266.33,421l144.4,-61.87 20.63,-123.8M299.4,179.73s32.87,-2.58 40.9,-2.09a16,16 0,0 1,17.08 16.76A21.75,21.75 0,0 1,349 212.45a18.9,18.9 0,0 1,9.8 18.2c-0.2,14 -15.5,16.8 -15.5,16.8h-44m-53.23,-63.2 l46.25,-3.54v15.8l-30.46,0.96v7.25h26.9v17.88h-27.2v9h30.8v15.8l-46.25,-1.46zM175.01,188.12 L181.53,220.75 190.23,187.2 206.43,186.8 214.89,220.8 223.84,184.3L241,184.3L225,244h-18.64l-7.74,-29.8 -8.43,29.9L170.7,244.1l-14.26,-55.83m37.74,88.47 l-19.18,-0.4v51.64l-20.15,1.13v-53.2l-22.7,-0.47L132.15,256l62,2.53zM230.48,328.44a1,1 0,1 1,0 -72,1 1,0 0,1 0,72m71,-5.4a1,1 0,1 1,0 -62.8,1 1,0 0,1 0,62.8m87,-5.65L373,317.39l-18,-24.7v27h-17.9v-57.7L355,261.99l18.8,29.7L373.8,262.8h17.3m-160.7,46.8a14.7,17 0,0 0,0 -34,14.7 17,0 0,0 0,34m71,-3.2a12.8,14.8 0,0 0,0 -29.6,12.8 14.8,0 0,0 0,29.6\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/wechat.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#00c70a\"/>\n  <path\n      android:pathData=\"M402,369c23,-17 38,-42 38,-70 0,-51 -50,-92 -111,-92s-110,41 -110,92 49,92 110,92c13,0 25,-2 36,-5 4,-1 8,0 9,1l25,14c3,2 6,0 5,-4l-6,-22c0,-3 2,-5 4,-6m-110,-85a15,15 0,1 1,0 -29,15 15,0 0,1 0,29m74,0a15,15 0,1 1,0 -29,15 15,0 0,1 0,29\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M250,198a18,18 0,0 0,0 -35,18 18,0 1,0 0,35m-89,0a18,18 0,0 0,0 -35,18 18,0 1,0 0,35m44,-93c66,0 121,41 131,93 -64,-4 -147,44 -123,128 -3,0 -25,2 -51,-6 -4,-1 -8,0 -11,2l-30,17c-3,1 -7,-1 -6,-6l7,-24c1,-5 -1,-8 -4,-10 -28,-20 -45,-50 -45,-83 0,-61 59,-111 132,-111\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/wekan.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#006984\"/>\n  <path\n      android:pathData=\"M372,309s5,-7 6,-11l1,-3 -6,1c-1,1 -5,13 -19,26 -8,7 -17,9 -25,8 -6,0 -10,-4 -13,-11 -2,-7 -3,-15 -1,-25 4,-19 9,-29 16,-29 8,7 -3,35 -12,42l-3,3h4c10,-3 18,-6 26,-11 7,-5 12,-10 14,-15 1,-6 -1,-11 -6,-15s-12,-6 -20,-7c-8,0 -16,1 -23,5 10,-19 21,-38 27,-57 5,-17 4,-30 -5,-38 -3,-3 -7,-5 -13,-6 -12,-3 -24,-7 -15,6 2,2 3,5 3,7 5,31 -7,56 -18,79 -11,22 -26,54 -47,66l-1,-3c-1,-5 0,-9 1,-14l7,-38 8,-37 3,-15c1,-4 0,-6 -1,-8l-17,-10c-8,-5 -8,-5 -11,3l-11,31a680,680 0,0 1,-36 77c-6,10 -11,15 -15,15 -4,-3 -2,-9 -1,-12 1,-12 5,-25 7,-35l9,-32 7,-27 6,-19c0,-3 -2,-6 -5,-8l-15,-9c-5,-3 -7,-2 -12,-1a459,459 0,0 0,-76 37c-11,8 -18,14 -21,20 -4,8 -3,15 1,22 2,4 5,8 9,11 15,10 10,4 12,-8 0,-4 2,-8 4,-12 5,-8 13,-18 27,-29 14,-10 29,-19 45,-26l-9,36 -9,38c-3,14 -8,27 -8,41 2,12 12,21 24,21 8,0 15,-5 22,-15a481,481 0,0 0,36 -78l-6,32 -4,28c-1,8 0,16 4,22 5,7 13,10 21,11 8,0 18,-7 32,-20l9,-11c0,10 3,17 10,23 9,6 19,10 31,10 19,-1 42,-11 52,-26z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/whatsapp.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m79,434 l25.7,-93.9a181.1,181.2 0,1 1,70.3 68.7M122.5,391l57,-15a150.6,150.6 0,1 0,-41.8 -40.6m93,-127c2,5 0,10 -11,22.2 -6,6 -4,8 6.6,23s28,29 44,36.5 15,7 21.7,-1c15,-17 11,-21 26,-14.2l27,13c8,4 8.4,4 8.5,9s-1.7,18 -7,23.6 -25,24.8 -60,12 -59,-23 -99,-77 -1.6,-86 3.6,-88 7,-1.5 17,-1.3q4,0 7,5\"\n      android:fillColor=\"#25d366\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/whatwg.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m255,64a192,192 0,1 0,2 0m0,38a154,154 0,1 1,-2 0m20,215v-16c0,-30 62,-48 65,-95s-47,-74 -96,-69 -77,35 -76,73h42c0,-42 80,-57 88,-16s-61,56 -61,96v27m0,16v38h38v-38\"\n      android:fillColor=\"#3c790a\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/wifi.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M150,160a142,142 0,0 1,212 0ZM362,351a142,142 0,0 1,-212 0ZM440,234a56,56 0,0 0,-56 -56L321,178a56,56 0,0 0,-56 56v43a56,56 0,0 1,-56 56L384,333a56,56 0,0 0,56 -56ZM220,238v60h18L238,238ZM98,211l23,87h15l18,-60 17,60h16l23,-87L193,211l-14,58 -17,-58L147,211l-17,56 -13,-56ZM359,211v17L312,228v18h44v18L312,264v34L293,298L293,211ZM390,238v60L372,298L372,238ZM383,172a63,63 0,0 1,63 63v41a63,63 0,0 1,-63 63L129,339A63,63 0,0 1,66 276L66,235a63,63 0,0 1,63 -63ZM240,219a11,11 0,1 0,0 1ZM392,219a11,11 0,1 0,0 1Z\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/wikipedia.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M151,152l1,1v7c0,2 0,3 -3,3 -16,1 -26,0 -18,17l76,167 3,1 37,-75 -40,-84c-11,-23 -11,-24 -23,-26 -3,0 -5,0 -5,-2v-8l1,-1h69l1,1v7c0,3 -5,3 -8,4 -13,1 -11,6 -2,22l25,52 27,-56c6,-11 8,-18 -10,-19 -3,0 -7,0 -7,-3v-7l1,-1h64l1,1v7c0,2 -2,3 -4,3 -15,0 -17,9 -25,24l-37,72 43,88 3,1 70,-166c8,-17 -11,-19 -21,-19 -2,0 -4,-1 -4,-3v-7l1,-1h80v8c0,2 0,3 -2,3 -17,0 -28,7 -36,24L323,381c-8,16 -16,15 -24,0l-42,-88 -45,88c-9,17 -18,15 -25,1L97,186c-8,-18 -8,-22 -28,-23 -3,0 -4,-1 -4,-3v-8Z\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/windows.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M96,96H416V247H265V96H247V247H96v18H247V416h18V265H416V416H96\"\n      android:fillColor=\"#2f78d4\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/wire.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M99,127v163a1,1 0,0 0,186 0V157a1,1 0,0 0,-58 0v133a1,1 0,0 0,186 0V127\"\n      android:strokeWidth=\"19\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#000\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/wireguard.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#88171a\"/>\n  <path\n      android:pathData=\"M130,374c7,-29 32,-49 62,-49 -8,10 -12,23 -13,36 -16,3 -33,6 -49,13ZM192,179c40,-25 85,-16 115,28 4,7 4,18 2,26 -8,27 -28,42 -55,48 8,-6 14,-15 16,-25 9,-56 -78,-62 -74,-2 -1,17 12,29 37,33 -13,8 -24,15 -36,30 -2,3 -4,3 -8,1 -48,-30 -51,-106 3,-139ZM312,83c-1,-1 -7,1 -5,4 1,1 2,2 4,1l4,-2 -3,-3ZM238,53c6,0 13,-1 23,-1 21,0 38,7 54,16 4,2 7,8 11,11 8,3 16,5 24,4L350,80c9,2 18,12 18,19L327,99c-1,0 -3,1 -4,2 1,1 3,3 4,3 8,0 19,-1 29,1 -3,5 -9,16 -16,9 0,-2 -39,-1 -49,1 -2,0 -4,4 -3,6 7,17 29,24 40,35 28,22 37,42 31,80 -17,67 -45,71 -104,97 -17,8 -27,27 -24,46 7,41 72,52 85,4 4,-19 -1,-46 -37,-54 16,-7 31,-15 45,-24 2,-2 4,-2 6,0 40,37 50,105 -16,145 -47,26 -106,4 -125,-46 -19,-51 11,-106 64,-117 38,-6 77,-46 60,-83 -10,-22 -45,-44 -64,-60 -5,-3 -16,1 -25,-1 4,-3 14,-7 18,-10 -13,-8 -28,-5 -41,-8 3,-6 18,-15 27,-16 -2,-19 -1,-17 -21,-27 21,-14 37,7 56,-9 -12,-4 -24,-8 -35,-15 15,1 30,7 45,5L273,61l-35,-8Z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/wordpress.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#05a8da\"/>\n  <path\n      android:pathData=\"m109,191a160,159 90,0 0,77 210ZM336,353q30,-86 29,-109t-22,-54c-19,-33 4,-54 21,-53a160,161 90,0 0,-243 31q28,0 53,-2a6,6 90,0 1,3 13l-19,2 58,174 35,-106 -25,-69 -16,-1a3,3 90,0 1,0 -13q42,4 84,0a3,3 90,0 1,3 13l-19,1zM259,270 L210,410a167,164 90,0 0,99 -2ZM387,251q15,-40 10,-72a163,165 90,0 1,-60 216zM257,449a193,193 90,1 0,-2 0zM255,438a182,182 90,1 1,2 0Z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/workato.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#111010\"/>\n  <path\n      android:pathData=\"m439,166c13.5,21.8 7,50.7 -14.7,64.4 -14.5,9.1 -31.9,9 -46,1.7l-0.2,-0.1 -0.2,-0.1c-1.3,-0.5 -2.6,-1 -5,-1.3 -2.6,-0.4 -5.4,-0.1 -8.7,0.8H364c-1.6,0.6 -3.1,1.3 -4.6,2.3 -9.3,5.9 -12.2,18.2 -6.5,27.5l21.5,34.9c13.5,21.8 7,50.7 -14.7,64.4 -21.6,13.6 -50.2,7.1 -63.7,-14.9l-21.2,-34.2c-5.9,-9.5 -18.2,-12.4 -27.5,-6.4a20.2,20.2 0,0 0,-9.4 16.8v0.2c0,15.7 -7.6,30.9 -21.7,39.8 -21.6,13.6 -50.2,7.1 -63.7,-14.9L73,218.4c-13.5,-21.9 -7,-50.8 14.8,-64.4 21.6,-13.7 50.2,-7.1 63.7,14.9l21.2,34.3c5.8,9.4 18,12.3 27.2,6.6l0.3,-0.2c5.9,-3.7 9.1,-10 9.4,-16.4 -0.3,-15.9 7.5,-31.4 21.7,-40.4 21.6,-13.6 50.2,-7.1 63.7,14.9l21.4,34.6c5.9,9.5 18.2,12.4 27.5,6.4 2.2,-1.4 4.2,-3.8 6.1,-7.2 -0.7,1.4 -0.7,1.2 0.2,-0.4 1.3,-2.5 2.1,-4.4 2.5,-5.9 0.4,-1.4 0.6,-2.8 0.8,-4.1 1.7,-17.9 7.7,-31.2 21.8,-40.1 21.6,-13.6 50.2,-7.1 63.7,14.9z\"\n      android:fillColor=\"#67eadd\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/x.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512h-512z\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"M321.8,373.1h36.6L190,137.5H153.4ZM391,389.9H310.6L237,285.1 144.8,389.9H121L226.4,270 121,120h80.4l69.7,99.2L358.4,120h23.8L281.7,234.3Z\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/x11.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    xmlns:aapt=\"http://schemas.android.com/aapt\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m106,414 l116,-150L103,98h76l95,130 -142,186ZM332,414 L238,284L380,98h26L290,249l118,165z\"/>\n  <path\n      android:pathData=\"M351,175c56,22 93,62 93,108 0,69 -84,125 -188,125S68,352 68,283c0,-44 35,-83 87,-106l10,16c-33,20 -54,50 -54,84 0,61 71,111 159,111s159,-50 159,-111c0,-42 -33,-78 -82,-97ZM228,160C273,155 303,161 324,166l-4,5c-16,-4 -33,-5 -50,-5 -1,0 -14,0 -18,7 -6,9 12,26 20,45Z\">\n    <aapt:attr name=\"android:fillColor\">\n      <gradient \n          android:startX=\"86.8\"\n          android:startY=\"256.2\"\n          android:endX=\"444\"\n          android:endY=\"281.5\"\n          android:type=\"linear\">\n        <item android:offset=\"0\" android:color=\"#FFE54C18\"/>\n        <item android:offset=\"1\" android:color=\"#FFFEC350\"/>\n      </gradient>\n    </aapt:attr>\n  </path>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/xbox.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m256,220 l1,1c53,41 146,142 118,171a179,179 0,0 1,-237 0c-29,-29 64,-130 117,-171zM350,102a179,179 0,0 0,-188 0v1l1,1c35,-8 88,22 93,25 5,-3 58,-33 93,-26h1v-1m-220,26h-1c-33,33 -53,78 -53,128s14,79 37,109h1c-14,-43 56,-146 93,-189v-1c-55,-55 -74,-49 -77,-47m175,47v1c36,43 107,146 93,188v1h1a179,179 90,0 0,37 -109,196 196,90 0,0 -54,-128c-3,-2 -22,-8 -77,47\"\n      android:fillColor=\"#107c10\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/xing.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#077\"/>\n  <path\n      android:pathData=\"M131,157l36,60v1l-54,94c-4,7 -1,11 3,11h58c3,0 4,0 6,-3l57,-99v-2l-40,-64 -2,-4 -4,-1h-56c-3,0 -5,3 -4,7zM348,83c-5,0 -7,2 -10,6L225,287v2l75,133c2,3 4,4 8,4h54c6,0 8,-3 5,-9l-74,-128L406,90c2,-4 -1,-7 -5,-7z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/yahoo.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#5f01d1\"/>\n  <path\n      android:pathData=\"M203,404h-62l25,-59 -69,-165h63l37,95 37,-95h62m58,76h-69l62,-148h69\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M303,308m-38,0a38,38 0,1 1,76 0a38,38 0,1 1,-76 0\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/yaml.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m244,112 l-57,85v53h-34v-53l-54,-85h39l34,55 34,-55z\"/>\n  <path\n      android:pathData=\"M302,220h-63l-13,30h-27l58,-138h29l56,138h-30l-10,-30zM291,192 L272,141 251,192z\"\n      android:fillColor=\"#cb171e\"/>\n  <path\n      android:fillColor=\"#FF000000\"\n      android:pathData=\"m235,370 l31,-65v96h28L294,265h-38l-34,62 -32,-62h-37v136h29v-93l30,62zM312,400h101v-29h-71L342,265h-30z\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/yammer.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m326,260c1,9 60,16 100,14 19,-1 18,-31 -1,-32 -19,-2 -100,9 -99,18zM301,215c5,8 61,-15 95,-36 16,-10 1,-36 -17,-28 -17,8 -83,57 -78,64zM302,301c-4,7 43,45 77,65 17,9 33,-17 17,-28s-90,-45 -94,-37z\"\n      android:fillColor=\"#265495\"/>\n  <path\n      android:pathData=\"m278,134 l-74,185 -73,-185m73,185 l-11,29s-14,38 -58,30\"\n      android:strokeWidth=\"34\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#265495\"\n      android:strokeLineCap=\"round\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/yarn.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#117cad\"/>\n  <path\n      android:pathData=\"M411,310c39,3 26,45 5,43 -18,-1 -83,49 -111,51 -9,13 -79,17 -110,15 -12,-1 -20,-14 -20,-14 -32,17 -62,0 -53,-21 -21,-7 -24,-67 3,-86 -2,-17 7,-65 44,-95 0,0 -28,-37 -1,-68 25,-10 33,-37 72,-35 32,-77 56,-2 56,-2s14,-12 24,7c8,17 19,76 -24,137 44,49 33,102 33,102 12,0 59,-38 82,-34\"\n      android:strokeWidth=\"16\"\n      android:fillColor=\"#117cad\"\n      android:strokeColor=\"#fff\"/>\n  <path\n      android:pathData=\"M172,399c8,-7 12,-32 12,-32l11,10s-20,10 -10,28l-13,-6\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/yelp.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#d32323\"/>\n  <path\n      android:pathData=\"M152,311s-16,3 -18,-13 0,-40 6,-55 20,-9 20,-9l65,32s19,13 -3,27m36,28s-6,-20 -24,-8l-49,54s-10,13 3,22 35,19 54,20 15,-14 15,-14m41,-100s-20,-1 -17,19l40,64s10,12 20,5 28,-28 36,-45 -9,-20 -9,-20m-85,-66s-6,19 15,21l72,-20s15,-7 9,-20 -18,-33 -33,-45 -22,3 -22,3m-88,49s18,13 25,-8V95s0,-15 -16,-15 -56,10 -72,19 -6,21 -6,21\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/yii.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M310,311c-2,-32 -13,-54 -18,-66s-13,-23 -13,-23 -7,39 -20,66l-7,15c-9,16 -22,31 -30,46 -7,15 -9,29 -8,46s5,34 9,50c14,-3 26,-8 37,-15a109,109 0,0 0,49 -76s1,-1 1,-3c2,-23 1,-30 0,-40\"\n      android:fillColor=\"#40B3D8\"/>\n  <path\n      android:pathData=\"M310,311c-2,-32 -13,-54 -18,-66s-13,-23 -13,-23l-2,-3c-41,-57 -120,-86 -187,-60 -3,41 16,111 84,130 28,9 50,7 78,14s27,10 43,24c8,7 15,15 15,26 2,-25 1,-32 0,-42\"\n      android:fillColor=\"#83C933\"/>\n  <path\n      android:pathData=\"M280,188c-9,-28 -5,-47 13,-74a140,140 0,0 1,36 -36c52,33 71,94 52,150 -14,41 -27,58 -60,100 4,-45 -12,-76 -28,-111l-13,-29\"\n      android:fillColor=\"#F18A2A\"/>\n  <path\n      android:pathData=\"M310,353c0,-11 -7,-19 -15,-26 -16,-14 -43,-24 -43,-24 3,-4 5,-10 7,-15 13,-27 20,-66 20,-66s8,11 13,23 16,34 18,66c1,10 2,17 0,42\"\n      android:fillColor=\"#7FB93C\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/youtube.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M313,256l-93,-53L220,309ZM427,169c9,37 9,138 0,174 -4,15 -17,27 -32,31 -37,10 -242,10 -278,0 -15,-4 -28,-16 -32,-31 -10,-39 -9,-136 0,-174 4,-15 17,-27 32,-31 39,-10 244,-9 278,0 15,4 28,16 32,31Z\"\n      android:fillColor=\"#ed1d24\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/ytmusic.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"M256,256m-256,0a256,256 0,1 1,512 0a256,256 0,1 1,-512 0\"\n      android:fillColor=\"#ff0000\"/>\n  <path\n      android:pathData=\"M256,256m-128,0a128,128 0,1 1,256 0a128,128 0,1 1,-256 0\"\n      android:strokeWidth=\"11\"\n      android:fillColor=\"#00000000\"\n      android:strokeColor=\"#fff\"/>\n  <path\n      android:pathData=\"M210,323l113,-70l-113,-64z\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/yubico.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m255,64a192,192 0,1 0,2 0m0,44a148,148 0,1 1,-2 0m4,249h-51l23,-54 -54,-137h48l32,88 31,-88h48\"\n      android:fillColor=\"#98c93c\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/zoom.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"M0,0h512v512H0\"\n      android:fillColor=\"#0b5cff\"/>\n  <path\n      android:pathData=\"M145,301H76q-7,0 -11,-6 -3,-8 3,-14l47,-47H81q-15,-2 -17,-17h63q7,1 11,7 3,7 -2,13l-48,47h40q15,2 16,17m270,-85q-15,0 -25,11a33,33 0,0 0,-57 22v52q15,-1 17,-17v-35q1,-15 15,-16c9,-1 17,7 17,16v35q1,16 17,17v-52q1,-15 15,-16c9,-1 17,7 17,16v35q2,16 17,17v-52c0,-18 -15,-33 -33,-33m-185,43c0,24 -19,43 -44,43 -24,0 -43,-19 -43,-43s19,-43 43,-43c25,0 44,19 44,43m-17,0a26,26 0,1 0,-53 1,26 26,0 0,0 53,-1m111,0c0,24 -19,43 -44,43 -24,0 -43,-19 -43,-43s19,-43 43,-43c25,0 44,19 44,43m-17,0a26,26 0,1 0,-53 1,26 26,0 0,0 53,-1\"\n      android:fillColor=\"#fff\"/>\n</vector>\n"
  },
  {
    "path": "images/android-vector-drawable/zorinos.xml",
    "content": "<vector xmlns:android=\"http://schemas.android.com/apk/res/android\"\n    android:width=\"512dp\"\n    android:height=\"512dp\"\n    android:viewportWidth=\"512\"\n    android:viewportHeight=\"512\">\n  <path\n      android:pathData=\"m0,0H512V512H0\"\n      android:fillColor=\"#fff\"/>\n  <path\n      android:pathData=\"m365,80H150l-30,60H400m30,60 l35,60 -35,60H210m100,-120H85l-35,60 35,60m35,60H400l-35,60H150\"\n      android:fillColor=\"#15a6f0\"/>\n</vector>\n"
  },
  {
    "path": "images/reference/1password.url",
    "content": "https://brand.1password.com/document/45#/-/guidelines"
  },
  {
    "path": "images/reference/acast.url",
    "content": "https://acast.com"
  },
  {
    "path": "images/reference/access.url",
    "content": "https://en.wikipedia.org/wiki/International_Symbol_of_Access"
  },
  {
    "path": "images/reference/activitypub.url",
    "content": "https://activitypub.rocks/"
  },
  {
    "path": "images/reference/adobe.url",
    "content": "https://www.adobe.com/content/dam/cc/en/marketing-hub/pdfs/Reference_Adobe_Corporate_Logo_2020.pdf\n"
  },
  {
    "path": "images/reference/adyen.url",
    "content": "https://www.adyen.com/press-and-media/presskit"
  },
  {
    "path": "images/reference/airbnb.url",
    "content": "https://press.atairbnb.com/media-assets/?categ=Logos"
  },
  {
    "path": "images/reference/alpinelinux.url",
    "content": "https://github.com/alpinelinux/alpine-mksite/blob/18f7a137/_static/alpinelinux-logo-icon.svg"
  },
  {
    "path": "images/reference/amazon.url",
    "content": "http://www.turnerduckworth.com/work/amazon/"
  },
  {
    "path": "images/reference/amazon_alexa.url",
    "content": "https://developer.amazon.com/en-US/alexa/branding/echo-guidelines/identity-guidelines/logo-guidelines#additional-resources"
  },
  {
    "path": "images/reference/amazon_s3.url",
    "content": "https://aws.amazon.com/architecture/icons/"
  },
  {
    "path": "images/reference/amberframework.url",
    "content": "https://amberframework.org/media"
  },
  {
    "path": "images/reference/andotp.url",
    "content": "https://github.com/andOTP/andOTP"
  },
  {
    "path": "images/reference/android.url",
    "content": "https://developer.android.com/distribute/marketing-tools/brand-guidelines.html"
  },
  {
    "path": "images/reference/angellist.url",
    "content": "https://www.angellist.com/"
  },
  {
    "path": "images/reference/angular.url",
    "content": "https://angular.io/presskit"
  },
  {
    "path": "images/reference/ansible.url",
    "content": "https://www.ansible.com/logos"
  },
  {
    "path": "images/reference/apache_age.url",
    "content": "https://www.apache.org/logos/"
  },
  {
    "path": "images/reference/apereo.url",
    "content": "https://www.apereo.org"
  },
  {
    "path": "images/reference/apple.url",
    "content": "https://developer.apple.com/app-store/marketing/guidelines/\n"
  },
  {
    "path": "images/reference/apple_music.url",
    "content": "https://www.apple.com/in/apple-music/"
  },
  {
    "path": "images/reference/applepodcasts.url",
    "content": "https://www.apple.com/legal/intellectual-property/guidelinesfor3rdparties.html"
  },
  {
    "path": "images/reference/appwrite.url",
    "content": "https://appwrite.io/assets"
  },
  {
    "path": "images/reference/arch_linux.url",
    "content": "https://archlinux.org/art/"
  },
  {
    "path": "images/reference/arduino.url",
    "content": "https://www.arduino.cc/en/trademark/"
  },
  {
    "path": "images/reference/atom.url",
    "content": "https://atom.io/"
  },
  {
    "path": "images/reference/auth0.url",
    "content": "https://auth0.com/blog/branding-updates/\n"
  },
  {
    "path": "images/reference/authy.url",
    "content": "https://support.authy.com/hc/en-us#"
  },
  {
    "path": "images/reference/azure.url",
    "content": "https://azure.microsoft.com/en-us/blog/a-fluent-new-look-for-the-azure-icon/"
  },
  {
    "path": "images/reference/backbone.url",
    "content": "https://backbonejs.org/"
  },
  {
    "path": "images/reference/badoo.url",
    "content": "https://badoo.com/"
  },
  {
    "path": "images/reference/baidu.url",
    "content": "http://www.baidu.com/img/bd_logo1.png"
  },
  {
    "path": "images/reference/bandcamp.url",
    "content": "https://bandcamp.com/buttons"
  },
  {
    "path": "images/reference/bash.url",
    "content": "https://github.com/odb/official-bash-logo"
  },
  {
    "path": "images/reference/behance.url",
    "content": "https://www.behance.net/"
  },
  {
    "path": "images/reference/bing.url",
    "content": "https://cdn-dynmedia-1.microsoft.com/is/content/microsoftcorp/microsoft/mscle/documents/presentations/Microsoft_Bing_trademark_guidelines_2025.pdf"
  },
  {
    "path": "images/reference/bitbucket.url",
    "content": "https://www.atlassian.com/company/news/press-kit"
  },
  {
    "path": "images/reference/bitcoin.url",
    "content": "https://commons.wikimedia.org/wiki/File:Bitcoin.svg"
  },
  {
    "path": "images/reference/bitwarden.url",
    "content": "https://github.com/bitwarden/brand"
  },
  {
    "path": "images/reference/blender.url",
    "content": "https://www.blender.org/about/logo/"
  },
  {
    "path": "images/reference/blogger.url",
    "content": "https://www.blogger.com/img/blogger-logotype-color-black-2x.png"
  },
  {
    "path": "images/reference/bluesky.url",
    "content": "https://docs.bsky.app/"
  },
  {
    "path": "images/reference/bluetooth.url",
    "content": "https://www.bluetooth.com/develop-with-bluetooth/marketing-branding"
  },
  {
    "path": "images/reference/brave.url",
    "content": "https://brave.com/brave-branding-assets/"
  },
  {
    "path": "images/reference/briar.url",
    "content": "https://briarproject.org/"
  },
  {
    "path": "images/reference/buffer.url",
    "content": "https://buffer.com/press"
  },
  {
    "path": "images/reference/bugcrowd.url",
    "content": "https://www.bugcrowd.com/about/press-kit/"
  },
  {
    "path": "images/reference/bun.url",
    "content": "https://bun.sh/"
  },
  {
    "path": "images/reference/c.url",
    "content": "https://commons.wikimedia.org/wiki/File:C_Programming_Language.svg"
  },
  {
    "path": "images/reference/calendar.url",
    "content": "https://medium.com/@theunitedindian200/2024-a-leap-year-e71c01bd293f"
  },
  {
    "path": "images/reference/cash_app.url",
    "content": "https://cash.app/"
  },
  {
    "path": "images/reference/centos.url",
    "content": "https://gitlab.com/CentOS/artwork/centos-brand"
  },
  {
    "path": "images/reference/chatgpt.url",
    "content": "https://openai.com/brand/"
  },
  {
    "path": "images/reference/chrome.url",
    "content": "https://www.google.com/chrome/static/images/chrome-logo.svg"
  },
  {
    "path": "images/reference/chromium.url",
    "content": "https://www.chromium.org/"
  },
  {
    "path": "images/reference/citrix.url",
    "content": "https://brand.citrix.com/brand-system/logo/"
  },
  {
    "path": "images/reference/citrix_compact.url",
    "content": "https://www.citrix.com/etc/designs/citrix-dotcom/apple-touch-icon.png"
  },
  {
    "path": "images/reference/clickhouse.url",
    "content": "https://clickhouse.com/legal/trademark-policy\n"
  },
  {
    "path": "images/reference/clojure.url",
    "content": "https://clojure.org/index"
  },
  {
    "path": "images/reference/cloudflare.url",
    "content": "https://www.cloudflare.com/logo/"
  },
  {
    "path": "images/reference/codeberg.url",
    "content": "https://codeberg.org/Codeberg/Design"
  },
  {
    "path": "images/reference/codepen.url",
    "content": "https://blog.codepen.io/documentation/logos/"
  },
  {
    "path": "images/reference/coderabbit.url",
    "content": "https://www.coderabbit.ai/brand/"
  },
  {
    "path": "images/reference/coderwall.url",
    "content": "https://coderwall.com/"
  },
  {
    "path": "images/reference/coffeescript.url",
    "content": "http://coffeescript.org/"
  },
  {
    "path": "images/reference/coil.url",
    "content": "https://coil.com/"
  },
  {
    "path": "images/reference/coinpot.url",
    "content": "https://web.archive.org/web/20200621064243/https://coinpot.co/"
  },
  {
    "path": "images/reference/colaboratory.url",
    "content": "https://colab.research.google.com"
  },
  {
    "path": "images/reference/coursera.url",
    "content": "https://about.coursera.org/brand-guide/"
  },
  {
    "path": "images/reference/cplusplus.url",
    "content": "https://isocpp.org/home/terms-of-use"
  },
  {
    "path": "images/reference/crystal.url",
    "content": "https://crystal-lang.org/media/"
  },
  {
    "path": "images/reference/css3.url",
    "content": "https://commons.wikimedia.org/wiki/File:CSS3_and_HTML5_logos_and_wordmarks.svg\n"
  },
  {
    "path": "images/reference/dart.url",
    "content": "https://dart.dev/brand"
  },
  {
    "path": "images/reference/datacamp.url",
    "content": "https://www.datacamp.com/"
  },
  {
    "path": "images/reference/debian.url",
    "content": "https://www.debian.org/logos/"
  },
  {
    "path": "images/reference/deezer.url",
    "content": "https://deezerbrand.com/document/37#/-/logo\n"
  },
  {
    "path": "images/reference/delicious.url",
    "content": "https://del.icio.us/"
  },
  {
    "path": "images/reference/dev_to.url",
    "content": "https://dev.to/brand"
  },
  {
    "path": "images/reference/deviantart.url",
    "content": "https://www.deviantart.com/"
  },
  {
    "path": "images/reference/digidentity.url",
    "content": "https://www.digidentity.eu/en/blog/"
  },
  {
    "path": "images/reference/digitalocean.url",
    "content": "https://www.digitalocean.com/company/logos-and-badges/"
  },
  {
    "path": "images/reference/discord.url",
    "content": "https://discordapp.com/branding"
  },
  {
    "path": "images/reference/disqus.url",
    "content": "https://disqus.com/brand/"
  },
  {
    "path": "images/reference/djangoproject.url",
    "content": "https://www.djangoproject.com/"
  },
  {
    "path": "images/reference/docker.url",
    "content": "https://www.docker.com/company/newsroom/media-resources/"
  },
  {
    "path": "images/reference/dolibarr.url",
    "content": "https://github.com/Dolibarr/dolibarr-foundation/blob/develop/logo-cliparts/dolibarr_512x512_color.png\n"
  },
  {
    "path": "images/reference/dovecot.url",
    "content": "https://www.open-xchange.com/resources/brand-style-guide/dovecot-brand-style-guide/\n"
  },
  {
    "path": "images/reference/downpour.url",
    "content": "https://docs.google.com/document/d/1ZsZVDdFkyMFOU1UdX72karDluFSiIE_Ah9tJxCDMHLo/edit"
  },
  {
    "path": "images/reference/drawio.url",
    "content": "https://github.com/jgraph/drawio/blob/v27.1.6/src/main/webapp/images/drawlogo-color.svg"
  },
  {
    "path": "images/reference/dribbble.url",
    "content": "https://dribbble.com/about"
  },
  {
    "path": "images/reference/drone.url",
    "content": "https://github.com/drone/brand"
  },
  {
    "path": "images/reference/dropbox.url",
    "content": "https://brand.dropbox.com/"
  },
  {
    "path": "images/reference/drupal.url",
    "content": "https://www.drupal.org/about/media-kit/logos"
  },
  {
    "path": "images/reference/druplicon.url",
    "content": "https://www.drupal.org/about/media-kit/logos"
  },
  {
    "path": "images/reference/duckduckgo.url",
    "content": "https://duckduckgo.com/press"
  },
  {
    "path": "images/reference/ea.url",
    "content": "https://www.ea.com/about"
  },
  {
    "path": "images/reference/ebay.url",
    "content": "https://playbook.ebay.com/foundations/logo"
  },
  {
    "path": "images/reference/ecosia.url",
    "content": "https://ecosia.co/ecosialogos"
  },
  {
    "path": "images/reference/edge.url",
    "content": "https://www.microsoft.com/en-us/edge"
  },
  {
    "path": "images/reference/elastic.url",
    "content": "https://www.elastic.co"
  },
  {
    "path": "images/reference/element.url",
    "content": "https://element.io/"
  },
  {
    "path": "images/reference/elementaryos.url",
    "content": "https://elementary.io/images/brand/logomark.png"
  },
  {
    "path": "images/reference/email.url",
    "content": "https://commons.wikimedia.org/wiki/File:Mail_%28iOS%29.svg"
  },
  {
    "path": "images/reference/endeavouros.url",
    "content": "https://github.com/endeavouros-team/Branding"
  },
  {
    "path": "images/reference/ente_auth.url",
    "content": "https://community.ente.io/auth/\n"
  },
  {
    "path": "images/reference/epub.url",
    "content": "http://idpf.org/sites/default/files/epub-logo.gif"
  },
  {
    "path": "images/reference/espressif.url",
    "content": "https://www.espressif.com/en/about-espressif/logo-guidelines"
  },
  {
    "path": "images/reference/ethereum.url",
    "content": "https://ethereum.org/assets/"
  },
  {
    "path": "images/reference/etsy.url",
    "content": "https://www.etsy.com/uk/press?ref=ftr"
  },
  {
    "path": "images/reference/evernote.url",
    "content": "https://evernote.com/"
  },
  {
    "path": "images/reference/expressionengine.url",
    "content": "https://expressionengine.com/about/trademark-use-policy"
  },
  {
    "path": "images/reference/expressjs.url",
    "content": "https://expressjs.com/en/resources/community.html\n"
  },
  {
    "path": "images/reference/f-droid.url",
    "content": "https://gitlab.com/fdroid/fdroid-website/-/blob/master/assets/fdroid-logo.svg"
  },
  {
    "path": "images/reference/facebook.url",
    "content": "https://www.meta.com/en-gb/brand/resources/facebook/logo/"
  },
  {
    "path": "images/reference/fediverse.url",
    "content": "https://commons.wikimedia.org/wiki/File:Fediverse_logo_proposal.svg"
  },
  {
    "path": "images/reference/fedora.url",
    "content": "https://docs.fedoraproject.org/en-US/project/brand/\n"
  },
  {
    "path": "images/reference/figma.url",
    "content": "https://www.figma.com/using-the-figma-brand"
  },
  {
    "path": "images/reference/filestash.url",
    "content": "https://www.filestash.app/"
  },
  {
    "path": "images/reference/finder.url",
    "content": "https://support.apple.com/en-us/HT201732/"
  },
  {
    "path": "images/reference/firebase.url",
    "content": "https://firebase.google.com/docs/guides"
  },
  {
    "path": "images/reference/firefox.url",
    "content": "https://mozilla.design/firefox/logos-usage/"
  },
  {
    "path": "images/reference/fitbit.url",
    "content": "https://dev.fitbit.com/legal/brand-assets/"
  },
  {
    "path": "images/reference/flask.url",
    "content": "https://flask.palletsprojects.com/en/stable/_images/flask-name.svg"
  },
  {
    "path": "images/reference/flatpak.url",
    "content": "https://flatpak.org/press/\n"
  },
  {
    "path": "images/reference/flattr.url",
    "content": "https://flattr.com/"
  },
  {
    "path": "images/reference/flickr.url",
    "content": "https://www.flickr.com/images/opensearch-flickr-logo.png"
  },
  {
    "path": "images/reference/floatplane.url",
    "content": "https://www.floatplane.com/"
  },
  {
    "path": "images/reference/flutter.url",
    "content": "https://flutter.dev/brand"
  },
  {
    "path": "images/reference/foobar2000.url",
    "content": "https://www.foobar2000.org/"
  },
  {
    "path": "images/reference/freebsd.url",
    "content": "https://freebsdfoundation.org/about-us/about-the-foundation/project/"
  },
  {
    "path": "images/reference/freecodecamp.url",
    "content": "https://design-style-guide.freecodecamp.org"
  },
  {
    "path": "images/reference/friendica.url",
    "content": "https://github.com/friendica/friendica/tree/develop/images"
  },
  {
    "path": "images/reference/fritz.url",
    "content": "https://about.fritz.com/ueber-uns"
  },
  {
    "path": "images/reference/gandi.url",
    "content": "https://v4.gandi.net/static/images/illustrations/press/Gandi_LogoGuidelines_EN.pdf"
  },
  {
    "path": "images/reference/gatehub.url",
    "content": "https://gatehub.net/"
  },
  {
    "path": "images/reference/geeksForGeeks.url",
    "content": "https://www.geeksforgeeks.org/"
  },
  {
    "path": "images/reference/gemini.url",
    "content": "https://gemini.google/about/"
  },
  {
    "path": "images/reference/ghost.url",
    "content": "https://ghost.org/design/"
  },
  {
    "path": "images/reference/git.url",
    "content": "https://git-scm.com/downloads/logos"
  },
  {
    "path": "images/reference/gitea.url",
    "content": "https://github.com/go-gitea/gitea/tree/master/assets"
  },
  {
    "path": "images/reference/github.url",
    "content": "https://github.com/logos"
  },
  {
    "path": "images/reference/gitlab.url",
    "content": "https://about.gitlab.com/press/"
  },
  {
    "path": "images/reference/gitpod.url",
    "content": "https://www.gitpod.io/media-kit"
  },
  {
    "path": "images/reference/glitch.url",
    "content": "https://glitch.com/"
  },
  {
    "path": "images/reference/gmail.url",
    "content": "https://www.blog.google/press/"
  },
  {
    "path": "images/reference/gmail_new.url",
    "content": "https://www.google.com/intl/en-US/gmail/about/"
  },
  {
    "path": "images/reference/gmail_old.url",
    "content": "https://www.behance.net/gallery/9028077/Google-Visual-Assets-Guidelines-Part-1#"
  },
  {
    "path": "images/reference/go.url",
    "content": "https://blog.golang.org/go-brand"
  },
  {
    "path": "images/reference/godot.url",
    "content": "https://godotengine.org/press/"
  },
  {
    "path": "images/reference/gogcom.url",
    "content": "https://www.gog.com/en/about_gog"
  },
  {
    "path": "images/reference/gojek.url",
    "content": "https://www.gojek.com/id/terms-of-service/"
  },
  {
    "path": "images/reference/goodreads.url",
    "content": "https://www.goodreads.com/favicon.ico"
  },
  {
    "path": "images/reference/google.url",
    "content": "https://developers.google.com/identity/branding-guidelines"
  },
  {
    "path": "images/reference/google_assistant.url",
    "content": "https://www.blog.google/press/"
  },
  {
    "path": "images/reference/google_authenticator.url",
    "content": "https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2&e=-EnableAppDetailsPageRedesign?utm_source%3Dabout.google?utm_source=about.google&utm_medium=referral&utm_campaign=productslist"
  },
  {
    "path": "images/reference/google_calendar.url",
    "content": "https://www.blog.google/press/"
  },
  {
    "path": "images/reference/google_collaborative_content_tools.url",
    "content": "https://www.blog.google/press/"
  },
  {
    "path": "images/reference/google_docs_editors.url",
    "content": "https://about.google/brand-resource-center/logos-list/"
  },
  {
    "path": "images/reference/google_drive.url",
    "content": "https://developers.google.com/drive/api/v2/branding"
  },
  {
    "path": "images/reference/google_drive_new.url",
    "content": "https://workspace.google.com/intl/en_in/products/drive/"
  },
  {
    "path": "images/reference/google_drive_old.url",
    "content": "https://www.behance.net/gallery/9028077/Google-Visual-Assets-Guidelines-Part-1#"
  },
  {
    "path": "images/reference/google_findhub.url",
    "content": "https://play.google.com/store/apps/details?id=com.google.android.apps.adm&hl=en_IN"
  },
  {
    "path": "images/reference/google_fit.url",
    "content": "https://developers.google.com/fit/branding"
  },
  {
    "path": "images/reference/google_maps.url",
    "content": "https://www.google.com/maps/about/"
  },
  {
    "path": "images/reference/google_maps_new.url",
    "content": "https://play.google.com/store/apps/details?id=com.google.android.apps.maps&hl=en_IN"
  },
  {
    "path": "images/reference/google_maps_old.url",
    "content": "https://logos.fandom.com/wiki/Google_Maps"
  },
  {
    "path": "images/reference/google_meet.url",
    "content": "https://www.blog.google/press/"
  },
  {
    "path": "images/reference/google_pay_old.url",
    "content": "https://about.google/brand-resource-center/logos-list/\n"
  },
  {
    "path": "images/reference/google_photos.url",
    "content": "https://developers.google.com/photos"
  },
  {
    "path": "images/reference/google_play.url",
    "content": "https://play.google.com/intl/en_us/badges/"
  },
  {
    "path": "images/reference/google_plus.url",
    "content": "https://plus.google.com/+googleplus"
  },
  {
    "path": "images/reference/google_podcasts.url",
    "content": "https://play.google.com/store/apps/details?id=com.google.android.apps.podcasts&hl=en_GB"
  },
  {
    "path": "images/reference/google_scholar.url",
    "content": "https://scholar.google.com/"
  },
  {
    "path": "images/reference/google_tv.url",
    "content": "https://partnermarketinghub.withgoogle.com/brands/google-tv/visual-identity/visual-identity/"
  },
  {
    "path": "images/reference/google_wallet.url",
    "content": "https://developers.google.com/wallet/generic/resources/brand-guidelines"
  },
  {
    "path": "images/reference/gradle.url",
    "content": "https://gradle.com/brand/"
  },
  {
    "path": "images/reference/grafana.url",
    "content": "https://github.com/grafana/grafana/blob/master/public/img/grafana_icon.svg"
  },
  {
    "path": "images/reference/grafana_loki.url",
    "content": "https://grafana.com/docs/loki/latest/"
  },
  {
    "path": "images/reference/grapheneos.url",
    "content": ""
  },
  {
    "path": "images/reference/graphql.url",
    "content": "https://graphql.org/brand/\n"
  },
  {
    "path": "images/reference/grok.url",
    "content": "https://x.ai/grok"
  },
  {
    "path": "images/reference/guacamole.url",
    "content": "https://www.apache.org/logos/?#guacamole"
  },
  {
    "path": "images/reference/guilded.url",
    "content": "https://www.guilded.gg/brand"
  },
  {
    "path": "images/reference/h-card.url",
    "content": "https://indieweb.org/h-card"
  },
  {
    "path": "images/reference/h-entry.url",
    "content": "https://indieweb.org/h-entry"
  },
  {
    "path": "images/reference/h-feed.url",
    "content": "https://indieweb.org/h-feed"
  },
  {
    "path": "images/reference/hackernews.url",
    "content": "https://www.ycombinator.com/favicon.ico"
  },
  {
    "path": "images/reference/hackerone.url",
    "content": "https://www.hackerone.com/branding"
  },
  {
    "path": "images/reference/haml.url",
    "content": "https://github.com/haml/haml/issues/819"
  },
  {
    "path": "images/reference/heroku.url",
    "content": "https://brand.heroku.com/"
  },
  {
    "path": "images/reference/homekit.url",
    "content": "https://developer.apple.com/apple-home/works-with-apple-home/"
  },
  {
    "path": "images/reference/hp.url",
    "content": "https://www.hp.com/us-en/hp-information/brandcentral.html"
  },
  {
    "path": "images/reference/html5.url",
    "content": "https://www.w3.org/html/logo/"
  },
  {
    "path": "images/reference/hulu.url",
    "content": "https://thisis.hulu.com/#hulu-logo"
  },
  {
    "path": "images/reference/humblebundle.url",
    "content": "https://support.humblebundle.com/hc/en-us/articles/360019268693-Humble-Brand-Logos-Guidelines"
  },
  {
    "path": "images/reference/i18next.url",
    "content": "https://www.i18next.com/"
  },
  {
    "path": "images/reference/ibm.url",
    "content": "https://www.ibm.com/design/language/ibm-logos/8-bar/"
  },
  {
    "path": "images/reference/iheartradio.url",
    "content": "https://brand.iheart.com/"
  },
  {
    "path": "images/reference/imdb.url",
    "content": "https://brand.imdb.com/"
  },
  {
    "path": "images/reference/imgur.url",
    "content": "https://imgurinc.com/press"
  },
  {
    "path": "images/reference/inkscape.url",
    "content": "https://inkscape.org/about/branding/"
  },
  {
    "path": "images/reference/instagram.url",
    "content": "https://www.meta.com/brand/resources/instagram/instagram-brand/"
  },
  {
    "path": "images/reference/intel.url",
    "content": "https://www.intel.com/content/dam/www/legal/trademarks/brand_guidelines.pdf"
  },
  {
    "path": "images/reference/intercom.url",
    "content": "https://brandfolder.com/intercom/press-kit"
  },
  {
    "path": "images/reference/internet_archive.url",
    "content": "https://archive.org/details/InternetArchiveLogo"
  },
  {
    "path": "images/reference/itch_io.url",
    "content": "https://itch.io/press-kit"
  },
  {
    "path": "images/reference/itunes_podcasts.url",
    "content": "https://www.apple.com/itunes/marketing-on-podcasts/identity-guidelines.html"
  },
  {
    "path": "images/reference/jacobin.url",
    "content": "https://jacobin.com/contact"
  },
  {
    "path": "images/reference/java.url",
    "content": "https://www.oracle.com/a/ocom/docs/java-licensing-logo-guidelines-1908204.pdf"
  },
  {
    "path": "images/reference/javascript.url",
    "content": "https://commons.wikimedia.org/wiki/File:Unofficial_JavaScript_logo_2.svg"
  },
  {
    "path": "images/reference/jellyfin.url",
    "content": "https://jellyfin.org/docs/general/contributing/branding/"
  },
  {
    "path": "images/reference/jquery.url",
    "content": "https://brand.jquery.org/logos"
  },
  {
    "path": "images/reference/json-ld.url",
    "content": "https://json-ld.org/images/"
  },
  {
    "path": "images/reference/json.url",
    "content": "https://json.org/"
  },
  {
    "path": "images/reference/jsonfeed.url",
    "content": "https://www.jsonfeed.org/"
  },
  {
    "path": "images/reference/jsr.url",
    "content": "https://jsr.io/\n"
  },
  {
    "path": "images/reference/julia.url",
    "content": "https://julialang.org"
  },
  {
    "path": "images/reference/justgiving.url",
    "content": "https://justgiving-developer.zendesk.com/hc/en-us/articles/14308756536337"
  },
  {
    "path": "images/reference/kaggle.url",
    "content": "https://www.kaggle.com/"
  },
  {
    "path": "images/reference/kagi.url",
    "content": "https://kagi.com/assets"
  },
  {
    "path": "images/reference/keepassdx.url",
    "content": "https://www.keepassdx.com/"
  },
  {
    "path": "images/reference/keepassxc.url",
    "content": "https://github.com/keepassxreboot/keepassxc-org/blob/2dd7631dac6a725472042f1dfd768a15f3d77186/static/assets/img/keepassxc.svg"
  },
  {
    "path": "images/reference/kemal.url",
    "content": "https://raw.githubusercontent.com/kemalcr/kemalcr.com/master/img/kemal.png"
  },
  {
    "path": "images/reference/keskonfai.url",
    "content": "https://www.keskonfai.fr/"
  },
  {
    "path": "images/reference/keybase.url",
    "content": "https://github.com/keybase/client/blob/master/shared/images/iconfont/56-kb-iconfont-keybase-16.svg"
  },
  {
    "path": "images/reference/kickstarter.url",
    "content": "https://www.kickstarter.com/help/brand_assets"
  },
  {
    "path": "images/reference/ko-fi.url",
    "content": "https://ko-fi.com/"
  },
  {
    "path": "images/reference/kodi.url",
    "content": "https://kodi.tv/"
  },
  {
    "path": "images/reference/kotlin.url",
    "content": "https://resources.jetbrains.com/storage/products/kotlin/docs/kotlin_logos.zip"
  },
  {
    "path": "images/reference/language-icon.url",
    "content": "https://languageicon.org/"
  },
  {
    "path": "images/reference/laravel.url",
    "content": "https://github.com/laravel/art"
  },
  {
    "path": "images/reference/lastfm.url",
    "content": "https://www.last.fm/"
  },
  {
    "path": "images/reference/lastpass.url",
    "content": "https://www.lastpass.com/-/media/2a7beaa56e604330b68837e122a292fb.pdf"
  },
  {
    "path": "images/reference/leetcode.url",
    "content": "https://leetcode.com/\n"
  },
  {
    "path": "images/reference/liberapay.url",
    "content": "https://github.com/liberapay/liberapay.com/blob/master/www/assets/liberapay/icon-v2_white-on-yellow.svg"
  },
  {
    "path": "images/reference/librespeed.url",
    "content": "https://github.com/librespeed/speedtest/blob/master/.logo/LibreSpeed.svg"
  },
  {
    "path": "images/reference/line.url",
    "content": "https://line.me/en/logo"
  },
  {
    "path": "images/reference/linearapp.url",
    "content": "https://linear.app/brand"
  },
  {
    "path": "images/reference/linkedin.url",
    "content": "https://brand.linkedin.com/"
  },
  {
    "path": "images/reference/linux-foundation.url",
    "content": "https://www.linuxfoundation.org/brand-guidelines\n"
  },
  {
    "path": "images/reference/linux.url",
    "content": "https://web.archive.org/web/20040401161253/http://www.linux.org/info/logos.html"
  },
  {
    "path": "images/reference/linux_mint.url",
    "content": "https://commons.wikimedia.org/wiki/File:Linux_Mint_logo_without_wordmark.svg"
  },
  {
    "path": "images/reference/linuxcontainers.url",
    "content": "https://github.com/lxc/linuxcontainers.org/blob/10c399c/static/img/containers.svg"
  },
  {
    "path": "images/reference/lobsters.url",
    "content": "https://lobste.rs/"
  },
  {
    "path": "images/reference/lock.url",
    "content": "https://www.freepik.com/icon/lock_449932"
  },
  {
    "path": "images/reference/logitech.url",
    "content": "https://www.logitechg.com/en-us"
  },
  {
    "path": "images/reference/luckyframework.url",
    "content": "https://luckyframework.org/"
  },
  {
    "path": "images/reference/macos.url",
    "content": "https://www.apple.com/mac/"
  },
  {
    "path": "images/reference/mail.url",
    "content": "https://www.flaticon.com/free-icon/at-sign_9192388"
  },
  {
    "path": "images/reference/mailchimp.url",
    "content": "https://mailchimp.com/about/brand-assets/"
  },
  {
    "path": "images/reference/malt.url",
    "content": "https://newsroom.malt.com/media-kit-uk"
  },
  {
    "path": "images/reference/manjaro.url",
    "content": "https://manjaro.org/logo.svg"
  },
  {
    "path": "images/reference/markdown.url",
    "content": "https://www.markdownguide.org/"
  },
  {
    "path": "images/reference/mastercard.url",
    "content": "https://www.mastercard.com/global/en.html"
  },
  {
    "path": "images/reference/mastodon.url",
    "content": "https://github.com/mastodon/joinmastodon/tree/master/public/logos"
  },
  {
    "path": "images/reference/matrix.url",
    "content": "https://matrix.org/"
  },
  {
    "path": "images/reference/mattermost.url",
    "content": "https://www.mattermost.org/brand-guidelines/"
  },
  {
    "path": "images/reference/mcafee.url",
    "content": "https://www.mcafee.com/en-ie/consumer-corporate/newsroom/product-images.html"
  },
  {
    "path": "images/reference/mcdonald_s.url",
    "content": "https://corporate.mcdonalds.com/corpmcd/our-stories/media-assets-library/media-article/golden_arches_logo.html"
  },
  {
    "path": "images/reference/mediawiki.url",
    "content": "https://www.mediawiki.org/wiki/Manual:MediaWiki_logo_guidelines\n"
  },
  {
    "path": "images/reference/medium.url",
    "content": "https://medium.design/logos-and-brand-guidelines-f1a01a733592"
  },
  {
    "path": "images/reference/meetup.url",
    "content": "https://help.meetup.com/hc/en-us/articles/360002878871-What-are-the-guidelines-for-using-Meetup-s-logo"
  },
  {
    "path": "images/reference/messenger.url",
    "content": "https://www.meta.com/brand/resources/facebook/messenger-icon/"
  },
  {
    "path": "images/reference/microformats.url",
    "content": "https://microformats.org/"
  },
  {
    "path": "images/reference/micropython.url",
    "content": "https://github.com/micropython/micropython/wiki"
  },
  {
    "path": "images/reference/microsoft.url",
    "content": "https://news.microsoft.com/mssurfacehub_logo_stacked_c-white_rgb/"
  },
  {
    "path": "images/reference/minecraft.url",
    "content": "https://account.mojang.com/terms"
  },
  {
    "path": "images/reference/mongodb.url",
    "content": "https://www.mongodb.com/brand-resources"
  },
  {
    "path": "images/reference/mysql.url",
    "content": "https://www.mysql.com/about/legal/logos.html"
  },
  {
    "path": "images/reference/netbeans.url",
    "content": "https://www.apache.org/logos/res/netbeans/netbeans.png"
  },
  {
    "path": "images/reference/netbsd.url",
    "content": "https://www.netbsd.org/gallery/logos.html"
  },
  {
    "path": "images/reference/netflix.url",
    "content": "https://brand.netflix.com/en/assets/logos"
  },
  {
    "path": "images/reference/newpipe.url",
    "content": "https://newpipe.net/press/logo/\n"
  },
  {
    "path": "images/reference/nextcloud.url",
    "content": "https://nextcloud.com/press/"
  },
  {
    "path": "images/reference/nginx.url",
    "content": "https://nginx.org/"
  },
  {
    "path": "images/reference/nhs.url",
    "content": "https://www.england.nhs.uk/nhsidentity/identity-guidelines/nhs-logo/"
  },
  {
    "path": "images/reference/nixos.url",
    "content": "https://github.com/NixOS/nixos-artwork/blob/master/logo/README.md"
  },
  {
    "path": "images/reference/nobara.url",
    "content": "https://nobaraproject.org/"
  },
  {
    "path": "images/reference/nodejs.url",
    "content": "https://nodejs.org/static/documents/foundation-visual-guidelines.pdf"
  },
  {
    "path": "images/reference/nordvpn.url",
    "content": "https://res.cloudinary.com/nordsec/image/upload/v1683793368/nord-security-web/trademark-policy/Nord_Security-Trademark_Guidelines_.pdf"
  },
  {
    "path": "images/reference/notion.url",
    "content": "https://www.notion.so/notion/Notion-s-brand-usage-guidelines-How-to-use-Notion-s-brand-in-your-marketing-30a5510bc5644475a28844e427008bee\n"
  },
  {
    "path": "images/reference/npm.url",
    "content": "https://github.com/npm/logos"
  },
  {
    "path": "images/reference/obs.url",
    "content": "https://obsproject.com/"
  },
  {
    "path": "images/reference/ok.url",
    "content": "https://insideok.ru/brandbook"
  },
  {
    "path": "images/reference/olympics.url",
    "content": "https://library.olympics.com/Default/doc/SYRACUSE/2875741/olympic-brand-guidelines-international-olympic-committee?_lg=en-GB"
  },
  {
    "path": "images/reference/onlyfans.url",
    "content": "https://onlyfans.com/brand\n"
  },
  {
    "path": "images/reference/openbenches.url",
    "content": "https://openbenches.org/"
  },
  {
    "path": "images/reference/openbugbounty.url",
    "content": "https://www.openbugbounty.org"
  },
  {
    "path": "images/reference/opencast.url",
    "content": "http://www.opencast.org/"
  },
  {
    "path": "images/reference/opencollective.url",
    "content": "https://docs.opencollective.com/help/about/introduction#media-logo"
  },
  {
    "path": "images/reference/opencores.url",
    "content": "https://opencores.org"
  },
  {
    "path": "images/reference/opensource.url",
    "content": "https://opensource.org/logo-usage-guidelines"
  },
  {
    "path": "images/reference/openstreetmap.url",
    "content": "https://wiki.openstreetmap.org/wiki/Logos#Other_logos"
  },
  {
    "path": "images/reference/openvpn.url",
    "content": "https://openvpn.net/"
  },
  {
    "path": "images/reference/opera.url",
    "content": "https://brand.opera.com/1472-2/opera-logos/"
  },
  {
    "path": "images/reference/orcid.url",
    "content": "https://info.orcid.org/brand-guidelines/"
  },
  {
    "path": "images/reference/origin.url",
    "content": "https://logos.fandom.com/wiki/EA_(app)"
  },
  {
    "path": "images/reference/outlook.url",
    "content": "https://ow2.res.office365.com/owalanding/2021.8.25.01/images/outlook-icon.jpg"
  },
  {
    "path": "images/reference/overcast.url",
    "content": "https://overcast.fm"
  },
  {
    "path": "images/reference/overleaf.url",
    "content": "https://www.overleaf.com/for/partners/logos"
  },
  {
    "path": "images/reference/parrotos.url",
    "content": "https://www.parrotsec.org/"
  },
  {
    "path": "images/reference/patreon.url",
    "content": "https://www.patreon.com/en-GB/brand"
  },
  {
    "path": "images/reference/paypal.url",
    "content": "https://newsroom.paypal-corp.com/media-resources"
  },
  {
    "path": "images/reference/pdf.url",
    "content": "https://www.adobe.com/uk/legal/permissions/icons-web-logos.html"
  },
  {
    "path": "images/reference/peertube.url",
    "content": "https://joinpeertube.org"
  },
  {
    "path": "images/reference/perplexity.url",
    "content": "https://live.standards.site/perplexity/"
  },
  {
    "path": "images/reference/phone.url",
    "content": "https://iconscout.com/free-icon/apple-phone-2"
  },
  {
    "path": "images/reference/photoshop.url",
    "content": "https://www.adobe.com/cc-shared/assets/img/product-icons/svg/photoshop-40.svg"
  },
  {
    "path": "images/reference/php.url",
    "content": "https://secure.php.net/download-logos.php"
  },
  {
    "path": "images/reference/pinboard.url",
    "content": "https://twitter.com/pinboard"
  },
  {
    "path": "images/reference/pinterest.url",
    "content": "https://business.pinterest.com/en-gb/brand-guidelines"
  },
  {
    "path": "images/reference/pixelfed.url",
    "content": "https://pixelfed.org/"
  },
  {
    "path": "images/reference/plausible.url",
    "content": "https://github.com/plausible/docs/blob/b18114e6/static/img/plausible_logo.svg"
  },
  {
    "path": "images/reference/playstation.url",
    "content": "https://www.playstation.com/en-gb/\n"
  },
  {
    "path": "images/reference/plex.url",
    "content": "https://brand.plex.tv/document/439975?#/visual/logo"
  },
  {
    "path": "images/reference/pnpm.url",
    "content": "https://pnpm.io/logos/"
  },
  {
    "path": "images/reference/pocket.url",
    "content": "https://blog.getpocket.com/press/"
  },
  {
    "path": "images/reference/pocketcasts.url",
    "content": "https://static2.pocketcasts.com/assets/pc_press_kit.zip"
  },
  {
    "path": "images/reference/popos.url",
    "content": "https://system76.com/pop/"
  },
  {
    "path": "images/reference/pornhub.url",
    "content": "https://www.pornhub.org/press"
  },
  {
    "path": "images/reference/portronics.url",
    "content": "https://www.portronics.com/"
  },
  {
    "path": "images/reference/postgresql.url",
    "content": "https://www.postgresql.org/about/policies/trademarks/\n"
  },
  {
    "path": "images/reference/postman.url",
    "content": "https://www.postman.com/company/press-media/#:~:text=Logo%20guidelines,process%20and%20submit%20a%20requ\n"
  },
  {
    "path": "images/reference/postmarketos.url",
    "content": "https://postmarketos.org"
  },
  {
    "path": "images/reference/powershell.url",
    "content": "https://learn.microsoft.com/en-us/powershell/scripting/community/digital-art?view=powershell-7.3"
  },
  {
    "path": "images/reference/preact.url",
    "content": "https://preactjs.com"
  },
  {
    "path": "images/reference/print.url",
    "content": "https://www.iconfinder.com/icons/326675/print_icon#size=512"
  },
  {
    "path": "images/reference/prisma.url",
    "content": "https://github.com/prisma/presskit/tree/main/Assets"
  },
  {
    "path": "images/reference/producthunt.url",
    "content": "https://www.producthunt.com/branding"
  },
  {
    "path": "images/reference/prometheus.url",
    "content": "https://prometheus.io/\n"
  },
  {
    "path": "images/reference/proton_drive.url",
    "content": "https://proton.me/media/kit"
  },
  {
    "path": "images/reference/proton_vpn.url",
    "content": "https://proton.me/media/kit"
  },
  {
    "path": "images/reference/protonmail.url",
    "content": "https://protonmail.com/media-kit"
  },
  {
    "path": "images/reference/python.url",
    "content": "https://www.python.org/community/logos/"
  },
  {
    "path": "images/reference/qq.url",
    "content": "https://wiki.connect.qq.com/%E8%A7%86%E8%A7%89%E7%B4%A0%E6%9D%90%E4%B8%8B%E8%BD%BD"
  },
  {
    "path": "images/reference/quora.url",
    "content": "https://www.quora.com/"
  },
  {
    "path": "images/reference/r.url",
    "content": "https://www.r-project.org/logo/\n"
  },
  {
    "path": "images/reference/raspberry_pi.url",
    "content": "https://www.raspberrypi.org/trademark-rules/"
  },
  {
    "path": "images/reference/react.url",
    "content": "https://github.com/facebook/react/blob/master/fixtures/dom/public/react-logo.svg"
  },
  {
    "path": "images/reference/reddit.url",
    "content": "https://redditinc.com/brand"
  },
  {
    "path": "images/reference/redhat.url",
    "content": "https://www.redhat.com/en/about/brand/standards/logo"
  },
  {
    "path": "images/reference/redis.url",
    "content": "https://brand.redis.io/d/wUTSgvB5PCyH/logos/"
  },
  {
    "path": "images/reference/replit.url",
    "content": "https://replit.com/brandkit"
  },
  {
    "path": "images/reference/researchgate.url",
    "content": "https://mobile.twitter.com/ResearchGate/photo"
  },
  {
    "path": "images/reference/riot.url",
    "content": "https://www.riotgames.com/en"
  },
  {
    "path": "images/reference/roblox.url",
    "content": "https://en.help.roblox.com/hc/en-us/articles/115001708126-Roblox-Name-and-Logo-Community-Usage-Guidelines\n"
  },
  {
    "path": "images/reference/rockstar.url",
    "content": "https://www.rockstargames.com/"
  },
  {
    "path": "images/reference/roundcube.url",
    "content": "https://roundcube.net/images/roundcube_logo_icon.svg"
  },
  {
    "path": "images/reference/rss.url",
    "content": "http://www.feedicons.com/"
  },
  {
    "path": "images/reference/ruby.url",
    "content": "https://www.ruby-lang.org/en/about/logo/"
  },
  {
    "path": "images/reference/rubygems.url",
    "content": "https://rubygems.org"
  },
  {
    "path": "images/reference/rubyonrails.url",
    "content": "https://rubyonrails.org/trademarks/"
  },
  {
    "path": "images/reference/rust.url",
    "content": "https://rustfoundation.org/policy/rust-trademark-policy/"
  },
  {
    "path": "images/reference/safari.url",
    "content": "https://www.apple.com/uk/safari/"
  },
  {
    "path": "images/reference/samsung.url",
    "content": "https://commons.wikimedia.org/wiki/File:Samsung_Logo.svg"
  },
  {
    "path": "images/reference/samsung_internet.url",
    "content": "https://github.com/SamsungInternet"
  },
  {
    "path": "images/reference/samsung_s.url",
    "content": "https://www.samsung.com/uk/about-us/brand-identity/logo/"
  },
  {
    "path": "images/reference/samsung_swoop.url",
    "content": "https://www.samsung.com/uk/about-us/brand-identity/logo/\n"
  },
  {
    "path": "images/reference/sass.url",
    "content": "https://sass-lang.com/styleguide/brand"
  },
  {
    "path": "images/reference/semantic_web.url",
    "content": "https://www.w3.org/2007/10/sw-logos.html\n"
  },
  {
    "path": "images/reference/semaphoreci.url",
    "content": "https://semaphore.io/about"
  },
  {
    "path": "images/reference/sentry.url",
    "content": "https://sentry.io/branding/"
  },
  {
    "path": "images/reference/signal.url",
    "content": "https://signal.org/brand/"
  },
  {
    "path": "images/reference/sketch.url",
    "content": "https://www.sketch.com/about-us/"
  },
  {
    "path": "images/reference/skype.url",
    "content": "https://www.skype.com/en/legal/brand-guidelines/"
  },
  {
    "path": "images/reference/slack.url",
    "content": "https://slack.com/media-kit"
  },
  {
    "path": "images/reference/slideshare.url",
    "content": "https://www.slideshare.net/about/logos"
  },
  {
    "path": "images/reference/snapchat.url",
    "content": "https://www.snap.com/en-US/brand-guidelines/"
  },
  {
    "path": "images/reference/socket_io.url",
    "content": "https://socket.io/"
  },
  {
    "path": "images/reference/sogo.url",
    "content": "https://www.sogo.nu/"
  },
  {
    "path": "images/reference/solana.url",
    "content": "https://solana.com/"
  },
  {
    "path": "images/reference/solidity.url",
    "content": "https://docs.soliditylang.org/en/latest/brand-guide.html"
  },
  {
    "path": "images/reference/sonarqube-community.url",
    "content": "https://www.sonarsource.com/brand-identity/"
  },
  {
    "path": "images/reference/sonarqube-server.url",
    "content": "https://www.sonarsource.com/brand-identity/"
  },
  {
    "path": "images/reference/soundcloud.url",
    "content": "https://developers.soundcloud.com/docs/api/buttons-logos"
  },
  {
    "path": "images/reference/sparql.url",
    "content": "https://cygri.github.io/rdf-logos/\n"
  },
  {
    "path": "images/reference/spotify.url",
    "content": "https://developer.spotify.com/design/"
  },
  {
    "path": "images/reference/sqlite.url",
    "content": "https://sqlite.org/about.html\n"
  },
  {
    "path": "images/reference/stackexchange.url",
    "content": "https://stackoverflow.com/company/logos"
  },
  {
    "path": "images/reference/stackoverflow.url",
    "content": "https://stackoverflow.com/company/logos"
  },
  {
    "path": "images/reference/steam.url",
    "content": "https://steamcdn-a.akamaihd.net/steamcommunity/public/images/steamworks_docs/english/Steam_Guidelines_20170524.pdf"
  },
  {
    "path": "images/reference/stitcher.url",
    "content": "https://itunes.apple.com/us/app/stitcher-for-podcasts/id288087905"
  },
  {
    "path": "images/reference/strava.url",
    "content": "https://developers.strava.com/guidelines/"
  },
  {
    "path": "images/reference/stumbleupon.url",
    "content": "https://www.stumbleupon.com/about"
  },
  {
    "path": "images/reference/sublimemerge.url",
    "content": "https://www.sublimehq.com/"
  },
  {
    "path": "images/reference/sublimetext.url",
    "content": "https://www.sublimetext.com/"
  },
  {
    "path": "images/reference/subscribestar.url",
    "content": "https://www.subscribestar.com/brand"
  },
  {
    "path": "images/reference/supabase.url",
    "content": "https://supabase.com/brand-assets"
  },
  {
    "path": "images/reference/svelte.url",
    "content": "https://github.com/sveltejs/branding"
  },
  {
    "path": "images/reference/svg.url",
    "content": "https://www.w3.org/Graphics/SVG/"
  },
  {
    "path": "images/reference/svgomg.url",
    "content": "https://github.com/jakearchibald/svgomg/blob/main/src/imgs/maskable.svg"
  },
  {
    "path": "images/reference/swift.url",
    "content": "https://developer.apple.com/swift/resources/"
  },
  {
    "path": "images/reference/symantec.url",
    "content": "https://docs.broadcom.com/doc/1232742686"
  },
  {
    "path": "images/reference/symfony.url",
    "content": "https://symfony.com/logo"
  },
  {
    "path": "images/reference/taiga.url",
    "content": "https://taiga.io/about-us/"
  },
  {
    "path": "images/reference/tailwindCss.url",
    "content": "https://tailwindcss.com/brand\n"
  },
  {
    "path": "images/reference/tata.url",
    "content": "https://www.tatasteel.com/media/media-kit/logos-usage-guidelines/"
  },
  {
    "path": "images/reference/teamspeak.url",
    "content": "https://www.teamspeak.com/en/\n"
  },
  {
    "path": "images/reference/telegram.url",
    "content": "https://telegram.org/tour/screenshots"
  },
  {
    "path": "images/reference/tensorflow.url",
    "content": "https://www.tensorflow.org/extras/tensorflow_brand_guidelines.pdf"
  },
  {
    "path": "images/reference/terraform.url",
    "content": "https://www.terraform.io/logos.html"
  },
  {
    "path": "images/reference/tezos.url",
    "content": "https://tezos.com/visual-identity/"
  },
  {
    "path": "images/reference/thisamericanlife.url",
    "content": "https://www.thisamericanlife.org/about"
  },
  {
    "path": "images/reference/threads.url",
    "content": "https://www.meta.com/brand/resources/instagram/threads/"
  },
  {
    "path": "images/reference/threema.url",
    "content": "https://threema.ch/en/press"
  },
  {
    "path": "images/reference/tiktok.url",
    "content": "https://developers.tiktok.com/doc/getting-started-design-guidelines?enter_method=left_navigation"
  },
  {
    "path": "images/reference/todoist.url",
    "content": "https://doist.com/press"
  },
  {
    "path": "images/reference/tox.url",
    "content": "https://github.com/Tox/tox.chat/blob/master/themes/website/static/img/icon.svg"
  },
  {
    "path": "images/reference/trello.url",
    "content": "https://atlassian.design/foundations/logos"
  },
  {
    "path": "images/reference/tripadvisor.url",
    "content": "https://tripadvisor.mediaroom.com/download/TheNewTripAdvisor_StyleGuide.pdf"
  },
  {
    "path": "images/reference/tumblr.url",
    "content": "https://www.tumblr.com/logo"
  },
  {
    "path": "images/reference/tunein.url",
    "content": "https://cms.tunein.com/wp-content/uploads/2018/08/TuneIn-Media-Kit-Q3-2018-.pdf"
  },
  {
    "path": "images/reference/tuta.url",
    "content": "https://tuta.com/"
  },
  {
    "path": "images/reference/tutanota.url",
    "content": "https://play-lh.googleusercontent.com/UBGVnr65n9hqx9-751VTo8d8l-9_bTzwcAzwXa5k-QQ-4UYKu0wY8I8v7Vzq-T4_lQ\n"
  },
  {
    "path": "images/reference/twilio.url",
    "content": "https://www.twilio.com/en-us/legal/trademark"
  },
  {
    "path": "images/reference/twitch.url",
    "content": "https://www.twitch.tv/p/brand/"
  },
  {
    "path": "images/reference/twitter.url",
    "content": "https://about.twitter.com/en/who-we-are/brand-toolkit"
  },
  {
    "path": "images/reference/typescript.url",
    "content": "https://www.typescriptlang.org/branding/"
  },
  {
    "path": "images/reference/uber.url",
    "content": "https://brand.uber.com"
  },
  {
    "path": "images/reference/ubiquiti.url",
    "content": "https://ui.com/"
  },
  {
    "path": "images/reference/ubisoft.url",
    "content": "https://www.ubisoft.com/en-us/company/press"
  },
  {
    "path": "images/reference/ubuntu.url",
    "content": "https://design.ubuntu.com/brand/ubuntu-logo/"
  },
  {
    "path": "images/reference/udemy.url",
    "content": "https://www.udemy.com/"
  },
  {
    "path": "images/reference/unicode.url",
    "content": "https://home.unicode.org/"
  },
  {
    "path": "images/reference/unreal.url",
    "content": "https://brand.epicgames.com/d/tq4oRCzEhhpK/logos-brand-guidelines#/logos/unreal-engine"
  },
  {
    "path": "images/reference/untappd.url",
    "content": "https://untappd.com/"
  },
  {
    "path": "images/reference/uphold.url",
    "content": "https://uphold.design/"
  },
  {
    "path": "images/reference/upi.url",
    "content": "https://www.bhimupi.org.in"
  },
  {
    "path": "images/reference/uplay.url",
    "content": "https://news.ubisoft.com/en-us/article/3aNoNe5cyUPXOhSFcQJmxN/say-hello-to-the-new-ubisoft-swirl"
  },
  {
    "path": "images/reference/uplay_new.url",
    "content": "https://www.ubisoft.com/en-gb/ubisoft-connect"
  },
  {
    "path": "images/reference/upstash.url",
    "content": "https://upstash.com/brand"
  },
  {
    "path": "images/reference/upwork.url",
    "content": "https://content-static.upwork.com/blog/uploads/sites/6/2015/05/04083753/15-0415_r2_upwork_logo_guidelines_media.pdf"
  },
  {
    "path": "images/reference/vagrant.url",
    "content": "https://brand.hashicorp.com/product_logos"
  },
  {
    "path": "images/reference/vegetarian.url",
    "content": "https://www.v-label.com/"
  },
  {
    "path": "images/reference/venmo.url",
    "content": "https://venmo.com/about/brand"
  },
  {
    "path": "images/reference/vercel.url",
    "content": "https://vercel.com/geist/brands"
  },
  {
    "path": "images/reference/viber.url",
    "content": "https://www.viber.com/en/"
  },
  {
    "path": "images/reference/victoriametrics.url",
    "content": "https://github.com/VictoriaMetrics/VictoriaMetrics/blob/v1.119.0/VM_logo.zip\n"
  },
  {
    "path": "images/reference/vim.url",
    "content": "https://www.vim.org/logos.php"
  },
  {
    "path": "images/reference/vimeo.url",
    "content": "https://press.vimeo.com/brand-guidelines"
  },
  {
    "path": "images/reference/visa.url",
    "content": "https://www.merchantsignage.visa.com/brand_guidelines"
  },
  {
    "path": "images/reference/visualstudiocode.url",
    "content": "https://code.visualstudio.com/brand"
  },
  {
    "path": "images/reference/vivino.url",
    "content": "https://www.vivino.com/press"
  },
  {
    "path": "images/reference/vk.url",
    "content": "https://vk.com/about"
  },
  {
    "path": "images/reference/vlc.url",
    "content": "https://www.videolan.org/"
  },
  {
    "path": "images/reference/vue.url",
    "content": "https://github.com/vuejs/art/blob/master/logo.svg"
  },
  {
    "path": "images/reference/w3c.url",
    "content": "https://www.w3.org/Consortium/Legal/logo-usage-20000308"
  },
  {
    "path": "images/reference/wayland.url",
    "content": "https://wayland.freedesktop.org/\n"
  },
  {
    "path": "images/reference/wear_os.url",
    "content": "https://wearos.google.com/"
  },
  {
    "path": "images/reference/webassembly.url",
    "content": "https://webassembly.org/"
  },
  {
    "path": "images/reference/webmention.url",
    "content": "https://indieweb.org/File:webmention-logo.svg"
  },
  {
    "path": "images/reference/webtoons.url",
    "content": "https://www.webtoons.com/en"
  },
  {
    "path": "images/reference/wechat.url",
    "content": "https://wechat.design/?locale=en_US"
  },
  {
    "path": "images/reference/wekan.url",
    "content": "https://github.com/wekan/wekan/blob/main/public/Square150x150Logo.scale-100.png"
  },
  {
    "path": "images/reference/whatsapp.url",
    "content": "https://www.meta.com/en-gb/brand/resources/whatsapp/whatsapp-brand/?utm_source=about.meta.com&utm_medium=redirect"
  },
  {
    "path": "images/reference/whatwg.url",
    "content": "https://whatwg.org/ipr-policy"
  },
  {
    "path": "images/reference/wifi.url",
    "content": "https://www.wi-fi.org/our-brands"
  },
  {
    "path": "images/reference/wikipedia.url",
    "content": "https://wikimediafoundation.org/wiki/Visual_identity_guidelines"
  },
  {
    "path": "images/reference/windows.url",
    "content": "https://cdn-dynmedia-1.microsoft.com/is/content/microsoftcorp/microsoft/mscle/documents/presentations/Windows_trademark_guidelines_2025.pdf"
  },
  {
    "path": "images/reference/wire.url",
    "content": "https://brand.wire.com/symbol/"
  },
  {
    "path": "images/reference/wireguard.url",
    "content": "https://www.wireguard.com/img/emblem-circle.svg"
  },
  {
    "path": "images/reference/wordpress.url",
    "content": "https://wordpress.org/about/logos/"
  },
  {
    "path": "images/reference/workato.url",
    "content": "https://workato.com"
  },
  {
    "path": "images/reference/x.url",
    "content": "https://about.twitter.com/en/who-we-are/brand-toolkit"
  },
  {
    "path": "images/reference/x11.url",
    "content": "https://www.x.org/wiki/\n"
  },
  {
    "path": "images/reference/xbox.url",
    "content": "https://www.xbox.com/favicon.svg\n"
  },
  {
    "path": "images/reference/xing.url",
    "content": "https://dev.xing.com/"
  },
  {
    "path": "images/reference/xmpp.url",
    "content": "https://xmpp.org/about/press-kit/"
  },
  {
    "path": "images/reference/yahoo.url",
    "content": "https://www.pentagram.com/work/yahoo/story"
  },
  {
    "path": "images/reference/yaml.url",
    "content": "https://yaml.org/favicon.svg"
  },
  {
    "path": "images/reference/yammer.url",
    "content": "https://yammerassets.blob.core.windows.net/assets/sites/12/2014/07/Yammer_BrandIdentityGuidelines-1.pdf"
  },
  {
    "path": "images/reference/yarn.url",
    "content": "https://yarnpkg.com/en/"
  },
  {
    "path": "images/reference/yelp.url",
    "content": "https://www.yelp.co.uk/brand"
  },
  {
    "path": "images/reference/yii.url",
    "content": "https://www.yiiframework.com/logo\n"
  },
  {
    "path": "images/reference/youtube.url",
    "content": "https://www.youtube.com/intl/en/yt/about/brand-resources/#logos-icons-colors"
  },
  {
    "path": "images/reference/ytmusic.url",
    "content": "https://music.youtube.com/img/on_platform_logo_dark.svg\n"
  },
  {
    "path": "images/reference/yubico.url",
    "content": "https://brandfolder.yubico.com/yubico/public"
  },
  {
    "path": "images/reference/zoom.url",
    "content": "https://brand.zoom.com/"
  },
  {
    "path": "images/reference/zorinos.url",
    "content": "https://zorin.com/press/"
  },
  {
    "path": "package.json",
    "content": "{\n\t\"name\": \"super-tiny-icons\",\n\t\"version\": \"0.6.0\",\n\t\"description\": \"Under 1KB each! Super Tiny Icons are miniscule SVG versions of your favourite website and app logos\",\n\t\"homepage\": \"https://github.com/edent/SuperTinyIcons/\",\n\t\"license\": \"MIT\",\n\t\"bugs\": {\n\t\t\"url\": \"https://github.com/edent/SuperTinyIcons/issues\"\n\t},\n\t\"repository\": {\n\t\t\"type\": \"git\",\n\t\t\"url\": \"https://github.com/edent/SuperTinyIcons.git\"\n\t},\n\t\"files\": [\n\t\t\"images/svg/\"\n\t],\n\t\"author\": {\n\t\t\"name\": \"Terence Eden\",\n\t\t\"url\": \"https://shkspr.mobi/blog/\"\n\t},\n\t\"keywords\": [\n\t\t\"icons\",\n\t\t\"svg\",\n\t\t\"iconset\",\n\t\t\"logo\",\n\t\t\"logos\",\n\t\t\"twitter\",\n\t\t\"facebook\",\n\t\t\"flattr\",\n\t\t\"drawable\"\n\t],\n\t\"dependencies\": {\n\t\t\"opencollective-postinstall\": \"^2.0.2\"\n\t},\n\t\"collective\": {\n\t\t\"type\": \"opencollective\",\n\t\t\"url\": \"https://opencollective.com/SuperTinyIcons\"\n\t},\n\t\"scripts\": {\n\t\t\"test\": \"npx mocha --timeout 5000\",\n\t\t\"postinstall\": \"opencollective-postinstall || true\"\n\t},\n\t\"devDependencies\": {\n\t\t\"chai\": \"^6.2.0\",\n\t\t\"mocha\": \"^11.1.0\",\n\t\t\"node-fetch\": \"^3.1.1\"\n\t}\n}\n"
  },
  {
    "path": "pyproject.toml",
    "content": "[project]\nname = \"sti\"\nversion = \"0.1.0\"\ndescription = \"Tooling for SuperTinyIcons\"\nauthors = [\n    { name = \"Romain Dartigues\", email = \"romain.dartigues@gmail.com\" }\n]\nrequires-python = \">=3.11\"\ndependencies = [\n    \"jinja2>=3.1.5\",\n]\n\n[dependency-groups]\ndev = [\n    \"flask>=3.1.0\",\n    \"ruff>=0.9.3\",\n]\n\n[project.scripts]\nsti = \"sti:main\"\nserve = \"sti.app:app.run\"\natlas = \"sti.atlas:main\"\n\n[build-system]\nrequires = [\"hatchling\"]\nbuild-backend = \"hatchling.build\"\n"
  },
  {
    "path": "src/sti/__init__.py",
    "content": "# stdlib\n\n# local\nfrom .cli import main\n\nif __name__ == \"__main__\":\n    main()\n\n"
  },
  {
    "path": "src/sti/app.py",
    "content": "# stdlib\nfrom io import BytesIO\nfrom zlib import crc32\nfrom pathlib import Path\nfrom base64 import b64encode\n\n# dependencies\nfrom flask import Flask, Response, render_template, send_file\n\n# local\nfrom .utils import get_icons_from, get_refs_from\n\ngit_root = Path(__file__).absolute().parents[2]\napp = Flask(\n    __name__,\n    static_folder=git_root / \"images\",\n)\napp.jinja_env.add_extension('jinja2.ext.loopcontrols')\n\nsvg_lib = {\n    \"refs\": get_refs_from(git_root / \"images/reference\"),\n}\nsvg_lib |= get_icons_from(git_root / \"images/svg\")\n\nwith Path(__file__).absolute().with_name(\"templates\").joinpath(\"favicon.ico\").open(mode=\"rb\") as file:\n    FAVICON = file.read()\n    FAVETAG = f\"{crc32(FAVICON):x}\"\n\n@app.template_filter()\ndef b2s(b: bytes) -> str:\n    return b.decode(\"utf8\")\n\n@app.route(\"/favicon.ico\")\ndef favicon():\n    return send_file(BytesIO(FAVICON), mimetype='image/x-icon', etag=FAVETAG)\n\n@app.route(\"/atlas.svg\")\ndef svglib():\n    return Response(\n        render_template(\n            \"atlas.svg\", library=svg_lib[\"icons\"].values()\n    ),\n        mimetype=\"image/svg+xml\",\n    )\n\n@app.route(\"/mxlibrary.xml\")\ndef mxlibrary():\n    return Response(\n        render_template(\n            \"mxlibrary.xml\", library=svg_lib[\"icons\"].values()\n        ),\n        mimetype=\"application/xml\",\n    )\n\n@app.route(\"/\", defaults={\"path\": \"index\"})\n@app.route(\"/<string:path>.html\")\n@app.route(\"/<string:path>\")\ndef render(path):\n    return render_template(f\"{path}.html\", pagename=path, **svg_lib)\n"
  },
  {
    "path": "src/sti/atlas.py",
    "content": "#!/usr/bin/env python3\n\"\"\"Super Tiny Icons Atlas generator\"\"\"\n# stdlib\nfrom argparse import ArgumentParser\nfrom base64 import b64encode\nfrom pathlib import Path\nimport json\nimport logging\nimport sys\n\n# dependencies\nfrom jinja2 import Environment, FileSystemLoader\n\n# local\nfrom .utils import Icon\n\ncurrent_dir = Path(__file__).absolute().parent\ntpl = Environment(loader=FileSystemLoader(current_dir / \"templates\"))\n\nclass Atlas:\n    lib: list[Icon] = None\n\n    def __init__(self):\n        self.lib = []\n\n    def add(self, path: Path):\n        self.lib.append(Icon.from_path(path, with_path=False, with_data=True))\n        return self\n\n    def write_drawio(self, fp):\n        fp.write(\"<mxlibrary>\")\n        json.dump([\n            {\n                \"title\": entry.label,\n                \"data\": f\"data:image/svg+xml;base64,{b64encode(entry.data).decode('ascii')}\",\n                \"aspect\": \"fixed\",\n                \"w\": entry.dimension,\n                \"h\": entry.dimension,\n            } for entry in self.lib\n        ], fp, indent=1, sort_keys=True)\n        fp.write(\"</mxlibrary>\")\n\n    def write_svg(self, fp):\n        template = tpl.get_template(name=\"atlas.svg\")\n        fp.write(template.render(library=self.lib))\n\ndef parse_args():\n    \"\"\"parse arguments, initialize logging\"\"\"\n    parser = ArgumentParser(description=__doc__.splitlines()[0])\n    parser.add_argument(\n        \"-q\",\n        \"--quiet\",\n        action=\"store_const\",\n        const=0,\n        default=2,\n        dest=\"verbose\",\n    )\n    parser.add_argument(\"-v\", \"--verbose\", action=\"count\")\n\n    group = parser.add_argument_group(\"Configuration\")\n    group.add_argument(\n        \"-f\",\n        \"--format\",\n        choices=[\"drawio\", \"svg\"],\n        default=None,\n        required=True,\n    )\n    args = parser.parse_args()\n    loglevel = min(\n        max(logging.CRITICAL - (args.verbose * 10), logging.DEBUG), logging.CRITICAL\n    )\n    logging.basicConfig(\n        format=\"%(levelname)s: %(message)s\",\n        level=loglevel,\n        stream=sys.stderr,\n    )\n    return args\n\ndef main():\n    args = parse_args()\n    atlas = Atlas()\n    for entry in Path(__file__).parents[1].with_name(\"images\").glob(\"svg/*.svg\"):\n        atlas.add(entry)\n    if args.format == \"drawio\":\n        atlas.write_drawio(sys.stdout)\n    if args.format == \"svg\":\n        atlas.write_svg(sys.stdout)\n\nif __name__ == \"__main__\":\n    main()\n"
  },
  {
    "path": "src/sti/cli.py",
    "content": "\"\"\"Super Tiny Icons command line interface\"\"\"\n\n# stdlib\nfrom argparse import ArgumentParser\nfrom pathlib import Path\nimport logging\nimport sys\n\n# dependencies\nfrom jinja2 import Environment, FileSystemLoader\n\n# local\nfrom .atlas import Atlas\nfrom .utils import get_icons_from, get_refs_from\n\n\ndef parse_args():\n    \"\"\"parse arguments, initialize logging\"\"\"\n    parser = ArgumentParser(description=__doc__.splitlines()[0])\n    parser.add_argument(\n        \"-q\",\n        \"--quiet\",\n        action=\"store_const\",\n        const=0,\n        default=2,\n        dest=\"verbose\",\n    )\n    parser.add_argument(\"-v\", \"--verbose\", action=\"count\")\n\n    group = parser.add_argument_group(\"Configuration\")\n    group.add_argument(\n        \"-o\",\n        \"--output\",\n        default=\"_site\",\n        help=\"output directory\",\n    )\n    args = parser.parse_args()\n    loglevel = min(\n        max(logging.CRITICAL - (args.verbose * 10), logging.DEBUG), logging.CRITICAL\n    )\n    logging.basicConfig(\n        format=\"%(levelname)s: %(message)s\",\n        level=loglevel,\n        stream=sys.stderr,\n    )\n    return args\n\n\ndef main():\n    args = parse_args()\n    current_dir = Path(__file__).absolute().parent\n    git_root = current_dir.parents[1]\n    svg_lib = {\"refs\": get_refs_from(git_root / \"images/reference\")} | get_icons_from(\n        git_root / \"images/svg\"\n    )\n    tpl_loader = FileSystemLoader(current_dir / \"templates\")\n    tpl_env = Environment(loader=tpl_loader)\n\n    out = Path(args.output).resolve()\n    if git_root in out.parents and not out.exists():\n        out.mkdir(parents=True)\n\n    atlas = Atlas()\n    for entry in Path(__file__).parents[1].with_name(\"images\").glob(\"svg/*.svg\"):\n        atlas.add(entry)\n\n    for writer in filter(lambda _:_.startswith('write_'), dir(atlas)):\n        with (Path(args.output) / f\"atlas.{writer.removeprefix('write_')}\").open(\n                \"w\", encoding=\"utf8\"\n            ) as out:\n            getattr(atlas, writer)(out)\n\n    for template_name in (\"index\", \"libraries\", \"reference\"):\n        template = tpl_env.get_template(name=f\"{template_name}.html\")\n        with (Path(args.output) / f\"{template_name}.html\").open(\n                \"w\", encoding=\"utf8\"\n            ) as out:\n            out.write(template.render(pagename=template_name, **svg_lib))\n"
  },
  {
    "path": "src/sti/templates/base.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n\t<meta charset=\"UTF-8\">\n\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n\t<title>{% block title %}{% endblock %}SuperTinyIcons</title>\n\t<link rel=\"icon\" href=\"favicon.ico\">\n\t<style>{% block style %}\n\t\thtml{\n\t\t\tbackground:#eee;\n\t\t\tcolor: #111;\n\t\t}\n\n\t\tbody {\n\t\t\tfont-family: sans-serif;\n\t\t\tmax-width: 80em;\n\t\t\tmargin: 0 auto;\n\t\t\tpadding: 1em;\n\t\t}\n\t\t\n\t\theader {\n\t\t\ttext-align: center;\n\t\t\ttext-wrap: balance;\n\t\t}\n\n\t\th1 {\n\t\t\tmargin: 0;\n\t\t}\n\n\t\tnav {\n\t\t\tdisplay:flex;\n\t\t\tflex-flow:row wrap;\n\t\t\tjustify-content:space-around;\n\t\t}\n\t\t\n\t\tfooter {\n\t\t\tpadding:1ex;\n\t\t\tdisplay:flex;\n\t\t\tflex-flow:row wrap;\n\t\t\tjustify-content:space-around;\n\t\t\tborder-radius:1ex;\n\t\t\tbackground:#ddd;\n\t\t}\n\n\t\t{% endblock %}\n\t</style>\n\t{% block script %}{% endblock %}\n</head>\n<body{% if pagename %} id=\"{{ pagename }}\"{% endif %}>\n\t<header>\n\t\t<h1>Super Tiny Icons</h1>\n\t\t<p>{{ icons | length }} icons, ranging from {{ size_min }}&nbsp;Bytes to {{ size_max }}&nbsp;Bytes with an average size of {{ \"{:.0f}\".format(size_avg) }}&nbsp;Bytes</p>\n\t</header>\n\t<nav>\n\t\t<a href=\"index\">Home</a>\n\t\t<a href=\"reference\">Reference</a>\n\t\t<a href=\"libraries\">Libraries</a>\n\t\t<a href=\"https://github.com/edent/SuperTinyIcons/\">This project on GitHub</a>\n\t</nav>\n\t<main>\n\t\t{% block content %}{% endblock %}\n\t</main>\n\t<footer>\n\t\t<a href=\"https://github.com/edent/SuperTinyIcons/\" title=\"Fork me on GitHub!\">\n\t\t\t<svg aria-label=\"GitHub\" role=\"img\" viewBox=\"0 0 512 512\" height=\"32\" xmlns=\"http://www.w3.org/2000/svg\"><circle r=\"256\" cx=\"256\" cy=\"256\" fill=\"#181717\"></circle><path fill=\"#fff\" d=\"M335 499c-13 0-16-6-16-12l1-70c0-24-8-40-18-48 57-6 117-28 117-126 0-28-10-51-26-69 3-6 11-32-3-67 0 0-21-7-70 26-42-12-86-12-128 0-49-33-70-26-70-26-14 35-6 61-3 67-16 18-26 41-26 69 0 98 59 120 116 126-7 7-14 18-16 35-15 6-52 17-74-22 0 0-14-24-40-26 0 0-25 0-1 16 0 0 16 7 28 37 0 0 15 50 86 34l1 44c0 6-3 12-16 12-14 0-12 17-12 17H347s2-17-12-17Z\"></path></svg>\n\t\t</a>\n\t</footer>\n</body>\n</html>"
  },
  {
    "path": "src/sti/templates/index.html",
    "content": "{% extends \"base.html\" %}\n\n<style>\n{%  block style %}{{ super() }}\n \t:root {\n\t\t--border-radius: 0%;\n\t}\n\n\tsection {\n\t\tdisplay: flex;\n\t\tflex-wrap: wrap;\n\t\tbox-sizing: border-box;\n\t\talign-items: center;\n\t\tjustify-content: center;\n\t}\n\tsection div {\n\t\ttext-align: center;\n\t\tpadding: 1.5em 1em;\n\t\tbox-sizing: border-box;\n\t\twidth:10em;\n\t\talign-self: flex-end;\n\t}\n\n\t.thumb img {\n\t\tborder-radius: var(--border-radius);\n\t}\n\n\t.thumb span {\n\t\tfont-family: monospace;\n\t}\n\n\t.thumb.selected img {\n\t\tbox-shadow: 0 0 1em #2098D1;\n\t}\n\n\t#radius {\n\t\tvertical-align: middle;\n\t}\n\n\t#sticky {\n\t\tposition: sticky;\n\t\ttop: 0;\n\t\tbackground: #eee;\n\t\tpadding-bottom: 1em;\n\t}\n {% endblock %}\n</style>\n\n{% block content %}\n<p>Under 1kB each! Super Tiny Web Icons are minuscule SVG versions of your favourite logos.<br>\nThere are currently <b>{{ icons | length }}</b> icons and the average size is <b>under</b> {{ size_avg|round(0, \"ceil\")|int }} Bytes!</p>\n\n<p>The logos have a 512×512 view box, they will fit in a circle with radius 256. They will scale up and down to suit your needs.</p>\n\n<div id=\"sticky\">\n\t<h2>What's Available so far?</h2>\n\t<label for=\"radius\">Change border-radius</label>\n\t<input  id=\"radius\" type=\"range\" min=\"0\" max=\"100\" value=\"0\">\n</div>\n<section>\n\t{% for _, icon in icons | dictsort -%}\n\t<div class=\"thumb\" data-name=\"{{ icon.name }}\" data-size=\"{{ icon.size }}\">\n\t\t<strong>{{ icon.label }}</strong>\n\t\t<img src=\"images/svg/{{ icon.name }}.svg\" alt=\"\">\n\t\t<span>{{ icon.size }} Bytes</span>\n\t</div>\n\t{% endfor %}\n</section>\n<script>\n\tconst radiusInput = document.getElementById(\"radius\");\n\n\tradiusInput.addEventListener(\"input\", (event) => {\n\t\tdocument.documentElement.style.setProperty(\"--border-radius\",  radiusInput.value + \"%\");\n\t}); \n</script>\n{% endblock %}\n"
  },
  {
    "path": "src/sti/templates/libraries.html",
    "content": "{% extends \"base.html\" %}\n\n<style>{% block style %}\n\t{{ super() }}\n\th3 img {\n\t\theight:1em;\n\t\twidth:1em;\n\t\tpadding-right:1ex;\n\t\tvertical-align:text-bottom;\n\t}\n\t{% endblock %}\n</style>\n\n{% block script %}\n<script>\n\tvar tiles;\n\tfetch(\"atlas.svg\", { cache: \"force-cache\" })\n\t\t.then((response) => response.text())\n\t\t.then((data) => {\n\t\t\tlet size = Number(data.length).toString().replace(/\\B(?=(\\d{3})+(?!\\d))/g, \",\");\n\t\t\tconst container = document.querySelector(\".atlas\");\n\t\t\tconst parser = new DOMParser();\n\t\t\tlet tiles = parser.parseFromString(data, \"image/svg+xml\").querySelectorAll(\"svg svg\");\n\t\t\tcontainer.querySelector(\"p\").insertAdjacentHTML(\"afterend\", `<p>The <a href=\"atlas.svg\"><b>whole</b> library</a> weighs only ${size}&nbsp;Bytes (uncompressed) for ${tiles.length} icons!</p>`);\n\t\t\tlet table = container.querySelector(\"table tbody\");\n\t\t\tfor (let i = 0; i < 10; ++i) {\n\t\t\t\tlet rand = Math.floor(Math.random()*tiles.length);\n\t\t\t\tlet tile = tiles[rand];\n\t\t\t\t//\tPrevent duplicates. Doesn't work on NodeList :-(\n\t\t\t\t// tiles.splice(rand,1);\n\t\t\t\tlet sample = `<img alt=\"${tile.ariaLabel}\" height=\"64\" width=\"64\" src=\"atlas.svg#${tile.id}\">\\n`;\n\t\t\t\ttable.insertAdjacentHTML(\"beforeend\", `<tr><td><code>${sample.replace(/</g, \"&lt;\")}</code></td><td>${sample}</td></tr>\\n`)\n\t\t\t}\n\t\t});\n</script>\n{% endblock %}\n\n{% block content %}\n<h2>Libraries</h2>\n<section class=\"atlas\">\n\t<h3><img alt=\"\" src=\"atlas.svg#svg\">SVG texture atlas (a.k.a. spritesheet)</h3>\n\t<p>A single file containing <em>all</em> the icons. This limits the number of requests to the server and can improve the page load time.</p>\n\t<p>Example:</p>\n\t<table>\n\t\t<thead>\n\t\t\t<tr>\n\t\t\t\t<th>HTML</th>\n\t\t\t</tr>\n\t\t</thead>\n\t\t<tbody>\n\t\t\t<tr>\n\t\t\t\t<td><code>&lt;img alt=\"Acast\" height=\"64\" src=\"atlas.svg#acast\"&gt;</code></td>\n\t\t\t\t<td><img alt=\"Acast\" height=\"64\" width=\"64\" src=\"atlas.svg#acast\"></td>\n\t\t\t</tr>\n\t\t</tbody>\n\t</table>\n</section>\n\n<section>\n\t<h3><img alt=\"\" src=\"atlas.svg#drawio\">Draw.io</h3>\n\t<p>Are you using <a href=\"https://draw.io\">Draw.io</a>?</p>\n\t<p>Feeling you are missing some icons for your charts?</p>\n\t<p><a href=\"atlas.drawio\">Download Super Tiny Icons as a graphic library for Draw.io</a>!</p>\n\t<p>File ▸ Open Library from ▸ URL...</p>\n</section>\n{% endblock %}"
  },
  {
    "path": "src/sti/templates/reference.html",
    "content": "{% extends \"base.html\" %}\n\n<style>\n\t{%  block style %}{{ super() }}\n\n\t#reference-grid > div {\n\t\tdisplay: grid;\n\t\tgrid-template-columns: 25em 10em 1fr;\n\t\tgap: 1em;\n\t\talign-items: center;\n\t\tborder-bottom: 3px ridge skyblue;\n\t\tpadding: 1em;\n\t\tmargin-bottom: 1em;\n\t\tmin-height: 10em;\n\t}\n\n\timg.svg-icon, img.reference {\n\t\theight: 10em;\n\t\tpadding: 2px;\n\t}\n\n\timg.reference {\n\t\tbackground: white;\n\t}\n\t\n\t.url {\n\t\ttext-align: left;\n\t\tword-break: break-word;\n\t}\n\n\t.info {\n\t\ttext-align: right;\n\t}\n\t\n\t.label {\n\t\tfont-weight: bold;\n\t}\n{% endblock %}\n</style>\n\n\n{% block content %}\n<h2>Reference Images</h2>\n<p>A visual guide to check if the Super Tiny Icons match the shape and colour of organisation's official logo.<br>\nWhere possible this links to the organisation's brand guidelines page.</p>\n\n<section id=\"reference-grid\">\n\t{% for _, icon in icons | dictsort -%}\n\t\t{% with ref = refs[ icon.name ] %}\n\t<div id=\"{{ icon.name }}\">\n\t\t<div class=\"info\">\n\t\t\t<span class=\"label\">{{ icon.label }}</span><br>\n\t\t\t<a class=\"url\" href=\"{{ ref.url }}\">{{ ref.url }}</a>\n\t\t</div>\n\t\t<img alt=\"\" class=\"svg-icon\" src=\"images/svg/{{ icon.name }}.svg\">\n\t\t<img alt=\"\" class=\"reference\" src=\"images/reference/{{ ref.filename }}\">\n\t</div>\n\t\t{% endwith %}\n\t{% endfor %}\n</section>\n\n{% endblock %}"
  },
  {
    "path": "src/sti/utils.py",
    "content": "from base64 import b64encode\nfrom collections import defaultdict\nfrom dataclasses import dataclass\nfrom pathlib import Path\nimport re\n\n\nr_size = re.compile(\n    rb'viewBox\\s*=\\s*\"\\s*([+-]?[0-9.]+)\\s+([+-]?[0-9.]+)\\s+([+-]?[0-9.]+)\\s+([+-]?[0-9.]+)\\s*\"'\n).search\nr_label = re.compile(rb'aria-label=\"(?P<value>.*?)(?<!\\\\)(?:\\\\\\\\)*\"', re.DOTALL).search\nr_atlas = re.compile(r' xmlns=\"http://www\\.w3\\.org/2000/svg\"|(role=\"img\")').sub\nr_reid = re.compile(r'id=\"([^\"]+)\"|href=\"#([^\"]+)\"|url\\(#([^)]+)\\)').sub\n\n\n@dataclass(order=True, frozen=True, slots=True)\nclass Icon:\n    name: str  #: filename without the extension\n    size: int  #: file size in bytes\n    label: str  #: the value of the aria-label, with fallback to `name` if not found\n    dimension: (\n        float | int\n    )  #: the icon width/height (always the same as we are working with squares)\n    path: Path | None = None\n    data: bytes | None = None\n\n    @classmethod\n    def from_path(cls, path: Path, *, with_path=True, with_data=True):\n        data = path.read_bytes()\n        width = 0\n        height = 0\n        if match := r_size(data):\n            x0, y0, x1, y1 = match.groups()\n            width = float(x1) - float(x0)\n            height = float(y1) - float(y0)\n        if width != height or width <= 0:\n            raise ValueError(f\"invalid size for: {path} ({width} / {height})\")\n        return cls(\n            path.name.rpartition(\".\")[0],\n            path.stat().st_size,\n            match.group(1).decode(\"utf8\")\n            if (match := r_label(data))\n            else path.name.rpartition(\".\")[0],\n            int(width) if width.is_integer() else width,\n            path if with_path else None,\n            data if with_data else None,\n        )\n\n    @property\n    def as_drawio(self) -> dict:\n        return {\n            \"title\": self.label,\n            \"data\": f\"data:image/svg+xml;base64,{b64encode(self.data).decode('ascii')}\",\n            \"aspect\": \"fixed\",\n            \"w\": self.dimension,\n            \"h\": self.dimension\n        }\n\n    def as_atlas_unit(self, reid=False) -> str:\n        data = self.data.decode(\"utf8\").replace(\"\\n\", \" \")\n        def _reid(match):\n            id_, href, url = match.groups()\n            if id_:\n                return f'id=\"{reid}{id_}\"'\n            if href:\n                return f'href=\"#{reid}{href}\"'\n            if url:\n                return f'url(#{reid}{url})'\n        if reid is not False:\n            data = r_reid(\n                _reid,\n                data\n            )\n        return r_atlas(\n            lambda _: f'id=\"{self.name}\"' if _.group(1) else \"\",\n            data,\n            2\n        )\n\ndef get_icons_from(path: Path) -> dict:\n    icons = {}\n    size_min = float(\"inf\")\n    size_max = 0\n    size_tot = 0\n    for entry in path.glob(\"*.svg\"):\n        icon = Icon.from_path(entry)\n        icons[icon.name] = icon\n        if icon.size < size_min:\n            size_min = icon.size\n        if icon.size > size_max:\n            size_max = icon.size\n        size_tot += icon.size\n    return {\n        \"size_min\": size_min,\n        \"size_max\": size_max,\n        \"size_avg\": size_tot / len(icons) if icons else 0,\n        \"size_tot\": size_tot,\n        \"icons\": {k: icons[k] for k in sorted(icons)},  # dict are sorted since Python 3.7\n    }\n\n\ndef get_refs_from(path: Path) -> dict:\n    refs = defaultdict(dict)\n    for entry in path.glob(\"*.*\"):\n        if entry.suffix == \".url\":\n            refs[entry.name[:-4]][\"url\"] = entry.read_text(encoding=\"utf8\")\n        else:\n            refs[entry.name.rpartition(\".\")[0]] |= {\n                \"filename\": entry.name,\n                \"size\": entry.stat().st_size,\n            }\n    return dict(refs)\n\n\n\n"
  },
  {
    "path": "test/test.js",
    "content": "const expect = require(\"chai\").expect\nconst fs = require(\"fs\")\nconst fetch = (...args) => import('node-fetch').then(({default: fetch}) => fetch(...args));\n\nconst svgDir = __dirname + \"/../\"\n\nconst changedFiles = process.env.CHANGED_FILES;\n\nconsole.log('Changed files:', changedFiles);\n\nconst changedFilesArray = changedFiles ? changedFiles.split(/\\s+/) : [];\nconsole.log('Changed files as array:', changedFilesArray);\n\nconst delay = ms => new Promise(res => setTimeout(res, ms));\n\nchangedFilesArray.forEach((filename, i) => {\n    console.log(`Filename is: ${filename}`);\n    \n    if (! filename.endsWith(\".svg\")) {return}\n    \n    const filepath = svgDir + filename\n    console.log(`Filepath is: ${filepath}`);\n\n    if(!fs.existsSync(filepath)) {\n        console.log(`Skipping deleted file: ${filename}`);\n        return;\n    }\n    console.log('SVG Contents: ', fs.readFileSync(filepath, \"utf8\"));\n\n    describe(filename, async () => {\n\n        it(\"should be under 1KB\", () => {\n            expect(fs.statSync(filepath).size).to.be.lessThan(1024)\n        })\n\n        it(\"should be validated by the w3c validator\", async () => {\n            await delay(200);\n            //  Send as HTML to ensure validator checks properly.\n            //  Replace newlines with spaces.\n            //  https://github.com/validator/validator/wiki/Service-%C2%BB-Input-%C2%BB-POST-body\n            await fetch(\"https://validator.nu/?out=gnu\", {\n                    method: \"POST\",\n                    body: '<!doctype html><html lang=en><title>A</title>' + fs.readFileSync(filepath, \"utf8\").replaceAll(\"\\n\", \" \"),\n                    headers: {\"Content-Type\": \"text/html; charset=utf-8\"}\n                })\n                .then(res => res.text())\n                .then(res => {\n                    expect(res).to.be.empty\n                })\n        })\n        \n    })\n})\n"
  }
]